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")
 40
 41
 42 def toro_initial_conditions(test_number: int):
 43     def cond(i):
 44         conditions = {
 45             1: (0.3, 1.0, 0.75, 1.0, 0.125, 0.0, 0.1, 0.2),
 46             2: (0.5, 1.0, -2.0, 0.4, 1.0, 2.0, 0.4, 0.15),
 47             3: (0.5, 1.0, 0.0, 1000.0, 1.0, 0.0, 0.01, 0.012),
 48             4: (0.4, 5.99924, 19.5975, 460.894, 5.99242, -6.19633, 46.0950, 0.035),
 49             5: (0.8, 1.0, -19.59745, 1000.0, 1.0, -19.59745, 0.01, 0.012),
 50             6: (0.5, 1.4, 0.0, 1.0, 1.0, 0.0, 1.0, 2.0),
 51             7: (0.5, 1.4, 0.1, 1.0, 1.0, 0.1, 1.0, 2.0),
 52         }
 53         if i not in conditions:
 54             raise ValueError(f"Invalid test number: {i}")
 55         return conditions[i]
 56
 57     x_0, rho_L, vx_L, p_L, rho_R, vx_R, p_R, tend = cond(test_number)
 58
 59     etot_L = p_L / (gamma - 1) + 0.5 * rho_L * vx_L**2
 60     etot_R = p_R / (gamma - 1) + 0.5 * rho_R * vx_R**2
 61
 62     def rho(x):
 63         if x < x_0:
 64             return rho_L
 65         else:
 66             return rho_R
 67
 68     def rhoetot(x):
 69         if x < x_0:
 70             return etot_L
 71         else:
 72             return etot_R
 73
 74     def rhovel(x):
 75         if x < x_0:
 76             return (rho_L * vx_L, 0, 0)
 77         else:
 78             return (rho_R * vx_R, 0, 0)
 79
 80     return {
 81         "x_0": x_0,
 82         "lambda_rho": rho,
 83         "lambda_rhoetot": rhoetot,
 84         "lambda_rhovel": rhovel,
 85         "tend": tend,
 86     }
 87
 88
 89 timestamps = 40
 90 gamma = 1.4
 91
 92 output_folder = "_to_trash/toro_tests/"
 93 os.makedirs(output_folder, exist_ok=True)
 94
 95
 96 multx = 2
 97 multy = 1
 98 multz = 1
 99
100 sz = 1 << 1
101 base = 16
102
103 rez_plot = 256
104 positions_plot = [(x, 0, 0) for x in np.linspace(0, 1, rez_plot).tolist()[:-1]]
105
106
107 def run_test(
108     test_number: int, slope_limiter: str, riemann_solver: str, only_last_step: bool = True
109 ):
110     ctx = shamrock.Context()
111     ctx.pdata_layout_new()
112
113     model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
114
115     cfg = model.gen_default_config()
116     scale_fact = 1 / (sz * base * multx)
117     cfg.set_scale_factor(scale_fact)
118     cfg.set_eos_gamma(gamma)
119
120     if slope_limiter == "none":
121         cfg.set_slope_lim_none()
122     elif slope_limiter == "vanleer":
123         cfg.set_slope_lim_vanleer_f()
124     elif slope_limiter == "vanleer_std":
125         cfg.set_slope_lim_vanleer_std()
126     elif slope_limiter == "vanleer_sym":
127         cfg.set_slope_lim_vanleer_sym()
128     elif slope_limiter == "minmod":
129         cfg.set_slope_lim_minmod()
130     else:
131         raise ValueError(f"Invalid slope limiter: {slope_limiter}")
132
133     if riemann_solver == "rusanov":
134         cfg.set_riemann_solver_rusanov()
135     elif riemann_solver == "hll":
136         cfg.set_riemann_solver_hll()
137     elif riemann_solver == "hllc":
138         cfg.set_riemann_solver_hllc()
139     else:
140         raise ValueError(f"Invalid Riemann solver: {riemann_solver}")
141
142     cfg.set_face_time_interpolation(True)
143     cfg.set_boundary_condition("x", "outflow")
144     cfg.set_boundary_condition("y", "outflow")
145     cfg.set_boundary_condition("z", "outflow")
146     model.set_solver_config(cfg)
147
148     model.init_scheduler(int(1e7), 1)
149     model.make_base_grid((0, 0, 0), (sz, sz, sz), (base * multx, base * multy, base * multz))
150
151     dic = toro_initial_conditions(test_number)
152     tmax = dic["tend"]
153     lambda_rho = dic["lambda_rho"]
154     lambda_rhoetot = dic["lambda_rhoetot"]
155     lambda_rhovel = dic["lambda_rhovel"]
156
157     def rho_map(rmin, rmax):
158         x, y, z = rmin
159         return lambda_rho(x)
160
161     def rhoetot_map(rmin, rmax):
162         x, y, z = rmin
163         return lambda_rhoetot(x)
164
165     def rhovel_map(rmin, rmax):
166         x, y, z = rmin
167         return lambda_rhovel(x)
168
169     model.set_field_value_lambda_f64("rho", rho_map)
170     model.set_field_value_lambda_f64("rhoetot", rhoetot_map)
171     model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
172
173     results = []
174
175     def analysis(iplot: int):
176         rho_vals = model.render_slice("rho", "f64", positions_plot)
177         rhov_vals = model.render_slice("rhovel", "f64_3", positions_plot)
178         rhoetot_vals = model.render_slice("rhoetot", "f64", positions_plot)
179
180         vx = np.array(rhov_vals)[:, 0] / np.array(rho_vals)
181         P = (np.array(rhoetot_vals) - 0.5 * np.array(rho_vals) * vx**2) * (gamma - 1)
182         results_dic = {
183             "rho": np.array(rho_vals),
184             "vx": np.array(vx),
185             "P": np.array(P),
186         }
187         results.append(results_dic)
188
189     print(f"running {slope_limiter} {riemann_solver} with only_last_step={only_last_step}")
190
191     if only_last_step:
192         model.evolve_until(tmax)
193         analysis(timestamps)
194     else:
195         dt_evolve = tmax / timestamps
196
197         for i in range(timestamps + 1):
198             model.evolve_until(dt_evolve * i)
199             analysis(i)
200
201     return results, tmax
202
203
204 def plot_results(data, cases, tmax, test_number):
205
206     arr_x = [x[0] for x in positions_plot]
207
208     fig, axes = plt.subplots(3, 1, figsize=(6, 15))
209     fig.suptitle(f"Test {test_number} - t={tmax} (Last Step)", fontsize=14)
210
211     for i in range(3):
212         axes[i].set_xlabel("$x$")
213         # axes[i].set_yscale("log")
214         axes[i].grid(True, alpha=0.3)
215
216     ax1, ax2, ax3 = axes
217     ax1.set_xlabel("$x$")
218     ax1.set_ylabel("$\\rho$")
219
220     ax2.set_xlabel("$x$")
221     ax2.set_ylabel("$v_x$")
222
223     ax3.set_xlabel("$x$")
224     ax3.set_ylabel("$P$")
225
226     for limiter, solver in cases:
227         key = f"{limiter}_{solver}"
228         print(key)
229         print(data)
230         if key in data:
231             # Get the last timestep
232
233             ax1.plot(arr_x, data[key][-1]["rho"], label=f"{limiter} {solver} (rho)", linewidth=1)
234             ax2.plot(arr_x, data[key][-1]["vx"], label=f"{limiter} {solver} (vx)", linewidth=1)
235             ax3.plot(arr_x, data[key][-1]["P"], label=f"{limiter} {solver} (P)", linewidth=1)
236
237     ax1.legend()
238     ax2.legend()
239     ax3.legend()
240
241     plt.tight_layout()
242     plt.savefig(os.path.join(output_folder, f"toro_shocks_test_{test_number}.png"))
243     return fig
244
245
246 def gif_results(data, tmax, test_number, case_anim):
247
248     arr_x = [x[0] for x in positions_plot]
249
250     import matplotlib.animation as animation
251
252     fig2, axes = plt.subplots(3, 1, figsize=(8, 10))
253     fig2.suptitle(f"{case_anim} - t = {0.0:.3f} s", fontsize=14)
254
255     ax_rho, ax_vx, ax_P = axes
256
257     # Calculate global min/max across all frames for fixed y-axis limits
258     rho_min = min(np.min(frame["rho"]) for frame in data)
259     rho_max = max(np.max(frame["rho"]) for frame in data)
260     vx_min = min(np.min(frame["vx"]) for frame in data)
261     vx_max = max(np.max(frame["vx"]) for frame in data)
262     P_min = min(np.min(frame["P"]) for frame in data)
263     P_max = max(np.max(frame["P"]) for frame in data)
264
265     # Add 5% margin to y-axis limits
266     rho_margin = (rho_max - rho_min) * 0.05
267     vx_margin = (vx_max - vx_min) * 0.05
268     P_margin = (P_max - P_min) * 0.05
269
270     # Configure each axis
271     ax_rho.set_xlabel("$x$")
272     ax_rho.set_ylabel("$\\rho$")
273     ax_rho.set_ylim(rho_min - rho_margin, rho_max + rho_margin)
274     ax_rho.grid(True, alpha=0.3)
275
276     ax_vx.set_xlabel("$x$")
277     ax_vx.set_ylabel("$v_x$")
278     ax_vx.set_ylim(vx_min - vx_margin, vx_max + vx_margin)
279     ax_vx.grid(True, alpha=0.3)
280
281     ax_P.set_xlabel("$x$")
282     ax_P.set_ylabel("$P$")
283     ax_P.set_ylim(P_min - P_margin, P_max + P_margin)
284     ax_P.grid(True, alpha=0.3)
285
286     # Create lines for each variable on its own axis
287     (line_rho,) = ax_rho.plot(arr_x, data[0]["rho"], label="$\\rho$", linewidth=2, color="C0")
288     (line_vx,) = ax_vx.plot(arr_x, data[0]["vx"], label="$v_x$", linewidth=2, color="C1")
289     (line_P,) = ax_P.plot(arr_x, data[0]["P"], label="$P$", linewidth=2, color="C2")
290
291     ax_rho.legend()
292     ax_vx.legend()
293     ax_P.legend()
294
295     def animate(frame):
296         t = tmax * frame / timestamps
297         line_rho.set_ydata(data[frame]["rho"])
298         line_vx.set_ydata(data[frame]["vx"])
299         line_P.set_ydata(data[frame]["P"])
300
301         fig2.suptitle(f"{case_anim} - t = {t:.3f} s", fontsize=14)
302         return (line_rho, line_vx, line_P)
303
304     anim = animation.FuncAnimation(
305         fig2, animate, frames=timestamps + 1, interval=50, blit=False, repeat=True
306     )
307     plt.tight_layout()
308     writer = animation.PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
309     anim.save(os.path.join(output_folder, f"toro_shocks_test_{test_number}.gif"), writer=writer)
310     return anim
311
312
313 def run_and_plot(cases, test_number, case_anim):
314     data = {}
315     for slope_limiter, riemann_solver in cases:
316         print(f"running {slope_limiter} {riemann_solver}")
317         key = f"{slope_limiter}_{riemann_solver}"
318         only_last_step = not (case_anim == key)
319         data[key], tmax = run_test(
320             test_number, slope_limiter, riemann_solver, only_last_step=only_last_step
321         )
322
323     return plot_results(data, cases, tmax, test_number), gif_results(
324         data[case_anim], tmax, test_number, case_anim
325     )
-> 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 )
331 cases = [
332     # ("none", "rusanov"),
333     ("none", "hll"),
334     # ("none", "hllc"),
335     ("minmod", "rusanov"),
336     ("minmod", "hll"),
337     ("minmod", "hllc"),
338 ]
342 plot, anim = run_and_plot(cases, 1, "minmod_hll")
  • Test 1 - t=0.2 (Last Step)
running none hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  5.48 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.11 us    (54.2%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1122.00 ns (0.1%)
   patch tree reduce : 1202.00 ns (0.1%)
   gen split merge   : 1122.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 881.00 ns  (0.1%)
   LB compute        : 855.61 us  (98.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 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     : 12.53 us   (2.7%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 1101.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 439.06 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.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.8662e+05 | 65536 |      2 | 1.695e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 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.94 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 312.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.8%)
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.3685e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.18610850490076 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.002373509166415457
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 268.83 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.1%)
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    | 4.4946e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.60052479175205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004798225341526968, dt = 0.002163174917997481
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 337.45 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.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    | 3.7070e+05 | 65536 |      2 | 1.768e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.049118798635156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006961400259524448, dt = 0.0020782360781164094
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 304.53 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.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    | 4.6881e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.51966862048405 (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     : 6.40 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 282.38 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.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    | 4.5826e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.37418525965914 (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     : 6.54 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 272.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.1%)
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    | 4.6627e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.848283743637545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013104776489068569, dt = 0.0020185614322841454
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 278.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (64.0%)
Info: cfl dt = 0.001977352718132415                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9583e+05 | 65536 |      2 | 1.656e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.89105179327097 (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.96 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 332.85 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
Info: cfl dt = 0.001945373122581301                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2502e+05 | 65536 |      2 | 2.016e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.30288836518087 (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.92 us    (1.7%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 316.85 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (62.1%)
Info: cfl dt = 0.001927026344226756                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4074e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.4122940227648 (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     : 6.57 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 272.79 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.9%)
Info: cfl dt = 0.0019172115400082504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4279e+05 | 65536 |      2 | 1.912e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.285655040752836 (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     : 6.69 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 266.72 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (59.7%)
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    | 3.7050e+05 | 65536 |      2 | 1.769e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.019381863910176 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022890301646301438, dt = 0.0019128570137259048
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 300.74 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.4%)
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    | 3.4478e+05 | 65536 |      2 | 1.901e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.22795686118904 (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     : 6.35 us    (2.1%)
   patch tree reduce : 1792.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 279.34 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (62.4%)
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    | 3.4179e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.89859334092106 (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     : 6.56 us    (1.9%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 315.48 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.5%)
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.7243e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.27049880657416 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028613764084491945, dt = 0.0018876672327990725
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 321.15 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.0%)
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.5618e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.30226332851274 (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     : 6.56 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.3%)
   LB compute        : 330.31 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.8%)
Info: cfl dt = 0.001879394414468752                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6579e+05 | 65536 |      2 | 1.792e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.8118368027408 (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     : 6.51 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 301.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.0%)
Info: cfl dt = 0.001879375781097                                         [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2500e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.87601496197352 (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     : 6.72 us    (1.8%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 357.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.7%)
Info: cfl dt = 0.001872231371694393                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6665e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.175305132384786 (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.90 us    (1.6%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 337.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 5.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.2%)
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.6267e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.58323755853248 (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     : 6.17 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 305.81 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.3%)
Info: cfl dt = 0.0018619870766465889                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4973e+05 | 65536 |      2 | 1.874e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.83666977597526 (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     : 6.85 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 268.21 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.9%)
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    | 4.4819e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.84191091961268 (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     : 6.30 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 265.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (60.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    | 3.5309e+05 | 65536 |      2 | 1.856e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.09681985777593 (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     : 6.33 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 289.25 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.0%)
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    | 4.5944e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.95766124110464 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 271.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.8%)
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.6417e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.2460827119714 (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     : 6.92 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 297.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.7%)
Info: cfl dt = 0.0018471525320599262                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7526e+05 | 65536 |      2 | 1.746e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.1103089961661 (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     : 6.72 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 286.97 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.0%)
Info: cfl dt = 0.0018474045774290837                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9078e+05 | 65536 |      2 | 1.677e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.65119014028705 (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     : 7.08 us    (2.3%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 287.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (59.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    | 4.7001e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.69739375928731 (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     : 6.60 us    (2.0%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 299.58 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.5%)
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    | 4.7358e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.92651758839837 (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     : 6.79 us    (2.4%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 256.67 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (59.7%)
Info: cfl dt = 0.0018349269174648473                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7163e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.50681729323877 (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     : 6.44 us    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 304.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (60.6%)
Info: cfl dt = 0.0018345520796924115                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4123e+05 | 65536 |      2 | 1.921e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.39409142245638 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 292.30 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (63.7%)
Info: cfl dt = 0.0018330226411893994                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4312e+05 | 65536 |      2 | 1.910e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.578127624206566 (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     : 6.62 us    (1.5%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 1352.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.3%)
   LB compute        : 419.34 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.8%)
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    | 4.6056e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.37454988352911 (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     : 6.59 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 255.70 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.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    | 4.6472e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.64383977639677 (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     : 6.68 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 262.41 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.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    | 4.5615e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.70496873314053 (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     : 6.13 us    (1.8%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 325.91 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (69.2%)
Info: cfl dt = 0.0018234373281734494                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1654e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.71052711025328 (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     : 6.52 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 271.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.6%)
Info: cfl dt = 0.001818480617001952                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5929e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.00468542228387 (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     : 6.53 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 270.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.5%)
Info: cfl dt = 0.0018144802714904654                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6224e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.1746082738043 (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     : 6.98 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 252.00 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.4%)
Info: cfl dt = 0.0018126113886511727                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6063e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.91233015007107 (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     : 6.74 us    (2.3%)
   patch tree reduce : 17.05 us   (5.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 257.51 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.3%)
Info: cfl dt = 0.0018124176557584044                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6226e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.02679049642935 (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     : 6.63 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 258.83 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.7%)
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    | 3.5483e+05 | 65536 |      2 | 1.847e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.326477288998525 (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     : 6.78 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 289.98 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.8%)
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    | 3.5488e+05 | 65536 |      2 | 1.847e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.30745379144139 (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     : 6.62 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 257.95 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.3%)
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    | 3.5043e+05 | 65536 |      2 | 1.870e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.77136450755972 (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     : 7.12 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 309.13 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.2%)
Info: cfl dt = 0.001802695184841617                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5314e+05 | 65536 |      2 | 1.856e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.988064454098655 (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     : 6.27 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 266.71 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.9%)
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    | 3.3736e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.40713284142613 (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     : 7.19 us    (2.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 264.65 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (59.7%)
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    | 3.4491e+05 | 65536 |      2 | 1.900e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.163384672972626 (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     : 6.63 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 300.24 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.6%)
Info: cfl dt = 0.001795981304177961                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3777e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.38751751742734 (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     : 6.32 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 293.50 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.4%)
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    | 3.5075e+05 | 65536 |      2 | 1.868e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.60384616869956 (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     : 6.53 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 296.82 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (63.9%)
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    | 3.5133e+05 | 65536 |      2 | 1.865e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.62751258675229 (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     : 6.52 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 281.24 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.9%)
Info: cfl dt = 0.0017938225778022165                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5079e+05 | 65536 |      2 | 1.868e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.569691183038486 (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     : 6.24 us    (1.9%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 298.16 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.1%)
Info: cfl dt = 0.001789568100346248                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4222e+05 | 65536 |      2 | 1.915e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.72119579722067 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 264.39 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (60.1%)
Info: cfl dt = 0.0017871000630718                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4710e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.12080186100962 (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     : 6.18 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 277.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.0%)
Info: cfl dt = 0.001786113881783665                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3811e+05 | 65536 |      2 | 1.938e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.19208806186611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09817839906580181, dt = 0.001786113881783665
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 271.27 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.0%)
Info: cfl dt = 0.0017863382569071576                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2976e+05 | 65536 |      2 | 1.987e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.35409029547256 (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     : 6.18 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 284.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.4%)
Info: cfl dt = 0.0017842742941110575                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4072e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.43344827535064 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10175085120449263, dt = 0.0017842742941110575
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 256.57 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 us    (70.8%)
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    | 3.4083e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.405743749048675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10353512549860369, dt = 0.001781083882303111
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 262.47 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.7%)
Info: cfl dt = 0.0017793887285211427                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5070e+05 | 65536 |      2 | 1.869e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.311369890993696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1053162093809068, dt = 0.0017793887285211427
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 256.99 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.1%)
Info: cfl dt = 0.0017789424783942155                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4781e+05 | 65536 |      2 | 1.884e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.99689695455705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10709559810942794, dt = 0.0017789424783942155
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1301.00 ns (0.4%)
   LB compute        : 284.66 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.1%)
Info: cfl dt = 0.0017795268008289752                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4705e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.91407453505014 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10887454058782216, dt = 0.0017795268008289752
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 299.93 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 5.16 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.7%)
Info: cfl dt = 0.0017761084934211427                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3931e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.16833299875378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11065406738865113, dt = 0.0017761084934211427
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 295.96 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.0%)
Info: cfl dt = 0.00177373997782396                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3665e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.84483550988366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11243017588207227, dt = 0.00177373997782396
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1562.00 ns (0.5%)
   LB compute        : 296.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.4%)
Info: cfl dt = 0.001772636754545249                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4513e+05 | 65536 |      2 | 1.899e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.62790264625444 (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     : 6.30 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 293.66 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.81 us   (94.4%)
Info: cfl dt = 0.0017725973559036459                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5067e+05 | 65536 |      2 | 1.869e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.146154677183105 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597655261444148, dt = 0.0017725973559036459
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 256.74 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (63.1%)
Info: cfl dt = 0.0017720672636864564                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1136e+05 | 65536 |      2 | 2.105e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.318100753336697 (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     : 6.50 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 342.41 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (67.4%)
Info: cfl dt = 0.0017690597624408129                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5227e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.02541477686743 (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     : 6.42 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 239.37 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (60.2%)
Info: cfl dt = 0.0017673317576812216                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5794e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.50120680945054 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12129027699647238, dt = 0.0017673317576812216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 267.86 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.9%)
Info: cfl dt = 0.0017666842650221255                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5532e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.203511216004124 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1230576087541536, dt = 0.0017666842650221255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 260.02 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.8%)
Info: cfl dt = 0.0017669511589051942                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6982e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.59466350806557 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12482429301917572, dt = 0.0017669511589051942
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 278.83 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (62.1%)
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.7075e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.691500536567446 (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     : 6.15 us    (2.2%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 261.64 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (61.1%)
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    | 3.7172e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.04499394599894 (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     : 6.29 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 270.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (58.2%)
Info: cfl dt = 0.0017617006464616402                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0436e+05 | 65536 |      2 | 2.153e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.47448569009748 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1301194134182317, dt = 0.0017617006464616402
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.6%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 375.42 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.6%)
Info: cfl dt = 0.0017614054020814432                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4643e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.525054998171086 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13188111406469333, dt = 0.0017614054020814432
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.0%)
   patch tree reduce : 2.57 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 302.13 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
Info: cfl dt = 0.0017619021322769282                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5130e+05 | 65536 |      2 | 1.866e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.991130577090686 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13364251946677477, dt = 0.0017619021322769282
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 1802.00 ns (0.5%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 333.55 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (59.2%)
Info: cfl dt = 0.0017593187561237003                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5213e+05 | 65536 |      2 | 1.861e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.080265041525756 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1354044215990517, dt = 0.0017593187561237003
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 301.20 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.0%)
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    | 3.4569e+05 | 65536 |      2 | 1.896e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.408603829317926 (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     : 6.48 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 289.60 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.1%)
Info: cfl dt = 0.001756722854054998                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2395e+05 | 65536 |      2 | 2.023e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.27557846344055 (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     : 6.52 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.4%)
   LB compute        : 321.31 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (65.2%)
Info: cfl dt = 0.001756700316930328                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2442e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.95661883770901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14067801387953233, dt = 0.001756700316930328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 270.58 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.0%)
Info: cfl dt = 0.0017564246524487783                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4793e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.2243434411851 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14243471419646264, dt = 0.0017564246524487783
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 281.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (53.7%)
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.4722e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.14947574021546 (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     : 6.56 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 295.83 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (60.9%)
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.7269e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.54692931088748 (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     : 6.41 us    (2.1%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 281.90 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.7%)
Info: cfl dt = 0.0017523005690836273                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5737e+05 | 65536 |      2 | 1.834e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.40956909049415 (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     : 6.42 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 275.38 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.9%)
Info: cfl dt = 0.0017524885061734876                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5162e+05 | 65536 |      2 | 1.864e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.8459527346042 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14945039495836085, dt = 0.0017524885061734876
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 305.19 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.7%)
Info: cfl dt = 0.0017513918802866718                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5699e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.993050364964496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15120288346453434, dt = 0.0017513918802866718
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.0%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 331.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.9%)
Info: cfl dt = 0.001749591610450994                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6781e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.00687686081003 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.152954275344821, dt = 0.001749591610450994
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 300.33 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.6%)
Info: cfl dt = 0.0017486185350548149                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6402e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.59628009253905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.154703866955272, dt = 0.0017486185350548149
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 262.38 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.2%)
Info: cfl dt = 0.0017483543546392612                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6756e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.91154995805359 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1564524854903268, dt = 0.0017483543546392612
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 262.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.1%)
Info: cfl dt = 0.0017487039598497883                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4757e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.38098088446497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15820083984496608, dt = 0.0017487039598497883
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.6%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 240.42 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.4%)
Info: cfl dt = 0.0017469794958784625                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3929e+05 | 65536 |      2 | 1.932e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.59228768491549 (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     : 6.28 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 263.09 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.2%)
Info: cfl dt = 0.0017455728813794461                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4046e+05 | 65536 |      2 | 1.925e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.67217593922044 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16169652330069434, dt = 0.0017455728813794461
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 301.96 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (60.4%)
Info: cfl dt = 0.001744886041224492                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4355e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.94213489391464 (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     : 6.39 us    (1.6%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 376.01 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.7%)
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    | 3.3405e+05 | 65536 |      2 | 1.962e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.01830994227322 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.4%)
   LB compute        : 260.96 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (60.3%)
Info: cfl dt = 0.0017449072994634403                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4118e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.28477271656954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16693180162193358, dt = 0.0017449072994634403
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.2%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 256.77 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (57.9%)
Info: cfl dt = 0.0017430927651733957                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6488e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.558677739079435 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16867670892139702, dt = 0.0017430927651733957
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 268.95 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 20.88 us   (6.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (60.7%)
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.5047e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.132674274807094 (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     : 6.31 us    (2.1%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 278.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (58.6%)
Info: cfl dt = 0.001741552731668755                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7413e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.370309944991746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17216180987294788, dt = 0.001741552731668755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 255.35 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.7%)
Info: cfl dt = 0.0017416421857145692                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5871e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.882951137221404 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17390336260461664, dt = 0.0017416421857145692
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.4%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 250.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (60.2%)
Info: cfl dt = 0.001741112847842196                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6441e+05 | 65536 |      2 | 1.798e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.86361395259245 (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     : 7.24 us    (2.6%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 249.80 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (56.8%)
Info: cfl dt = 0.0017396547645334415                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4483e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.54465325851608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1773861176381734, dt = 0.0017396547645334415
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 273.79 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.6%)
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.5805e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.77231961898943 (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     : 6.28 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 240.85 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.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.0669e+05 | 65536 |      2 | 1.611e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.84602485786866 (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     : 6.06 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 241.34 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (60.6%)
Info: cfl dt = 0.0017387779089120118                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3225e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.280489928177865 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1826031724041713, dt = 0.0017387779089120118
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.80 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 235.81 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (59.2%)
Info: cfl dt = 0.0017377646553390802                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6955e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.84874663240893 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18434195031308329, dt = 0.0017377646553390802
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 269.61 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.0%)
Info: cfl dt = 0.001736602090424916                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5095e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.046952050622615 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18607971496842238, dt = 0.001736602090424916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.7%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.3%)
   LB compute        : 348.28 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.0%)
Info: cfl dt = 0.001735998436959442                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5591e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.49124075982647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1878163170588473, dt = 0.001735998436959442
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 81.57 us   (22.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 270.63 us  (73.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.3%)
Info: cfl dt = 0.001735880998788392                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6075e+05 | 65536 |      2 | 1.422e-01 | 0.1% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.93801394285143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18955231549580673, dt = 0.001735880998788392
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.6%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 235.63 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.5%)
Info: cfl dt = 0.0017361888402087457                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3253e+05 | 65536 |      2 | 1.971e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.707908795956612 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1912881964945951, dt = 0.0017361888402087457
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 304.34 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (64.2%)
Info: cfl dt = 0.001734799399116594                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6462e+05 | 65536 |      2 | 1.797e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.774131485272164 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19302438533480384, dt = 0.001734799399116594
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 280.75 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (61.4%)
Info: cfl dt = 0.001733882452199539                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3215e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.18180112836371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19475918473392043, dt = 0.001733882452199539
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 268.35 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (65.0%)
Info: cfl dt = 0.001733457105242247                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4104e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.0073169851829 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19649306718611997, dt = 0.001733457105242247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 239.25 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.6%)
Info: cfl dt = 0.0017334613125068194                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4229e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.11529523077452 (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     : 6.25 us    (2.4%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 238.31 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.9%)
Info: cfl dt = 0.0017333748516999547                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5612e+05 | 65536 |      2 | 1.840e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.91046822021957 (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     : 6.57 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 256.91 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (55.0%)
Info: cfl dt = 0.001733346724155697                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5272e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9951083021353287 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 27.886667683000002 (s)                                   [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.17 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.85 us    (55.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     : 1181.00 ns (0.4%)
   patch tree reduce : 1312.00 ns (0.4%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 301.01 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.33 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     : 11.88 us   (3.6%)
   patch tree reduce : 1793.00 ns (0.5%)
   gen split merge   : 861.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.3%)
   LB compute        : 307.05 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.9%)
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.7079e+05 | 65536 |      2 | 1.767e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0024247161751115103
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 265.28 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.0%)
Info: cfl dt = 0.002351520645183926                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4871e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.765046784299614 (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     : 6.56 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 273.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.6%)
Info: cfl dt = 0.002260292005613433                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5254e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.45596352390764 (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     : 6.83 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 271.46 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (61.9%)
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    | 4.5125e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.02764050650457 (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     : 6.08 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 268.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (41.6%)
Info: cfl dt = 0.002089575329838524                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4692e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.86526374089174 (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     : 6.38 us    (2.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 237.08 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (62.0%)
Info: cfl dt = 0.002061959453263477                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5020e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.675650701589966 (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     : 6.52 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 243.19 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (59.9%)
Info: cfl dt = 0.002051926548606445                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4510e+05 | 65536 |      2 | 1.899e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.088764755676266 (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.13 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 247.38 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.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    | 3.4956e+05 | 65536 |      2 | 1.875e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.40123119697963 (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     : 6.39 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 294.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.7%)
Info: cfl dt = 0.001953511383812545                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4647e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.917408418392775 (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     : 6.36 us    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 266.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.7%)
Info: cfl dt = 0.0019315363357800363                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4243e+05 | 65536 |      2 | 1.914e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.74553930100084 (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     : 6.78 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 261.23 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.2%)
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    | 3.7742e+05 | 65536 |      2 | 1.736e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.04504703046707 (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     : 6.35 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 289.33 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (61.2%)
Info: cfl dt = 0.0019110020962162704                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4739e+05 | 65536 |      2 | 1.887e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.69184423574247 (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     : 6.42 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 245.06 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (59.3%)
Info: cfl dt = 0.0018778209476821859                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4979e+05 | 65536 |      2 | 1.874e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.718875558516736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025104462688548237, dt = 0.0018778209476821859
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.1%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 258.76 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
Info: cfl dt = 0.0018628096275361623                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5732e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.173760500819945 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026982283636230422, dt = 0.0018628096275361623
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 263.18 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (59.6%)
Info: cfl dt = 0.0018554754980100313                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6724e+05 | 65536 |      2 | 1.785e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.57832164832548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028845093263766584, dt = 0.0018554754980100313
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.4%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.4%)
   LB compute        : 261.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (54.8%)
Info: cfl dt = 0.0018535671212540935                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6640e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.53747830278522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030700568761776615, dt = 0.0018535671212540935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 2.53 us    (0.9%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 253.12 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.2%)
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    | 4.1325e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.07652746489121 (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     : 6.90 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 282.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (61.8%)
Info: cfl dt = 0.0018250658910450614                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4542e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.06641185485148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03439599590430315, dt = 0.0018250658910450614
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 244.07 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.2%)
Info: cfl dt = 0.0018184210866263029                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9971e+05 | 65536 |      2 | 1.640e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.07265616398166 (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     : 6.81 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 261.23 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (60.3%)
Info: cfl dt = 0.0018176015720027016                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5395e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.34416019543602 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03803948288197452, dt = 0.0018176015720027016
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 302.07 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (57.7%)
Info: cfl dt = 0.001818799845751024                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3161e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.093233003889885 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.039857084453977225, dt = 0.001818799845751024
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 274.50 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (67.4%)
Info: cfl dt = 0.0018034901965326262                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3242e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.20336034546754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041675884299728246, dt = 0.0018034901965326262
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 287.09 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.27 us    (72.8%)
Info: cfl dt = 0.0017956047438197516                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5316e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.89438861980497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.043479374496260874, dt = 0.0017956047438197516
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.6%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 242.48 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.9%)
Info: cfl dt = 0.0017934915300478458                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5321e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.70296837663588 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04527497924008063, dt = 0.0017934915300478458
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 314.87 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.6%)
Info: cfl dt = 0.0017948560835794073                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5593e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.91842933866045 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047068470770128476, dt = 0.0017948560835794073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 292.09 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (63.5%)
Info: cfl dt = 0.0017873322255620484                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3761e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.14543661218068 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04886332685370788, dt = 0.0017873322255620484
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 259.80 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (64.4%)
Info: cfl dt = 0.0017787079640840568                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3422e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.631843845969364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05065065907926993, dt = 0.0017787079640840568
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 243.41 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.9%)
Info: cfl dt = 0.0017757677878620824                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3690e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.688040902226874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05242936704335399, dt = 0.0017757677878620824
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 274.96 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.0%)
Info: cfl dt = 0.0017765479422788446                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3788e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.71290729011027 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05420513483121608, dt = 0.0017765479422788446
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.1%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 278.57 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.8%)
Info: cfl dt = 0.0017746761050471413                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2672e+05 | 65536 |      2 | 2.006e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.884217579199305 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05598168277349492, dt = 0.0017746761050471413
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 281.25 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.3%)
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.1276e+05 | 65536 |      2 | 1.588e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.23812125760685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05775635887854206, dt = 0.0017646784797223274
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 260.79 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.6%)
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.0138e+05 | 65536 |      2 | 1.633e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.90838915490653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05952103735826439, dt = 0.0017606774091432245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 279.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.7%)
Info: cfl dt = 0.0017610272789614467                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5559e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.06321721237637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06128171476740761, dt = 0.0017610272789614467
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.97 us   (6.8%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 244.75 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (60.6%)
Info: cfl dt = 0.0017632056750679673                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4182e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.740209909193474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06304274204636906, dt = 0.0017632056750679673
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.4%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 237.83 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (61.5%)
Info: cfl dt = 0.0017520856549966613                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6275e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.8202056422294 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06480594772143702, dt = 0.0017520856549966613
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 2.65 us    (0.9%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 273.38 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.0%)
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.5952e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.22674267500922 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06655803337643368, dt = 0.0017473358215376455
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.6%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 245.78 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.6%)
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.6283e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.42472480397151 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06830536919797132, dt = 0.0017468674469056803
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 291.30 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (57.0%)
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.2016e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.31739380098004 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.070052236644877, dt = 0.001749494503759047
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 283.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.35 us   (94.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    | 3.0350e+05 | 65536 |      2 | 2.159e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.16718943984454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07180173114863606, dt = 0.0017408487955679745
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.7%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 347.64 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.8%)
Info: cfl dt = 0.001734923350729223                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6005e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.99352644584636 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07354257994420403, dt = 0.001734923350729223
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.39 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 312.21 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.6%)
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    | 3.4747e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.11511085473651 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07527750329493325, dt = 0.0017336833437348474
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 293.01 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.6%)
Info: cfl dt = 0.001735756658289641                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7704e+05 | 65536 |      2 | 1.738e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.9074430263376 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0770111866386681, dt = 0.001735756658289641
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 263.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.7%)
Info: cfl dt = 0.0017315528522539134                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7657e+05 | 65536 |      2 | 1.740e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.90545752898452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07874694329695774, dt = 0.0017315528522539134
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 315.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.6%)
Info: cfl dt = 0.0017241658949628221                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5064e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.863500188818 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08047849614921165, dt = 0.0017241658949628221
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 273.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (62.6%)
Info: cfl dt = 0.0017219207772036264                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6087e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.64921973356974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08220266204417448, dt = 0.0017219207772036264
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 305.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.4%)
Info: cfl dt = 0.0017232382171286657                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5583e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.11607246154498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0839245828213781, dt = 0.0017232382171286657
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 281.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.1%)
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.5391e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.967392311951485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08564782103850677, dt = 0.0017248688828008837
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 262.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.0%)
Info: cfl dt = 0.001715809835481906                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5076e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.70942515135731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08737268992130764, dt = 0.001715809835481906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.7%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.6%)
   LB compute        : 233.88 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (61.0%)
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.6104e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.45367326686278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08908849975678955, dt = 0.0017122267421482344
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 277.40 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.7%)
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.5197e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.50986689221786 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09080072649893778, dt = 0.0017123537222116056
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 310.02 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (68.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.6111e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.37300262810628 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09251308022114939, dt = 0.0017151889866310222
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.5%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 238.41 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (59.7%)
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.5299e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.67950503057178 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09422826920778041, dt = 0.001710476349516371
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 242.58 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.3%)
Info: cfl dt = 0.0017052234795964494                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5395e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.653080292149696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09593874555729678, dt = 0.0017052234795964494
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 269.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (63.3%)
Info: cfl dt = 0.0017038957954208331                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6214e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.28885414052646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09764396903689324, dt = 0.0017038957954208331
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.2%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 246.96 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.1%)
Info: cfl dt = 0.0017054254494145726                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4934e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.05681440884344 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09934786483231407, dt = 0.0017054254494145726
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.3%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 279.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (63.6%)
Info: cfl dt = 0.0017083454641065893                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6179e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.26086265113927 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10105329028172864, dt = 0.0017083454641065893
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 279.76 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.1%)
Info: cfl dt = 0.0017011708017333322                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4878e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.11411399506934 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10276163574583523, dt = 0.0017011708017333322
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.3%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 243.83 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (60.6%)
Info: cfl dt = 0.0016982561471839586                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5934e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.92462250955506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10446280654756857, dt = 0.0016982561471839586
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 238.95 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.2%)
Info: cfl dt = 0.0016983888813206847                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5601e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.53990863399941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10616106269475252, dt = 0.0016983888813206847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (0.9%)
   patch tree reduce : 2.39 us    (0.3%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.2%)
   LB compute        : 669.13 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.3%)
Info: cfl dt = 0.0017005310653634385                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6841e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.70051281778291 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1078594515760732, dt = 0.0017005310653634385
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.4%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 256.93 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.0%)
Info: cfl dt = 0.0017002262477569213                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9059e+05 | 65536 |      2 | 1.678e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.48630899366484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10955998264143664, dt = 0.0017002262477569213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.5%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.5%)
   LB compute        : 243.30 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (64.1%)
Info: cfl dt = 0.0016955197067749705                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7398e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.26775669027266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11126020888919357, dt = 0.0016955197067749705
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 266.41 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.3%)
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.7286e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.04070451775328 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11295572859596853, dt = 0.0016940980555360243
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 263.05 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (61.9%)
Info: cfl dt = 0.0016949635929667172                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9652e+05 | 65536 |      2 | 1.653e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.90044520371857 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11464982665150455, dt = 0.0016949635929667172
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 264.74 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (64.2%)
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    | 4.6012e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.840763182675815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11634479024447127, dt = 0.0016973577282177524
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.6%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 236.67 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.0%)
Info: cfl dt = 0.0016952309878496708                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4965e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.92430005942352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11804214797268901, dt = 0.0016952309878496708
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1261.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 266.84 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (60.4%)
Info: cfl dt = 0.0016922141197974834                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7592e+05 | 65536 |      2 | 1.743e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.00658404234033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11973737896053868, dt = 0.0016922141197974834
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.4%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 264.64 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (60.4%)
Info: cfl dt = 0.001691738711574515                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7056e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.741736545569 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12142959308033617, dt = 0.001691738711574515
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.7%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 234.94 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (62.3%)
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    | 4.7998e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.60443437572475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12312133179191069, dt = 0.0016929707568785885
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 269.46 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.3%)
Info: cfl dt = 0.0016953666690558168                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4253e+05 | 65536 |      2 | 1.913e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.854319678896335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12481430254878928, dt = 0.0016953666690558168
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 263.03 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (61.3%)
Info: cfl dt = 0.0016922734783240867                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3269e+05 | 65536 |      2 | 1.970e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.982784838790423 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1265096692178451, dt = 0.0016922734783240867
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 309.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.0%)
Info: cfl dt = 0.0016904658347707028                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2900e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.88000332964842 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1282019426961692, dt = 0.0016904658347707028
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 267.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.0016905799585851704                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7695e+05 | 65536 |      2 | 1.739e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.00344663731246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1298924085309399, dt = 0.0016905799585851704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 268.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.1%)
Info: cfl dt = 0.0016919808502272172                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5388e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.149751826706634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13158298848952507, dt = 0.0016919808502272172
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 277.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (60.3%)
Info: cfl dt = 0.0016939142473621316                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9255e+05 | 65536 |      2 | 1.670e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.48473058120423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13327496933975227, dt = 0.0016939142473621316
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.7%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 339.73 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (63.8%)
Info: cfl dt = 0.0016907943321393536                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9694e+05 | 65536 |      2 | 1.651e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.935194963479276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1349688835871144, dt = 0.0016907943321393536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 295.81 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.9%)
Info: cfl dt = 0.0016897843154393276                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6100e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.81714527028085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13665967791925376, dt = 0.0016897843154393276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.5%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 234.31 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.7%)
Info: cfl dt = 0.0016902230544775542                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4574e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.37506464289193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1383494622346931, dt = 0.0016902230544775542
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 256.43 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.2%)
Info: cfl dt = 0.0016916145789440465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4268e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.10158486033104 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14003968528917066, dt = 0.0016916145789440465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1342.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.3%)
   LB compute        : 334.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.9%)
Info: cfl dt = 0.0016925101169647887                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4001e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.594417887188143 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1417312998681147, dt = 0.0016925101169647887
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 16.55 us   (5.5%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 265.98 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
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    | 3.2554e+05 | 65536 |      2 | 2.013e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.266102578402393 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14342380998507948, dt = 0.0016904176613256234
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.25 us    (1.7%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 297.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (62.5%)
Info: cfl dt = 0.0016899078404215367                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2911e+05 | 65536 |      2 | 1.991e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.56026604591546 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1451142276464051, dt = 0.0016899078404215367
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 282.85 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (54.7%)
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.3006e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.92185903792399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14680413548682664, dt = 0.0016904826519570251
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 261.89 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (63.6%)
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    | 3.2573e+05 | 65536 |      2 | 2.012e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.24716046037413 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14849461813878367, dt = 0.0016917533366995114
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 305.64 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (66.1%)
Info: cfl dt = 0.0016923174520660402                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1113e+05 | 65536 |      2 | 2.106e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.914019623458394 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1501863714754832, dt = 0.0016923174520660402
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.6%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 353.99 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.7%)
Info: cfl dt = 0.0016908716167066877                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2430e+05 | 65536 |      2 | 2.021e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.147935181517866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15187868892754924, dt = 0.0016908716167066877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 344.16 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.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    | 3.2308e+05 | 65536 |      2 | 2.028e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.00870143971842 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15356956054425594, dt = 0.001690633241596396
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.5%)
   patch tree reduce : 2.35 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 396.35 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (68.4%)
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    | 4.4599e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.418360474532875 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15526019378585235, dt = 0.0016911873542640793
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 275.49 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.5%)
Info: cfl dt = 0.0016922646637931866                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3209e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.1409492701516 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15695138114011642, dt = 0.0016922646637931866
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 285.41 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (62.3%)
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    | 4.4481e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.34934676936752 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1586436458039096, dt = 0.0016926837069749835
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 245.64 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (61.3%)
Info: cfl dt = 0.001691661148613588                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2665e+05 | 65536 |      2 | 2.006e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.372423566007814 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16033632951088458, dt = 0.001691661148613588
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 313.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.0%)
Info: cfl dt = 0.0016915607164140695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6599e+05 | 65536 |      2 | 1.791e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.00952266953686 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16202799065949816, dt = 0.0016915607164140695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 295.98 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.9%)
Info: cfl dt = 0.0016920252777170154                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0100e+05 | 65536 |      2 | 1.634e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.26094659703616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16371955137591224, dt = 0.0016920252777170154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 292.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (60.6%)
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    | 4.5665e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.44326932863757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16541157665362924, dt = 0.001692896121472443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 306.43 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.1%)
Info: cfl dt = 0.0016932812243009368                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6505e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.24657115032737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16710447277510168, dt = 0.0016932812243009368
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 250.43 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.2%)
Info: cfl dt = 0.001692528888098055                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5318e+05 | 65536 |      2 | 1.856e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.85073886949936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1687977539994026, dt = 0.001692528888098055
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 305.40 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.0%)
Info: cfl dt = 0.0016924576006673556                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3721e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.648812808093524 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17049028288750068, dt = 0.0016924576006673556
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 278.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.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    | 4.1476e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.559890924369626 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17218274048816803, dt = 0.0016928132566982363
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 284.56 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.7%)
Info: cfl dt = 0.0016934792266023286                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4239e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.13754084363653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17387555374486627, dt = 0.0016934792266023286
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 313.66 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.2%)
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    | 3.9213e+05 | 65536 |      2 | 1.671e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.47800682822134 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17556903297146859, dt = 0.0016940869050650785
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 282.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.4%)
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    | 3.6995e+05 | 65536 |      2 | 1.771e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.427523561506746 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17726311987653368, dt = 0.001693487866126987
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 283.62 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.0%)
Info: cfl dt = 0.001693386693880746                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4577e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.46780454879047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17895660774266067, dt = 0.001693386693880746
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.3%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 280.66 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.6%)
Info: cfl dt = 0.0016936225037281001                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4910e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.77508686727897 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18064999443654142, dt = 0.0016936225037281001
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 281.75 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.1%)
Info: cfl dt = 0.0016941064830647177                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6093e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.88158797491864 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18234361694026952, dt = 0.0016941064830647177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 268.80 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (62.6%)
Info: cfl dt = 0.0016947860401335343                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3315e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.30939427668213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18403772342333424, dt = 0.0016947860401335343
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1171.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 233.24 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.1%)
Info: cfl dt = 0.0016945191215457876                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5557e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.41228772275031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18573250946346778, dt = 0.0016945191215457876
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.5%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 236.68 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (62.5%)
Info: cfl dt = 0.0016943707499528626                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5023e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.90883383390429 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18742702858501356, dt = 0.0016943707499528626
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.5%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 261.07 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (59.4%)
Info: cfl dt = 0.001694490404365914                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6453e+05 | 65536 |      2 | 1.798e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.9288047479693 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1891213993349664, dt = 0.001694490404365914
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 244.12 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.0%)
Info: cfl dt = 0.0016948090796908004                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4653e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.56385454310956 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19081588973933233, dt = 0.0016948090796908004
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.5%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 242.61 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.6%)
Info: cfl dt = 0.001695282738605939                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3755e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.73512773437978 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19251069881902313, dt = 0.001695282738605939
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 235.94 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.2%)
Info: cfl dt = 0.0016955089227541137                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6573e+05 | 65536 |      2 | 1.792e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.05864088898127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19420598155762908, dt = 0.0016955089227541137
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 290.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.2%)
Info: cfl dt = 0.0016953096959158632                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5844e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.69746112622778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1959014904803832, dt = 0.0016953096959158632
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 272.67 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.9%)
Info: cfl dt = 0.0016953201859836152                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4777e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.699085030097194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19759680017629905, dt = 0.0016953201859836152
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 267.63 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 20.33 us   (6.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (66.1%)
Info: cfl dt = 0.0016954901168427087                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4434e+05 | 65536 |      2 | 1.903e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.06761715659729 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19929212036228267, dt = 0.0007078796377173457
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.4%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 243.87 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.8%)
Info: cfl dt = 0.001695602751795715                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2323e+05 | 65536 |      2 | 2.028e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.568913757049453 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 46.455630974 (s)                                         [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.06 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (56.8%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 991.00 ns  (0.3%)
   patch tree reduce : 1642.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 288.87 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
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 : 46.617504536000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.33 us    (2.7%)
   patch tree reduce : 2.69 us    (0.9%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 284.77 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.9%)
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.5416e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0024247161751115103
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.3%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 270.75 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.0%)
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.4051e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.672791727970974 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0024247161751115103, dt = 0.002373509166415457
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 261.57 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.2%)
Info: cfl dt = 0.002149377687526953                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1839e+05 | 65536 |      2 | 1.566e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 54.54951132420617 (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     : 6.01 us    (1.8%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 289.69 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.0%)
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.6195e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.1201125896817965 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 47.282052351000004 (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     : 9.06 us    (1.9%)
   patch tree reduce : 2.38 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 444.81 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.66 us    (67.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.0298e+05 | 65536 |      2 | 1.626e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.298612101197044 (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     : 6.43 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 279.33 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.2%)
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    | 4.1757e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.847741274112366 (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     : 6.18 us    (2.1%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 271.78 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.4%)
Info: cfl dt = 0.001989469580709434                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3226e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.49219547374319 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 47.844795174000005 (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.79 us    (2.6%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 311.11 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.4%)
Info: cfl dt = 0.001977154693685554                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2942e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.9291564554273 (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     : 6.27 us    (2.4%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1352.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 241.20 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.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.2970e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.669427263482206 (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     : 6.55 us    (2.5%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 242.95 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.2%)
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.3534e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 24.71233883410335 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 48.370250809000005 (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     : 8.70 us    (2.5%)
   patch tree reduce : 2.57 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 318.14 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.9%)
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    | 4.3058e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.709605971415336 (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     : 6.66 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 280.91 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.7%)
Info: cfl dt = 0.0018709138352807182                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3723e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.446758785845965 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018824751915514665, dt = 0.0011752480844853357
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 252.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (60.8%)
Info: cfl dt = 0.0018637304114470384                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5431e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.329278697710027 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 48.885871216000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.02, dt = 0.0018637304114470384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.23 us    (2.3%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 328.92 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.0%)
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    | 4.3411e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.443039965356505 (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     : 6.64 us    (2.2%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 277.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (61.9%)
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.4600e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.52722309621058 (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     : 6.26 us    (2.3%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 246.16 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.3%)
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    | 4.3819e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.761619459292504 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 49.403651417000006 (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     : 8.40 us    (2.2%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 356.73 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (69.7%)
Info: cfl dt = 0.0018434102985827666                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3790e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.78647149622341 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02686187426525201, dt = 0.0018434102985827666
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 312.07 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.2%)
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.3578e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.1280799746294 (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     : 6.20 us    (2.4%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 1191.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 239.67 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.1%)
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.4426e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.596336284903547 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 49.934555247000006 (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     : 8.32 us    (2.1%)
   patch tree reduce : 2.37 us    (0.6%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 377.68 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (69.4%)
Info: cfl dt = 0.0018359057719445368                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2705e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.024999031396945 (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     : 7.06 us    (2.7%)
   patch tree reduce : 2.54 us    (1.0%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 234.29 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.3%)
Info: cfl dt = 0.0018224461857752835                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3044e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.40994229470844 (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     : 7.13 us    (2.7%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 238.53 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (56.3%)
Info: cfl dt = 0.001816049736805951                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3759e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.969646961283907 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 50.461525684 (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     : 9.11 us    (2.6%)
   patch tree reduce : 2.71 us    (0.8%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 329.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.2%)
Info: cfl dt = 0.0018130077286621184                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4170e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.06320187242332 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03681604973680595, dt = 0.0018130077286621184
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.4%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 241.24 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.8%)
Info: cfl dt = 0.0018146032494795912                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3452e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.27472380744409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03862905746546807, dt = 0.0013709425345319326
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.3%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 247.88 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.03 us    (69.4%)
Info: cfl dt = 0.001805832788895163                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3831e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.00823022124953 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 50.980709756 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.04, dt = 0.001805832788895163
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.56 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 347.33 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.2%)
Info: cfl dt = 0.0017927342974056511                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5608e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.242351820379824 (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     : 6.43 us    (2.5%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.5%)
   LB compute        : 238.32 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.9%)
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    | 4.6008e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.30815590568011 (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     : 6.39 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 312.61 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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    | 3.9219e+05 | 65536 |      2 | 1.671e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.19184979902134 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 51.504545857000004 (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     : 9.56 us    (2.9%)
   patch tree reduce : 2.80 us    (0.8%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 303.94 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.7%)
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.4959e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.17213698407686 (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.97 us    (2.3%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 241.82 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.5%)
Info: cfl dt = 0.0017721787009417824                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4612e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.84635162037974 (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     : 6.21 us    (2.3%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.5%)
   LB compute        : 247.46 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.3%)
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.4029e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.39754986787103 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 52.015662680000005 (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     : 8.04 us    (2.2%)
   patch tree reduce : 2.75 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 349.14 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.9%)
Info: cfl dt = 0.001764362650745321                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5163e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.81556732833504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05176613388055261, dt = 0.001764362650745321
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 248.44 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.8%)
Info: cfl dt = 0.0017674028113651046                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5243e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.8490453880761 (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     : 6.37 us    (2.1%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 278.26 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.4%)
Info: cfl dt = 0.0017613058098427893                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5313e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.57756520401238 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 52.521362537 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.055, dt = 0.0017613058098427893
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.72 us    (2.4%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 336.28 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.6%)
Info: cfl dt = 0.001749091875609621                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4650e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.19902525589623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05676130580984279, dt = 0.001749091875609621
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 259.89 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.7%)
Info: cfl dt = 0.0017446500442971473                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4686e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.9348117990633 (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     : 6.52 us    (2.4%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 246.89 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.8%)
Info: cfl dt = 0.0017451652654214846                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4243e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.20249852973363 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 53.034003333 (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     : 8.61 us    (2.5%)
   patch tree reduce : 2.51 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 314.78 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.7%)
Info: cfl dt = 0.0017491642670394983                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2393e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.6401741123419 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06174516526542148, dt = 0.0017491642670394983
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.5%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 239.72 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.4%)
Info: cfl dt = 0.0017383925660327307                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4942e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.18225381077016 (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     : 6.71 us    (2.6%)
   patch tree reduce : 2.53 us    (1.0%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.5%)
   LB compute        : 240.17 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.8%)
Info: cfl dt = 0.0017317807770450089                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3863e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.27872416916369 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 53.556371236000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.065, dt = 0.0017317807770450089
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.38 us    (2.5%)
   patch tree reduce : 2.73 us    (0.8%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 310.18 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.9%)
Info: cfl dt = 0.001729424507300354                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6296e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.041064713373984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06673178077704502, dt = 0.001729424507300354
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.6%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 244.54 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.1%)
Info: cfl dt = 0.0017310989114589033                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5522e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.24586976192447 (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     : 6.26 us    (2.4%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 244.36 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.001735047366276934                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4066e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.24875789882842 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 54.059783056 (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     : 8.49 us    (2.4%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 323.36 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1942.00 ns (66.2%)
Info: cfl dt = 0.0017236319809287627                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4633e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.539344557949185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07173504736627694, dt = 0.0017236319809287627
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1352.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 258.68 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (55.0%)
Info: cfl dt = 0.0017185331350307244                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6510e+05 | 65536 |      2 | 1.795e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.568701045523945 (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     : 6.35 us    (2.5%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 234.03 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (59.9%)
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.5879e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.84422220105218 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 54.60006752 (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     : 8.96 us    (2.5%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 325.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.4%)
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    | 4.5896e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.3080754644893 (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.23 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 254.42 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.8%)
Info: cfl dt = 0.0017211229825891843                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7682e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.04406785807597 (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     : 6.22 us    (2.5%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 229.96 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (61.8%)
Info: cfl dt = 0.0017134759725273392                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6012e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.49195021958389 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 55.096575179000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.08, dt = 0.0017134759725273392
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.60 us    (2.3%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 344.02 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (66.3%)
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.6766e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.01833994125597 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.44 us    (0.9%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 262.89 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.7%)
Info: cfl dt = 0.0017097154577639148                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6825e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.98077210556734 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 266.62 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.1%)
Info: cfl dt = 0.001711705784259328                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4082e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.17888548219553 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 55.596115911000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.085, dt = 0.001711705784259328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.14 us    (2.3%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 333.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (58.1%)
Info: cfl dt = 0.0017119428114212652                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4328e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.680625208439494 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08671170578425934, dt = 0.0017119428114212652
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 268.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.3%)
Info: cfl dt = 0.0017056819857417028                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3771e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.16210862801402 (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     : 6.41 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 242.67 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.3%)
Info: cfl dt = 0.001703543388476863                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4753e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.75237292601702 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 56.11039640400001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.09, dt = 0.001703543388476863
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.76 us    (2.1%)
   patch tree reduce : 2.58 us    (0.6%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 386.10 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.6%)
Info: cfl dt = 0.0017036745996443256                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4421e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.56811942219865 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09170354338847686, dt = 0.0017036745996443256
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 273.80 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.7%)
Info: cfl dt = 0.0017056606182428464                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2893e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.14169509109104 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09340721798812118, dt = 0.0015927820118788183
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 275.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.8%)
Info: cfl dt = 0.0017055094354247124                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6428e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.62137447944878 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 56.62345192 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.095, dt = 0.0017055094354247124
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.49 us    (2.7%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 295.49 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (56.9%)
Info: cfl dt = 0.0017007278161867427                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4053e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.27206586834808 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09670550943542472, dt = 0.0017007278161867427
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 290.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.4%)
Info: cfl dt = 0.0016991372917322643                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4279e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.36694275868815 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.52 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 266.82 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (60.1%)
Info: cfl dt = 0.0016994818557473485                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1989e+05 | 65536 |      2 | 2.049e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.0061681423717 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 57.209121829000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.1, dt = 0.0016994818557473485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.68 us    (2.2%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 371.19 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.5%)
Info: cfl dt = 0.0017012392646695942                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4670e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.70155418155518 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10169948185574736, dt = 0.0017012392646695942
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 267.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.9%)
Info: cfl dt = 0.001701195072331194                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4472e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.559514120990336 (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     : 6.39 us    (2.5%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.4%)
   LB compute        : 235.59 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.9%)
Info: cfl dt = 0.0016978714089208506                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4810e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.36583704432897 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 57.717179077000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.105, dt = 0.0016978714089208506
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.66 us    (2.3%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 351.95 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (64.8%)
Info: cfl dt = 0.0016967007699610606                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4141e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.168495712068584 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10669787140892084, dt = 0.0016967007699610606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 269.76 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.1%)
Info: cfl dt = 0.0016970844499853146                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5200e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.12767237901377 (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     : 6.75 us    (2.1%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 293.48 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (66.4%)
Info: cfl dt = 0.00169853915732137                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2337e+05 | 65536 |      2 | 2.027e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.517385793832734 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 58.283581705 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.11, dt = 0.00169853915732137
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.64 us    (2.1%)
   patch tree reduce : 2.53 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 381.46 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.9%)
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.4265e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.30090799152478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11169853915732136, dt = 0.0016989453569191033
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 300.03 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.6%)
Info: cfl dt = 0.001696184494156963                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4848e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.85477073616332 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11339748451424046, dt = 0.0016025154857595425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 255.50 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.7%)
Info: cfl dt = 0.0016953802919238523                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3509e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.49755251796658 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 58.840521427000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.115, dt = 0.0016953802919238523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.47 us    (1.9%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.3%)
   LB compute        : 371.00 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.6%)
Info: cfl dt = 0.00169570554285492                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3329e+05 | 65536 |      2 | 1.966e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.039405598043555 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11669538029192386, dt = 0.00169570554285492
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 306.59 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (66.1%)
Info: cfl dt = 0.0016969481901767088                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3487e+05 | 65536 |      2 | 1.957e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.192044234038832 (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     : 6.56 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 282.89 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.5%)
Info: cfl dt = 0.0016975221595522643                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3662e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.750825520027593 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 59.49896042 (s)                                          [Godunov][rank=0]
amr::Godunov: t = 0.12, dt = 0.0016975221595522643
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.31 us    (2.2%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 353.99 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (67.4%)
Info: cfl dt = 0.0016952960980918424                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4429e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.42878211023022 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12169752215955226, dt = 0.0016952960980918424
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 281.60 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.0%)
Info: cfl dt = 0.0016945680772727303                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5439e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.31513930596275 (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     : 6.68 us    (2.5%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1392.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 247.17 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.9%)
Info: cfl dt = 0.0016948007453538743                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4624e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.39652503875122 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 60.006573767000006 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.125, dt = 0.0016948007453538743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.58 us    (2.3%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 302.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.0%)
Info: cfl dt = 0.0016957359742253682                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5315e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.18716510492731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12669480074535389, dt = 0.0016957359742253682
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 276.06 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.6%)
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    | 3.7915e+05 | 65536 |      2 | 1.729e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.31735347538532 (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     : 6.72 us    (2.2%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 282.61 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.3%)
Info: cfl dt = 0.0016951992650365729                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9526e+05 | 65536 |      2 | 1.658e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.944795104337885 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 60.55981061400001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.13, dt = 0.0016951992650365729
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.57 us    (2.0%)
   patch tree reduce : 2.64 us    (0.6%)
   gen split merge   : 1011.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 402.63 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.0%)
Info: cfl dt = 0.0016945370196177426                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4584e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.51624790877071 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1316951992650366, dt = 0.0016945370196177426
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 2.61 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 289.95 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.6%)
Info: cfl dt = 0.0016946465597527055                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6888e+05 | 65536 |      2 | 1.777e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.33650413789048 (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     : 6.57 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 296.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.0%)
Info: cfl dt = 0.0016953036984696892                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3868e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.80348327556216 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 61.104643153000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.135, dt = 0.0016953036984696892
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.31 us    (2.3%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 340.11 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.0%)
Info: cfl dt = 0.0016964228390942864                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4072e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.04254316671325 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1366953036984697, dt = 0.0016964228390942864
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 270.76 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.1%)
Info: cfl dt = 0.0016957146377222666                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3894e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.90335916979959 (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     : 6.24 us    (2.0%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 288.42 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.3%)
Info: cfl dt = 0.0016951690780678736                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3641e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.55450147200239 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 61.62363607300001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.14, dt = 0.0016951690780678736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.55 us    (2.0%)
   patch tree reduce : 2.39 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 358.76 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.3%)
Info: cfl dt = 0.001695176328347805                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2969e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.012293347852236 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1416951690780679, dt = 0.001695176328347805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1342.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 277.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.3%)
Info: cfl dt = 0.0016956366066382695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7067e+05 | 65536 |      2 | 1.768e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.516760734392626 (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     : 6.28 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 261.32 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (61.8%)
Info: cfl dt = 0.0016964035172934838                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2517e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.594283218550544 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 62.176966482000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.145, dt = 0.0016964035172934838
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.09 us    (2.5%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 302.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (68.1%)
Info: cfl dt = 0.0016962833209502445                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4526e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.49192155623123 (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     : 6.16 us    (2.4%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 239.94 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.4%)
Info: cfl dt = 0.0016957094211130324                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3781e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.79534996940045 (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     : 6.45 us    (2.5%)
   patch tree reduce : 2.54 us    (1.0%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 236.28 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.0%)
Info: cfl dt = 0.0016955909768465102                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5955e+05 | 65536 |      2 | 1.823e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.74517546483593 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 62.726189715000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.15, dt = 0.0016955909768465102
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.99 us    (2.3%)
   patch tree reduce : 2.71 us    (0.8%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1873.00 ns (0.5%)
   LB compute        : 315.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1942.00 ns (61.6%)
Info: cfl dt = 0.0016958011293639866                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5227e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.1249779797205 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1516955909768465, dt = 0.0016958011293639866
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 238.85 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (61.9%)
Info: cfl dt = 0.001696305840548237                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9474e+05 | 65536 |      2 | 1.660e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.771730942395514 (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     : 6.55 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 282.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (52.5%)
Info: cfl dt = 0.0016970209331591069                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4259e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.108500383898175 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 63.252527783000005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.155, dt = 0.0016970209331591069
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.37 us    (2.5%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 306.05 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.0%)
Info: cfl dt = 0.0016964320243581328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4162e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.16756268537058 (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.31 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 283.02 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (62.1%)
Info: cfl dt = 0.001696190150736349                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4022e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.02338957357501 (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     : 6.40 us    (1.9%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 314.99 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.0%)
Info: cfl dt = 0.0016962301890475688                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4358e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.14630279863577 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 63.767066523000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.16, dt = 0.0016962301890475688
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.71 us    (2.4%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 336.33 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (62.4%)
Info: cfl dt = 0.0016964920557647899                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4271e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.25055443393075 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16169623018904758, dt = 0.0016964920557647899
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 328.55 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.5%)
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    | 3.6236e+05 | 65536 |      2 | 1.809e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.76902588501478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16339272224481238, dt = 0.001607277755187625
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.2%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 291.21 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.3%)
Info: cfl dt = 0.0016975473218523948                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4101e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.936781043572154 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 64.315953418 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.165, dt = 0.0016975473218523948
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.77 us    (2.3%)
   patch tree reduce : 2.50 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.3%)
   LB compute        : 349.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.0%)
Info: cfl dt = 0.001697236443700041                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0586e+05 | 65536 |      2 | 1.615e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.84587342334852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1666975473218524, dt = 0.001697236443700041
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 279.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.6%)
Info: cfl dt = 0.0016971467705376073                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3317e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.38500211755198 (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     : 7.08 us    (2.3%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1413.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 285.25 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (63.3%)
Info: cfl dt = 0.0016972325256441438                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4511e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.24843519482575 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 64.84650224900001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.17, dt = 0.0016972325256441438
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.42 us    (2.6%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 300.48 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.3%)
Info: cfl dt = 0.0016974644914854499                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4135e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.14791044716689 (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     : 20.23 us   (7.0%)
   patch tree reduce : 2.63 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 254.29 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (60.9%)
Info: cfl dt = 0.0016978346953375478                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5783e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.69022393853923 (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     : 6.38 us    (2.6%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1171.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 227.34 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.0016980068029526683                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5615e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.22440661272136 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 65.354573234 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.17500000000000002, dt = 0.0016980068029526683
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.08 us    (2.3%)
   patch tree reduce : 2.65 us    (0.8%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 319.57 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.9%)
Info: cfl dt = 0.0016978120240687166                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5284e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.238725944980985 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1766980068029527, dt = 0.0016978120240687166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 253.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.7%)
Info: cfl dt = 0.0016977632304538406                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5291e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.2396390259397 (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     : 6.15 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 262.84 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.4%)
Info: cfl dt = 0.0016978218078181734                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5531e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.122113397912855 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 65.859385204 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.18, dt = 0.0016978218078181734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.82 us    (2.5%)
   patch tree reduce : 2.85 us    (0.8%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 323.03 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (68.0%)
Info: cfl dt = 0.0016979854885523097                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4119e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.147168855997364 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18169782180781816, dt = 0.0016979854885523097
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 263.87 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (59.7%)
Info: cfl dt = 0.0016982525146471265                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4129e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.160132841197154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18339580729637048, dt = 0.00160419270362952
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 265.45 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.0%)
Info: cfl dt = 0.001698555643860214                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5327e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.94277502269818 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 66.37346217400001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.185, dt = 0.001698555643860214
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.77 us    (2.7%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 304.58 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.4%)
Info: cfl dt = 0.0016984122661449941                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3259e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.362383250200416 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1866985556438602, dt = 0.0016984122661449941
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 279.58 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (64.1%)
Info: cfl dt = 0.001698363230323143                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5122e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.09750770116201 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 252.10 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 19.87 us   (6.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.0%)
Info: cfl dt = 0.0016983943924654792                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5684e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.22833468555256 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 66.885683559 (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     : 8.69 us    (2.6%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 308.79 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.8%)
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    | 3.9887e+05 | 65536 |      2 | 1.643e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.21289283167551 (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     : 6.26 us    (2.4%)
   patch tree reduce : 2.70 us    (1.0%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 239.75 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (58.2%)
Info: cfl dt = 0.0016986917837430084                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5725e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.662121998794184 (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     : 6.12 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 287.20 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (63.3%)
Info: cfl dt = 0.0016989557237630849                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5680e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.22677475460515 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 67.40909397 (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     : 8.86 us    (2.2%)
   patch tree reduce : 2.50 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 374.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.4%)
Info: cfl dt = 0.0016992348400731367                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7149e+05 | 65536 |      2 | 1.764e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.66976489074629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19669895572376309, dt = 0.0016992348400731367
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.2%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 289.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.8%)
Info: cfl dt = 0.0016991776895348512                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4048e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.11500677841635 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 288.65 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (55.8%)
Info: cfl dt = 0.001699176503537386                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3891e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.6197912109887 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 67.954770925 (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.00 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.09 us    (61.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     : 1031.00 ns (0.3%)
   patch tree reduce : 1242.00 ns (0.4%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 307.77 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.31 us    (1.0%)
Info: patch count stable after 1 runs npatch = 2                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 11.15 us   (3.8%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 264.89 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (59.2%)
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.3376e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.0024247161751115103
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.8%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 1191.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 330.91 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.9%)
Info: cfl dt = 0.0023171614643384517                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3173e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.5036777043531 (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     : 6.52 us    (1.9%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1572.00 ns (0.4%)
   LB compute        : 328.64 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.7%)
Info: cfl dt = 0.002075017695014586                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3569e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.45728537313857 (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     : 6.47 us    (2.6%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1152.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 226.15 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1271.00 ns (56.9%)
Info: cfl dt = 0.0019971385650064655                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3347e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 49.40847743990464 (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     : 6.61 us    (2.5%)
   patch tree reduce : 1643.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 246.68 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.8%)
Info: cfl dt = 0.001964895602302102                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1321e+05 | 65536 |      2 | 2.092e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.36080818698218 (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     : 6.37 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1512.00 ns (0.5%)
   LB compute        : 270.20 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.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    | 4.1605e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.906116143667994 (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     : 6.70 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 268.79 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (54.4%)
Info: cfl dt = 0.001953408169055018                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3050e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.20014348828123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0127325622571938, dt = 0.001953408169055018
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1662.00 ns (0.5%)
   LB compute        : 293.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.4%)
Info: cfl dt = 0.0019206023649325436                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4445e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.69112914417671 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014685970426248819, dt = 0.0019206023649325436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 273.36 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.2%)
Info: cfl dt = 0.0018848741424326908                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3844e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.25643198112069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016606572791181363, dt = 0.0018848741424326908
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 248.53 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.9%)
Info: cfl dt = 0.001868973738870141                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4218e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.78321375290628 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.018491446933614056, dt = 0.001868973738870141
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.4%)
   LB compute        : 307.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.5%)
Info: cfl dt = 0.0018606402342983626                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4411e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.59520234969783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020360420672484197, dt = 0.0018606402342983626
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 1782.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 267.18 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.6%)
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    | 4.4259e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.236488634995396 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02222106090678256, dt = 0.0018595274236405425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 237.17 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1311.00 ns (57.1%)
Info: cfl dt = 0.0018634342013967191                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0730e+05 | 65536 |      2 | 1.609e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.60467919702968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024080588330423102, dt = 0.0018634342013967191
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.5%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 238.13 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (60.9%)
Info: cfl dt = 0.0018470249392936802                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3361e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.384993096404415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02594402253181982, dt = 0.0018470249392936802
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 227.15 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.3%)
Info: cfl dt = 0.0018380986030018343                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5496e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 46.16027935670335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0277910474711135, dt = 0.0018380986030018343
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 265.98 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.8%)
Info: cfl dt = 0.0018364522651864858                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5138e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.57573635483495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029629146074115337, dt = 0.0018364522651864858
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 275.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.4%)
Info: cfl dt = 0.0018308404082809989                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4710e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.10328042126353 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03146559833930182, dt = 0.0018308404082809989
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 281.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (61.7%)
Info: cfl dt = 0.0018132058078483473                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4810e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.065882495159215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03329643874758282, dt = 0.0018132058078483473
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1643.00 ns (0.5%)
   LB compute        : 292.27 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.0%)
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    | 3.9317e+05 | 65536 |      2 | 1.667e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.16100564408723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03510964455543117, dt = 0.0018069989569941447
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 1862.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.5%)
   LB compute        : 288.52 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (63.4%)
Info: cfl dt = 0.001807879734518125                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4395e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.06704726110171 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036916643512425316, dt = 0.001807879734518125
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 1792.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 280.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.8%)
Info: cfl dt = 0.0018048658370763166                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5038e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.72747630922869 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03872452324694344, dt = 0.0018048658370763166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 263.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.0%)
Info: cfl dt = 0.0017869421115257107                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5201e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.81466361387521 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.040529389084019755, dt = 0.0017869421115257107
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 276.56 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.4%)
Info: cfl dt = 0.0017801824804279472                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4931e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.10457558517077 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04231633119554547, dt = 0.0017801824804279472
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 252.67 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.6%)
Info: cfl dt = 0.001780351072519294                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5268e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.267068572984215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04409651367597341, dt = 0.001780351072519294
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 17.01 us   (5.5%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 273.44 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.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    | 4.5020e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.02820891270022 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04587686474849271, dt = 0.001785022141096262
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 292.99 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.9%)
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    | 4.5023e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.147299698206474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04766188688958897, dt = 0.0017684075018984259
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.7%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1352.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 226.30 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (61.5%)
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    | 4.5256e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.962260850924466 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0494302943914874, dt = 0.00175868551240217
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 278.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.7%)
Info: cfl dt = 0.0017565307361034092                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4736e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.21861422156098 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05118897990388957, dt = 0.0017565307361034092
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 281.24 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (64.5%)
Info: cfl dt = 0.0017594862686143875                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2406e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.9174795119163 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.052945510639992976, dt = 0.0017594862686143875
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.6%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 240.41 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (65.7%)
Info: cfl dt = 0.0017553973403803857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3729e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.26513144157969 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05470499690860736, dt = 0.0017553973403803857
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 250.06 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.4%)
Info: cfl dt = 0.0017432187244815975                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4025e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.45151335127314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056460394248987744, dt = 0.0017432187244815975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (1.9%)
   patch tree reduce : 1772.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 279.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.5%)
Info: cfl dt = 0.0017385942621927087                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3154e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.32303898923569 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05820361297346934, dt = 0.0017385942621927087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 285.32 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.0%)
Info: cfl dt = 0.0017391195338796969                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0922e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.081862333375575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05994220723566205, dt = 0.0017391195338796969
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1251.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 242.20 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.7%)
Info: cfl dt = 0.001743214837635062                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3258e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.325837455161526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.061681326769541744, dt = 0.001743214837635062
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 279.96 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.4%)
Info: cfl dt = 0.0017334290485509615                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2850e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.03241041590419 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06342454160717681, dt = 0.0017334290485509615
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.5%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 259.28 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (55.3%)
Info: cfl dt = 0.001726361888794154                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3411e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.336260027014944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06515797065572777, dt = 0.001726361888794154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.5%)
   patch tree reduce : 1702.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 236.97 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.9%)
Info: cfl dt = 0.0017246230917072956                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9466e+05 | 65536 |      2 | 1.661e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.426391928157564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06688433254452193, dt = 0.0017246230917072956
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.1%)
   patch tree reduce : 1862.00 ns (0.6%)
   gen split merge   : 1463.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 293.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.8%)
Info: cfl dt = 0.001726611284768283                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3806e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.50003427439639 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06860895563622922, dt = 0.001726611284768283
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 286.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (63.3%)
Info: cfl dt = 0.0017290879300486015                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3211e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.499498914191832 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0703355669209975, dt = 0.0017290879300486015
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1582.00 ns (0.5%)
   LB compute        : 271.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.3%)
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    | 3.7224e+05 | 65536 |      2 | 1.761e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.35554093456092 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0720646548510461, dt = 0.0017191280394554377
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 303.72 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.6%)
Info: cfl dt = 0.0017151471775685963                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3696e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.26431571578991 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07378378289050154, dt = 0.0017151471775685963
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 287.31 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (59.3%)
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    | 3.2089e+05 | 65536 |      2 | 2.042e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.232675753071266 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07549893006807014, dt = 0.0017149228309445426
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 310.07 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.2%)
Info: cfl dt = 0.001717371481878813                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4504e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.92463166715322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07721385289901468, dt = 0.001717371481878813
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 289.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.8%)
Info: cfl dt = 0.0017167048819835972                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1175e+05 | 65536 |      2 | 1.592e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.84364450166758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07893122438089349, dt = 0.0017167048819835972
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.91 us    (2.1%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 262.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.0%)
Info: cfl dt = 0.0017101068125198087                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3869e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.36905479598214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08064792926287709, dt = 0.0017101068125198087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 288.81 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (60.0%)
Info: cfl dt = 0.0017078381017851128                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7969e+05 | 65536 |      2 | 1.726e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.667879418970095 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08235803607539689, dt = 0.0017078381017851128
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 331.44 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.4%)
Info: cfl dt = 0.0017083438162299757                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4000e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.2786512022285 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.084065874177182, dt = 0.0017083438162299757
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 1762.00 ns (0.5%)
   gen split merge   : 1393.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 299.17 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (61.3%)
Info: cfl dt = 0.0017108556155540943                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4636e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.887264398629235 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08577421799341198, dt = 0.0017108556155540943
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.84 us   (3.7%)
   patch tree reduce : 3.40 us    (1.0%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 316.12 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.7%)
Info: cfl dt = 0.0017086170733692776                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4914e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.21019471136339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08748507360896607, dt = 0.0017086170733692776
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 296.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (57.3%)
Info: cfl dt = 0.001704148632575851                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4866e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.109775963146 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08919369068233535, dt = 0.001704148632575851
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 285.18 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (60.1%)
Info: cfl dt = 0.0017028566622987406                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4874e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.00758644684839 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0908978393149112, dt = 0.0017028566622987406
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 263.96 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.6%)
Info: cfl dt = 0.001703642191318931                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7771e+05 | 65536 |      2 | 1.735e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.33162178829956 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09260069597720995, dt = 0.001703642191318931
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 284.83 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (63.6%)
Info: cfl dt = 0.001705962546690105                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3837e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.02421055670303 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09430433816852887, dt = 0.001705962546690105
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 271.72 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (61.0%)
Info: cfl dt = 0.0017034728706475893                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4143e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.36682732420012 (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     : 6.52 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 303.80 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.2%)
Info: cfl dt = 0.0017003923869213546                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4308e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.46105255223305 (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     : 6.33 us    (2.0%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 299.72 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.8%)
Info: cfl dt = 0.0016996820181639789                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4688e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.74115471515898 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09941416597278792, dt = 0.0016996820181639789
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 1702.00 ns (0.6%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 267.85 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (57.3%)
Info: cfl dt = 0.001700546949989772                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4211e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.278067087507765 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1011138479909519, dt = 0.001700546949989772
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 1723.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 271.20 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.5%)
Info: cfl dt = 0.0017026162574477754                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7125e+05 | 65536 |      2 | 1.765e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.679744814491876 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10281439494094168, dt = 0.0017026162574477754
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 288.00 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.3%)
Info: cfl dt = 0.0017002768026909297                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4319e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.45057956965977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10451701119838945, dt = 0.0017002768026909297
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.5%)
   LB compute        : 290.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.5%)
Info: cfl dt = 0.0016981265706875353                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4462e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.52743861567933 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10621728800108038, dt = 0.0016981265706875353
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 285.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.1%)
Info: cfl dt = 0.001697736282701456                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9206e+05 | 65536 |      2 | 1.672e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.57198653974539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10791541457176791, dt = 0.001697736282701456
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 261.88 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.6%)
Info: cfl dt = 0.0016985555549894058                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5258e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.20709336216424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10961315085446936, dt = 0.0016985555549894058
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 1743.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 268.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (61.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    | 3.0891e+05 | 65536 |      2 | 2.122e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 28.822833164689623 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11131170640945877, dt = 0.0017003248485142558
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 1703.00 ns (0.5%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 295.12 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.6%)
Info: cfl dt = 0.001698461086538937                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3743e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.85687936780185 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11301203125797303, dt = 0.001698461086538937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 281.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (63.0%)
Info: cfl dt = 0.0016969265772841695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3597e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.67522115764103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11471049234451197, dt = 0.0016969265772841695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.4%)
   LB compute        : 266.97 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.8%)
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    | 3.7887e+05 | 65536 |      2 | 1.730e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.31635417351238 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11640741892179614, dt = 0.0016966973860188487
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 1772.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 279.93 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (60.9%)
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    | 4.3346e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.39992950424506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11810411630781499, dt = 0.0016974085466070425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 268.01 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (59.7%)
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    | 4.1165e+05 | 65536 |      2 | 1.592e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.38262233542099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11980152485442204, dt = 0.0016988582241135434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 271.75 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.2%)
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    | 4.4379e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.41487696098348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12150038307853558, dt = 0.0016977464607493596
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 265.93 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (61.8%)
Info: cfl dt = 0.0016966110639823064                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4158e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.18135156965323 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12319812953928494, dt = 0.0016966110639823064
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 268.80 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.9%)
Info: cfl dt = 0.0016964559446988026                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0669e+05 | 65536 |      2 | 1.611e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.902398326393566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12489474060326725, dt = 0.0016964559446988026
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 315.24 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (63.9%)
Info: cfl dt = 0.001697040168812501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3772e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.79114134061836 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12659119654796605, dt = 0.001697040168812501
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 268.80 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.9%)
Info: cfl dt = 0.0016981873838016466                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2005e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.15799389244746 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12828823671677855, dt = 0.0016981873838016466
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 1693.00 ns (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 279.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.8%)
Info: cfl dt = 0.00169772861864138                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1715e+05 | 65536 |      2 | 2.066e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.584972535323335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1299864241005802, dt = 0.00169772861864138
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.8%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 317.31 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.7%)
Info: cfl dt = 0.0016968477262804024                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3281e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.037605133582506 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13168415271922157, dt = 0.0016968477262804024
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1532.00 ns (0.5%)
   LB compute        : 262.61 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (57.4%)
Info: cfl dt = 0.0016967287147737486                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2216e+05 | 65536 |      2 | 2.034e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.02869545547008 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13338100044550197, dt = 0.0016967287147737486
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 345.41 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.8%)
Info: cfl dt = 0.0016971546656561034                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4309e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.297386718680194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13507772916027572, dt = 0.0016971546656561034
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 290.63 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
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    | 4.5331e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.26110794513529 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1367748838259318, dt = 0.001698018200167691
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 249.82 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.2%)
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    | 3.5684e+05 | 65536 |      2 | 1.837e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.28465173376251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1384729020260995, dt = 0.0016979543922550978
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.45 us    (2.8%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 244.59 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (60.9%)
Info: cfl dt = 0.0016972359111011633                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4314e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.3318473996128 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14017085641835458, dt = 0.0016972359111011633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 279.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.2%)
Info: cfl dt = 0.001697081404857013                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1105e+05 | 65536 |      2 | 2.107e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.000025943015512 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14186809232945574, dt = 0.001697081404857013
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 346.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (64.2%)
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    | 2.9690e+05 | 65536 |      2 | 2.207e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 27.677942177137517 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14356517373431277, dt = 0.0016973449360672378
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.9%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 314.90 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.8%)
Info: cfl dt = 0.001697943269561946                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4383e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.38193402183913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14526251867038, dt = 0.001697943269561946
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 274.45 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.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    | 3.8410e+05 | 65536 |      2 | 1.706e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.82575000053338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14696046193994194, dt = 0.001698396870397288
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.3%)
   patch tree reduce : 1712.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 248.38 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (60.3%)
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.4175e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.21358405419291 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14865885881033924, dt = 0.001697755879876424
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 244.30 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 6.87 us    (2.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (59.0%)
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    | 3.1165e+05 | 65536 |      2 | 2.103e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.06417553331275 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15035661469021566, dt = 0.0016975474753640188
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 317.93 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.7%)
Info: cfl dt = 0.0016976726358584218                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2087e+05 | 65536 |      2 | 2.042e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.9212089586621 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15205416216557968, dt = 0.0016976726358584218
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.7%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 351.64 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.6%)
Info: cfl dt = 0.0016980593347007712                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7330e+05 | 65536 |      2 | 1.756e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.81240887181015 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15375183480143811, dt = 0.0016980593347007712
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 255.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1383.00 ns (59.3%)
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    | 3.7297e+05 | 65536 |      2 | 1.757e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.789622108218836 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15544989413613888, dt = 0.0016986681623133862
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 289.06 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.5%)
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    | 4.2832e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.9670812001216 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15714856229845228, dt = 0.001698491568394623
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 267.05 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.7%)
Info: cfl dt = 0.0016982345701905392                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2861e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.98959638939909 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15884705386684692, dt = 0.0016982345701905392
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 248.76 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.2%)
Info: cfl dt = 0.0016982273186220678                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1407e+05 | 65536 |      2 | 2.087e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.298836265288834 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16054528843703744, dt = 0.0016982273186220678
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 303.64 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.3%)
Info: cfl dt = 0.0016984266379888343                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2355e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.51183018582599 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1622435157556595, dt = 0.0016984266379888343
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1912.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 274.85 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (9.5%)
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    | 4.3482e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.56795181779227 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16394194239364834, dt = 0.0016988025019538699
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 256.86 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (52.6%)
Info: cfl dt = 0.0016993446786721235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7006e+05 | 65536 |      2 | 1.771e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.5337265557953 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1656407448956022, dt = 0.0016993446786721235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 1702.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 268.33 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.3%)
Info: cfl dt = 0.0016991499464887646                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6832e+05 | 65536 |      2 | 1.779e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.38172103317553 (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     : 6.70 us    (2.5%)
   patch tree reduce : 1673.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 243.42 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1922.00 ns (61.5%)
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.1974e+05 | 65536 |      2 | 1.561e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.176889658799574 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16903923952076308, dt = 0.0016990574943381979
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 276.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.8%)
Info: cfl dt = 0.0016991220720931736                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3055e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.184356015469966 (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     : 6.56 us    (2.1%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 286.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.6%)
Info: cfl dt = 0.001699317468632058                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3935e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.00697993408453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17243741908719443, dt = 0.001699317468632058
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 255.00 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.2%)
Info: cfl dt = 0.0016996449187329289                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4052e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.121221183387306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17413673655582648, dt = 0.0016996449187329289
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 296.71 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.0%)
Info: cfl dt = 0.0016997294942707286                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4215e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.28100889355451 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1758363814745594, dt = 0.0016997294942707286
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 1753.00 ns (0.5%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 16.52 us   (5.0%)
   LB compute        : 291.28 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.2%)
Info: cfl dt = 0.0016995643511617984                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4144e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.21656651664001 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17753611096883012, dt = 0.0016995643511617984
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.7%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 238.81 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (58.2%)
Info: cfl dt = 0.0016995146248371955                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3718e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.814830031384204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17923567531999193, dt = 0.0016995146248371955
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 324.68 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (67.0%)
Info: cfl dt = 0.0016995686921680029                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4506e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.549883352153856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18093518994482913, dt = 0.0016995686921680029
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 291.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (60.8%)
Info: cfl dt = 0.0016997202499088                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3353e+05 | 65536 |      2 | 1.965e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.138589320764844 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18263475863699713, dt = 0.0016997202499088
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 1702.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 267.18 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.2%)
Info: cfl dt = 0.0016999668711730127                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8561e+05 | 65536 |      2 | 1.700e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.003385296936344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18433447888690593, dt = 0.0016999668711730127
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (1.6%)
   patch tree reduce : 1943.00 ns (0.4%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.3%)
   LB compute        : 415.87 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.3%)
Info: cfl dt = 0.0017002080226618502                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8099e+05 | 65536 |      2 | 1.720e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.57737298826728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18603444575807895, dt = 0.0017002080226618502
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 335.61 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.5%)
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    | 3.7304e+05 | 65536 |      2 | 1.757e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.83974449780771 (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     : 6.55 us    (2.0%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 313.80 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (57.8%)
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    | 4.4138e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.22049999061228 (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.96 us    (2.0%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 283.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.1%)
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    | 3.6551e+05 | 65536 |      2 | 1.793e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.133811154221725 (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     : 6.12 us    (2.1%)
   patch tree reduce : 1942.00 ns (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 264.62 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.9%)
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    | 3.1732e+05 | 65536 |      2 | 2.065e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.63439910362724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19283492769548016, dt = 0.001700215680423498
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.6%)
   patch tree reduce : 1902.00 ns (0.5%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 374.70 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.8%)
Info: cfl dt = 0.001700394627228016                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3096e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.250058789357595 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19453514337590366, dt = 0.001700394627228016
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.4%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 274.02 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (63.7%)
Info: cfl dt = 0.0017006626140353416                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9064e+05 | 65536 |      2 | 1.678e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.48794295848087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19623553800313168, dt = 0.0017006626140353416
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 268.00 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.9%)
Info: cfl dt = 0.0017006239404694168                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2344e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.55802377457645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19793620061716702, dt = 0.0017006239404694168
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1513.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 265.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (65.2%)
Info: cfl dt = 0.001700577395624883                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4010e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.113373241539854 (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     : 6.42 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 267.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.4%)
Info: cfl dt = 0.00170057499260955                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9956e+05 | 65536 |      2 | 1.640e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.9711190333175805 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 86.776048708 (s)                                         [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999942,
       0.99999942, 0.99999942, 0.99999942, 0.99999778, 0.99999778,
       0.99999778, 0.99999778, 0.99999202, 0.99999202, 0.99999202,
       0.99999202, 0.99997316, 0.99997316, 0.99997316, 0.99997316,
       0.99991602, 0.99991602, 0.99991602, 0.99991602, 0.9997563 ,
       0.9997563 , 0.9997563 , 0.9997563 , 0.9993467 , 0.9993467 ,
       0.9993467 , 0.9993467 , 0.99838817, 0.99838817, 0.99838817,
       0.99838817, 0.99635204, 0.99635204, 0.99635204, 0.99635204,
       0.99244104, 0.99244104, 0.99244104, 0.99244104, 0.9856563 ,
       0.9856563 , 0.9856563 , 0.9856563 , 0.97499773, 0.97499773,
       0.97499773, 0.97499773, 0.95972818, 0.95972818, 0.95972818,
       0.95972818, 0.93956535, 0.93956535, 0.93956535, 0.93956535,
       0.91470956, 0.91470956, 0.91470956, 0.91470956, 0.88572617,
       0.88572617, 0.88572617, 0.88572617, 0.85336749, 0.85336749,
       0.85336749, 0.85336749, 0.8183986 , 0.8183986 , 0.8183986 ,
       0.8183986 , 0.78138933, 0.78138933, 0.78138933, 0.78138933,
       0.74190427, 0.74190427, 0.74190427, 0.74190427, 0.68069561,
       0.68069561, 0.68069561, 0.68069561, 0.64567578, 0.64567578,
       0.64567578, 0.64567578, 0.62072799, 0.62072799, 0.62072799,
       0.62072799, 0.60234245, 0.60234245, 0.60234245, 0.60234245,
       0.58959115, 0.58959115, 0.58959115, 0.58959115, 0.58159638,
       0.58159638, 0.58159638, 0.58159638, 0.57703206, 0.57703206,
       0.57703206, 0.57703206, 0.5742342 , 0.5742342 , 0.5742342 ,
       0.5742342 , 0.57154338, 0.57154338, 0.57154338, 0.57154338,
       0.56752869, 0.56752869, 0.56752869, 0.56752869, 0.56100982,
       0.56100982, 0.56100982, 0.56100982, 0.55104138, 0.55104138,
       0.55104138, 0.55104138, 0.5369988 , 0.5369988 , 0.5369988 ,
       0.5369988 , 0.51874878, 0.51874878, 0.51874878, 0.51874878,
       0.49679082, 0.49679082, 0.49679082, 0.49679082, 0.4722612 ,
       0.4722612 , 0.4722612 , 0.4722612 , 0.44675753, 0.44675753,
       0.44675753, 0.44675753, 0.42202434, 0.42202434, 0.42202434,
       0.42202434, 0.39959589, 0.39959589, 0.39959589, 0.39959589,
       0.38049936, 0.38049936, 0.38049936, 0.38049936, 0.36508019,
       0.36508019, 0.36508019, 0.36508019, 0.35299013, 0.35299013,
       0.35299013, 0.35299013, 0.34303431, 0.34303431, 0.34303431,
       0.34303431, 0.33311509, 0.33311509, 0.33311509, 0.33311509,
       0.32011436, 0.32011436, 0.32011436, 0.32011436, 0.29976301,
       0.29976301, 0.29976301, 0.29976301, 0.2678043 , 0.2678043 ,
       0.2678043 , 0.2678043 , 0.22419984, 0.22419984, 0.22419984,
       0.22419984, 0.17832614, 0.17832614, 0.17832614, 0.17832614,
       0.14528472, 0.14528472, 0.14528472, 0.14528472, 0.13048361,
       0.13048361, 0.13048361, 0.13048361, 0.12620226, 0.12620226,
       0.12620226, 0.12620226, 0.12524229, 0.12524229, 0.12524229,
       0.12524229, 0.12504738, 0.12504738, 0.12504738, 0.12504738,
       0.12500914, 0.12500914, 0.12500914, 0.12500914, 0.12500174,
       0.12500174, 0.12500174, 0.12500174, 0.12500033, 0.12500033,
       0.12500033, 0.12500033, 0.12500006, 0.12500006, 0.12500006,
       0.12500006, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000167e-01, 7.50000167e-01, 7.50000167e-01, 7.50000167e-01,
       7.50000683e-01, 7.50000683e-01, 7.50000683e-01, 7.50000683e-01,
       7.50002625e-01, 7.50002625e-01, 7.50002625e-01, 7.50002625e-01,
       7.50009447e-01, 7.50009447e-01, 7.50009447e-01, 7.50009447e-01,
       7.50031758e-01, 7.50031758e-01, 7.50031758e-01, 7.50031758e-01,
       7.50099366e-01, 7.50099366e-01, 7.50099366e-01, 7.50099366e-01,
       7.50288337e-01, 7.50288337e-01, 7.50288337e-01, 7.50288337e-01,
       7.50772988e-01, 7.50772988e-01, 7.50772988e-01, 7.50772988e-01,
       7.51907376e-01, 7.51907376e-01, 7.51907376e-01, 7.51907376e-01,
       7.54318699e-01, 7.54318699e-01, 7.54318699e-01, 7.54318699e-01,
       7.58958083e-01, 7.58958083e-01, 7.58958083e-01, 7.58958083e-01,
       7.67034111e-01, 7.67034111e-01, 7.67034111e-01, 7.67034111e-01,
       7.79799756e-01, 7.79799756e-01, 7.79799756e-01, 7.79799756e-01,
       7.98268450e-01, 7.98268450e-01, 7.98268450e-01, 7.98268450e-01,
       8.23003448e-01, 8.23003448e-01, 8.23003448e-01, 8.23003448e-01,
       8.54075522e-01, 8.54075522e-01, 8.54075522e-01, 8.54075522e-01,
       8.91170219e-01, 8.91170219e-01, 8.91170219e-01, 8.91170219e-01,
       9.33761223e-01, 9.33761223e-01, 9.33761223e-01, 9.33761223e-01,
       9.81292612e-01, 9.81292612e-01, 9.81292612e-01, 9.81292612e-01,
       1.03344347e+00, 1.03344347e+00, 1.03344347e+00, 1.03344347e+00,
       1.09134872e+00, 1.09134872e+00, 1.09134872e+00, 1.09134872e+00,
       1.18628677e+00, 1.18628677e+00, 1.18628677e+00, 1.18628677e+00,
       1.24355729e+00, 1.24355729e+00, 1.24355729e+00, 1.24355729e+00,
       1.28577631e+00, 1.28577631e+00, 1.28577631e+00, 1.28577631e+00,
       1.31763060e+00, 1.31763060e+00, 1.31763060e+00, 1.31763060e+00,
       1.33994607e+00, 1.33994607e+00, 1.33994607e+00, 1.33994607e+00,
       1.35366900e+00, 1.35366900e+00, 1.35366900e+00, 1.35366900e+00,
       1.36065228e+00, 1.36065228e+00, 1.36065228e+00, 1.36065228e+00,
       1.36330406e+00, 1.36330406e+00, 1.36330406e+00, 1.36330406e+00,
       1.36377802e+00, 1.36377802e+00, 1.36377802e+00, 1.36377802e+00,
       1.36346214e+00, 1.36346214e+00, 1.36346214e+00, 1.36346214e+00,
       1.36300839e+00, 1.36300839e+00, 1.36300839e+00, 1.36300839e+00,
       1.36262613e+00, 1.36262613e+00, 1.36262613e+00, 1.36262613e+00,
       1.36234022e+00, 1.36234022e+00, 1.36234022e+00, 1.36234022e+00,
       1.36212440e+00, 1.36212440e+00, 1.36212440e+00, 1.36212440e+00,
       1.36194570e+00, 1.36194570e+00, 1.36194570e+00, 1.36194570e+00,
       1.36176870e+00, 1.36176870e+00, 1.36176870e+00, 1.36176870e+00,
       1.36154433e+00, 1.36154433e+00, 1.36154433e+00, 1.36154433e+00,
       1.36118699e+00, 1.36118699e+00, 1.36118699e+00, 1.36118699e+00,
       1.36053007e+00, 1.36053007e+00, 1.36053007e+00, 1.36053007e+00,
       1.35923531e+00, 1.35923531e+00, 1.35923531e+00, 1.35923531e+00,
       1.35660636e+00, 1.35660636e+00, 1.35660636e+00, 1.35660636e+00,
       1.35121276e+00, 1.35121276e+00, 1.35121276e+00, 1.35121276e+00,
       1.34015167e+00, 1.34015167e+00, 1.34015167e+00, 1.34015167e+00,
       1.31767491e+00, 1.31767491e+00, 1.31767491e+00, 1.31767491e+00,
       1.27285288e+00, 1.27285288e+00, 1.27285288e+00, 1.27285288e+00,
       1.18653029e+00, 1.18653029e+00, 1.18653029e+00, 1.18653029e+00,
       1.03082789e+00, 1.03082789e+00, 1.03082789e+00, 1.03082789e+00,
       7.82059657e-01, 7.82059657e-01, 7.82059657e-01, 7.82059657e-01,
       4.62795165e-01, 4.62795165e-01, 4.62795165e-01, 4.62795165e-01,
       1.85035678e-01, 1.85035678e-01, 1.85035678e-01, 1.85035678e-01,
       4.91064989e-02, 4.91064989e-02, 4.91064989e-02, 4.91064989e-02,
       1.04300500e-02, 1.04300500e-02, 1.04300500e-02, 1.04300500e-02,
       2.06834747e-03, 2.06834747e-03, 2.06834747e-03, 2.06834747e-03,
       4.02159204e-04, 4.02159204e-04, 4.02159204e-04, 4.02159204e-04,
       7.74241901e-05, 7.74241901e-05, 7.74241901e-05, 7.74241901e-05,
       1.47732907e-05, 1.47732907e-05, 1.47732907e-05, 1.47732907e-05,
       2.79133251e-06, 2.79133251e-06, 2.79133251e-06, 2.79133251e-06,
       5.21558611e-07, 5.21558611e-07, 5.21558611e-07, 5.21558611e-07,
       9.62314180e-08, 9.62314180e-08, 9.62314180e-08, 9.62314180e-08,
       1.75063215e-08, 1.75063215e-08, 1.75063215e-08, 1.75063215e-08,
       3.13525934e-09, 3.13525934e-09, 3.13525934e-09, 3.13525934e-09,
       5.51945459e-10, 5.51945459e-10, 5.51945459e-10, 5.51945459e-10,
       9.53728523e-11, 9.53728523e-11, 9.53728523e-11]), 'P': array([0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999919,
       0.99999919, 0.99999919, 0.99999919, 0.99999689, 0.99999689,
       0.99999689, 0.99999689, 0.99998882, 0.99998882, 0.99998882,
       0.99998882, 0.99996242, 0.99996242, 0.99996242, 0.99996242,
       0.99988243, 0.99988243, 0.99988243, 0.99988243, 0.99965888,
       0.99965888, 0.99965888, 0.99965888, 0.99908571, 0.99908571,
       0.99908571, 0.99908571, 0.99774515, 0.99774515, 0.99774515,
       0.99774515, 0.99490042, 0.99490042, 0.99490042, 0.99490042,
       0.98944596, 0.98944596, 0.98944596, 0.98944596, 0.98001064,
       0.98001064, 0.98001064, 0.98001064, 0.96525111, 0.96525111,
       0.96525111, 0.96525111, 0.94423203, 0.94423203, 0.94423203,
       0.94423203, 0.91669404, 0.91669404, 0.91669404, 0.91669404,
       0.88307786, 0.88307786, 0.88307786, 0.88307786, 0.84433672,
       0.84433672, 0.84433672, 0.84433672, 0.80166635, 0.80166635,
       0.80166635, 0.80166635, 0.75625152, 0.75625152, 0.75625152,
       0.75625152, 0.70899078, 0.70899078, 0.70899078, 0.70899078,
       0.65951543, 0.65951543, 0.65951543, 0.65951543, 0.58481452,
       0.58481452, 0.58481452, 0.58481452, 0.5433517 , 0.5433517 ,
       0.5433517 , 0.5433517 , 0.51442502, 0.51442502, 0.51442502,
       0.51442502, 0.49348741, 0.49348741, 0.49348741, 0.49348741,
       0.47926376, 0.47926376, 0.47926376, 0.47926376, 0.4706976 ,
       0.4706976 , 0.4706976 , 0.4706976 , 0.46639387, 0.46639387,
       0.46639387, 0.46639387, 0.46477369, 0.46477369, 0.46477369,
       0.46477369, 0.46449143, 0.46449143, 0.46449143, 0.46449143,
       0.46469357, 0.46469357, 0.46469357, 0.46469357, 0.46498071,
       0.46498071, 0.46498071, 0.46498071, 0.46522404, 0.46522404,
       0.46522404, 0.46522404, 0.46540634, 0.46540634, 0.46540634,
       0.46540634, 0.46553884, 0.46553884, 0.46553884, 0.46553884,
       0.46563123, 0.46563123, 0.46563123, 0.46563123, 0.46568376,
       0.46568376, 0.46568376, 0.46568376, 0.46568347, 0.46568347,
       0.46568347, 0.46568347, 0.46559619, 0.46559619, 0.46559619,
       0.46559619, 0.46534764, 0.46534764, 0.46534764, 0.46534764,
       0.46478249, 0.46478249, 0.46478249, 0.46478249, 0.46357931,
       0.46357931, 0.46357931, 0.46357931, 0.46108012, 0.46108012,
       0.46108012, 0.46108012, 0.4559703 , 0.4559703 , 0.4559703 ,
       0.4559703 , 0.44573327, 0.44573327, 0.44573327, 0.44573327,
       0.42592481, 0.42592481, 0.42592481, 0.42592481, 0.38995176,
       0.38995176, 0.38995176, 0.38995176, 0.33171722, 0.33171722,
       0.33171722, 0.33171722, 0.25409808, 0.25409808, 0.25409808,
       0.25409808, 0.1771826 , 0.1771826 , 0.1771826 , 0.1771826 ,
       0.126735  , 0.126735  , 0.126735  , 0.126735  , 0.10663112,
       0.10663112, 0.10663112, 0.10663112, 0.10138491, 0.10138491,
       0.10138491, 0.10138491, 0.1002738 , 0.1002738 , 0.1002738 ,
       0.1002738 , 0.10005321, 0.10005321, 0.10005321, 0.10005321,
       0.10001024, 0.10001024, 0.10001024, 0.10001024, 0.10000195,
       0.10000195, 0.10000195, 0.10000195, 0.10000037, 0.10000037,
       0.10000037, 0.10000037, 0.10000007, 0.10000007, 0.10000007,
       0.10000007, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_rusanov': [{'rho': array([0.99999871, 0.99999871, 0.99999871, 0.99999871, 0.99999661,
       0.99999661, 0.99999661, 0.99999661, 0.99998966, 0.99998966,
       0.99998966, 0.99998966, 0.99997049, 0.99997049, 0.99997049,
       0.99997049, 0.99992058, 0.99992058, 0.99992058, 0.99992058,
       0.99979749, 0.99979749, 0.99979749, 0.99979749, 0.99951129,
       0.99951129, 0.99951129, 0.99951129, 0.99888599, 0.99888599,
       0.99888599, 0.99888599, 0.9976064 , 0.9976064 , 0.9976064 ,
       0.9976064 , 0.99516153, 0.99516153, 0.99516153, 0.99516153,
       0.99081297, 0.99081297, 0.99081297, 0.99081297, 0.98362904,
       0.98362904, 0.98362904, 0.98362904, 0.9726153 , 0.9726153 ,
       0.9726153 , 0.9726153 , 0.95692666, 0.95692666, 0.95692666,
       0.95692666, 0.93608458, 0.93608458, 0.93608458, 0.93608458,
       0.91009674, 0.91009674, 0.91009674, 0.91009674, 0.87942017,
       0.87942017, 0.87942017, 0.87942017, 0.84480243, 0.84480243,
       0.84480243, 0.84480243, 0.80717174, 0.80717174, 0.80717174,
       0.80717174, 0.76833323, 0.76833323, 0.76833323, 0.76833323,
       0.7317958 , 0.7317958 , 0.7317958 , 0.7317958 , 0.69866292,
       0.69866292, 0.69866292, 0.69866292, 0.66877266, 0.66877266,
       0.66877266, 0.66877266, 0.64250712, 0.64250712, 0.64250712,
       0.64250712, 0.62085534, 0.62085534, 0.62085534, 0.62085534,
       0.60473075, 0.60473075, 0.60473075, 0.60473075, 0.59427383,
       0.59427383, 0.59427383, 0.59427383, 0.58874167, 0.58874167,
       0.58874167, 0.58874167, 0.58661231, 0.58661231, 0.58661231,
       0.58661231, 0.58586097, 0.58586097, 0.58586097, 0.58586097,
       0.58476947, 0.58476947, 0.58476947, 0.58476947, 0.58158321,
       0.58158321, 0.58158321, 0.58158321, 0.57471343, 0.57471343,
       0.57471343, 0.57471343, 0.56327381, 0.56327381, 0.56327381,
       0.56327381, 0.54639053, 0.54639053, 0.54639053, 0.54639053,
       0.52240684, 0.52240684, 0.52240684, 0.52240684, 0.48899281,
       0.48899281, 0.48899281, 0.48899281, 0.4463966 , 0.4463966 ,
       0.4463966 , 0.4463966 , 0.40411539, 0.40411539, 0.40411539,
       0.40411539, 0.37294067, 0.37294067, 0.37294067, 0.37294067,
       0.35182753, 0.35182753, 0.35182753, 0.35182753, 0.33895289,
       0.33895289, 0.33895289, 0.33895289, 0.33221897, 0.33221897,
       0.33221897, 0.33221897, 0.3294285 , 0.3294285 , 0.3294285 ,
       0.3294285 , 0.32860094, 0.32860094, 0.32860094, 0.32860094,
       0.32743466, 0.32743466, 0.32743466, 0.32743466, 0.31726988,
       0.31726988, 0.31726988, 0.31726988, 0.27001934, 0.27001934,
       0.27001934, 0.27001934, 0.17357126, 0.17357126, 0.17357126,
       0.17357126, 0.13098555, 0.13098555, 0.13098555, 0.13098555,
       0.12551968, 0.12551968, 0.12551968, 0.12551968, 0.12504027,
       0.12504027, 0.12504027, 0.12504027, 0.12500303, 0.12500303,
       0.12500303, 0.12500303, 0.12500023, 0.12500023, 0.12500023,
       0.12500023, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50001531e-01, 7.50001531e-01, 7.50001531e-01, 7.50001531e-01,
       7.50004007e-01, 7.50004007e-01, 7.50004007e-01, 7.50004007e-01,
       7.50012237e-01, 7.50012237e-01, 7.50012237e-01, 7.50012237e-01,
       7.50034917e-01, 7.50034917e-01, 7.50034917e-01, 7.50034917e-01,
       7.50093968e-01, 7.50093968e-01, 7.50093968e-01, 7.50093968e-01,
       7.50239615e-01, 7.50239615e-01, 7.50239615e-01, 7.50239615e-01,
       7.50578307e-01, 7.50578307e-01, 7.50578307e-01, 7.50578307e-01,
       7.51318450e-01, 7.51318450e-01, 7.51318450e-01, 7.51318450e-01,
       7.52833953e-01, 7.52833953e-01, 7.52833953e-01, 7.52833953e-01,
       7.55733191e-01, 7.55733191e-01, 7.55733191e-01, 7.55733191e-01,
       7.60902495e-01, 7.60902495e-01, 7.60902495e-01, 7.60902495e-01,
       7.69479672e-01, 7.69479672e-01, 7.69479672e-01, 7.69479672e-01,
       7.82724068e-01, 7.82724068e-01, 7.82724068e-01, 7.82724068e-01,
       8.01796569e-01, 8.01796569e-01, 8.01796569e-01, 8.01796569e-01,
       8.27525186e-01, 8.27525186e-01, 8.27525186e-01, 8.27525186e-01,
       8.60261011e-01, 8.60261011e-01, 8.60261011e-01, 8.60261011e-01,
       8.99894497e-01, 8.99894497e-01, 8.99894497e-01, 8.99894497e-01,
       9.46030525e-01, 9.46030525e-01, 9.46030525e-01, 9.46030525e-01,
       9.98277447e-01, 9.98277447e-01, 9.98277447e-01, 9.98277447e-01,
       1.05334834e+00, 1.05334834e+00, 1.05334834e+00, 1.05334834e+00,
       1.10804511e+00, 1.10804511e+00, 1.10804511e+00, 1.10804511e+00,
       1.15927234e+00, 1.15927234e+00, 1.15927234e+00, 1.15927234e+00,
       1.20602476e+00, 1.20602476e+00, 1.20602476e+00, 1.20602476e+00,
       1.24734222e+00, 1.24734222e+00, 1.24734222e+00, 1.24734222e+00,
       1.28248845e+00, 1.28248845e+00, 1.28248845e+00, 1.28248845e+00,
       1.31052537e+00, 1.31052537e+00, 1.31052537e+00, 1.31052537e+00,
       1.33076480e+00, 1.33076480e+00, 1.33076480e+00, 1.33076480e+00,
       1.34415463e+00, 1.34415463e+00, 1.34415463e+00, 1.34415463e+00,
       1.35305806e+00, 1.35305806e+00, 1.35305806e+00, 1.35305806e+00,
       1.35894065e+00, 1.35894065e+00, 1.35894065e+00, 1.35894065e+00,
       1.36185203e+00, 1.36185203e+00, 1.36185203e+00, 1.36185203e+00,
       1.36239557e+00, 1.36239557e+00, 1.36239557e+00, 1.36239557e+00,
       1.36215707e+00, 1.36215707e+00, 1.36215707e+00, 1.36215707e+00,
       1.36194266e+00, 1.36194266e+00, 1.36194266e+00, 1.36194266e+00,
       1.36206937e+00, 1.36206937e+00, 1.36206937e+00, 1.36206937e+00,
       1.36246607e+00, 1.36246607e+00, 1.36246607e+00, 1.36246607e+00,
       1.36297688e+00, 1.36297688e+00, 1.36297688e+00, 1.36297688e+00,
       1.36312897e+00, 1.36312897e+00, 1.36312897e+00, 1.36312897e+00,
       1.36298101e+00, 1.36298101e+00, 1.36298101e+00, 1.36298101e+00,
       1.36246641e+00, 1.36246641e+00, 1.36246641e+00, 1.36246641e+00,
       1.36157437e+00, 1.36157437e+00, 1.36157437e+00, 1.36157437e+00,
       1.36070130e+00, 1.36070130e+00, 1.36070130e+00, 1.36070130e+00,
       1.36003987e+00, 1.36003987e+00, 1.36003987e+00, 1.36003987e+00,
       1.35919056e+00, 1.35919056e+00, 1.35919056e+00, 1.35919056e+00,
       1.35638143e+00, 1.35638143e+00, 1.35638143e+00, 1.35638143e+00,
       1.34281703e+00, 1.34281703e+00, 1.34281703e+00, 1.34281703e+00,
       1.28083198e+00, 1.28083198e+00, 1.28083198e+00, 1.28083198e+00,
       1.03437248e+00, 1.03437248e+00, 1.03437248e+00, 1.03437248e+00,
       4.39845204e-01, 4.39845204e-01, 4.39845204e-01, 4.39845204e-01,
       5.63702448e-02, 5.63702448e-02, 5.63702448e-02, 5.63702448e-02,
       4.56728510e-03, 4.56728510e-03, 4.56728510e-03, 4.56728510e-03,
       3.44109702e-04, 3.44109702e-04, 3.44109702e-04, 3.44109702e-04,
       2.57117118e-05, 2.57117118e-05, 2.57117118e-05, 2.57117118e-05,
       1.91493931e-06, 1.91493931e-06, 1.91493931e-06, 1.91493931e-06,
       1.42183400e-07, 1.42183400e-07, 1.42183400e-07, 1.42183400e-07,
       1.05285748e-08, 1.05285748e-08, 1.05285748e-08, 1.05285748e-08,
       7.77701570e-10, 7.77701570e-10, 7.77701570e-10, 7.77701570e-10,
       5.73011541e-11, 5.73011541e-11, 5.73011541e-11, 5.73011541e-11,
       4.21117928e-12, 4.21117928e-12, 4.21117928e-12, 4.21117928e-12,
       3.08654210e-13, 3.08654210e-13, 3.08654210e-13, 3.08654210e-13,
       2.24724643e-14, 2.24724643e-14, 2.24724643e-14, 2.24724643e-14,
       1.61702291e-15, 1.61702291e-15, 1.61702291e-15, 1.61702291e-15,
       1.02454347e-16, 1.02454347e-16, 1.02454347e-16, 1.02454347e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([0.99999819, 0.99999819, 0.99999819, 0.99999819, 0.99999526,
       0.99999526, 0.99999526, 0.99999526, 0.99998552, 0.99998552,
       0.99998552, 0.99998552, 0.99995869, 0.99995869, 0.99995869,
       0.99995869, 0.99988882, 0.99988882, 0.99988882, 0.99988882,
       0.99971652, 0.99971652, 0.99971652, 0.99971652, 0.99931595,
       0.99931595, 0.99931595, 0.99931595, 0.9984411 , 0.9984411 ,
       0.9984411 , 0.9984411 , 0.99665195, 0.99665195, 0.99665195,
       0.99665195, 0.99323734, 0.99323734, 0.99323734, 0.99323734,
       0.98717551, 0.98717551, 0.98717551, 0.98717551, 0.97719106,
       0.97719106, 0.97719106, 0.97719106, 0.96195133, 0.96195133,
       0.96195133, 0.96195133, 0.94037646, 0.94037646, 0.94037646,
       0.94037646, 0.91194761, 0.91194761, 0.91194761, 0.91194761,
       0.87686269, 0.87686269, 0.87686269, 0.87686269, 0.83595614,
       0.83595614, 0.83595614, 0.83595614, 0.79042203, 0.79042203,
       0.79042203, 0.79042203, 0.74145147, 0.74145147, 0.74145147,
       0.74145147, 0.69147779, 0.69147779, 0.69147779, 0.69147779,
       0.64572403, 0.64572403, 0.64572403, 0.64572403, 0.60528213,
       0.60528213, 0.60528213, 0.60528213, 0.57010763, 0.57010763,
       0.57010763, 0.57010763, 0.5404967 , 0.5404967 , 0.5404967 ,
       0.5404967 , 0.51678706, 0.51678706, 0.51678706, 0.51678706,
       0.49867658, 0.49867658, 0.49867658, 0.49867658, 0.4853026 ,
       0.4853026 , 0.4853026 , 0.4853026 , 0.47607786, 0.47607786,
       0.47607786, 0.47607786, 0.47071083, 0.47071083, 0.47071083,
       0.47071083, 0.46816931, 0.46816931, 0.46816931, 0.46816931,
       0.46677659, 0.46677659, 0.46677659, 0.46677659, 0.46558153,
       0.46558153, 0.46558153, 0.46558153, 0.4647659 , 0.4647659 ,
       0.4647659 , 0.4647659 , 0.46441055, 0.46441055, 0.46441055,
       0.46441055, 0.46437878, 0.46437878, 0.46437878, 0.46437878,
       0.46459568, 0.46459568, 0.46459568, 0.46459568, 0.46499426,
       0.46499426, 0.46499426, 0.46499426, 0.46520033, 0.46520033,
       0.46520033, 0.46520033, 0.46528777, 0.46528777, 0.46528777,
       0.46528777, 0.46526662, 0.46526662, 0.46526662, 0.46526662,
       0.46508061, 0.46508061, 0.46508061, 0.46508061, 0.4649127 ,
       0.4649127 , 0.4649127 , 0.4649127 , 0.46486127, 0.46486127,
       0.46486127, 0.46486127, 0.4647071 , 0.4647071 , 0.4647071 ,
       0.4647071 , 0.46356721, 0.46356721, 0.46356721, 0.46356721,
       0.45731151, 0.45731151, 0.45731151, 0.45731151, 0.42928346,
       0.42928346, 0.42928346, 0.42928346, 0.33578024, 0.33578024,
       0.33578024, 0.33578024, 0.17249402, 0.17249402, 0.17249402,
       0.17249402, 0.10769716, 0.10769716, 0.10769716, 0.10769716,
       0.10060508, 0.10060508, 0.10060508, 0.10060508, 0.10004552,
       0.10004552, 0.10004552, 0.10004552, 0.1000034 , 0.1000034 ,
       0.1000034 , 0.1000034 , 0.10000025, 0.10000025, 0.10000025,
       0.10000025, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_hll': [{'rho': array([1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125]), 'vx': array([0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  ]), 'P': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999477, 0.99999477,
       0.99999477, 0.99999477, 0.99786485, 0.99786485, 0.99786485,
       0.99786485, 0.93485786, 0.93485786, 0.93485786, 0.93485786,
       0.40121931, 0.40121931, 0.40121931, 0.40121931, 0.15582104,
       0.15582104, 0.15582104, 0.15582104, 0.12524217, 0.12524217,
       0.12524217, 0.12524217, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75000582, 0.75000582,
       0.75000582, 0.75000582, 0.75222331, 0.75222331, 0.75222331,
       0.75222331, 0.81126632, 0.81126632, 0.81126632, 0.81126632,
       1.02140027, 1.02140027, 1.02140027, 1.02140027, 0.31355893,
       0.31355893, 0.31355893, 0.31355893, 0.0023764 , 0.0023764 ,
       0.0023764 , 0.0023764 , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999312, 0.99999312,
       0.99999312, 0.99999312, 0.99735755, 0.99735755, 0.99735755,
       0.99735755, 0.93228381, 0.93228381, 0.93228381, 0.93228381,
       0.39392227, 0.39392227, 0.39392227, 0.39392227, 0.14137148,
       0.14137148, 0.14137148, 0.14137148, 0.1003091 , 0.1003091 ,
       0.1003091 , 0.1003091 , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999593,
       0.99999593, 0.99999593, 0.99999593, 0.99976514, 0.99976514,
       0.99976514, 0.99976514, 0.99350557, 0.99350557, 0.99350557,
       0.99350557, 0.91229178, 0.91229178, 0.91229178, 0.91229178,
       0.5439655 , 0.5439655 , 0.5439655 , 0.5439655 , 0.26096859,
       0.26096859, 0.26096859, 0.26096859, 0.14372642, 0.14372642,
       0.14372642, 0.14372642, 0.12576866, 0.12576866, 0.12576866,
       0.12576866, 0.12501238, 0.12501238, 0.12501238, 0.12501238,
       0.12500005, 0.12500005, 0.12500005, 0.12500005, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000034e-01, 7.50000034e-01, 7.50000034e-01, 7.50000034e-01,
       7.50004712e-01, 7.50004712e-01, 7.50004712e-01, 7.50004712e-01,
       7.50264827e-01, 7.50264827e-01, 7.50264827e-01, 7.50264827e-01,
       7.56937682e-01, 7.56937682e-01, 7.56937682e-01, 7.56937682e-01,
       8.39140555e-01, 8.39140555e-01, 8.39140555e-01, 8.39140555e-01,
       1.20185078e+00, 1.20185078e+00, 1.20185078e+00, 1.20185078e+00,
       9.09724624e-01, 9.09724624e-01, 9.09724624e-01, 9.09724624e-01,
       1.82774882e-01, 1.82774882e-01, 1.82774882e-01, 1.82774882e-01,
       7.06720021e-03, 7.06720021e-03, 7.06720021e-03, 7.06720021e-03,
       1.07910808e-04, 1.07910808e-04, 1.07910808e-04, 1.07910808e-04,
       4.52081665e-07, 4.52081665e-07, 4.52081665e-07, 4.52081665e-07,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999442,
       0.99999442, 0.99999442, 0.99999442, 0.99968659, 0.99968659,
       0.99968659, 0.99968659, 0.99178136, 0.99178136, 0.99178136,
       0.99178136, 0.89903919, 0.89903919, 0.89903919, 0.89903919,
       0.51770741, 0.51770741, 0.51770741, 0.51770741, 0.2728004 ,
       0.2728004 , 0.2728004 , 0.2728004 , 0.12535917, 0.12535917,
       0.12535917, 0.12535917, 0.10093445, 0.10093445, 0.10093445,
       0.10093445, 0.10001427, 0.10001427, 0.10001427, 0.10001427,
       0.10000006, 0.10000006, 0.10000006, 0.10000006, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999923, 0.99999923, 0.99999923, 0.99999923, 0.99996861,
       0.99996861, 0.99996861, 0.99996861, 0.99921031, 0.99921031,
       0.99921031, 0.99921031, 0.98796713, 0.98796713, 0.98796713,
       0.98796713, 0.89633843, 0.89633843, 0.89633843, 0.89633843,
       0.62495402, 0.62495402, 0.62495402, 0.62495402, 0.36745601,
       0.36745601, 0.36745601, 0.36745601, 0.20859145, 0.20859145,
       0.20859145, 0.20859145, 0.13495091, 0.13495091, 0.13495091,
       0.13495091, 0.12554615, 0.12554615, 0.12554615, 0.12554615,
       0.12501743, 0.12501743, 0.12501743, 0.12501743, 0.12500034,
       0.12500034, 0.12500034, 0.12500034, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
       7.50000909e-01, 7.50000909e-01, 7.50000909e-01, 7.50000909e-01,
       7.50036531e-01, 7.50036531e-01, 7.50036531e-01, 7.50036531e-01,
       7.50902656e-01, 7.50902656e-01, 7.50902656e-01, 7.50902656e-01,
       7.63307867e-01, 7.63307867e-01, 7.63307867e-01, 7.63307867e-01,
       8.65269104e-01, 8.65269104e-01, 8.65269104e-01, 8.65269104e-01,
       1.24045354e+00, 1.24045354e+00, 1.24045354e+00, 1.24045354e+00,
       1.21114735e+00, 1.21114735e+00, 1.21114735e+00, 1.21114735e+00,
       6.72413161e-01, 6.72413161e-01, 6.72413161e-01, 6.72413161e-01,
       9.49710351e-02, 9.49710351e-02, 9.49710351e-02, 9.49710351e-02,
       4.89829591e-03, 4.89829591e-03, 4.89829591e-03, 4.89829591e-03,
       1.50276620e-04, 1.50276620e-04, 1.50276620e-04, 1.50276620e-04,
       2.85787671e-06, 2.85787671e-06, 2.85787671e-06, 2.85787671e-06,
       2.86001060e-08, 2.86001060e-08, 2.86001060e-08, 2.86001060e-08,
       9.82632001e-11, 9.82632001e-11, 9.82632001e-11, 9.82632001e-11,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99995678,
       0.99995678, 0.99995678, 0.99995678, 0.99893195, 0.99893195,
       0.99893195, 0.99893195, 0.98431021, 0.98431021, 0.98431021,
       0.98431021, 0.87225606, 0.87225606, 0.87225606, 0.87225606,
       0.57198082, 0.57198082, 0.57198082, 0.57198082, 0.38708981,
       0.38708981, 0.38708981, 0.38708981, 0.2169621 , 0.2169621 ,
       0.2169621 , 0.2169621 , 0.11307803, 0.11307803, 0.11307803,
       0.11307803, 0.10064828, 0.10064828, 0.10064828, 0.10064828,
       0.10001988, 0.10001988, 0.10001988, 0.10001988, 0.10000038,
       0.10000038, 0.10000038, 0.10000038, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999987, 0.99999987, 0.99999987, 0.99999987,
       0.99999553, 0.99999553, 0.99999553, 0.99999553, 0.99989298,
       0.99989298, 0.99989298, 0.99989298, 0.99825442, 0.99825442,
       0.99825442, 0.99825442, 0.98154523, 0.98154523, 0.98154523,
       0.98154523, 0.88346323, 0.88346323, 0.88346323, 0.88346323,
       0.66814286, 0.66814286, 0.66814286, 0.66814286, 0.450449  ,
       0.450449  , 0.450449  , 0.450449  , 0.30003012, 0.30003012,
       0.30003012, 0.30003012, 0.17291515, 0.17291515, 0.17291515,
       0.17291515, 0.12999501, 0.12999501, 0.12999501, 0.12999501,
       0.12530317, 0.12530317, 0.12530317, 0.12530317, 0.12501302,
       0.12501302, 0.12501302, 0.12501302, 0.1250004 , 0.1250004 ,
       0.1250004 , 0.1250004 , 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
       7.50005260e-01, 7.50005260e-01, 7.50005260e-01, 7.50005260e-01,
       7.50125177e-01, 7.50125177e-01, 7.50125177e-01, 7.50125177e-01,
       7.52016532e-01, 7.52016532e-01, 7.52016532e-01, 7.52016532e-01,
       7.70955544e-01, 7.70955544e-01, 7.70955544e-01, 7.70955544e-01,
       8.87963066e-01, 8.87963066e-01, 8.87963066e-01, 8.87963066e-01,
       1.23600978e+00, 1.23600978e+00, 1.23600978e+00, 1.23600978e+00,
       1.32985101e+00, 1.32985101e+00, 1.32985101e+00, 1.32985101e+00,
       1.08018999e+00, 1.08018999e+00, 1.08018999e+00, 1.08018999e+00,
       4.31751162e-01, 4.31751162e-01, 4.31751162e-01, 4.31751162e-01,
       4.67980493e-02, 4.67980493e-02, 4.67980493e-02, 4.67980493e-02,
       2.66505147e-03, 2.66505147e-03, 2.66505147e-03, 2.66505147e-03,
       1.11496365e-04, 1.11496365e-04, 1.11496365e-04, 1.11496365e-04,
       3.41260935e-06, 3.41260935e-06, 3.41260935e-06, 3.41260935e-06,
       7.27672658e-08, 7.27672658e-08, 7.27672658e-08, 7.27672658e-08,
       1.00397593e-09, 1.00397593e-09, 1.00397593e-09, 1.00397593e-09,
       7.70528135e-12, 7.70528135e-12, 7.70528135e-12, 7.70528135e-12,
       2.25884809e-14, 2.25884809e-14, 2.25884809e-14, 2.25884809e-14,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999982, 0.99999982, 0.99999982, 0.99999982,
       0.99999378, 0.99999378, 0.99999378, 0.99999378, 0.99985189,
       0.99985189, 0.99985189, 0.99985189, 0.99761523, 0.99761523,
       0.99761523, 0.99761523, 0.97543178, 0.97543178, 0.97543178,
       0.97543178, 0.85010187, 0.85010187, 0.85010187, 0.85010187,
       0.59115606, 0.59115606, 0.59115606, 0.59115606, 0.45201122,
       0.45201122, 0.45201122, 0.45201122, 0.33798169, 0.33798169,
       0.33798169, 0.33798169, 0.16975198, 0.16975198, 0.16975198,
       0.16975198, 0.10631224, 0.10631224, 0.10631224, 0.10631224,
       0.10035268, 0.10035268, 0.10035268, 0.10035268, 0.10001475,
       0.10001475, 0.10001475, 0.10001475, 0.10000045, 0.10000045,
       0.10000045, 0.10000045, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999934, 0.99999934, 0.99999934, 0.99999934,
       0.99998473, 0.99998473, 0.99998473, 0.99998473, 0.99973934,
       0.99973934, 0.99973934, 0.99973934, 0.99684694, 0.99684694,
       0.99684694, 0.99684694, 0.97449508, 0.97449508, 0.97449508,
       0.97449508, 0.87259818, 0.87259818, 0.87259818, 0.87259818,
       0.6864975 , 0.6864975 , 0.6864975 , 0.6864975 , 0.51289402,
       0.51289402, 0.51289402, 0.51289402, 0.38247596, 0.38247596,
       0.38247596, 0.38247596, 0.24627862, 0.24627862, 0.24627862,
       0.24627862, 0.1506058 , 0.1506058 , 0.1506058 , 0.1506058 ,
       0.12742094, 0.12742094, 0.12742094, 0.12742094, 0.12515547,
       0.12515547, 0.12515547, 0.12515547, 0.12500778, 0.12500778,
       0.12500778, 0.12500778, 0.12500031, 0.12500031, 0.12500031,
       0.12500031, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000776e-01, 7.50000776e-01, 7.50000776e-01, 7.50000776e-01,
       7.50017997e-01, 7.50017997e-01, 7.50017997e-01, 7.50017997e-01,
       7.50305930e-01, 7.50305930e-01, 7.50305930e-01, 7.50305930e-01,
       7.53669775e-01, 7.53669775e-01, 7.53669775e-01, 7.53669775e-01,
       7.79517872e-01, 7.79517872e-01, 7.79517872e-01, 7.79517872e-01,
       9.06676406e-01, 9.06676406e-01, 9.06676406e-01, 9.06676406e-01,
       1.21521648e+00, 1.21521648e+00, 1.21521648e+00, 1.21521648e+00,
       1.36901918e+00, 1.36901918e+00, 1.36901918e+00, 1.36901918e+00,
       1.27921096e+00, 1.27921096e+00, 1.27921096e+00, 1.27921096e+00,
       9.03289139e-01, 9.03289139e-01, 9.03289139e-01, 9.03289139e-01,
       2.43356441e-01, 2.43356441e-01, 2.43356441e-01, 2.43356441e-01,
       2.21897389e-02, 2.21897389e-02, 2.21897389e-02, 2.21897389e-02,
       1.34917711e-03, 1.34917711e-03, 1.34917711e-03, 1.34917711e-03,
       6.63347975e-05, 6.63347975e-05, 6.63347975e-05, 6.63347975e-05,
       2.61791335e-06, 2.61791335e-06, 2.61791335e-06, 2.61791335e-06,
       8.01915979e-08, 8.01915979e-08, 8.01915979e-08, 8.01915979e-08,
       1.84159266e-09, 1.84159266e-09, 1.84159266e-09, 1.84159266e-09,
       3.02840362e-11, 3.02840362e-11, 3.02840362e-11, 3.02840362e-11,
       3.31059514e-13, 3.31059514e-13, 3.31059514e-13, 3.31059514e-13,
       2.11159390e-15, 2.11159390e-15, 2.11159390e-15, 2.11159390e-15,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999908, 0.99999908, 0.99999908, 0.99999908,
       0.99997871, 0.99997871, 0.99997871, 0.99997871, 0.99963804,
       0.99963804, 0.99963804, 0.99963804, 0.99566401, 0.99566401,
       0.99566401, 0.99566401, 0.96560299, 0.96560299, 0.96560299,
       0.96560299, 0.8320416 , 0.8320416 , 0.8320416 , 0.8320416 ,
       0.59163041, 0.59163041, 0.59163041, 0.59163041, 0.48324232,
       0.48324232, 0.48324232, 0.48324232, 0.4189936 , 0.4189936 ,
       0.4189936 , 0.4189936 , 0.28887293, 0.28887293, 0.28887293,
       0.28887293, 0.13630773, 0.13630773, 0.13630773, 0.13630773,
       0.1029605 , 0.1029605 , 0.1029605 , 0.1029605 , 0.10017852,
       0.10017852, 0.10017852, 0.10017852, 0.10000878, 0.10000878,
       0.10000878, 0.10000878, 0.10000035, 0.10000035, 0.10000035,
       0.10000035, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.9999999 , 0.9999999 , 0.9999999 ,
       0.9999999 , 0.99999776, 0.99999776, 0.99999776, 0.99999776,
       0.99996053, 0.99996053, 0.99996053, 0.99996053, 0.99947569,
       0.99947569, 0.99947569, 0.99947569, 0.99496288, 0.99496288,
       0.99496288, 0.99496288, 0.96703059, 0.96703059, 0.96703059,
       0.96703059, 0.86276573, 0.86276573, 0.86276573, 0.86276573,
       0.69336478, 0.69336478, 0.69336478, 0.69336478, 0.55587482,
       0.55587482, 0.55587482, 0.55587482, 0.44582134, 0.44582134,
       0.44582134, 0.44582134, 0.32572207, 0.32572207, 0.32572207,
       0.32572207, 0.20563197, 0.20563197, 0.20563197, 0.20563197,
       0.13815838, 0.13815838, 0.13815838, 0.13815838, 0.12615318,
       0.12615318, 0.12615318, 0.12615318, 0.12507598, 0.12507598,
       0.12507598, 0.12507598, 0.1250042 , 0.1250042 , 0.1250042 ,
       0.1250042 , 0.12500019, 0.12500019, 0.12500019, 0.12500019,
       0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000116e-01, 7.50000116e-01, 7.50000116e-01, 7.50000116e-01,
       7.50002645e-01, 7.50002645e-01, 7.50002645e-01, 7.50002645e-01,
       7.50046576e-01, 7.50046576e-01, 7.50046576e-01, 7.50046576e-01,
       7.50616761e-01, 7.50616761e-01, 7.50616761e-01, 7.50616761e-01,
       7.55893760e-01, 7.55893760e-01, 7.55893760e-01, 7.55893760e-01,
       7.88691015e-01, 7.88691015e-01, 7.88691015e-01, 7.88691015e-01,
       9.22508524e-01, 9.22508524e-01, 9.22508524e-01, 9.22508524e-01,
       1.19424995e+00, 1.19424995e+00, 1.19424995e+00, 1.19424995e+00,
       1.37115296e+00, 1.37115296e+00, 1.37115296e+00, 1.37115296e+00,
       1.35656186e+00, 1.35656186e+00, 1.35656186e+00, 1.35656186e+00,
       1.19624538e+00, 1.19624538e+00, 1.19624538e+00, 1.19624538e+00,
       6.97637293e-01, 6.97637293e-01, 6.97637293e-01, 6.97637293e-01,
       1.27100170e-01, 1.27100170e-01, 1.27100170e-01, 1.27100170e-01,
       1.03412299e-02, 1.03412299e-02, 1.03412299e-02, 1.03412299e-02,
       6.53644299e-04, 6.53644299e-04, 6.53644299e-04, 6.53644299e-04,
       3.56971103e-05, 3.56971103e-05, 3.56971103e-05, 3.56971103e-05,
       1.64522459e-06, 1.64522459e-06, 1.64522459e-06, 1.64522459e-06,
       6.25358486e-08, 6.25358486e-08, 6.25358486e-08, 6.25358486e-08,
       1.91748504e-09, 1.91748504e-09, 1.91748504e-09, 1.91748504e-09,
       4.62606839e-11, 4.62606839e-11, 4.62606839e-11, 4.62606839e-11,
       8.51285413e-13, 8.51285413e-13, 8.51285413e-13, 8.51285413e-13,
       1.14285693e-14, 1.14285693e-14, 1.14285693e-14, 1.14285693e-14,
       9.19950648e-17, 9.19950648e-17, 9.19950648e-17, 9.19950648e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999687, 0.99999687, 0.99999687, 0.99999687,
       0.99994489, 0.99994489, 0.99994489, 0.99994489, 0.99927039,
       0.99927039, 0.99927039, 0.99927039, 0.99304531, 0.99304531,
       0.99304531, 0.99304531, 0.95519679, 0.95519679, 0.95519679,
       0.95519679, 0.8168341 , 0.8168341 , 0.8168341 , 0.8168341 ,
       0.58819152, 0.58819152, 0.58819152, 0.58819152, 0.49438551,
       0.49438551, 0.49438551, 0.49438551, 0.45793166, 0.45793166,
       0.45793166, 0.45793166, 0.39260514, 0.39260514, 0.39260514,
       0.39260514, 0.23309146, 0.23309146, 0.23309146, 0.23309146,
       0.11798708, 0.11798708, 0.11798708, 0.11798708, 0.1013727 ,
       0.1013727 , 0.1013727 , 0.1013727 , 0.10008648, 0.10008648,
       0.10008648, 0.10008648, 0.10000472, 0.10000472, 0.10000472,
       0.10000472, 0.10000022, 0.10000022, 0.10000022, 0.10000022,
       0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999967, 0.99999967, 0.99999967,
       0.99999967, 0.99999397, 0.99999397, 0.99999397, 0.99999397,
       0.99991437, 0.99991437, 0.99991437, 0.99991437, 0.99906962,
       0.99906962, 0.99906962, 0.99906962, 0.992598  , 0.992598  ,
       0.992598  , 0.992598  , 0.95931079, 0.95931079, 0.95931079,
       0.95931079, 0.85365694, 0.85365694, 0.85365694, 0.85365694,
       0.69548058, 0.69548058, 0.69548058, 0.69548058, 0.5842581 ,
       0.5842581 , 0.5842581 , 0.5842581 , 0.49197492, 0.49197492,
       0.49197492, 0.49197492, 0.39210102, 0.39210102, 0.39210102,
       0.39210102, 0.27877468, 0.27877468, 0.27877468, 0.27877468,
       0.17568186, 0.17568186, 0.17568186, 0.17568186, 0.1316077 ,
       0.1316077 , 0.1316077 , 0.1316077 , 0.12553921, 0.12553921,
       0.12553921, 0.12553921, 0.12503633, 0.12503633, 0.12503633,
       0.12503633, 0.12500214, 0.12500214, 0.12500214, 0.12500214,
       0.12500011, 0.12500011, 0.12500011, 0.12500011, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000018e-01, 7.50000018e-01, 7.50000018e-01, 7.50000018e-01,
       7.50000395e-01, 7.50000395e-01, 7.50000395e-01, 7.50000395e-01,
       7.50007125e-01, 7.50007125e-01, 7.50007125e-01, 7.50007125e-01,
       7.50101120e-01, 7.50101120e-01, 7.50101120e-01, 7.50101120e-01,
       7.51096094e-01, 7.51096094e-01, 7.51096094e-01, 7.51096094e-01,
       7.58695376e-01, 7.58695376e-01, 7.58695376e-01, 7.58695376e-01,
       7.98253123e-01, 7.98253123e-01, 7.98253123e-01, 7.98253123e-01,
       9.36217768e-01, 9.36217768e-01, 9.36217768e-01, 9.36217768e-01,
       1.17874930e+00, 1.17874930e+00, 1.17874930e+00, 1.17874930e+00,
       1.35926058e+00, 1.35926058e+00, 1.35926058e+00, 1.35926058e+00,
       1.37992227e+00, 1.37992227e+00, 1.37992227e+00, 1.37992227e+00,
       1.31852830e+00, 1.31852830e+00, 1.31852830e+00, 1.31852830e+00,
       1.09147080e+00, 1.09147080e+00, 1.09147080e+00, 1.09147080e+00,
       4.80823248e-01, 4.80823248e-01, 4.80823248e-01, 4.80823248e-01,
       6.29020815e-02, 6.29020815e-02, 6.29020815e-02, 6.29020815e-02,
       4.74941638e-03, 4.74941638e-03, 4.74941638e-03, 4.74941638e-03,
       3.10811782e-04, 3.10811782e-04, 3.10811782e-04, 3.10811782e-04,
       1.81866640e-05, 1.81866640e-05, 1.81866640e-05, 1.81866640e-05,
       9.31308580e-07, 9.31308580e-07, 9.31308580e-07, 9.31308580e-07,
       4.09103671e-08, 4.09103671e-08, 4.09103671e-08, 4.09103671e-08,
       1.51483229e-09, 1.51483229e-09, 1.51483229e-09, 1.51483229e-09,
       4.65132031e-11, 4.65132031e-11, 4.65132031e-11, 4.65132031e-11,
       1.16294442e-12, 1.16294442e-12, 1.16294442e-12, 1.16294442e-12,
       2.31530746e-14, 2.31530746e-14, 2.31530746e-14, 2.31530746e-14,
       3.45133688e-16, 3.45133688e-16, 3.45133688e-16, 3.45133688e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.99999953, 0.99999953, 0.99999953,
       0.99999953, 0.99999157, 0.99999157, 0.99999157, 0.99999157,
       0.99988036, 0.99988036, 0.99988036, 0.99988036, 0.99870367,
       0.99870367, 0.99870367, 0.99870367, 0.98975672, 0.98975672,
       0.98975672, 0.98975672, 0.94447806, 0.94447806, 0.94447806,
       0.94447806, 0.80372375, 0.80372375, 0.80372375, 0.80372375,
       0.58659611, 0.58659611, 0.58659611, 0.58659611, 0.49630691,
       0.49630691, 0.49630691, 0.49630691, 0.47256565, 0.47256565,
       0.47256565, 0.47256565, 0.44649608, 0.44649608, 0.44649608,
       0.44649608, 0.35475085, 0.35475085, 0.35475085, 0.35475085,
       0.18206373, 0.18206373, 0.18206373, 0.18206373, 0.10858619,
       0.10858619, 0.10858619, 0.10858619, 0.10062915, 0.10062915,
       0.10062915, 0.10062915, 0.10004112, 0.10004112, 0.10004112,
       0.10004112, 0.10000241, 0.10000241, 0.10000241, 0.10000241,
       0.10000012, 0.10000012, 0.10000012, 0.10000012, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.99999907, 0.99999907, 0.99999907,
       0.99999907, 0.99998617, 0.99998617, 0.99998617, 0.99998617,
       0.99983554, 0.99983554, 0.99983554, 0.99983554, 0.9984902 ,
       0.9984902 , 0.9984902 , 0.9984902 , 0.9897648 , 0.9897648 ,
       0.9897648 , 0.9897648 , 0.95146278, 0.95146278, 0.95146278,
       0.95146278, 0.84522655, 0.84522655, 0.84522655, 0.84522655,
       0.69592792, 0.69592792, 0.69592792, 0.69592792, 0.60160526,
       0.60160526, 0.60160526, 0.60160526, 0.52681117, 0.52681117,
       0.52681117, 0.52681117, 0.44280683, 0.44280683, 0.44280683,
       0.44280683, 0.3438762 , 0.3438762 , 0.3438762 , 0.3438762 ,
       0.24139758, 0.24139758, 0.24139758, 0.24139758, 0.15433653,
       0.15433653, 0.15433653, 0.15433653, 0.12820419, 0.12820419,
       0.12820419, 0.12820419, 0.12525101, 0.12525101, 0.12525101,
       0.12525101, 0.12501713, 0.12501713, 0.12501713, 0.12501713,
       0.12500106, 0.12500106, 0.12500106, 0.12500106, 0.12500006,
       0.12500006, 0.12500006, 0.12500006, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000060e-01, 7.50000060e-01, 7.50000060e-01, 7.50000060e-01,
       7.50001095e-01, 7.50001095e-01, 7.50001095e-01, 7.50001095e-01,
       7.50016352e-01, 7.50016352e-01, 7.50016352e-01, 7.50016352e-01,
       7.50194298e-01, 7.50194298e-01, 7.50194298e-01, 7.50194298e-01,
       7.51780598e-01, 7.51780598e-01, 7.51780598e-01, 7.51780598e-01,
       7.62062621e-01, 7.62062621e-01, 7.62062621e-01, 7.62062621e-01,
       8.08036385e-01, 8.08036385e-01, 8.08036385e-01, 8.08036385e-01,
       9.48280192e-01, 9.48280192e-01, 9.48280192e-01, 9.48280192e-01,
       1.16919832e+00, 1.16919832e+00, 1.16919832e+00, 1.16919832e+00,
       1.34151992e+00, 1.34151992e+00, 1.34151992e+00, 1.34151992e+00,
       1.38408905e+00, 1.38408905e+00, 1.38408905e+00, 1.38408905e+00,
       1.36212724e+00, 1.36212724e+00, 1.36212724e+00, 1.36212724e+00,
       1.27575638e+00, 1.27575638e+00, 1.27575638e+00, 1.27575638e+00,
       9.46706959e-01, 9.46706959e-01, 9.46706959e-01, 9.46706959e-01,
       2.86961496e-01, 2.86961496e-01, 2.86961496e-01, 2.86961496e-01,
       2.97471236e-02, 2.97471236e-02, 2.97471236e-02, 2.97471236e-02,
       2.18276389e-03, 2.18276389e-03, 2.18276389e-03, 2.18276389e-03,
       1.45981809e-04, 1.45981809e-04, 1.45981809e-04, 1.45981809e-04,
       8.97326097e-06, 8.97326097e-06, 8.97326097e-06, 8.97326097e-06,
       4.95542253e-07, 4.95542253e-07, 4.95542253e-07, 4.95542253e-07,
       2.41369077e-08, 2.41369077e-08, 2.41369077e-08, 2.41369077e-08,
       1.02173681e-09, 1.02173681e-09, 1.02173681e-09, 1.02173681e-09,
       3.71041963e-11, 3.71041963e-11, 3.71041963e-11, 3.71041963e-11,
       1.14134185e-12, 1.14134185e-12, 1.14134185e-12, 1.14134185e-12,
       2.93180081e-14, 2.93180081e-14, 2.93180081e-14, 2.93180081e-14,
       5.89861085e-16, 5.89861085e-16, 5.89861085e-16, 5.89861085e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999993, 0.99999993,
       0.99999993, 0.99999993, 0.9999987 , 0.9999987 , 0.9999987 ,
       0.9999987 , 0.99998065, 0.99998065, 0.99998065, 0.99998065,
       0.99977012, 0.99977012, 0.99977012, 0.99977012, 0.9978949 ,
       0.9978949 , 0.9978949 , 0.9978949 , 0.98581938, 0.98581938,
       0.98581938, 0.98581938, 0.93364034, 0.93364034, 0.93364034,
       0.93364034, 0.79223561, 0.79223561, 0.79223561, 0.79223561,
       0.58787464, 0.58787464, 0.58787464, 0.58787464, 0.49421357,
       0.49421357, 0.49421357, 0.49421357, 0.47736962, 0.47736962,
       0.47736962, 0.47736962, 0.46789435, 0.46789435, 0.46789435,
       0.46789435, 0.42797779, 0.42797779, 0.42797779, 0.42797779,
       0.30606771, 0.30606771, 0.30606771, 0.30606771, 0.14410239,
       0.14410239, 0.14410239, 0.14410239, 0.10398792, 0.10398792,
       0.10398792, 0.10398792, 0.10028892, 0.10028892, 0.10028892,
       0.10028892, 0.10001931, 0.10001931, 0.10001931, 0.10001931,
       0.10000119, 0.10000119, 0.10000119, 0.10000119, 0.10000007,
       0.10000007, 0.10000007, 0.10000007, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999986, 0.99999986,
       0.99999986, 0.99999986, 0.99999778, 0.99999778, 0.99999778,
       0.99999778, 0.99997175, 0.99997175, 0.99997175, 0.99997175,
       0.99971141, 0.99971141, 0.99971141, 0.99971141, 0.99770946,
       0.99770946, 0.99770946, 0.99770946, 0.98648851, 0.98648851,
       0.98648851, 0.98648851, 0.94358959, 0.94358959, 0.94358959,
       0.94358959, 0.83747957, 0.83747957, 0.83747957, 0.83747957,
       0.69607636, 0.69607636, 0.69607636, 0.69607636, 0.61195392,
       0.61195392, 0.61195392, 0.61195392, 0.5520745 , 0.5520745 ,
       0.5520745 , 0.5520745 , 0.48227586, 0.48227586, 0.48227586,
       0.48227586, 0.39628276, 0.39628276, 0.39628276, 0.39628276,
       0.30461516, 0.30461516, 0.30461516, 0.30461516, 0.20942901,
       0.20942901, 0.20942901, 0.20942901, 0.14069158, 0.14069158,
       0.14069158, 0.14069158, 0.12652847, 0.12652847, 0.12652847,
       0.12652847, 0.1251159 , 0.1251159 , 0.1251159 , 0.1251159 ,
       0.12500801, 0.12500801, 0.12500801, 0.12500801, 0.12500051,
       0.12500051, 0.12500051, 0.12500051, 0.12500003, 0.12500003,
       0.12500003, 0.12500003, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000169e-01, 7.50000169e-01, 7.50000169e-01, 7.50000169e-01,
       7.50002624e-01, 7.50002624e-01, 7.50002624e-01, 7.50002624e-01,
       7.50033404e-01, 7.50033404e-01, 7.50033404e-01, 7.50033404e-01,
       7.50341048e-01, 7.50341048e-01, 7.50341048e-01, 7.50341048e-01,
       7.52703614e-01, 7.52703614e-01, 7.52703614e-01, 7.52703614e-01,
       7.65969457e-01, 7.65969457e-01, 7.65969457e-01, 7.65969457e-01,
       8.17910409e-01, 8.17910409e-01, 8.17910409e-01, 8.17910409e-01,
       9.59019483e-01, 9.59019483e-01, 9.59019483e-01, 9.59019483e-01,
       1.16435988e+00, 1.16435988e+00, 1.16435988e+00, 1.16435988e+00,
       1.32431238e+00, 1.32431238e+00, 1.32431238e+00, 1.32431238e+00,
       1.37819363e+00, 1.37819363e+00, 1.37819363e+00, 1.37819363e+00,
       1.37548447e+00, 1.37548447e+00, 1.37548447e+00, 1.37548447e+00,
       1.34495171e+00, 1.34495171e+00, 1.34495171e+00, 1.34495171e+00,
       1.21521933e+00, 1.21521933e+00, 1.21521933e+00, 1.21521933e+00,
       7.56439760e-01, 7.56439760e-01, 7.56439760e-01, 7.56439760e-01,
       1.54532788e-01, 1.54532788e-01, 1.54532788e-01, 1.54532788e-01,
       1.38332523e-02, 1.38332523e-02, 1.38332523e-02, 1.38332523e-02,
       9.98607774e-04, 9.98607774e-04, 9.98607774e-04, 9.98607774e-04,
       6.81041170e-05, 6.81041170e-05, 6.81041170e-05, 6.81041170e-05,
       4.33839800e-06, 4.33839800e-06, 4.33839800e-06, 4.33839800e-06,
       2.53281003e-07, 2.53281003e-07, 2.53281003e-07, 2.53281003e-07,
       1.33255506e-08, 1.33255506e-08, 1.33255506e-08, 1.33255506e-08,
       6.23193675e-10, 6.23193675e-10, 6.23193675e-10, 6.23193675e-10,
       2.56186446e-11, 2.56186446e-11, 2.56186446e-11, 2.56186446e-11,
       9.16383815e-13, 9.16383815e-13, 9.16383815e-13, 9.16383815e-13,
       2.82273423e-14, 2.82273423e-14, 2.82273423e-14, 2.82273423e-14,
       7.11936272e-16, 7.11936272e-16, 7.11936272e-16, 7.11936272e-16,
       9.95777976e-18, 9.95777976e-18, 9.95777976e-18, 9.95777976e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.9999998 , 0.9999998 ,
       0.9999998 , 0.9999998 , 0.9999969 , 0.9999969 , 0.9999969 ,
       0.9999969 , 0.99996048, 0.99996048, 0.99996048, 0.99996048,
       0.99959652, 0.99959652, 0.99959652, 0.99959652, 0.99680533,
       0.99680533, 0.99680533, 0.99680533, 0.98127177, 0.98127177,
       0.98127177, 0.98127177, 0.92282751, 0.92282751, 0.92282751,
       0.92282751, 0.78204719, 0.78204719, 0.78204719, 0.78204719,
       0.59144542, 0.59144542, 0.59144542, 0.59144542, 0.49225455,
       0.49225455, 0.49225455, 0.49225455, 0.47625652, 0.47625652,
       0.47625652, 0.47625652, 0.47479773, 0.47479773, 0.47479773,
       0.47479773, 0.46075469, 0.46075469, 0.46075469, 0.46075469,
       0.4019023 , 0.4019023 , 0.4019023 , 0.4019023 , 0.25005069,
       0.25005069, 0.25005069, 0.25005069, 0.1222868 , 0.1222868 ,
       0.1222868 , 0.1222868 , 0.10183971, 0.10183971, 0.10183971,
       0.10183971, 0.10013213, 0.10013213, 0.10013213, 0.10013213,
       0.10000901, 0.10000901, 0.10000901, 0.10000901, 0.10000057,
       0.10000057, 0.10000057, 0.10000057, 0.10000003, 0.10000003,
       0.10000003, 0.10000003, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999965, 0.99999965,
       0.99999965, 0.99999965, 0.99999524, 0.99999524, 0.99999524,
       0.99999524, 0.99994721, 0.99994721, 0.99994721, 0.99994721,
       0.99952776, 0.99952776, 0.99952776, 0.99952776, 0.99670338,
       0.99670338, 0.99670338, 0.99670338, 0.98280363, 0.98280363,
       0.98280363, 0.98280363, 0.93577386, 0.93577386, 0.93577386,
       0.93577386, 0.83041599, 0.83041599, 0.83041599, 0.83041599,
       0.69625631, 0.69625631, 0.69625631, 0.69625631, 0.61829217,
       0.61829217, 0.61829217, 0.61829217, 0.5699253 , 0.5699253 ,
       0.5699253 , 0.5699253 , 0.51291693, 0.51291693, 0.51291693,
       0.51291693, 0.43877311, 0.43877311, 0.43877311, 0.43877311,
       0.35520766, 0.35520766, 0.35520766, 0.35520766, 0.27305597,
       0.27305597, 0.27305597, 0.27305597, 0.18148452, 0.18148452,
       0.18148452, 0.18148452, 0.13315019, 0.13315019, 0.13315019,
       0.13315019, 0.12571382, 0.12571382, 0.12571382, 0.12571382,
       0.12505333, 0.12505333, 0.12505333, 0.12505333, 0.12500372,
       0.12500372, 0.12500372, 0.12500372, 0.12500024, 0.12500024,
       0.12500024, 0.12500024, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
       7.50000419e-01, 7.50000419e-01, 7.50000419e-01, 7.50000419e-01,
       7.50005630e-01, 7.50005630e-01, 7.50005630e-01, 7.50005630e-01,
       7.50062433e-01, 7.50062433e-01, 7.50062433e-01, 7.50062433e-01,
       7.50558196e-01, 7.50558196e-01, 7.50558196e-01, 7.50558196e-01,
       7.53894015e-01, 7.53894015e-01, 7.53894015e-01, 7.53894015e-01,
       7.70379540e-01, 7.70379540e-01, 7.70379540e-01, 7.70379540e-01,
       8.27772252e-01, 8.27772252e-01, 8.27772252e-01, 8.27772252e-01,
       9.68662085e-01, 9.68662085e-01, 9.68662085e-01, 9.68662085e-01,
       1.16220491e+00, 1.16220491e+00, 1.16220491e+00, 1.16220491e+00,
       1.31086380e+00, 1.31086380e+00, 1.31086380e+00, 1.31086380e+00,
       1.36872585e+00, 1.36872585e+00, 1.36872585e+00, 1.36872585e+00,
       1.37564389e+00, 1.37564389e+00, 1.37564389e+00, 1.37564389e+00,
       1.36763431e+00, 1.36763431e+00, 1.36763431e+00, 1.36763431e+00,
       1.32344547e+00, 1.32344547e+00, 1.32344547e+00, 1.32344547e+00,
       1.12324529e+00, 1.12324529e+00, 1.12324529e+00, 1.12324529e+00,
       5.43452950e-01, 5.43452950e-01, 5.43452950e-01, 5.43452950e-01,
       7.89030941e-02, 7.89030941e-02, 7.89030941e-02, 7.89030941e-02,
       6.32477098e-03, 6.32477098e-03, 6.32477098e-03, 6.32477098e-03,
       4.56774221e-04, 4.56774221e-04, 4.56774221e-04, 4.56774221e-04,
       3.16014322e-05, 3.16014322e-05, 3.16014322e-05, 3.16014322e-05,
       2.06840337e-06, 2.06840337e-06, 2.06840337e-06, 2.06840337e-06,
       1.25987808e-07, 1.25987808e-07, 1.25987808e-07, 1.25987808e-07,
       7.03125054e-09, 7.03125054e-09, 7.03125054e-09, 7.03125054e-09,
       3.55048102e-10, 3.55048102e-10, 3.55048102e-10, 3.55048102e-10,
       1.60552001e-11, 1.60552001e-11, 1.60552001e-11, 1.60552001e-11,
       6.44472443e-13, 6.44472443e-13, 6.44472443e-13, 6.44472443e-13,
       2.27342322e-14, 2.27342322e-14, 2.27342322e-14, 2.27342322e-14,
       6.57996181e-16, 6.57996181e-16, 6.57996181e-16, 6.57996181e-16,
       2.02110955e-17, 2.02110955e-17, 2.02110955e-17, 2.02110955e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.9999995 , 0.9999995 ,
       0.9999995 , 0.9999995 , 0.99999334, 0.99999334, 0.99999334,
       0.99999334, 0.99992613, 0.99992613, 0.99992613, 0.99992613,
       0.9993397 , 0.9993397 , 0.9993397 , 0.9993397 , 0.99540189,
       0.99540189, 0.99540189, 0.99540189, 0.97616471, 0.97616471,
       0.97616471, 0.97616471, 0.91214742, 0.91214742, 0.91214742,
       0.91214742, 0.77293438, 0.77293438, 0.77293438, 0.77293438,
       0.59602991, 0.59602991, 0.59602991, 0.59602991, 0.49258015,
       0.49258015, 0.49258015, 0.49258015, 0.47304087, 0.47304087,
       0.47304087, 0.47304087, 0.47487876, 0.47487876, 0.47487876,
       0.47487876, 0.47229223, 0.47229223, 0.47229223, 0.47229223,
       0.44924829, 0.44924829, 0.44924829, 0.44924829, 0.3670158 ,
       0.3670158 , 0.3670158 , 0.3670158 , 0.1964563 , 0.1964563 ,
       0.1964563 , 0.1964563 , 0.11088441, 0.11088441, 0.11088441,
       0.11088441, 0.10083843, 0.10083843, 0.10083843, 0.10083843,
       0.10006043, 0.10006043, 0.10006043, 0.10006043, 0.10000418,
       0.10000418, 0.10000418, 0.10000418, 0.10000027, 0.10000027,
       0.10000027, 0.10000027, 0.10000002, 0.10000002, 0.10000002,
       0.10000002, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999994,
       0.99999994, 0.99999994, 0.99999994, 0.99999921, 0.99999921,
       0.99999921, 0.99999921, 0.99999063, 0.99999063, 0.99999063,
       0.99999063, 0.99990804, 0.99990804, 0.99990804, 0.99990804,
       0.99926917, 0.99926917, 0.99926917, 0.99926917, 0.99545263,
       0.99545263, 0.99545263, 0.99545263, 0.97875109, 0.97875109,
       0.97875109, 0.97875109, 0.92808061, 0.92808061, 0.92808061,
       0.92808061, 0.82401271, 0.82401271, 0.82401271, 0.82401271,
       0.69646404, 0.69646404, 0.69646404, 0.69646404, 0.62232848,
       0.62232848, 0.62232848, 0.62232848, 0.58232539, 0.58232539,
       0.58232539, 0.58232539, 0.53664687, 0.53664687, 0.53664687,
       0.53664687, 0.47382656, 0.47382656, 0.47382656, 0.47382656,
       0.3966429 , 0.3966429 , 0.3966429 , 0.3966429 , 0.32215049,
       0.32215049, 0.32215049, 0.32215049, 0.24536837, 0.24536837,
       0.24536837, 0.24536837, 0.15939671, 0.15939671, 0.15939671,
       0.15939671, 0.1290282 , 0.1290282 , 0.1290282 , 0.1290282 ,
       0.12533162, 0.12533162, 0.12533162, 0.12533162, 0.12502449,
       0.12502449, 0.12502449, 0.12502449, 0.12500172, 0.12500172,
       0.12500172, 0.12500172, 0.12500012, 0.12500012, 0.12500012,
       0.12500012, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000067e-01, 7.50000067e-01, 7.50000067e-01, 7.50000067e-01,
       7.50000937e-01, 7.50000937e-01, 7.50000937e-01, 7.50000937e-01,
       7.50011082e-01, 7.50011082e-01, 7.50011082e-01, 7.50011082e-01,
       7.50108766e-01, 7.50108766e-01, 7.50108766e-01, 7.50108766e-01,
       7.50863989e-01, 7.50863989e-01, 7.50863989e-01, 7.50863989e-01,
       7.55375416e-01, 7.55375416e-01, 7.55375416e-01, 7.55375416e-01,
       7.75249150e-01, 7.75249150e-01, 7.75249150e-01, 7.75249150e-01,
       8.37539996e-01, 8.37539996e-01, 8.37539996e-01, 8.37539996e-01,
       9.77371489e-01, 9.77371489e-01, 9.77371489e-01, 9.77371489e-01,
       1.16096785e+00, 1.16096785e+00, 1.16096785e+00, 1.16096785e+00,
       1.30163748e+00, 1.30163748e+00, 1.30163748e+00, 1.30163748e+00,
       1.35906515e+00, 1.35906515e+00, 1.35906515e+00, 1.35906515e+00,
       1.37165137e+00, 1.37165137e+00, 1.37165137e+00, 1.37165137e+00,
       1.37159981e+00, 1.37159981e+00, 1.37159981e+00, 1.37159981e+00,
       1.36020817e+00, 1.36020817e+00, 1.36020817e+00, 1.36020817e+00,
       1.28954477e+00, 1.28954477e+00, 1.28954477e+00, 1.28954477e+00,
       9.92965165e-01, 9.92965165e-01, 9.92965165e-01, 9.92965165e-01,
       3.41054294e-01, 3.41054294e-01, 3.41054294e-01, 3.41054294e-01,
       3.78450976e-02, 3.78450976e-02, 3.78450976e-02, 3.78450976e-02,
       2.89520706e-03, 2.89520706e-03, 2.89520706e-03, 2.89520706e-03,
       2.08927779e-04, 2.08927779e-04, 2.08927779e-04, 2.08927779e-04,
       1.46114029e-05, 1.46114029e-05, 1.46114029e-05, 1.46114029e-05,
       9.77146281e-07, 9.77146281e-07, 9.77146281e-07, 9.77146281e-07,
       6.15180946e-08, 6.15180946e-08, 6.15180946e-08, 6.15180946e-08,
       3.59623288e-09, 3.59623288e-09, 3.59623288e-09, 3.59623288e-09,
       1.92933425e-10, 1.92933425e-10, 1.92933425e-10, 1.92933425e-10,
       9.40773578e-12, 9.40773578e-12, 9.40773578e-12, 9.40773578e-12,
       4.13570502e-13, 4.13570502e-13, 4.13570502e-13, 4.13570502e-13,
       1.62288270e-14, 1.62288270e-14, 1.62288270e-14, 1.62288270e-14,
       5.61211316e-16, 5.61211316e-16, 5.61211316e-16, 5.61211316e-16,
       1.04414501e-17, 1.04414501e-17, 1.04414501e-17, 1.04414501e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999992,
       0.99999992, 0.99999992, 0.99999992, 0.99999889, 0.99999889,
       0.99999889, 0.99999889, 0.99998689, 0.99998689, 0.99998689,
       0.99998689, 0.99987131, 0.99987131, 0.99987131, 0.99987131,
       0.99897815, 0.99897815, 0.99897815, 0.99897815, 0.99365816,
       0.99365816, 0.99365816, 0.99365816, 0.9705574 , 0.9705574 ,
       0.9705574 , 0.9705574 , 0.90168105, 0.90168105, 0.90168105,
       0.90168105, 0.76473302, 0.76473302, 0.76473302, 0.76473302,
       0.60049273, 0.60049273, 0.60049273, 0.60049273, 0.49550855,
       0.49550855, 0.49550855, 0.49550855, 0.47006662, 0.47006662,
       0.47006662, 0.47006662, 0.47260804, 0.47260804, 0.47260804,
       0.47260804, 0.47428975, 0.47428975, 0.47428975, 0.47428975,
       0.46714499, 0.46714499, 0.46714499, 0.46714499, 0.43304518,
       0.43304518, 0.43304518, 0.43304518, 0.32159783, 0.32159783,
       0.32159783, 0.32159783, 0.15419082, 0.15419082, 0.15419082,
       0.15419082, 0.1050973 , 0.1050973 , 0.1050973 , 0.1050973 ,
       0.10038332, 0.10038332, 0.10038332, 0.10038332, 0.10002764,
       0.10002764, 0.10002764, 0.10002764, 0.10000193, 0.10000193,
       0.10000193, 0.10000193, 0.10000013, 0.10000013, 0.10000013,
       0.10000013, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
       0.99999987, 0.99999987, 0.99999987, 0.99999837, 0.99999837,
       0.99999837, 0.99999837, 0.9999828 , 0.9999828 , 0.9999828 ,
       0.9999828 , 0.99984871, 0.99984871, 0.99984871, 0.99984871,
       0.99891955, 0.99891955, 0.99891955, 0.99891955, 0.99394315,
       0.99394315, 0.99394315, 0.99394315, 0.97437567, 0.97437567,
       0.97437567, 0.97437567, 0.92055976, 0.92055976, 0.92055976,
       0.92055976, 0.81822558, 0.81822558, 0.81822558, 0.81822558,
       0.69670438, 0.69670438, 0.69670438, 0.69670438, 0.62488661,
       0.62488661, 0.62488661, 0.62488661, 0.59118008, 0.59118008,
       0.59118008, 0.59118008, 0.5544861 , 0.5544861 , 0.5544861 ,
       0.5544861 , 0.50269605, 0.50269605, 0.50269605, 0.50269605,
       0.4331649 , 0.4331649 , 0.4331649 , 0.4331649 , 0.36021979,
       0.36021979, 0.36021979, 0.36021979, 0.29637809, 0.29637809,
       0.29637809, 0.29637809, 0.21820395, 0.21820395, 0.21820395,
       0.21820395, 0.14411847, 0.14411847, 0.14411847, 0.14411847,
       0.126943  , 0.126943  , 0.126943  , 0.126943  , 0.12515306,
       0.12515306, 0.12515306, 0.12515306, 0.12501123, 0.12501123,
       0.12501123, 0.12501123, 0.1250008 , 0.1250008 , 0.1250008 ,
       0.1250008 , 0.12500005, 0.12500005, 0.12500005, 0.12500005,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
       7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
       7.50001925e-01, 7.50001925e-01, 7.50001925e-01, 7.50001925e-01,
       7.50020345e-01, 7.50020345e-01, 7.50020345e-01, 7.50020345e-01,
       7.50178950e-01, 7.50178950e-01, 7.50178950e-01, 7.50178950e-01,
       7.51277500e-01, 7.51277500e-01, 7.51277500e-01, 7.51277500e-01,
       7.57165560e-01, 7.57165560e-01, 7.57165560e-01, 7.57165560e-01,
       7.80529643e-01, 7.80529643e-01, 7.80529643e-01, 7.80529643e-01,
       8.47148531e-01, 8.47148531e-01, 8.47148531e-01, 8.47148531e-01,
       9.85270426e-01, 9.85270426e-01, 9.85270426e-01, 9.85270426e-01,
       1.15957712e+00, 1.15957712e+00, 1.15957712e+00, 1.15957712e+00,
       1.29566032e+00, 1.29566032e+00, 1.29566032e+00, 1.29566032e+00,
       1.35118587e+00, 1.35118587e+00, 1.35118587e+00, 1.35118587e+00,
       1.36601672e+00, 1.36601672e+00, 1.36601672e+00, 1.36601672e+00,
       1.36997305e+00, 1.36997305e+00, 1.36997305e+00, 1.36997305e+00,
       1.36942484e+00, 1.36942484e+00, 1.36942484e+00, 1.36942484e+00,
       1.34862905e+00, 1.34862905e+00, 1.34862905e+00, 1.34862905e+00,
       1.23673227e+00, 1.23673227e+00, 1.23673227e+00, 1.23673227e+00,
       8.18685529e-01, 8.18685529e-01, 8.18685529e-01, 8.18685529e-01,
       1.89365930e-01, 1.89365930e-01, 1.89365930e-01, 1.89365930e-01,
       1.77483277e-02, 1.77483277e-02, 1.77483277e-02, 1.77483277e-02,
       1.32231275e-03, 1.32231275e-03, 1.32231275e-03, 1.32231275e-03,
       9.55485885e-05, 9.55485885e-05, 9.55485885e-05, 9.55485885e-05,
       6.74007898e-06, 6.74007898e-06, 6.74007898e-06, 6.74007898e-06,
       4.58238639e-07, 4.58238639e-07, 4.58238639e-07, 4.58238639e-07,
       2.96179808e-08, 2.96179808e-08, 2.96179808e-08, 2.96179808e-08,
       1.79683460e-09, 1.79683460e-09, 1.79683460e-09, 1.79683460e-09,
       1.01205791e-10, 1.01205791e-10, 1.01205791e-10, 1.01205791e-10,
       5.24439143e-12, 5.24439143e-12, 5.24439143e-12, 5.24439143e-12,
       2.48169579e-13, 2.48169579e-13, 2.48169579e-13, 2.48169579e-13,
       1.06030558e-14, 1.06030558e-14, 1.06030558e-14, 1.06030558e-14,
       3.88917738e-16, 3.88917738e-16, 3.88917738e-16, 3.88917738e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999982,
       0.99999982, 0.99999982, 0.99999982, 0.99999772, 0.99999772,
       0.99999772, 0.99999772, 0.99997593, 0.99997593, 0.99997593,
       0.99997593, 0.99978828, 0.99978828, 0.99978828, 0.99978828,
       0.99848943, 0.99848943, 0.99848943, 0.99848943, 0.99155515,
       0.99155515, 0.99155515, 0.99155515, 0.964514  , 0.964514  ,
       0.964514  , 0.964514  , 0.89148856, 0.89148856, 0.89148856,
       0.89148856, 0.75731665, 0.75731665, 0.75731665, 0.75731665,
       0.6041739 , 0.6041739 , 0.6041739 , 0.6041739 , 0.50038286,
       0.50038286, 0.50038286, 0.50038286, 0.46850918, 0.46850918,
       0.46850918, 0.46850918, 0.46942557, 0.46942557, 0.46942557,
       0.46942557, 0.47328763, 0.47328763, 0.47328763, 0.47328763,
       0.47194986, 0.47194986, 0.47194986, 0.47194986, 0.46019101,
       0.46019101, 0.46019101, 0.46019101, 0.41012287, 0.41012287,
       0.41012287, 0.41012287, 0.26737713, 0.26737713, 0.26737713,
       0.26737713, 0.12780983, 0.12780983, 0.12780983, 0.12780983,
       0.1023651 , 0.1023651 , 0.1023651 , 0.1023651 , 0.10017499,
       0.10017499, 0.10017499, 0.10017499, 0.10001264, 0.10001264,
       0.10001264, 0.10001264, 0.10000089, 0.10000089, 0.10000089,
       0.10000089, 0.10000006, 0.10000006, 0.10000006, 0.10000006,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999972,
       0.99999972, 0.99999972, 0.99999972, 0.99999688, 0.99999688,
       0.99999688, 0.99999688, 0.99997019, 0.99997019, 0.99997019,
       0.99997019, 0.99976264, 0.99976264, 0.99976264, 0.99976264,
       0.99846262, 0.99846262, 0.99846262, 0.99846262, 0.9921662 ,
       0.9921662 , 0.9921662 , 0.9921662 , 0.96972408, 0.96972408,
       0.96972408, 0.96972408, 0.91324871, 0.91324871, 0.91324871,
       0.91324871, 0.81299809, 0.81299809, 0.81299809, 0.81299809,
       0.69707716, 0.69707716, 0.69707716, 0.69707716, 0.6262992 ,
       0.6262992 , 0.6262992 , 0.6262992 , 0.59760474, 0.59760474,
       0.59760474, 0.59760474, 0.56779664, 0.56779664, 0.56779664,
       0.56779664, 0.52592744, 0.52592744, 0.52592744, 0.52592744,
       0.46563753, 0.46563753, 0.46563753, 0.46563753, 0.39326426,
       0.39326426, 0.39326426, 0.39326426, 0.33284785, 0.33284785,
       0.33284785, 0.33284785, 0.27504145, 0.27504145, 0.27504145,
       0.27504145, 0.19106843, 0.19106843, 0.19106843, 0.19106843,
       0.13511522, 0.13511522, 0.13511522, 0.13511522, 0.12591513,
       0.12591513, 0.12591513, 0.12591513, 0.12507031, 0.12507031,
       0.12507031, 0.12507031, 0.12500515, 0.12500515, 0.12500515,
       0.12500515, 0.12500037, 0.12500037, 0.12500037, 0.12500037,
       0.12500003, 0.12500003, 0.12500003, 0.12500003, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000329e-01, 7.50000329e-01, 7.50000329e-01, 7.50000329e-01,
       7.50003695e-01, 7.50003695e-01, 7.50003695e-01, 7.50003695e-01,
       7.50035264e-01, 7.50035264e-01, 7.50035264e-01, 7.50035264e-01,
       7.50280759e-01, 7.50280759e-01, 7.50280759e-01, 7.50280759e-01,
       7.51818086e-01, 7.51818086e-01, 7.51818086e-01, 7.51818086e-01,
       7.59276172e-01, 7.59276172e-01, 7.59276172e-01, 7.59276172e-01,
       7.86169462e-01, 7.86169462e-01, 7.86169462e-01, 7.86169462e-01,
       8.56546408e-01, 8.56546408e-01, 8.56546408e-01, 8.56546408e-01,
       9.92456196e-01, 9.92456196e-01, 9.92456196e-01, 9.92456196e-01,
       1.15763323e+00, 1.15763323e+00, 1.15763323e+00, 1.15763323e+00,
       1.29146040e+00, 1.29146040e+00, 1.29146040e+00, 1.29146040e+00,
       1.34573538e+00, 1.34573538e+00, 1.34573538e+00, 1.34573538e+00,
       1.36098136e+00, 1.36098136e+00, 1.36098136e+00, 1.36098136e+00,
       1.36604284e+00, 1.36604284e+00, 1.36604284e+00, 1.36604284e+00,
       1.36966028e+00, 1.36966028e+00, 1.36966028e+00, 1.36966028e+00,
       1.36622633e+00, 1.36622633e+00, 1.36622633e+00, 1.36622633e+00,
       1.32998311e+00, 1.32998311e+00, 1.32998311e+00, 1.32998311e+00,
       1.15597656e+00, 1.15597656e+00, 1.15597656e+00, 1.15597656e+00,
       6.12942776e-01, 6.12942776e-01, 6.12942776e-01, 6.12942776e-01,
       9.84564756e-02, 9.84564756e-02, 9.84564756e-02, 9.84564756e-02,
       8.15622587e-03, 8.15622587e-03, 8.15622587e-03, 8.15622587e-03,
       6.03159348e-04, 6.03159348e-04, 6.03159348e-04, 6.03159348e-04,
       4.37065832e-05, 4.37065832e-05, 4.37065832e-05, 4.37065832e-05,
       3.10316624e-06, 3.10316624e-06, 3.10316624e-06, 3.10316624e-06,
       2.13754454e-07, 2.13754454e-07, 2.13754454e-07, 2.13754454e-07,
       1.41094631e-08, 1.41094631e-08, 1.41094631e-08, 1.41094631e-08,
       8.82092666e-10, 8.82092666e-10, 8.82092666e-10, 8.82092666e-10,
       5.16973157e-11, 5.16973157e-11, 5.16973157e-11, 5.16973157e-11,
       2.81588859e-12, 2.81588859e-12, 2.81588859e-12, 2.81588859e-12,
       1.41485550e-13, 1.41485550e-13, 1.41485550e-13, 1.41485550e-13,
       6.51607025e-15, 6.51607025e-15, 6.51607025e-15, 6.51607025e-15,
       2.40152978e-16, 2.40152978e-16, 2.40152978e-16, 2.40152978e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999961,
       0.99999961, 0.99999961, 0.99999961, 0.99999563, 0.99999563,
       0.99999563, 0.99999563, 0.99995828, 0.99995828, 0.99995828,
       0.99995828, 0.99966785, 0.99966785, 0.99966785, 0.99966785,
       0.99785087, 0.99785087, 0.99785087, 0.99785087, 0.98908149,
       0.98908149, 0.98908149, 0.98908149, 0.9581009 , 0.9581009 ,
       0.9581009 , 0.9581009 , 0.88161392, 0.88161392, 0.88161392,
       0.88161392, 0.75058451, 0.75058451, 0.75058451, 0.75058451,
       0.60688233, 0.60688233, 0.60688233, 0.60688233, 0.50620558,
       0.50620558, 0.50620558, 0.50620558, 0.46870616, 0.46870616,
       0.46870616, 0.46870616, 0.46692176, 0.46692176, 0.46692176,
       0.46692176, 0.47084207, 0.47084207, 0.47084207, 0.47084207,
       0.47212989, 0.47212989, 0.47212989, 0.47212989, 0.46881527,
       0.46881527, 0.46881527, 0.46881527, 0.45065004, 0.45065004,
       0.45065004, 0.45065004, 0.37876151, 0.37876151, 0.37876151,
       0.37876151, 0.21224192, 0.21224192, 0.21224192, 0.21224192,
       0.11373333, 0.11373333, 0.11373333, 0.11373333, 0.10108205,
       0.10108205, 0.10108205, 0.10108205, 0.1000798 , 0.1000798 ,
       0.1000798 , 0.1000798 , 0.10000578, 0.10000578, 0.10000578,
       0.10000578, 0.10000041, 0.10000041, 0.10000041, 0.10000041,
       0.10000003, 0.10000003, 0.10000003, 0.10000003, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999945,
       0.99999945, 0.99999945, 0.99999945, 0.99999434, 0.99999434,
       0.99999434, 0.99999434, 0.99995077, 0.99995077, 0.99995077,
       0.99995077, 0.99964227, 0.99964227, 0.99964227, 0.99964227,
       0.99788241, 0.99788241, 0.99788241, 0.99788241, 0.99011845,
       0.99011845, 0.99011845, 0.99011845, 0.96484327, 0.96484327,
       0.96484327, 0.96484327, 0.90617454, 0.90617454, 0.90617454,
       0.90617454, 0.80826973, 0.80826973, 0.80826973, 0.80826973,
       0.69774371, 0.69774371, 0.69774371, 0.69774371, 0.62678051,
       0.62678051, 0.62678051, 0.62678051, 0.60206381, 0.60206381,
       0.60206381, 0.60206381, 0.57792713, 0.57792713, 0.57792713,
       0.57792713, 0.54425972, 0.54425972, 0.54425972, 0.54425972,
       0.49346931, 0.49346931, 0.49346931, 0.49346931, 0.42544549,
       0.42544549, 0.42544549, 0.42544549, 0.36171435, 0.36171435,
       0.36171435, 0.36171435, 0.31197099, 0.31197099, 0.31197099,
       0.31197099, 0.25437815, 0.25437815, 0.25437815, 0.25437815,
       0.16685114, 0.16685114, 0.16685114, 0.16685114, 0.13005985,
       0.13005985, 0.13005985, 0.13005985, 0.1254259 , 0.1254259 ,
       0.1254259 , 0.1254259 , 0.12503221, 0.12503221, 0.12503221,
       0.12503221, 0.12500236, 0.12500236, 0.12500236, 0.12500236,
       0.12500017, 0.12500017, 0.12500017, 0.12500017, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000056e-01, 7.50000056e-01, 7.50000056e-01, 7.50000056e-01,
       7.50000657e-01, 7.50000657e-01, 7.50000657e-01, 7.50000657e-01,
       7.50006699e-01, 7.50006699e-01, 7.50006699e-01, 7.50006699e-01,
       7.50058238e-01, 7.50058238e-01, 7.50058238e-01, 7.50058238e-01,
       7.50423153e-01, 7.50423153e-01, 7.50423153e-01, 7.50423153e-01,
       7.52504789e-01, 7.52504789e-01, 7.52504789e-01, 7.52504789e-01,
       7.61712941e-01, 7.61712941e-01, 7.61712941e-01, 7.61712941e-01,
       7.92115818e-01, 7.92115818e-01, 7.92115818e-01, 7.92115818e-01,
       8.65693722e-01, 8.65693722e-01, 8.65693722e-01, 8.65693722e-01,
       9.99009811e-01, 9.99009811e-01, 9.99009811e-01, 9.99009811e-01,
       1.15520654e+00, 1.15520654e+00, 1.15520654e+00, 1.15520654e+00,
       1.28768450e+00, 1.28768450e+00, 1.28768450e+00, 1.28768450e+00,
       1.34268320e+00, 1.34268320e+00, 1.34268320e+00, 1.34268320e+00,
       1.35715119e+00, 1.35715119e+00, 1.35715119e+00, 1.35715119e+00,
       1.36145245e+00, 1.36145245e+00, 1.36145245e+00, 1.36145245e+00,
       1.36744320e+00, 1.36744320e+00, 1.36744320e+00, 1.36744320e+00,
       1.36938027e+00, 1.36938027e+00, 1.36938027e+00, 1.36938027e+00,
       1.36032906e+00, 1.36032906e+00, 1.36032906e+00, 1.36032906e+00,
       1.30083630e+00, 1.30083630e+00, 1.30083630e+00, 1.30083630e+00,
       1.03904720e+00, 1.03904720e+00, 1.03904720e+00, 1.03904720e+00,
       4.03867617e-01, 4.03867617e-01, 4.03867617e-01, 4.03867617e-01,
       4.78324169e-02, 4.78324169e-02, 4.78324169e-02, 4.78324169e-02,
       3.73133151e-03, 3.73133151e-03, 3.73133151e-03, 3.73133151e-03,
       2.75051151e-04, 2.75051151e-04, 2.75051151e-04, 2.75051151e-04,
       1.99786506e-05, 1.99786506e-05, 1.99786506e-05, 1.99786506e-05,
       1.42705014e-06, 1.42705014e-06, 1.42705014e-06, 1.42705014e-06,
       9.93370281e-08, 9.93370281e-08, 9.93370281e-08, 9.93370281e-08,
       6.66943143e-09, 6.66943143e-09, 6.66943143e-09, 6.66943143e-09,
       4.27344831e-10, 4.27344831e-10, 4.27344831e-10, 4.27344831e-10,
       2.58814547e-11, 2.58814547e-11, 2.58814547e-11, 2.58814547e-11,
       1.46936578e-12, 1.46936578e-12, 1.46936578e-12, 1.46936578e-12,
       7.76106587e-14, 7.76106587e-14, 7.76106587e-14, 7.76106587e-14,
       3.75314846e-15, 3.75314846e-15, 3.75314846e-15, 3.75314846e-15,
       1.59879132e-16, 1.59879132e-16, 1.59879132e-16, 1.59879132e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999922,
       0.99999922, 0.99999922, 0.99999922, 0.99999207, 0.99999207,
       0.99999207, 0.99999207, 0.99993109, 0.99993109, 0.99993109,
       0.99993109, 0.99949942, 0.99949942, 0.99949942, 0.99949942,
       0.9970403 , 0.9970403 , 0.9970403 , 0.9970403 , 0.98623335,
       0.98623335, 0.98623335, 0.98623335, 0.95138454, 0.95138454,
       0.95138454, 0.95138454, 0.87208823, 0.87208823, 0.87208823,
       0.87208823, 0.74445435, 0.74445435, 0.74445435, 0.74445435,
       0.60875561, 0.60875561, 0.60875561, 0.60875561, 0.51204856,
       0.51204856, 0.51204856, 0.51204856, 0.47069723, 0.47069723,
       0.47069723, 0.47069723, 0.46531969, 0.46531969, 0.46531969,
       0.46531969, 0.46797682, 0.46797682, 0.46797682, 0.46797682,
       0.47094798, 0.47094798, 0.47094798, 0.47094798, 0.47050583,
       0.47050583, 0.47050583, 0.47050583, 0.4648433 , 0.4648433 ,
       0.4648433 , 0.4648433 , 0.43679273, 0.43679273, 0.43679273,
       0.43679273, 0.33696764, 0.33696764, 0.33696764, 0.33696764,
       0.16596212, 0.16596212, 0.16596212, 0.16596212, 0.10647712,
       0.10647712, 0.10647712, 0.10647712, 0.10049417, 0.10049417,
       0.10049417, 0.10049417, 0.10003639, 0.10003639, 0.10003639,
       0.10003639, 0.10000264, 0.10000264, 0.10000264, 0.10000264,
       0.10000019, 0.10000019, 0.10000019, 0.10000019, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999895,
       0.99999895, 0.99999895, 0.99999895, 0.99999022, 0.99999022,
       0.99999022, 0.99999022, 0.99992199, 0.99992199, 0.99992199,
       0.99992199, 0.99947912, 0.99947912, 0.99947912, 0.99947912,
       0.99716379, 0.99716379, 0.99716379, 0.99716379, 0.98780171,
       0.98780171, 0.98780171, 0.98780171, 0.95977919, 0.95977919,
       0.95977919, 0.95977919, 0.899356  , 0.899356  , 0.899356  ,
       0.899356  , 0.80398103, 0.80398103, 0.80398103, 0.80398103,
       0.69885064, 0.69885064, 0.69885064, 0.69885064, 0.62663048,
       0.62663048, 0.62663048, 0.62663048, 0.60456203, 0.60456203,
       0.60456203, 0.60456203, 0.58574218, 0.58574218, 0.58574218,
       0.58574218, 0.55889671, 0.55889671, 0.55889671, 0.55889671,
       0.51652074, 0.51652074, 0.51652074, 0.51652074, 0.45677399,
       0.45677399, 0.45677399, 0.45677399, 0.38843992, 0.38843992,
       0.38843992, 0.38843992, 0.33857154, 0.33857154, 0.33857154,
       0.33857154, 0.2958245 , 0.2958245 , 0.2958245 , 0.2958245 ,
       0.23037144, 0.23037144, 0.23037144, 0.23037144, 0.14866712,
       0.14866712, 0.14866712, 0.14866712, 0.12746378, 0.12746378,
       0.12746378, 0.12746378, 0.12519715, 0.12519715, 0.12519715,
       0.12519715, 0.12501472, 0.12501472, 0.12501472, 0.12501472,
       0.12500108, 0.12500108, 0.12500108, 0.12500108, 0.12500008,
       0.12500008, 0.12500008, 0.12500008, 0.12500001, 0.12500001,
       0.12500001, 0.12500001, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000115e-01, 7.50000115e-01, 7.50000115e-01, 7.50000115e-01,
       7.50001238e-01, 7.50001238e-01, 7.50001238e-01, 7.50001238e-01,
       7.50011569e-01, 7.50011569e-01, 7.50011569e-01, 7.50011569e-01,
       7.50092289e-01, 7.50092289e-01, 7.50092289e-01, 7.50092289e-01,
       7.50616160e-01, 7.50616160e-01, 7.50616160e-01, 7.50616160e-01,
       7.53355737e-01, 7.53355737e-01, 7.53355737e-01, 7.53355737e-01,
       7.64475707e-01, 7.64475707e-01, 7.64475707e-01, 7.64475707e-01,
       7.98316114e-01, 7.98316114e-01, 7.98316114e-01, 7.98316114e-01,
       8.74560291e-01, 8.74560291e-01, 8.74560291e-01, 8.74560291e-01,
       1.00500047e+00, 1.00500047e+00, 1.00500047e+00, 1.00500047e+00,
       1.15260232e+00, 1.15260232e+00, 1.15260232e+00, 1.15260232e+00,
       1.28340256e+00, 1.28340256e+00, 1.28340256e+00, 1.28340256e+00,
       1.34114330e+00, 1.34114330e+00, 1.34114330e+00, 1.34114330e+00,
       1.35501138e+00, 1.35501138e+00, 1.35501138e+00, 1.35501138e+00,
       1.35810478e+00, 1.35810478e+00, 1.35810478e+00, 1.35810478e+00,
       1.36336774e+00, 1.36336774e+00, 1.36336774e+00, 1.36336774e+00,
       1.36847879e+00, 1.36847879e+00, 1.36847879e+00, 1.36847879e+00,
       1.36811377e+00, 1.36811377e+00, 1.36811377e+00, 1.36811377e+00,
       1.35072599e+00, 1.35072599e+00, 1.35072599e+00, 1.35072599e+00,
       1.25426560e+00, 1.25426560e+00, 1.25426560e+00, 1.25426560e+00,
       8.79763139e-01, 8.79763139e-01, 8.79763139e-01, 8.79763139e-01,
       2.32057473e-01, 2.32057473e-01, 2.32057473e-01, 2.32057473e-01,
       2.26258785e-02, 2.26258785e-02, 2.26258785e-02, 2.26258785e-02,
       1.70706147e-03, 1.70706147e-03, 1.70706147e-03, 1.70706147e-03,
       1.25313284e-04, 1.25313284e-04, 1.25313284e-04, 1.25313284e-04,
       9.12735833e-06, 9.12735833e-06, 9.12735833e-06, 9.12735833e-06,
       6.55213907e-07, 6.55213907e-07, 6.55213907e-07, 6.55213907e-07,
       4.60110799e-08, 4.60110799e-08, 4.60110799e-08, 4.60110799e-08,
       3.13257583e-09, 3.13257583e-09, 3.13257583e-09, 3.13257583e-09,
       2.04833966e-10, 2.04833966e-10, 2.04833966e-10, 2.04833966e-10,
       1.27491473e-11, 1.27491473e-11, 1.27491473e-11, 1.27491473e-11,
       7.49384168e-13, 7.49384168e-13, 7.49384168e-13, 7.49384168e-13,
       4.12715433e-14, 4.12715433e-14, 4.12715433e-14, 4.12715433e-14,
       2.08438071e-15, 2.08438071e-15, 2.08438071e-15, 2.08438071e-15,
       6.95966513e-17, 6.95966513e-17, 6.95966513e-17, 6.95966513e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999854,
       0.99999854, 0.99999854, 0.99999854, 0.99998631, 0.99998631,
       0.99998631, 0.99998631, 0.99989081, 0.99989081, 0.99989081,
       0.99989081, 0.99927118, 0.99927118, 0.99927118, 0.99927118,
       0.99603677, 0.99603677, 0.99603677, 0.99603677, 0.98301421,
       0.98301421, 0.98301421, 0.98301421, 0.94442958, 0.94442958,
       0.94442958, 0.94442958, 0.86293221, 0.86293221, 0.86293221,
       0.86293221, 0.73885742, 0.73885742, 0.73885742, 0.73885742,
       0.61009357, 0.61009357, 0.61009357, 0.61009357, 0.51726091,
       0.51726091, 0.51726091, 0.51726091, 0.47391825, 0.47391825,
       0.47391825, 0.47391825, 0.46487842, 0.46487842, 0.46487842,
       0.46487842, 0.46589916, 0.46589916, 0.46589916, 0.46589916,
       0.46870505, 0.46870505, 0.46870505, 0.46870505, 0.47008932,
       0.47008932, 0.47008932, 0.47008932, 0.4686757 , 0.4686757 ,
       0.4686757 , 0.4686757 , 0.45927249, 0.45927249, 0.45927249,
       0.45927249, 0.41693776, 0.41693776, 0.41693776, 0.41693776,
       0.28500491, 0.28500491, 0.28500491, 0.28500491, 0.13470714,
       0.13470714, 0.13470714, 0.13470714, 0.10302215, 0.10302215,
       0.10302215, 0.10302215, 0.10022593, 0.10022593, 0.10022593,
       0.10022593, 0.10001658, 0.10001658, 0.10001658, 0.10001658,
       0.10000121, 0.10000121, 0.10000121, 0.10000121, 0.10000009,
       0.10000009, 0.10000009, 0.10000009, 0.10000001, 0.10000001,
       0.10000001, 0.10000001, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999981, 0.99999981, 0.99999981, 0.99999981, 0.99999812,
       0.99999812, 0.99999812, 0.99999812, 0.99998381, 0.99998381,
       0.99998381, 0.99998381, 0.99988072, 0.99988072, 0.99988072,
       0.99988072, 0.99926394, 0.99926394, 0.99926394, 0.99926394,
       0.99629293, 0.99629293, 0.99629293, 0.99629293, 0.98522251,
       0.98522251, 0.98522251, 0.98522251, 0.95457584, 0.95457584,
       0.95457584, 0.95457584, 0.89280503, 0.89280503, 0.89280503,
       0.89280503, 0.80007672, 0.80007672, 0.80007672, 0.80007672,
       0.70045666, 0.70045666, 0.70045666, 0.70045666, 0.62631673,
       0.62631673, 0.62631673, 0.62631673, 0.60514204, 0.60514204,
       0.60514204, 0.60514204, 0.59141774, 0.59141774, 0.59141774,
       0.59141774, 0.57060546, 0.57060546, 0.57060546, 0.57060546,
       0.53581477, 0.53581477, 0.53581477, 0.53581477, 0.48414835,
       0.48414835, 0.48414835, 0.48414835, 0.41731063, 0.41731063,
       0.41731063, 0.41731063, 0.36078704, 0.36078704, 0.36078704,
       0.36078704, 0.32184882, 0.32184882, 0.32184882, 0.32184882,
       0.28122767, 0.28122767, 0.28122767, 0.28122767, 0.20285998,
       0.20285998, 0.20285998, 0.20285998, 0.13769277, 0.13769277,
       0.13769277, 0.13769277, 0.12617394, 0.12617394, 0.12617394,
       0.12617394, 0.12509074, 0.12509074, 0.12509074, 0.12509074,
       0.12500673, 0.12500673, 0.12500673, 0.12500673, 0.12500049,
       0.12500049, 0.12500049, 0.12500049, 0.12500004, 0.12500004,
       0.12500004, 0.12500004, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000020e-01, 7.50000020e-01, 7.50000020e-01, 7.50000020e-01,
       7.50000224e-01, 7.50000224e-01, 7.50000224e-01, 7.50000224e-01,
       7.50002223e-01, 7.50002223e-01, 7.50002223e-01, 7.50002223e-01,
       7.50019160e-01, 7.50019160e-01, 7.50019160e-01, 7.50019160e-01,
       7.50141119e-01, 7.50141119e-01, 7.50141119e-01, 7.50141119e-01,
       7.50870743e-01, 7.50870743e-01, 7.50870743e-01, 7.50870743e-01,
       7.54387642e-01, 7.54387642e-01, 7.54387642e-01, 7.54387642e-01,
       7.67558867e-01, 7.67558867e-01, 7.67558867e-01, 7.67558867e-01,
       8.04718986e-01, 8.04718986e-01, 8.04718986e-01, 8.04718986e-01,
       8.83124089e-01, 8.83124089e-01, 8.83124089e-01, 8.83124089e-01,
       1.01048782e+00, 1.01048782e+00, 1.01048782e+00, 1.01048782e+00,
       1.15015373e+00, 1.15015373e+00, 1.15015373e+00, 1.15015373e+00,
       1.27828995e+00, 1.27828995e+00, 1.27828995e+00, 1.27828995e+00,
       1.33996420e+00, 1.33996420e+00, 1.33996420e+00, 1.33996420e+00,
       1.35434258e+00, 1.35434258e+00, 1.35434258e+00, 1.35434258e+00,
       1.35651250e+00, 1.35651250e+00, 1.35651250e+00, 1.35651250e+00,
       1.35943170e+00, 1.35943170e+00, 1.35943170e+00, 1.35943170e+00,
       1.36562928e+00, 1.36562928e+00, 1.36562928e+00, 1.36562928e+00,
       1.36871828e+00, 1.36871828e+00, 1.36871828e+00, 1.36871828e+00,
       1.36559918e+00, 1.36559918e+00, 1.36559918e+00, 1.36559918e+00,
       1.33410068e+00, 1.33410068e+00, 1.33410068e+00, 1.33410068e+00,
       1.18316118e+00, 1.18316118e+00, 1.18316118e+00, 1.18316118e+00,
       6.83501416e-01, 6.83501416e-01, 6.83501416e-01, 6.83501416e-01,
       1.23082855e-01, 1.23082855e-01, 1.23082855e-01, 1.23082855e-01,
       1.05135867e-02, 1.05135867e-02, 1.05135867e-02, 1.05135867e-02,
       7.79480203e-04, 7.79480203e-04, 7.79480203e-04, 7.79480203e-04,
       5.71875744e-05, 5.71875744e-05, 5.71875744e-05, 5.71875744e-05,
       4.16908647e-06, 4.16908647e-06, 4.16908647e-06, 4.16908647e-06,
       3.00491897e-07, 3.00491897e-07, 3.00491897e-07, 3.00491897e-07,
       2.12578537e-08, 2.12578537e-08, 2.12578537e-08, 2.12578537e-08,
       1.46423018e-09, 1.46423018e-09, 1.46423018e-09, 1.46423018e-09,
       9.73781859e-11, 9.73781859e-11, 9.73781859e-11, 9.73781859e-11,
       6.20162096e-12, 6.20162096e-12, 6.20162096e-12, 6.20162096e-12,
       3.75332869e-13, 3.75332869e-13, 3.75332869e-13, 3.75332869e-13,
       2.14560454e-14, 2.14560454e-14, 2.14560454e-14, 2.14560454e-14,
       1.07221018e-15, 1.07221018e-15, 1.07221018e-15, 1.07221018e-15,
       3.44235441e-17, 3.44235441e-17, 3.44235441e-17, 3.44235441e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999737,
       0.99999737, 0.99999737, 0.99999737, 0.99997733, 0.99997733,
       0.99997733, 0.99997733, 0.99983304, 0.99983304, 0.99983304,
       0.99983304, 0.9989702 , 0.9989702 , 0.9989702 , 0.9989702 ,
       0.99482119, 0.99482119, 0.99482119, 0.99482119, 0.97943416,
       0.97943416, 0.97943416, 0.97943416, 0.93729763, 0.93729763,
       0.93729763, 0.93729763, 0.85415822, 0.85415822, 0.85415822,
       0.85415822, 0.73373529, 0.73373529, 0.73373529, 0.73373529,
       0.6112099 , 0.6112099 , 0.6112099 , 0.6112099 , 0.52160141,
       0.52160141, 0.52160141, 0.52160141, 0.47759878, 0.47759878,
       0.47759878, 0.47759878, 0.465481  , 0.465481  , 0.465481  ,
       0.465481  , 0.46501776, 0.46501776, 0.46501776, 0.46501776,
       0.46641955, 0.46641955, 0.46641955, 0.46641955, 0.46863112,
       0.46863112, 0.46863112, 0.46863112, 0.46903125, 0.46903125,
       0.46903125, 0.46903125, 0.466292  , 0.466292  , 0.466292  ,
       0.466292  , 0.45159727, 0.45159727, 0.45159727, 0.45159727,
       0.38874303, 0.38874303, 0.38874303, 0.38874303, 0.22928284,
       0.22928284, 0.22928284, 0.22928284, 0.11739066, 0.11739066,
       0.11739066, 0.11739066, 0.10139613, 0.10139613, 0.10139613,
       0.10139613, 0.10010314, 0.10010314, 0.10010314, 0.10010314,
       0.10000757, 0.10000757, 0.10000757, 0.10000757, 0.10000055,
       0.10000055, 0.10000055, 0.10000055, 0.10000004, 0.10000004,
       0.10000004, 0.10000004, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
       0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999676,
       0.99999676, 0.99999676, 0.99999676, 0.99997414, 0.99997414,
       0.99997414, 0.99997414, 0.99982322, 0.99982322, 0.99982322,
       0.99982322, 0.99898687, 0.99898687, 0.99898687, 0.99898687,
       0.99525772, 0.99525772, 0.99525772, 0.99525772, 0.98239165,
       0.98239165, 0.98239165, 0.98239165, 0.94927458, 0.94927458,
       0.94927458, 0.94927458, 0.88652829, 0.88652829, 0.88652829,
       0.88652829, 0.79650788, 0.79650788, 0.79650788, 0.79650788,
       0.70249376, 0.70249376, 0.70249376, 0.70249376, 0.62636848,
       0.62636848, 0.62636848, 0.62636848, 0.60412838, 0.60412838,
       0.60412838, 0.60412838, 0.59491245, 0.59491245, 0.59491245,
       0.59491245, 0.57973366, 0.57973366, 0.57973366, 0.57973366,
       0.55197703, 0.55197703, 0.55197703, 0.55197703, 0.50772236,
       0.50772236, 0.50772236, 0.50772236, 0.44720509, 0.44720509,
       0.44720509, 0.44720509, 0.38317069, 0.38317069, 0.38317069,
       0.38317069, 0.34144572, 0.34144572, 0.34144572, 0.34144572,
       0.30939376, 0.30939376, 0.30939376, 0.30939376, 0.26448525,
       0.26448525, 0.26448525, 0.26448525, 0.17617514, 0.17617514,
       0.17617514, 0.17617514, 0.1314537 , 0.1314537 , 0.1314537 ,
       0.1314537 , 0.1255488 , 0.1255488 , 0.1255488 , 0.1255488 ,
       0.12504168, 0.12504168, 0.12504168, 0.12504168, 0.12500308,
       0.12500308, 0.12500308, 0.12500308, 0.12500022, 0.12500022,
       0.12500022, 0.12500022, 0.12500002, 0.12500002, 0.12500002,
       0.12500002, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000040e-01, 7.50000040e-01, 7.50000040e-01, 7.50000040e-01,
       7.50000416e-01, 7.50000416e-01, 7.50000416e-01, 7.50000416e-01,
       7.50003829e-01, 7.50003829e-01, 7.50003829e-01, 7.50003829e-01,
       7.50030595e-01, 7.50030595e-01, 7.50030595e-01, 7.50030595e-01,
       7.50209148e-01, 7.50209148e-01, 7.50209148e-01, 7.50209148e-01,
       7.51198600e-01, 7.51198600e-01, 7.51198600e-01, 7.51198600e-01,
       7.55615304e-01, 7.55615304e-01, 7.55615304e-01, 7.55615304e-01,
       7.70951868e-01, 7.70951868e-01, 7.70951868e-01, 7.70951868e-01,
       8.11275275e-01, 8.11275275e-01, 8.11275275e-01, 8.11275275e-01,
       8.91370127e-01, 8.91370127e-01, 8.91370127e-01, 8.91370127e-01,
       1.01552397e+00, 1.01552397e+00, 1.01552397e+00, 1.01552397e+00,
       1.14807632e+00, 1.14807632e+00, 1.14807632e+00, 1.14807632e+00,
       1.27251928e+00, 1.27251928e+00, 1.27251928e+00, 1.27251928e+00,
       1.33824106e+00, 1.33824106e+00, 1.33824106e+00, 1.33824106e+00,
       1.35468133e+00, 1.35468133e+00, 1.35468133e+00, 1.35468133e+00,
       1.35603990e+00, 1.35603990e+00, 1.35603990e+00, 1.35603990e+00,
       1.35749304e+00, 1.35749304e+00, 1.35749304e+00, 1.35749304e+00,
       1.36161701e+00, 1.36161701e+00, 1.36161701e+00, 1.36161701e+00,
       1.36709517e+00, 1.36709517e+00, 1.36709517e+00, 1.36709517e+00,
       1.36853942e+00, 1.36853942e+00, 1.36853942e+00, 1.36853942e+00,
       1.35998310e+00, 1.35998310e+00, 1.35998310e+00, 1.35998310e+00,
       1.30814871e+00, 1.30814871e+00, 1.30814871e+00, 1.30814871e+00,
       1.07919686e+00, 1.07919686e+00, 1.07919686e+00, 1.07919686e+00,
       4.71939660e-01, 4.71939660e-01, 4.71939660e-01, 4.71939660e-01,
       6.10545409e-02, 6.10545409e-02, 6.10545409e-02, 6.10545409e-02,
       4.82456880e-03, 4.82456880e-03, 4.82456880e-03, 4.82456880e-03,
       3.56247646e-04, 3.56247646e-04, 3.56247646e-04, 3.56247646e-04,
       2.61067770e-05, 2.61067770e-05, 2.61067770e-05, 2.61067770e-05,
       1.90472760e-06, 1.90472760e-06, 1.90472760e-06, 1.90472760e-06,
       1.37703296e-07, 1.37703296e-07, 1.37703296e-07, 1.37703296e-07,
       9.80046714e-09, 9.80046714e-09, 9.80046714e-09, 9.80046714e-09,
       6.81680766e-10, 6.81680766e-10, 6.81680766e-10, 6.81680766e-10,
       4.59859347e-11, 4.59859347e-11, 4.59859347e-11, 4.59859347e-11,
       2.98599883e-12, 2.98599883e-12, 2.98599883e-12, 2.98599883e-12,
       1.85306740e-13, 1.85306740e-13, 1.85306740e-13, 1.85306740e-13,
       1.08045186e-14, 1.08045186e-14, 1.08045186e-14, 1.08045186e-14,
       5.92240191e-16, 5.92240191e-16, 5.92240191e-16, 5.92240191e-16,
       3.36083066e-17, 3.36083066e-17, 3.36083066e-17, 3.36083066e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999995, 0.99999995, 0.99999995, 0.99999995,
       0.99999951, 0.99999951, 0.99999951, 0.99999951, 0.99999547,
       0.99999547, 0.99999547, 0.99999547, 0.9999638 , 0.9999638 ,
       0.9999638 , 0.9999638 , 0.99975256, 0.99975256, 0.99975256,
       0.99975256, 0.99858272, 0.99858272, 0.99858272, 0.99858272,
       0.99337694, 0.99337694, 0.99337694, 0.99337694, 0.97550929,
       0.97550929, 0.97550929, 0.97550929, 0.93004626, 0.93004626,
       0.93004626, 0.93004626, 0.84577195, 0.84577195, 0.84577195,
       0.84577195, 0.72903811, 0.72903811, 0.72903811, 0.72903811,
       0.61232549, 0.61232549, 0.61232549, 0.61232549, 0.52517321,
       0.52517321, 0.52517321, 0.52517321, 0.48111312, 0.48111312,
       0.48111312, 0.48111312, 0.46690051, 0.46690051, 0.46690051,
       0.46690051, 0.46488503, 0.46488503, 0.46488503, 0.46488503,
       0.46527105, 0.46527105, 0.46527105, 0.46527105, 0.46650029,
       0.46650029, 0.46650029, 0.46650029, 0.46823227, 0.46823227,
       0.46823227, 0.46823227, 0.46775485, 0.46775485, 0.46775485,
       0.46775485, 0.46346347, 0.46346347, 0.46346347, 0.46346347,
       0.43993022, 0.43993022, 0.43993022, 0.43993022, 0.35059336,
       0.35059336, 0.35059336, 0.35059336, 0.17933862, 0.17933862,
       0.17933862, 0.17933862, 0.10832159, 0.10832159, 0.10832159,
       0.10832159, 0.1006392 , 0.1006392 , 0.1006392 , 0.1006392 ,
       0.10004713, 0.10004713, 0.10004713, 0.10004713, 0.10000345,
       0.10000345, 0.10000345, 0.10000345, 0.10000025, 0.10000025,
       0.10000025, 0.10000025, 0.10000002, 0.10000002, 0.10000002,
       0.10000002, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999937, 0.99999937, 0.99999937, 0.99999937, 0.99999463,
       0.99999463, 0.99999463, 0.99999463, 0.99996001, 0.99996001,
       0.99996001, 0.99996001, 0.99974513, 0.99974513, 0.99974513,
       0.99974513, 0.99863764, 0.99863764, 0.99863764, 0.99863764,
       0.99404812, 0.99404812, 0.99404812, 0.99404812, 0.97932361,
       0.97932361, 0.97932361, 0.97932361, 0.94391361, 0.94391361,
       0.94391361, 0.94391361, 0.88052889, 0.88052889, 0.88052889,
       0.88052889, 0.7932456 , 0.7932456 , 0.7932456 , 0.7932456 ,
       0.70476828, 0.70476828, 0.70476828, 0.70476828, 0.62723661,
       0.62723661, 0.62723661, 0.62723661, 0.60206706, 0.60206706,
       0.60206706, 0.60206706, 0.5963246 , 0.5963246 , 0.5963246 ,
       0.5963246 , 0.58637919, 0.58637919, 0.58637919, 0.58637919,
       0.56513598, 0.56513598, 0.56513598, 0.56513598, 0.52823708,
       0.52823708, 0.52823708, 0.52823708, 0.47484775, 0.47484775,
       0.47484775, 0.47484775, 0.40888641, 0.40888641, 0.40888641,
       0.40888641, 0.35916094, 0.35916094, 0.35916094, 0.35916094,
       0.32770215, 0.32770215, 0.32770215, 0.32770215, 0.29918377,
       0.29918377, 0.29918377, 0.29918377, 0.24277737, 0.24277737,
       0.24277737, 0.24277737, 0.1544822 , 0.1544822 , 0.1544822 ,
       0.1544822 , 0.12813873, 0.12813873, 0.12813873, 0.12813873,
       0.12525473, 0.12525473, 0.12525473, 0.12525473, 0.12501909,
       0.12501909, 0.12501909, 0.12501909, 0.12500141, 0.12500141,
       0.12500141, 0.12500141, 0.1250001 , 0.1250001 , 0.1250001 ,
       0.1250001 , 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
       7.50000076e-01, 7.50000076e-01, 7.50000076e-01, 7.50000076e-01,
       7.50000743e-01, 7.50000743e-01, 7.50000743e-01, 7.50000743e-01,
       7.50006355e-01, 7.50006355e-01, 7.50006355e-01, 7.50006355e-01,
       7.50047312e-01, 7.50047312e-01, 7.50047312e-01, 7.50047312e-01,
       7.50301532e-01, 7.50301532e-01, 7.50301532e-01, 7.50301532e-01,
       7.51611926e-01, 7.51611926e-01, 7.51611926e-01, 7.51611926e-01,
       7.57051218e-01, 7.57051218e-01, 7.57051218e-01, 7.57051218e-01,
       7.74639815e-01, 7.74639815e-01, 7.74639815e-01, 7.74639815e-01,
       8.17938711e-01, 8.17938711e-01, 8.17938711e-01, 8.17938711e-01,
       8.99300214e-01, 8.99300214e-01, 8.99300214e-01, 8.99300214e-01,
       1.02004865e+00, 1.02004865e+00, 1.02004865e+00, 1.02004865e+00,
       1.14652531e+00, 1.14652531e+00, 1.14652531e+00, 1.14652531e+00,
       1.26652821e+00, 1.26652821e+00, 1.26652821e+00, 1.26652821e+00,
       1.33548200e+00, 1.33548200e+00, 1.33548200e+00, 1.33548200e+00,
       1.35534630e+00, 1.35534630e+00, 1.35534630e+00, 1.35534630e+00,
       1.35643148e+00, 1.35643148e+00, 1.35643148e+00, 1.35643148e+00,
       1.35688841e+00, 1.35688841e+00, 1.35688841e+00, 1.35688841e+00,
       1.35905944e+00, 1.35905944e+00, 1.35905944e+00, 1.35905944e+00,
       1.36376675e+00, 1.36376675e+00, 1.36376675e+00, 1.36376675e+00,
       1.36790199e+00, 1.36790199e+00, 1.36790199e+00, 1.36790199e+00,
       1.36676900e+00, 1.36676900e+00, 1.36676900e+00, 1.36676900e+00,
       1.35107712e+00, 1.35107712e+00, 1.35107712e+00, 1.35107712e+00,
       1.26776498e+00, 1.26776498e+00, 1.26776498e+00, 1.26776498e+00,
       9.35091603e-01, 9.35091603e-01, 9.35091603e-01, 9.35091603e-01,
       2.80578131e-01, 2.80578131e-01, 2.80578131e-01, 2.80578131e-01,
       2.89234526e-02, 2.89234526e-02, 2.89234526e-02, 2.89234526e-02,
       2.21034091e-03, 2.21034091e-03, 2.21034091e-03, 2.21034091e-03,
       1.62586243e-04, 1.62586243e-04, 1.62586243e-04, 1.62586243e-04,
       1.19199001e-05, 1.19199001e-05, 1.19199001e-05, 1.19199001e-05,
       8.70329480e-07, 8.70329480e-07, 8.70329480e-07, 8.70329480e-07,
       6.30649885e-08, 6.30649885e-08, 6.30649885e-08, 6.30649885e-08,
       4.51037180e-09, 4.51037180e-09, 4.51037180e-09, 4.51037180e-09,
       3.16293216e-10, 3.16293216e-10, 3.16293216e-10, 3.16293216e-10,
       2.15961374e-11, 2.15961374e-11, 2.15961374e-11, 2.15961374e-11,
       1.42561215e-12, 1.42561215e-12, 1.42561215e-12, 1.42561215e-12,
       9.02795039e-14, 9.02795039e-14, 9.02795039e-14, 9.02795039e-14,
       5.44358060e-15, 5.44358060e-15, 5.44358060e-15, 5.44358060e-15,
       3.46618598e-16, 3.46618598e-16, 3.46618598e-16, 3.46618598e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999912, 0.99999912, 0.99999912, 0.99999912, 0.99999248,
       0.99999248, 0.99999248, 0.99999248, 0.99994402, 0.99994402,
       0.99994402, 0.99994402, 0.99964328, 0.99964328, 0.99964328,
       0.99964328, 0.99809443, 0.99809443, 0.99809443, 0.99809443,
       0.99169035, 0.99169035, 0.99169035, 0.99169035, 0.97126076,
       0.97126076, 0.97126076, 0.97126076, 0.92272829, 0.92272829,
       0.92272829, 0.92272829, 0.83776294, 0.83776294, 0.83776294,
       0.83776294, 0.72464681, 0.72464681, 0.72464681, 0.72464681,
       0.6136125 , 0.6136125 , 0.6136125 , 0.6136125 , 0.52827001,
       0.52827001, 0.52827001, 0.52827001, 0.48410084, 0.48410084,
       0.48410084, 0.48410084, 0.46873669, 0.46873669, 0.46873669,
       0.46873669, 0.465321  , 0.465321  , 0.465321  , 0.465321  ,
       0.46494758, 0.46494758, 0.46494758, 0.46494758, 0.46514031,
       0.46514031, 0.46514031, 0.46514031, 0.46651691, 0.46651691,
       0.46651691, 0.46651691, 0.46747205, 0.46747205, 0.46747205,
       0.46747205, 0.46667036, 0.46667036, 0.46667036, 0.46667036,
       0.45913733, 0.45913733, 0.45913733, 0.45913733, 0.42245963,
       0.42245963, 0.42245963, 0.42245963, 0.30188464, 0.30188464,
       0.30188464, 0.30188464, 0.14267451, 0.14267451, 0.14267451,
       0.14267451, 0.10387503, 0.10387503, 0.10387503, 0.10387503,
       0.10029258, 0.10029258, 0.10029258, 0.10029258, 0.10002151,
       0.10002151, 0.10002151, 0.10002151, 0.10000158, 0.10000158,
       0.10000158, 0.10000158, 0.10000012, 0.10000012, 0.10000012,
       0.10000012, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
       0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99999137,
       0.99999137, 0.99999137, 0.99999137, 0.9999399 , 0.9999399 ,
       0.9999399 , 0.9999399 , 0.99964148, 0.99964148, 0.99964148,
       0.99964148, 0.9982058 , 0.9982058 , 0.9982058 , 0.9982058 ,
       0.99265642, 0.99265642, 0.99265642, 0.99265642, 0.97603583,
       0.97603583, 0.97603583, 0.97603583, 0.93852726, 0.93852726,
       0.93852726, 0.93852726, 0.87480059, 0.87480059, 0.87480059,
       0.87480059, 0.79029824, 0.79029824, 0.79029824, 0.79029824,
       0.70698986, 0.70698986, 0.70698986, 0.70698986, 0.6291912 ,
       0.6291912 , 0.6291912 , 0.6291912 , 0.59965944, 0.59965944,
       0.59965944, 0.59965944, 0.59596883, 0.59596883, 0.59596883,
       0.59596883, 0.59053208, 0.59053208, 0.59053208, 0.59053208,
       0.5754485 , 0.5754485 , 0.5754485 , 0.5754485 , 0.54568684,
       0.54568684, 0.54568684, 0.54568684, 0.49942691, 0.49942691,
       0.49942691, 0.49942691, 0.43715677, 0.43715677, 0.43715677,
       0.43715677, 0.3785361 , 0.3785361 , 0.3785361 , 0.3785361 ,
       0.34229804, 0.34229804, 0.34229804, 0.34229804, 0.31792866,
       0.31792866, 0.31792866, 0.31792866, 0.28869213, 0.28869213,
       0.28869213, 0.28869213, 0.21502361, 0.21502361, 0.21502361,
       0.21502361, 0.14073628, 0.14073628, 0.14073628, 0.14073628,
       0.12650253, 0.12650253, 0.12650253, 0.12650253, 0.12511712,
       0.12511712, 0.12511712, 0.12511712, 0.12500873, 0.12500873,
       0.12500873, 0.12500873, 0.12500064, 0.12500064, 0.12500064,
       0.12500064, 0.12500005, 0.12500005, 0.12500005, 0.12500005,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
       7.50000141e-01, 7.50000141e-01, 7.50000141e-01, 7.50000141e-01,
       7.50001276e-01, 7.50001276e-01, 7.50001276e-01, 7.50001276e-01,
       7.50010210e-01, 7.50010210e-01, 7.50010210e-01, 7.50010210e-01,
       7.50071106e-01, 7.50071106e-01, 7.50071106e-01, 7.50071106e-01,
       7.50424168e-01, 7.50424168e-01, 7.50424168e-01, 7.50424168e-01,
       7.52123167e-01, 7.52123167e-01, 7.52123167e-01, 7.52123167e-01,
       7.58705271e-01, 7.58705271e-01, 7.58705271e-01, 7.58705271e-01,
       7.78604138e-01, 7.78604138e-01, 7.78604138e-01, 7.78604138e-01,
       8.24667213e-01, 8.24667213e-01, 8.24667213e-01, 8.24667213e-01,
       9.06930229e-01, 9.06930229e-01, 9.06930229e-01, 9.06930229e-01,
       1.02400230e+00, 1.02400230e+00, 1.02400230e+00, 1.02400230e+00,
       1.14543639e+00, 1.14543639e+00, 1.14543639e+00, 1.14543639e+00,
       1.26083347e+00, 1.26083347e+00, 1.26083347e+00, 1.26083347e+00,
       1.33169331e+00, 1.33169331e+00, 1.33169331e+00, 1.33169331e+00,
       1.35558798e+00, 1.35558798e+00, 1.35558798e+00, 1.35558798e+00,
       1.35748922e+00, 1.35748922e+00, 1.35748922e+00, 1.35748922e+00,
       1.35707583e+00, 1.35707583e+00, 1.35707583e+00, 1.35707583e+00,
       1.35801616e+00, 1.35801616e+00, 1.35801616e+00, 1.35801616e+00,
       1.36080683e+00, 1.36080683e+00, 1.36080683e+00, 1.36080683e+00,
       1.36564217e+00, 1.36564217e+00, 1.36564217e+00, 1.36564217e+00,
       1.36731393e+00, 1.36731393e+00, 1.36731393e+00, 1.36731393e+00,
       1.36391260e+00, 1.36391260e+00, 1.36391260e+00, 1.36391260e+00,
       1.33675447e+00, 1.33675447e+00, 1.33675447e+00, 1.33675447e+00,
       1.20527086e+00, 1.20527086e+00, 1.20527086e+00, 1.20527086e+00,
       7.48851135e-01, 7.48851135e-01, 7.48851135e-01, 7.48851135e-01,
       1.51176427e-01, 1.51176427e-01, 1.51176427e-01, 1.51176427e-01,
       1.35019359e-02, 1.35019359e-02, 1.35019359e-02, 1.35019359e-02,
       1.00744606e-03, 1.00744606e-03, 1.00744606e-03, 1.00744606e-03,
       7.41979754e-05, 7.41979754e-05, 7.41979754e-05, 7.41979754e-05,
       5.44259245e-06, 5.44259245e-06, 5.44259245e-06, 5.44259245e-06,
       3.97695182e-07, 3.97695182e-07, 3.97695182e-07, 3.97695182e-07,
       2.88737197e-08, 2.88737197e-08, 2.88737197e-08, 2.88737197e-08,
       2.07323036e-09, 2.07323036e-09, 2.07323036e-09, 2.07323036e-09,
       1.46378112e-10, 1.46378112e-10, 1.46378112e-10, 1.46378112e-10,
       1.00972396e-11, 1.00972396e-11, 1.00972396e-11, 1.00972396e-11,
       6.75961800e-13, 6.75961800e-13, 6.75961800e-13, 6.75961800e-13,
       4.36475480e-14, 4.36475480e-14, 4.36475480e-14, 4.36475480e-14,
       2.72468011e-15, 2.72468011e-15, 2.72468011e-15, 2.72468011e-15,
       1.63168395e-16, 1.63168395e-16, 1.63168395e-16, 1.63168395e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999983, 0.99999983, 0.99999983, 0.99999983,
       0.99999849, 0.99999849, 0.99999849, 0.99999849, 0.99998792,
       0.99998792, 0.99998792, 0.99998792, 0.99991587, 0.99991587,
       0.99991587, 0.99991587, 0.99949823, 0.99949823, 0.99949823,
       0.99949823, 0.9974908 , 0.9974908 , 0.9974908 , 0.9974908 ,
       0.98975108, 0.98975108, 0.98975108, 0.98975108, 0.96671385,
       0.96671385, 0.96671385, 0.96671385, 0.91539051, 0.91539051,
       0.91539051, 0.91539051, 0.83010759, 0.83010759, 0.83010759,
       0.83010759, 0.72047423, 0.72047423, 0.72047423, 0.72047423,
       0.61506756, 0.61506756, 0.61506756, 0.61506756, 0.53125219,
       0.53125219, 0.53125219, 0.53125219, 0.48653051, 0.48653051,
       0.48653051, 0.48653051, 0.47051006, 0.47051006, 0.47051006,
       0.47051006, 0.46624138, 0.46624138, 0.46624138, 0.46624138,
       0.46510466, 0.46510466, 0.46510466, 0.46510466, 0.46465008,
       0.46465008, 0.46465008, 0.46465008, 0.4649645 , 0.4649645 ,
       0.4649645 , 0.4649645 , 0.46635721, 0.46635721, 0.46635721,
       0.46635721, 0.4669385 , 0.4669385 , 0.4669385 , 0.4669385 ,
       0.46507386, 0.46507386, 0.46507386, 0.46507386, 0.45256509,
       0.45256509, 0.45256509, 0.45256509, 0.39724826, 0.39724826,
       0.39724826, 0.39724826, 0.24626608, 0.24626608, 0.24626608,
       0.24626608, 0.12167041, 0.12167041, 0.12167041, 0.12167041,
       0.10179518, 0.10179518, 0.10179518, 0.10179518, 0.10013331,
       0.10013331, 0.10013331, 0.10013331, 0.10000982, 0.10000982,
       0.10000982, 0.10000982, 0.10000072, 0.10000072, 0.10000072,
       0.10000072, 0.10000005, 0.10000005, 0.10000005, 0.10000005,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999979, 0.99999979, 0.99999979, 0.99999979,
       0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99998654,
       0.99998654, 0.99998654, 0.99998654, 0.99991195, 0.99991195,
       0.99991195, 0.99991195, 0.99950669, 0.99950669, 0.99950669,
       0.99950669, 0.99768098, 0.99768098, 0.99768098, 0.99768098,
       0.99107741, 0.99107741, 0.99107741, 0.99107741, 0.97254809,
       0.97254809, 0.97254809, 0.97254809, 0.93314576, 0.93314576,
       0.93314576, 0.93314576, 0.86931013, 0.86931013, 0.86931013,
       0.86931013, 0.78745561, 0.78745561, 0.78745561, 0.78745561,
       0.70912742, 0.70912742, 0.70912742, 0.70912742, 0.63224649,
       0.63224649, 0.63224649, 0.63224649, 0.59761707, 0.59761707,
       0.59761707, 0.59761707, 0.59438022, 0.59438022, 0.59438022,
       0.59438022, 0.5922818 , 0.5922818 , 0.5922818 , 0.5922818 ,
       0.58292186, 0.58292186, 0.58292186, 0.58292186, 0.56012924,
       0.56012924, 0.56012924, 0.56012924, 0.52108056, 0.52108056,
       0.52108056, 0.52108056, 0.46554919, 0.46554919, 0.46554919,
       0.46554919, 0.40122218, 0.40122218, 0.40122218, 0.40122218,
       0.35684472, 0.35684472, 0.35684472, 0.35684472, 0.33092508,
       0.33092508, 0.33092508, 0.33092508, 0.3109016 , 0.3109016 ,
       0.3109016 , 0.3109016 , 0.2745178 , 0.2745178 , 0.2745178 ,
       0.2745178 , 0.18574868, 0.18574868, 0.18574868, 0.18574868,
       0.13312446, 0.13312446, 0.13312446, 0.13312446, 0.12570243,
       0.12570243, 0.12570243, 0.12570243, 0.12505374, 0.12505374,
       0.12505374, 0.12505374, 0.12500399, 0.12500399, 0.12500399,
       0.12500399, 0.12500029, 0.12500029, 0.12500029, 0.12500029,
       0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
       7.50000249e-01, 7.50000249e-01, 7.50000249e-01, 7.50000249e-01,
       7.50002122e-01, 7.50002122e-01, 7.50002122e-01, 7.50002122e-01,
       7.50015931e-01, 7.50015931e-01, 7.50015931e-01, 7.50015931e-01,
       7.50104174e-01, 7.50104174e-01, 7.50104174e-01, 7.50104174e-01,
       7.50583657e-01, 7.50583657e-01, 7.50583657e-01, 7.50583657e-01,
       7.52744722e-01, 7.52744722e-01, 7.52744722e-01, 7.52744722e-01,
       7.60584516e-01, 7.60584516e-01, 7.60584516e-01, 7.60584516e-01,
       7.82823347e-01, 7.82823347e-01, 7.82823347e-01, 7.82823347e-01,
       8.31422691e-01, 8.31422691e-01, 8.31422691e-01, 8.31422691e-01,
       9.14253491e-01, 9.14253491e-01, 9.14253491e-01, 9.14253491e-01,
       1.02753151e+00, 1.02753151e+00, 1.02753151e+00, 1.02753151e+00,
       1.14446418e+00, 1.14446418e+00, 1.14446418e+00, 1.14446418e+00,
       1.25572429e+00, 1.25572429e+00, 1.25572429e+00, 1.25572429e+00,
       1.32726860e+00, 1.32726860e+00, 1.32726860e+00, 1.32726860e+00,
       1.35494148e+00, 1.35494148e+00, 1.35494148e+00, 1.35494148e+00,
       1.35862615e+00, 1.35862615e+00, 1.35862615e+00, 1.35862615e+00,
       1.35792280e+00, 1.35792280e+00, 1.35792280e+00, 1.35792280e+00,
       1.35790930e+00, 1.35790930e+00, 1.35790930e+00, 1.35790930e+00,
       1.35939545e+00, 1.35939545e+00, 1.35939545e+00, 1.35939545e+00,
       1.36269094e+00, 1.36269094e+00, 1.36269094e+00, 1.36269094e+00,
       1.36606975e+00, 1.36606975e+00, 1.36606975e+00, 1.36606975e+00,
       1.36643658e+00, 1.36643658e+00, 1.36643658e+00, 1.36643658e+00,
       1.35906893e+00, 1.35906893e+00, 1.35906893e+00, 1.35906893e+00,
       1.31349500e+00, 1.31349500e+00, 1.31349500e+00, 1.31349500e+00,
       1.11168051e+00, 1.11168051e+00, 1.11168051e+00, 1.11168051e+00,
       5.39000363e-01, 5.39000363e-01, 5.39000363e-01, 5.39000363e-01,
       7.70165641e-02, 7.70165641e-02, 7.70165641e-02, 7.70165641e-02,
       6.19417821e-03, 6.19417821e-03, 6.19417821e-03, 6.19417821e-03,
       4.59703599e-04, 4.59703599e-04, 4.59703599e-04, 4.59703599e-04,
       3.38422021e-05, 3.38422021e-05, 3.38422021e-05, 3.38422021e-05,
       2.48403190e-06, 2.48403190e-06, 2.48403190e-06, 2.48403190e-06,
       1.81703671e-07, 1.81703671e-07, 1.81703671e-07, 1.81703671e-07,
       1.32143978e-08, 1.32143978e-08, 1.32143978e-08, 1.32143978e-08,
       9.51971465e-10, 9.51971465e-10, 9.51971465e-10, 9.51971465e-10,
       6.75952916e-11, 6.75952916e-11, 6.75952916e-11, 6.75952916e-11,
       4.70333296e-12, 4.70333296e-12, 4.70333296e-12, 4.70333296e-12,
       3.18764056e-13, 3.18764056e-13, 3.18764056e-13, 3.18764056e-13,
       2.09144307e-14, 2.09144307e-14, 2.09144307e-14, 2.09144307e-14,
       1.34091434e-15, 1.34091434e-15, 1.34091434e-15, 1.34091434e-15,
       7.02262902e-17, 7.02262902e-17, 7.02262902e-17, 7.02262902e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
       0.99999749, 0.99999749, 0.99999749, 0.99999749, 0.99998115,
       0.99998115, 0.99998115, 0.99998115, 0.99987675, 0.99987675,
       0.99987675, 0.99987675, 0.99930963, 0.99930963, 0.99930963,
       0.99930963, 0.9967574 , 0.9967574 , 0.9967574 , 0.9967574 ,
       0.98755235, 0.98755235, 0.98755235, 0.98755235, 0.961897  ,
       0.961897  , 0.961897  , 0.961897  , 0.90807418, 0.90807418,
       0.90807418, 0.90807418, 0.82280457, 0.82280457, 0.82280457,
       0.82280457, 0.71660108, 0.71660108, 0.71660108, 0.71660108,
       0.61647152, 0.61647152, 0.61647152, 0.61647152, 0.53433754,
       0.53433754, 0.53433754, 0.53433754, 0.48862858, 0.48862858,
       0.48862858, 0.48862858, 0.47191446, 0.47191446, 0.47191446,
       0.47191446, 0.46731186, 0.46731186, 0.46731186, 0.46731186,
       0.46568567, 0.46568567, 0.46568567, 0.46568567, 0.46466716,
       0.46466716, 0.46466716, 0.46466716, 0.46428833, 0.46428833,
       0.46428833, 0.46428833, 0.46483777, 0.46483777, 0.46483777,
       0.46483777, 0.46633071, 0.46633071, 0.46633071, 0.46633071,
       0.46626754, 0.46626754, 0.46626754, 0.46626754, 0.46271596,
       0.46271596, 0.46271596, 0.46271596, 0.44260208, 0.44260208,
       0.44260208, 0.44260208, 0.36235029, 0.36235029, 0.36235029,
       0.36235029, 0.19361303, 0.19361303, 0.19361303, 0.19361303,
       0.11058547, 0.11058547, 0.11058547, 0.11058547, 0.10082107,
       0.10082107, 0.10082107, 0.10082107, 0.10006082, 0.10006082,
       0.10006082, 0.10006082, 0.10000448, 0.10000448, 0.10000448,
       0.10000448, 0.10000033, 0.10000033, 0.10000033, 0.10000033,
       0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999996, 0.99999996, 0.99999996,
       0.99999996, 0.99999964, 0.99999964, 0.99999964, 0.99999964,
       0.99999711, 0.99999711, 0.99999711, 0.99999711, 0.99997953,
       0.99997953, 0.99997953, 0.99997953, 0.99987394, 0.99987394,
       0.99987394, 0.99987394, 0.99933463, 0.99933463, 0.99933463,
       0.99933463, 0.99705312, 0.99705312, 0.99705312, 0.99705312,
       0.98930851, 0.98930851, 0.98930851, 0.98930851, 0.96888183,
       0.96888183, 0.96888183, 0.96888183, 0.92779564, 0.92779564,
       0.92779564, 0.92779564, 0.86405491, 0.86405491, 0.86405491,
       0.86405491, 0.78470523, 0.78470523, 0.78470523, 0.78470523,
       0.71095409, 0.71095409, 0.71095409, 0.71095409, 0.63622824,
       0.63622824, 0.63622824, 0.63622824, 0.59650729, 0.59650729,
       0.59650729, 0.59650729, 0.59187689, 0.59187689, 0.59187689,
       0.59187689, 0.59231137, 0.59231137, 0.59231137, 0.59231137,
       0.58763049, 0.58763049, 0.58763049, 0.58763049, 0.57146876,
       0.57146876, 0.57146876, 0.57146876, 0.53974952, 0.53974952,
       0.53974952, 0.53974952, 0.49128145, 0.49128145, 0.49128145,
       0.49128145, 0.4279453 , 0.4279453 , 0.4279453 , 0.4279453 ,
       0.37383925, 0.37383925, 0.37383925, 0.37383925, 0.34208564,
       0.34208564, 0.34208564, 0.34208564, 0.32336538, 0.32336538,
       0.32336538, 0.32336538, 0.30459933, 0.30459933, 0.30459933,
       0.30459933, 0.25375017, 0.25375017, 0.25375017, 0.25375017,
       0.1610919 , 0.1610919 , 0.1610919 , 0.1610919 , 0.12897793,
       0.12897793, 0.12897793, 0.12897793, 0.12532639, 0.12532639,
       0.12532639, 0.12532639, 0.1250246 , 0.1250246 , 0.1250246 ,
       0.1250246 , 0.12500182, 0.12500182, 0.12500182, 0.12500182,
       0.12500013, 0.12500013, 0.12500013, 0.12500013, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000048e-01, 7.50000048e-01, 7.50000048e-01, 7.50000048e-01,
       7.50000428e-01, 7.50000428e-01, 7.50000428e-01, 7.50000428e-01,
       7.50003425e-01, 7.50003425e-01, 7.50003425e-01, 7.50003425e-01,
       7.50024215e-01, 7.50024215e-01, 7.50024215e-01, 7.50024215e-01,
       7.50149149e-01, 7.50149149e-01, 7.50149149e-01, 7.50149149e-01,
       7.50787259e-01, 7.50787259e-01, 7.50787259e-01, 7.50787259e-01,
       7.53488669e-01, 7.53488669e-01, 7.53488669e-01, 7.53488669e-01,
       7.62693058e-01, 7.62693058e-01, 7.62693058e-01, 7.62693058e-01,
       7.87273690e-01, 7.87273690e-01, 7.87273690e-01, 7.87273690e-01,
       8.38170390e-01, 8.38170390e-01, 8.38170390e-01, 8.38170390e-01,
       9.21264845e-01, 9.21264845e-01, 9.21264845e-01, 9.21264845e-01,
       1.03075711e+00, 1.03075711e+00, 1.03075711e+00, 1.03075711e+00,
       1.14341648e+00, 1.14341648e+00, 1.14341648e+00, 1.14341648e+00,
       1.25118970e+00, 1.25118970e+00, 1.25118970e+00, 1.25118970e+00,
       1.32270364e+00, 1.32270364e+00, 1.32270364e+00, 1.32270364e+00,
       1.35337313e+00, 1.35337313e+00, 1.35337313e+00, 1.35337313e+00,
       1.35937786e+00, 1.35937786e+00, 1.35937786e+00, 1.35937786e+00,
       1.35905340e+00, 1.35905340e+00, 1.35905340e+00, 1.35905340e+00,
       1.35850392e+00, 1.35850392e+00, 1.35850392e+00, 1.35850392e+00,
       1.35894967e+00, 1.35894967e+00, 1.35894967e+00, 1.35894967e+00,
       1.36090221e+00, 1.36090221e+00, 1.36090221e+00, 1.36090221e+00,
       1.36370505e+00, 1.36370505e+00, 1.36370505e+00, 1.36370505e+00,
       1.36598769e+00, 1.36598769e+00, 1.36598769e+00, 1.36598769e+00,
       1.36486873e+00, 1.36486873e+00, 1.36486873e+00, 1.36486873e+00,
       1.35070633e+00, 1.35070633e+00, 1.35070633e+00, 1.35070633e+00,
       1.27741452e+00, 1.27741452e+00, 1.27741452e+00, 1.27741452e+00,
       9.81464738e-01, 9.81464738e-01, 9.81464738e-01, 9.81464738e-01,
       3.36046188e-01, 3.36046188e-01, 3.36046188e-01, 3.36046188e-01,
       3.68463062e-02, 3.68463062e-02, 3.68463062e-02, 3.68463062e-02,
       2.83912454e-03, 2.83912454e-03, 2.83912454e-03, 2.83912454e-03,
       2.09688885e-04, 2.09688885e-04, 2.09688885e-04, 2.09688885e-04,
       1.54316406e-05, 1.54316406e-05, 1.54316406e-05, 1.54316406e-05,
       1.13356929e-06, 1.13356929e-06, 1.13356929e-06, 1.13356929e-06,
       8.29963615e-08, 8.29963615e-08, 8.29963615e-08, 8.29963615e-08,
       6.04553786e-09, 6.04553786e-09, 6.04553786e-09, 6.04553786e-09,
       4.36752195e-10, 4.36752195e-10, 4.36752195e-10, 4.36752195e-10,
       3.11603660e-11, 3.11603660e-11, 3.11603660e-11, 3.11603660e-11,
       2.18424142e-12, 2.18424142e-12, 2.18424142e-12, 2.18424142e-12,
       1.49600112e-13, 1.49600112e-13, 1.49600112e-13, 1.49600112e-13,
       9.91152530e-15, 9.91152530e-15, 9.91152530e-15, 9.91152530e-15,
       6.43616174e-16, 6.43616174e-16, 6.43616174e-16, 6.43616174e-16,
       3.40906797e-17, 3.40906797e-17, 3.40906797e-17, 3.40906797e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
       0.99999994, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
       0.99999595, 0.99999595, 0.99999595, 0.99999595, 0.99997135,
       0.99997135, 0.99997135, 0.99997135, 0.99982354, 0.99982354,
       0.99982354, 0.99982354, 0.9990689 , 0.9990689 , 0.9990689 ,
       0.9990689 , 0.99588029, 0.99588029, 0.99588029, 0.99588029,
       0.98509107, 0.98509107, 0.98509107, 0.98509107, 0.95684085,
       0.95684085, 0.95684085, 0.95684085, 0.90081585, 0.90081585,
       0.90081585, 0.90081585, 0.81585349, 0.81585349, 0.81585349,
       0.81585349, 0.71306117, 0.71306117, 0.71306117, 0.71306117,
       0.61770042, 0.61770042, 0.61770042, 0.61770042, 0.53754808,
       0.53754808, 0.53754808, 0.53754808, 0.49069344, 0.49069344,
       0.49069344, 0.49069344, 0.47291767, 0.47291767, 0.47291767,
       0.47291767, 0.46823402, 0.46823402, 0.46823402, 0.46823402,
       0.46647842, 0.46647842, 0.46647842, 0.46647842, 0.46510214,
       0.46510214, 0.46510214, 0.46510214, 0.46413565, 0.46413565,
       0.46413565, 0.46413565, 0.46395683, 0.46395683, 0.46395683,
       0.46395683, 0.46511952, 0.46511952, 0.46511952, 0.46511952,
       0.46605603, 0.46605603, 0.46605603, 0.46605603, 0.46541207,
       0.46541207, 0.46541207, 0.46541207, 0.45926933, 0.45926933,
       0.45926933, 0.45926933, 0.42726405, 0.42726405, 0.42726405,
       0.42726405, 0.31664309, 0.31664309, 0.31664309, 0.31664309,
       0.15234215, 0.15234215, 0.15234215, 0.15234215, 0.10495591,
       0.10495591, 0.10495591, 0.10495591, 0.10037589, 0.10037589,
       0.10037589, 0.10037589, 0.10002774, 0.10002774, 0.10002774,
       0.10002774, 0.10000204, 0.10000204, 0.10000204, 0.10000204,
       0.10000015, 0.10000015, 0.10000015, 0.10000015, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
       0.99999993, 0.9999994 , 0.9999994 , 0.9999994 , 0.9999994 ,
       0.99999545, 0.99999545, 0.99999545, 0.99999545, 0.99996962,
       0.99996962, 0.99996962, 0.99996962, 0.99982324, 0.99982324,
       0.99982324, 0.99982324, 0.9991187 , 0.9991187 , 0.9991187 ,
       0.9991187 , 0.9963127 , 0.9963127 , 0.9963127 , 0.9963127 ,
       0.98734973, 0.98734973, 0.98734973, 0.98734973, 0.96505957,
       0.96505957, 0.96505957, 0.96505957, 0.92250062, 0.92250062,
       0.92250062, 0.92250062, 0.85904285, 0.85904285, 0.85904285,
       0.85904285, 0.78210563, 0.78210563, 0.78210563, 0.78210563,
       0.71214743, 0.71214743, 0.71214743, 0.71214743, 0.64091277,
       0.64091277, 0.64091277, 0.64091277, 0.5967045 , 0.5967045 ,
       0.5967045 , 0.5967045 , 0.58917295, 0.58917295, 0.58917295,
       0.58917295, 0.59108358, 0.59108358, 0.59108358, 0.59108358,
       0.58980314, 0.58980314, 0.58980314, 0.58980314, 0.57968492,
       0.57968492, 0.57968492, 0.57968492, 0.5552647 , 0.5552647 ,
       0.5552647 , 0.5552647 , 0.51411927, 0.51411927, 0.51411927,
       0.51411927, 0.45652797, 0.45652797, 0.45652797, 0.45652797,
       0.39426685, 0.39426685, 0.39426685, 0.39426685, 0.35435985,
       0.35435985, 0.35435985, 0.35435985, 0.33267462, 0.33267462,
       0.33267462, 0.33267462, 0.3183219 , 0.3183219 , 0.3183219 ,
       0.3183219 , 0.29605972, 0.29605972, 0.29605972, 0.29605972,
       0.22620934, 0.22620934, 0.22620934, 0.22620934, 0.1443368 ,
       0.1443368 , 0.1443368 , 0.1443368 , 0.12690967, 0.12690967,
       0.12690967, 0.12690967, 0.12515044, 0.12515044, 0.12515044,
       0.12515044, 0.12501125, 0.12501125, 0.12501125, 0.12501125,
       0.12500083, 0.12500083, 0.12500083, 0.12500083, 0.12500006,
       0.12500006, 0.12500006, 0.12500006, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000084e-01, 7.50000084e-01, 7.50000084e-01, 7.50000084e-01,
       7.50000712e-01, 7.50000712e-01, 7.50000712e-01, 7.50000712e-01,
       7.50005384e-01, 7.50005384e-01, 7.50005384e-01, 7.50005384e-01,
       7.50035944e-01, 7.50035944e-01, 7.50035944e-01, 7.50035944e-01,
       7.50209136e-01, 7.50209136e-01, 7.50209136e-01, 7.50209136e-01,
       7.51042813e-01, 7.51042813e-01, 7.51042813e-01, 7.51042813e-01,
       7.54366472e-01, 7.54366472e-01, 7.54366472e-01, 7.54366472e-01,
       7.65032020e-01, 7.65032020e-01, 7.65032020e-01, 7.65032020e-01,
       7.91929802e-01, 7.91929802e-01, 7.91929802e-01, 7.91929802e-01,
       8.44879000e-01, 8.44879000e-01, 8.44879000e-01, 8.44879000e-01,
       9.27961552e-01, 9.27961552e-01, 9.27961552e-01, 9.27961552e-01,
       1.03376284e+00, 1.03376284e+00, 1.03376284e+00, 1.03376284e+00,
       1.14223005e+00, 1.14223005e+00, 1.14223005e+00, 1.14223005e+00,
       1.24703626e+00, 1.24703626e+00, 1.24703626e+00, 1.24703626e+00,
       1.31835154e+00, 1.31835154e+00, 1.31835154e+00, 1.31835154e+00,
       1.35115729e+00, 1.35115729e+00, 1.35115729e+00, 1.35115729e+00,
       1.35952683e+00, 1.35952683e+00, 1.35952683e+00, 1.35952683e+00,
       1.36000050e+00, 1.36000050e+00, 1.36000050e+00, 1.36000050e+00,
       1.35946783e+00, 1.35946783e+00, 1.35946783e+00, 1.35946783e+00,
       1.35931504e+00, 1.35931504e+00, 1.35931504e+00, 1.35931504e+00,
       1.36014004e+00, 1.36014004e+00, 1.36014004e+00, 1.36014004e+00,
       1.36169449e+00, 1.36169449e+00, 1.36169449e+00, 1.36169449e+00,
       1.36442795e+00, 1.36442795e+00, 1.36442795e+00, 1.36442795e+00,
       1.36544109e+00, 1.36544109e+00, 1.36544109e+00, 1.36544109e+00,
       1.36179797e+00, 1.36179797e+00, 1.36179797e+00, 1.36179797e+00,
       1.33753550e+00, 1.33753550e+00, 1.33753550e+00, 1.33753550e+00,
       1.22289370e+00, 1.22289370e+00, 1.22289370e+00, 1.22289370e+00,
       8.07609730e-01, 8.07609730e-01, 8.07609730e-01, 8.07609730e-01,
       1.84578851e-01, 1.84578851e-01, 1.84578851e-01, 1.84578851e-01,
       1.72459356e-02, 1.72459356e-02, 1.72459356e-02, 1.72459356e-02,
       1.29636420e-03, 1.29636420e-03, 1.29636420e-03, 1.29636420e-03,
       9.56231757e-05, 9.56231757e-05, 9.56231757e-05, 9.56231757e-05,
       7.03861571e-06, 7.03861571e-06, 7.03861571e-06, 7.03861571e-06,
       5.17203032e-07, 5.17203032e-07, 5.17203032e-07, 5.17203032e-07,
       3.79012480e-08, 3.79012480e-08, 3.79012480e-08, 3.79012480e-08,
       2.76477945e-09, 2.76477945e-09, 2.76477945e-09, 2.76477945e-09,
       2.00229731e-10, 2.00229731e-10, 2.00229731e-10, 2.00229731e-10,
       1.43439296e-11, 1.43439296e-11, 1.43439296e-11, 1.43439296e-11,
       1.01180886e-12, 1.01180886e-12, 1.01180886e-12, 1.01180886e-12,
       6.98829576e-14, 6.98829576e-14, 6.98829576e-14, 6.98829576e-14,
       4.66606318e-15, 4.66606318e-15, 4.66606318e-15, 4.66606318e-15,
       3.37838020e-16, 3.37838020e-16, 3.37838020e-16, 3.37838020e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.9999999 , 0.9999999 , 0.9999999 ,
       0.9999999 , 0.99999916, 0.99999916, 0.99999916, 0.99999916,
       0.99999363, 0.99999363, 0.99999363, 0.99999363, 0.99995747,
       0.99995747, 0.99995747, 0.99995747, 0.99975257, 0.99975257,
       0.99975257, 0.99975257, 0.99876684, 0.99876684, 0.99876684,
       0.99876684, 0.99484634, 0.99484634, 0.99484634, 0.99484634,
       0.98236786, 0.98236786, 0.98236786, 0.98236786, 0.95157745,
       0.95157745, 0.95157745, 0.95157745, 0.89364753, 0.89364753,
       0.89364753, 0.89364753, 0.80925164, 0.80925164, 0.80925164,
       0.80925164, 0.70985244, 0.70985244, 0.70985244, 0.70985244,
       0.61872344, 0.61872344, 0.61872344, 0.61872344, 0.54078556,
       0.54078556, 0.54078556, 0.54078556, 0.49293771, 0.49293771,
       0.49293771, 0.49293771, 0.47368455, 0.47368455, 0.47368455,
       0.47368455, 0.46885678, 0.46885678, 0.46885678, 0.46885678,
       0.46721006, 0.46721006, 0.46721006, 0.46721006, 0.46578019,
       0.46578019, 0.46578019, 0.46578019, 0.46443757, 0.46443757,
       0.46443757, 0.46443757, 0.46363693, 0.46363693, 0.46363693,
       0.46363693, 0.46405796, 0.46405796, 0.46405796, 0.46405796,
       0.46529802, 0.46529802, 0.46529802, 0.46529802, 0.46568405,
       0.46568405, 0.46568405, 0.46568405, 0.46436586, 0.46436586,
       0.46436586, 0.46436586, 0.45372193, 0.45372193, 0.45372193,
       0.45372193, 0.40428218, 0.40428218, 0.40428218, 0.40428218,
       0.26242895, 0.26242895, 0.26242895, 0.26242895, 0.12688139,
       0.12688139, 0.12688139, 0.12688139, 0.10229679, 0.10229679,
       0.10229679, 0.10229679, 0.10017155, 0.10017155, 0.10017155,
       0.10017155, 0.10001265, 0.10001265, 0.10001265, 0.10001265,
       0.10000093, 0.10000093, 0.10000093, 0.10000093, 0.10000007,
       0.10000007, 0.10000007, 0.10000007, 0.10000001, 0.10000001,
       0.10000001, 0.10000001, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999988, 0.99999988, 0.99999988,
       0.99999988, 0.99999902, 0.99999902, 0.99999902, 0.99999902,
       0.99999302, 0.99999302, 0.99999302, 0.99999302, 0.99995587,
       0.99995587, 0.99995587, 0.99995587, 0.99975682, 0.99975682,
       0.99975682, 0.99975682, 0.99885188, 0.99885188, 0.99885188,
       0.99885188, 0.99545106, 0.99545106, 0.99545106, 0.99545106,
       0.98520362, 0.98520362, 0.98520362, 0.98520362, 0.96110441,
       0.96110441, 0.96110441, 0.96110441, 0.91728156, 0.91728156,
       0.91728156, 0.91728156, 0.85427981, 0.85427981, 0.85427981,
       0.85427981, 0.77971476, 0.77971476, 0.77971476, 0.77971476,
       0.71287025, 0.71287025, 0.71287025, 0.71287025, 0.64564457,
       0.64564457, 0.64564457, 0.64564457, 0.59826562, 0.59826562,
       0.59826562, 0.59826562, 0.58691045, 0.58691045, 0.58691045,
       0.58691045, 0.58906206, 0.58906206, 0.58906206, 0.58906206,
       0.59003485, 0.59003485, 0.59003485, 0.59003485, 0.58486504,
       0.58486504, 0.58486504, 0.58486504, 0.56744401, 0.56744401,
       0.56744401, 0.56744401, 0.53390234, 0.53390234, 0.53390234,
       0.53390234, 0.48345644, 0.48345644, 0.48345644, 0.48345644,
       0.41935629, 0.41935629, 0.41935629, 0.41935629, 0.3694156 ,
       0.3694156 , 0.3694156 , 0.3694156 , 0.34157081, 0.34157081,
       0.34157081, 0.34157081, 0.3267349 , 0.3267349 , 0.3267349 ,
       0.3267349 , 0.31430765, 0.31430765, 0.31430765, 0.31430765,
       0.28309759, 0.28309759, 0.28309759, 0.28309759, 0.19541361,
       0.19541361, 0.19541361, 0.19541361, 0.13508752, 0.13508752,
       0.13508752, 0.13508752, 0.12589416, 0.12589416, 0.12589416,
       0.12589416, 0.12506897, 0.12506897, 0.12506897, 0.12506897,
       0.12500514, 0.12500514, 0.12500514, 0.12500514, 0.12500038,
       0.12500038, 0.12500038, 0.12500038, 0.12500003, 0.12500003,
       0.12500003, 0.12500003, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
       7.50000144e-01, 7.50000144e-01, 7.50000144e-01, 7.50000144e-01,
       7.50001154e-01, 7.50001154e-01, 7.50001154e-01, 7.50001154e-01,
       7.50008260e-01, 7.50008260e-01, 7.50008260e-01, 7.50008260e-01,
       7.50052218e-01, 7.50052218e-01, 7.50052218e-01, 7.50052218e-01,
       7.50287727e-01, 7.50287727e-01, 7.50287727e-01, 7.50287727e-01,
       7.51358635e-01, 7.51358635e-01, 7.51358635e-01, 7.51358635e-01,
       7.55388706e-01, 7.55388706e-01, 7.55388706e-01, 7.55388706e-01,
       7.67599601e-01, 7.67599601e-01, 7.67599601e-01, 7.67599601e-01,
       7.96765297e-01, 7.96765297e-01, 7.96765297e-01, 7.96765297e-01,
       8.51520678e-01, 8.51520678e-01, 8.51520678e-01, 8.51520678e-01,
       9.34344216e-01, 9.34344216e-01, 9.34344216e-01, 9.34344216e-01,
       1.03659724e+00, 1.03659724e+00, 1.03659724e+00, 1.03659724e+00,
       1.14096365e+00, 1.14096365e+00, 1.14096365e+00, 1.14096365e+00,
       1.24306837e+00, 1.24306837e+00, 1.24306837e+00, 1.24306837e+00,
       1.31432670e+00, 1.31432670e+00, 1.31432670e+00, 1.31432670e+00,
       1.34867754e+00, 1.34867754e+00, 1.34867754e+00, 1.34867754e+00,
       1.35900751e+00, 1.35900751e+00, 1.35900751e+00, 1.35900751e+00,
       1.36059408e+00, 1.36059408e+00, 1.36059408e+00, 1.36059408e+00,
       1.36044668e+00, 1.36044668e+00, 1.36044668e+00, 1.36044668e+00,
       1.36010596e+00, 1.36010596e+00, 1.36010596e+00, 1.36010596e+00,
       1.36018463e+00, 1.36018463e+00, 1.36018463e+00, 1.36018463e+00,
       1.36083030e+00, 1.36083030e+00, 1.36083030e+00, 1.36083030e+00,
       1.36234837e+00, 1.36234837e+00, 1.36234837e+00, 1.36234837e+00,
       1.36463009e+00, 1.36463009e+00, 1.36463009e+00, 1.36463009e+00,
       1.36410988e+00, 1.36410988e+00, 1.36410988e+00, 1.36410988e+00,
       1.35701598e+00, 1.35701598e+00, 1.35701598e+00, 1.35701598e+00,
       1.31740523e+00, 1.31740523e+00, 1.31740523e+00, 1.31740523e+00,
       1.13985851e+00, 1.13985851e+00, 1.13985851e+00, 1.13985851e+00,
       6.02207928e-01, 6.02207928e-01, 6.02207928e-01, 6.02207928e-01,
       9.54826887e-02, 9.54826887e-02, 9.54826887e-02, 9.54826887e-02,
       7.91081899e-03, 7.91081899e-03, 7.91081899e-03, 7.91081899e-03,
       5.90658670e-04, 5.90658670e-04, 5.90658670e-04, 5.90658670e-04,
       4.36023608e-05, 4.36023608e-05, 4.36023608e-05, 4.36023608e-05,
       3.20991156e-06, 3.20991156e-06, 3.20991156e-06, 3.20991156e-06,
       2.35963719e-07, 2.35963719e-07, 2.35963719e-07, 2.35963719e-07,
       1.73040175e-08, 1.73040175e-08, 1.73040175e-08, 1.73040175e-08,
       1.26389111e-09, 1.26389111e-09, 1.26389111e-09, 1.26389111e-09,
       9.17314216e-11, 9.17314216e-11, 9.17314216e-11, 9.17314216e-11,
       6.59454231e-12, 6.59454231e-12, 6.59454231e-12, 6.59454231e-12,
       4.67644782e-13, 4.67644782e-13, 4.67644782e-13, 4.67644782e-13,
       3.25389011e-14, 3.25389011e-14, 3.25389011e-14, 3.25389011e-14,
       2.17274114e-15, 2.17274114e-15, 2.17274114e-15, 2.17274114e-15,
       1.63514197e-16, 1.63514197e-16, 1.63514197e-16, 1.63514197e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.99999983, 0.99999983, 0.99999983,
       0.99999983, 0.99999863, 0.99999863, 0.99999863, 0.99999863,
       0.99999023, 0.99999023, 0.99999023, 0.99999023, 0.99993822,
       0.99993822, 0.99993822, 0.99993822, 0.99965961, 0.99965961,
       0.99965961, 0.99965961, 0.99839366, 0.99839366, 0.99839366,
       0.99839366, 0.99364361, 0.99364361, 0.99364361, 0.99364361,
       0.9793869 , 0.9793869 , 0.9793869 , 0.9793869 , 0.94613945,
       0.94613945, 0.94613945, 0.94613945, 0.88659682, 0.88659682,
       0.88659682, 0.88659682, 0.80299287, 0.80299287, 0.80299287,
       0.80299287, 0.70694993, 0.70694993, 0.70694993, 0.70694993,
       0.61957684, 0.61957684, 0.61957684, 0.61957684, 0.54392052,
       0.54392052, 0.54392052, 0.54392052, 0.49542686, 0.49542686,
       0.49542686, 0.49542686, 0.47445103, 0.47445103, 0.47445103,
       0.47445103, 0.46915145, 0.46915145, 0.46915145, 0.46915145,
       0.46775039, 0.46775039, 0.46775039, 0.46775039, 0.4664833 ,
       0.4664833 , 0.4664833 , 0.4664833 , 0.46501843, 0.46501843,
       0.46501843, 0.46501843, 0.46374393, 0.46374393, 0.46374393,
       0.46374393, 0.46361884, 0.46361884, 0.46361884, 0.46361884,
       0.46424828, 0.46424828, 0.46424828, 0.46424828, 0.46530062,
       0.46530062, 0.46530062, 0.46530062, 0.46544329, 0.46544329,
       0.46544329, 0.46544329, 0.46257326, 0.46257326, 0.46257326,
       0.46257326, 0.44471278, 0.44471278, 0.44471278, 0.44471278,
       0.37244248, 0.37244248, 0.37244248, 0.37244248, 0.20801386,
       0.20801386, 0.20801386, 0.20801386, 0.11324933, 0.11324933,
       0.11324933, 0.11324933, 0.10104929, 0.10104929, 0.10104929,
       0.10104929, 0.10007815, 0.10007815, 0.10007815, 0.10007815,
       0.10000577, 0.10000577, 0.10000577, 0.10000577, 0.10000042,
       0.10000042, 0.10000042, 0.10000042, 0.10000003, 0.10000003,
       0.10000003, 0.10000003, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.9999998 , 0.9999998 , 0.9999998 ,
       0.9999998 , 0.99999846, 0.99999846, 0.99999846, 0.99999846,
       0.99998952, 0.99998952, 0.99998952, 0.99998952, 0.99993714,
       0.99993714, 0.99993714, 0.99993714, 0.99967122, 0.99967122,
       0.99967122, 0.99967122, 0.99852689, 0.99852689, 0.99852689,
       0.99852689, 0.99446052, 0.99446052, 0.99446052, 0.99446052,
       0.98287516, 0.98287516, 0.98287516, 0.98287516, 0.95703951,
       0.95703951, 0.95703951, 0.95703951, 0.91215643, 0.91215643,
       0.91215643, 0.91215643, 0.8497645 , 0.8497645 , 0.8497645 ,
       0.8497645 , 0.77754676, 0.77754676, 0.77754676, 0.77754676,
       0.71330927, 0.71330927, 0.71330927, 0.71330927, 0.64997203,
       0.64997203, 0.64997203, 0.64997203, 0.60097098, 0.60097098,
       0.60097098, 0.60097098, 0.58535154, 0.58535154, 0.58535154,
       0.58535154, 0.58659819, 0.58659819, 0.58659819, 0.58659819,
       0.58934885, 0.58934885, 0.58934885, 0.58934885, 0.58736059,
       0.58736059, 0.58736059, 0.58736059, 0.57621724, 0.57621724,
       0.57621724, 0.57621724, 0.55034135, 0.55034135, 0.55034135,
       0.55034135, 0.50742676, 0.50742676, 0.50742676, 0.50742676,
       0.44761191, 0.44761191, 0.44761191, 0.44761191, 0.38816796,
       0.38816796, 0.38816796, 0.38816796, 0.35214391, 0.35214391,
       0.35214391, 0.35214391, 0.3335225 , 0.3335225 , 0.3335225 ,
       0.3335225 , 0.32286182, 0.32286182, 0.32286182, 0.32286182,
       0.30990165, 0.30990165, 0.30990165, 0.30990165, 0.26354073,
       0.26354073, 0.26354073, 0.26354073, 0.16798532, 0.16798532,
       0.16798532, 0.16798532, 0.1299533 , 0.1299533 , 0.1299533 ,
       0.1299533 , 0.12541416, 0.12541416, 0.12541416, 0.12541416,
       0.12503153, 0.12503153, 0.12503153, 0.12503153, 0.12500234,
       0.12500234, 0.12500234, 0.12500234, 0.12500017, 0.12500017,
       0.12500017, 0.12500017, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
       7.50000240e-01, 7.50000240e-01, 7.50000240e-01, 7.50000240e-01,
       7.50001825e-01, 7.50001825e-01, 7.50001825e-01, 7.50001825e-01,
       7.50012395e-01, 7.50012395e-01, 7.50012395e-01, 7.50012395e-01,
       7.50074381e-01, 7.50074381e-01, 7.50074381e-01, 7.50074381e-01,
       7.50389013e-01, 7.50389013e-01, 7.50389013e-01, 7.50389013e-01,
       7.51743396e-01, 7.51743396e-01, 7.51743396e-01, 7.51743396e-01,
       7.56564809e-01, 7.56564809e-01, 7.56564809e-01, 7.56564809e-01,
       7.70391197e-01, 7.70391197e-01, 7.70391197e-01, 7.70391197e-01,
       8.01753316e-01, 8.01753316e-01, 8.01753316e-01, 8.01753316e-01,
       8.58071057e-01, 8.58071057e-01, 8.58071057e-01, 8.58071057e-01,
       9.40417104e-01, 9.40417104e-01, 9.40417104e-01, 9.40417104e-01,
       1.03928138e+00, 1.03928138e+00, 1.03928138e+00, 1.03928138e+00,
       1.13970389e+00, 1.13970389e+00, 1.13970389e+00, 1.13970389e+00,
       1.23914812e+00, 1.23914812e+00, 1.23914812e+00, 1.23914812e+00,
       1.31054875e+00, 1.31054875e+00, 1.31054875e+00, 1.31054875e+00,
       1.34625395e+00, 1.34625395e+00, 1.34625395e+00, 1.34625395e+00,
       1.35799687e+00, 1.35799687e+00, 1.35799687e+00, 1.35799687e+00,
       1.36074574e+00, 1.36074574e+00, 1.36074574e+00, 1.36074574e+00,
       1.36111035e+00, 1.36111035e+00, 1.36111035e+00, 1.36111035e+00,
       1.36105209e+00, 1.36105209e+00, 1.36105209e+00, 1.36105209e+00,
       1.36078907e+00, 1.36078907e+00, 1.36078907e+00, 1.36078907e+00,
       1.36071354e+00, 1.36071354e+00, 1.36071354e+00, 1.36071354e+00,
       1.36126545e+00, 1.36126545e+00, 1.36126545e+00, 1.36126545e+00,
       1.36293306e+00, 1.36293306e+00, 1.36293306e+00, 1.36293306e+00,
       1.36391003e+00, 1.36391003e+00, 1.36391003e+00, 1.36391003e+00,
       1.36223548e+00, 1.36223548e+00, 1.36223548e+00, 1.36223548e+00,
       1.35001289e+00, 1.35001289e+00, 1.35001289e+00, 1.35001289e+00,
       1.28580407e+00, 1.28580407e+00, 1.28580407e+00, 1.28580407e+00,
       1.02083102e+00, 1.02083102e+00, 1.02083102e+00, 1.02083102e+00,
       3.92354167e-01, 3.92354167e-01, 3.92354167e-01, 3.92354167e-01,
       4.60233453e-02, 4.60233453e-02, 4.60233453e-02, 4.60233453e-02,
       3.61135389e-03, 3.61135389e-03, 3.61135389e-03, 3.61135389e-03,
       2.68870213e-04, 2.68870213e-04, 2.68870213e-04, 2.68870213e-04,
       1.98606715e-05, 1.98606715e-05, 1.98606715e-05, 1.98606715e-05,
       1.46364464e-06, 1.46364464e-06, 1.46364464e-06, 1.46364464e-06,
       1.07646738e-07, 1.07646738e-07, 1.07646738e-07, 1.07646738e-07,
       7.89913828e-09, 7.89913828e-09, 7.89913828e-09, 7.89913828e-09,
       5.77602003e-10, 5.77602003e-10, 5.77602003e-10, 5.77602003e-10,
       4.20009750e-11, 4.20009750e-11, 4.20009750e-11, 4.20009750e-11,
       3.02859296e-12, 3.02859296e-12, 3.02859296e-12, 3.02859296e-12,
       2.15774482e-13, 2.15774482e-13, 2.15774482e-13, 2.15774482e-13,
       1.50503680e-14, 1.50503680e-14, 1.50503680e-14, 1.50503680e-14,
       1.05328765e-15, 1.05328765e-15, 1.05328765e-15, 1.05328765e-15,
       5.90101831e-17, 5.90101831e-17, 5.90101831e-17, 5.90101831e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999997, 0.99999997,
       0.99999997, 0.99999997, 0.99999972, 0.99999972, 0.99999972,
       0.99999972, 0.99999784, 0.99999784, 0.99999784, 0.99999784,
       0.99998533, 0.99998533, 0.99998533, 0.99998533, 0.999912  ,
       0.999912  , 0.999912  , 0.999912  , 0.99953981, 0.99953981,
       0.99953981, 0.99953981, 0.99793921, 0.99793921, 0.99793921,
       0.99793921, 0.99226162, 0.99226162, 0.99226162, 0.99226162,
       0.97615575, 0.97615575, 0.97615575, 0.97615575, 0.94055943,
       0.94055943, 0.94055943, 0.94055943, 0.87968697, 0.87968697,
       0.87968697, 0.87968697, 0.7970675 , 0.7970675 , 0.7970675 ,
       0.7970675 , 0.7043173 , 0.7043173 , 0.7043173 , 0.7043173 ,
       0.62032421, 0.62032421, 0.62032421, 0.62032421, 0.54686006,
       0.54686006, 0.54686006, 0.54686006, 0.49810099, 0.49810099,
       0.49810099, 0.49810099, 0.47541418, 0.47541418, 0.47541418,
       0.47541418, 0.46923871, 0.46923871, 0.46923871, 0.46923871,
       0.46803173, 0.46803173, 0.46803173, 0.46803173, 0.46700788,
       0.46700788, 0.46700788, 0.46700788, 0.46571924, 0.46571924,
       0.46571924, 0.46571924, 0.4641767 , 0.4641767 , 0.4641767 ,
       0.4641767 , 0.46358808, 0.46358808, 0.46358808, 0.46358808,
       0.46369014, 0.46369014, 0.46369014, 0.46369014, 0.46447516,
       0.46447516, 0.46447516, 0.46447516, 0.46535017, 0.46535017,
       0.46535017, 0.46535017, 0.46498179, 0.46498179, 0.46498179,
       0.46498179, 0.45937493, 0.45937493, 0.45937493, 0.45937493,
       0.43093306, 0.43093306, 0.43093306, 0.43093306, 0.32993773,
       0.32993773, 0.32993773, 0.32993773, 0.16285786, 0.16285786,
       0.16285786, 0.16285786, 0.10621868, 0.10621868, 0.10621868,
       0.10621868, 0.10047825, 0.10047825, 0.10047825, 0.10047825,
       0.10003557, 0.10003557, 0.10003557, 0.10003557, 0.10000263,
       0.10000263, 0.10000263, 0.10000263, 0.10000019, 0.10000019,
       0.10000019, 0.10000019, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999996, 0.99999996,
       0.99999996, 0.99999996, 0.99999967, 0.99999967, 0.99999967,
       0.99999967, 0.99999762, 0.99999762, 0.99999762, 0.99999762,
       0.99998459, 0.99998459, 0.99998459, 0.99998459, 0.99991206,
       0.99991206, 0.99991206, 0.99991206, 0.99956257, 0.99956257,
       0.99956257, 0.99956257, 0.99813629, 0.99813629, 0.99813629,
       0.99813629, 0.99333466, 0.99333466, 0.99333466, 0.99333466,
       0.98037152, 0.98037152, 0.98037152, 0.98037152, 0.9528877 ,
       0.9528877 , 0.9528877 , 0.9528877 , 0.90714025, 0.90714025,
       0.90714025, 0.90714025, 0.84549133, 0.84549133, 0.84549133,
       0.84549133, 0.7755971 , 0.7755971 , 0.7755971 , 0.7755971 ,
       0.71345002, 0.71345002, 0.71345002, 0.71345002, 0.65381042,
       0.65381042, 0.65381042, 0.65381042, 0.60449037, 0.60449037,
       0.60449037, 0.60449037, 0.58459071, 0.58459071, 0.58459071,
       0.58459071, 0.58451904, 0.58451904, 0.58451904, 0.58451904,
       0.58778013, 0.58778013, 0.58778013, 0.58778013, 0.58801938,
       0.58801938, 0.58801938, 0.58801938, 0.58183243, 0.58183243,
       0.58183243, 0.58183243, 0.56319798, 0.56319798, 0.56319798,
       0.56319798, 0.52817231, 0.52817231, 0.52817231, 0.52817231,
       0.47570938, 0.47570938, 0.47570938, 0.47570938, 0.41147965,
       0.41147965, 0.41147965, 0.41147965, 0.36562289, 0.36562289,
       0.36562289, 0.36562289, 0.34085096, 0.34085096, 0.34085096,
       0.34085096, 0.32857429, 0.32857429, 0.32857429, 0.32857429,
       0.32046461, 0.32046461, 0.32046461, 0.32046461, 0.30277278,
       0.30277278, 0.30277278, 0.30277278, 0.23628223, 0.23628223,
       0.23628223, 0.23628223, 0.14837728, 0.14837728, 0.14837728,
       0.14837728, 0.12738162, 0.12738162, 0.12738162, 0.12738162,
       0.12519072, 0.12519072, 0.12519072, 0.12519072, 0.12501437,
       0.12501437, 0.12501437, 0.12501437, 0.12500107, 0.12500107,
       0.12500107, 0.12500107, 0.12500008, 0.12500008, 0.12500008,
       0.12500008, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
       7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
       7.50000390e-01, 7.50000390e-01, 7.50000390e-01, 7.50000390e-01,
       7.50002822e-01, 7.50002822e-01, 7.50002822e-01, 7.50002822e-01,
       7.50018229e-01, 7.50018229e-01, 7.50018229e-01, 7.50018229e-01,
       7.50104049e-01, 7.50104049e-01, 7.50104049e-01, 7.50104049e-01,
       7.50517585e-01, 7.50517585e-01, 7.50517585e-01, 7.50517585e-01,
       7.52205977e-01, 7.52205977e-01, 7.52205977e-01, 7.52205977e-01,
       7.57902857e-01, 7.57902857e-01, 7.57902857e-01, 7.57902857e-01,
       7.73399599e-01, 7.73399599e-01, 7.73399599e-01, 7.73399599e-01,
       8.06867047e-01, 8.06867047e-01, 8.06867047e-01, 8.06867047e-01,
       8.64509234e-01, 8.64509234e-01, 8.64509234e-01, 8.64509234e-01,
       9.46188008e-01, 9.46188008e-01, 9.46188008e-01, 9.46188008e-01,
       1.04182143e+00, 1.04182143e+00, 1.04182143e+00, 1.04182143e+00,
       1.13851947e+00, 1.13851947e+00, 1.13851947e+00, 1.13851947e+00,
       1.23521943e+00, 1.23521943e+00, 1.23521943e+00, 1.23521943e+00,
       1.30684121e+00, 1.30684121e+00, 1.30684121e+00, 1.30684121e+00,
       1.34402276e+00, 1.34402276e+00, 1.34402276e+00, 1.34402276e+00,
       1.35679818e+00, 1.35679818e+00, 1.35679818e+00, 1.35679818e+00,
       1.36042879e+00, 1.36042879e+00, 1.36042879e+00, 1.36042879e+00,
       1.36144375e+00, 1.36144375e+00, 1.36144375e+00, 1.36144375e+00,
       1.36176750e+00, 1.36176750e+00, 1.36176750e+00, 1.36176750e+00,
       1.36169308e+00, 1.36169308e+00, 1.36169308e+00, 1.36169308e+00,
       1.36111048e+00, 1.36111048e+00, 1.36111048e+00, 1.36111048e+00,
       1.36105105e+00, 1.36105105e+00, 1.36105105e+00, 1.36105105e+00,
       1.36162469e+00, 1.36162469e+00, 1.36162469e+00, 1.36162469e+00,
       1.36281678e+00, 1.36281678e+00, 1.36281678e+00, 1.36281678e+00,
       1.36293589e+00, 1.36293589e+00, 1.36293589e+00, 1.36293589e+00,
       1.35989169e+00, 1.35989169e+00, 1.35989169e+00, 1.35989169e+00,
       1.33857964e+00, 1.33857964e+00, 1.33857964e+00, 1.33857964e+00,
       1.23678480e+00, 1.23678480e+00, 1.23678480e+00, 1.23678480e+00,
       8.59426221e-01, 8.59426221e-01, 8.59426221e-01, 8.59426221e-01,
       2.22121850e-01, 2.22121850e-01, 2.22121850e-01, 2.22121850e-01,
       2.16158662e-02, 2.16158662e-02, 2.16158662e-02, 2.16158662e-02,
       1.64641832e-03, 1.64641832e-03, 1.64641832e-03, 1.64641832e-03,
       1.22204390e-04, 1.22204390e-04, 1.22204390e-04, 1.22204390e-04,
       9.04194482e-06, 9.04194482e-06, 9.04194482e-06, 9.04194482e-06,
       6.67040993e-07, 6.67040993e-07, 6.67040993e-07, 6.67040993e-07,
       4.90964691e-08, 4.90964691e-08, 4.90964691e-08, 4.90964691e-08,
       3.60523547e-09, 3.60523547e-09, 3.60523547e-09, 3.60523547e-09,
       2.63885888e-10, 2.63885888e-10, 2.63885888e-10, 2.63885888e-10,
       1.92204794e-11, 1.92204794e-11, 1.92204794e-11, 1.92204794e-11,
       1.38961104e-12, 1.38961104e-12, 1.38961104e-12, 1.38961104e-12,
       9.92868582e-14, 9.92868582e-14, 9.92868582e-14, 9.92868582e-14,
       7.03275916e-15, 7.03275916e-15, 7.03275916e-15, 7.03275916e-15,
       5.17027335e-16, 5.17027335e-16, 5.17027335e-16, 5.17027335e-16,
       3.42591394e-17, 3.42591394e-17, 3.42591394e-17, 3.42591394e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999994, 0.99999994,
       0.99999994, 0.99999994, 0.99999954, 0.99999954, 0.99999954,
       0.99999954, 0.99999666, 0.99999666, 0.99999666, 0.99999666,
       0.99997843, 0.99997843, 0.99997843, 0.99997843, 0.99987689,
       0.99987689, 0.99987689, 0.99987689, 0.99938776, 0.99938776,
       0.99938776, 0.99938776, 0.99739311, 0.99739311, 0.99739311,
       0.99739311, 0.99069162, 0.99069162, 0.99069162, 0.99069162,
       0.97268505, 0.97268505, 0.97268505, 0.97268505, 0.93486932,
       0.93486932, 0.93486932, 0.93486932, 0.87293717, 0.87293717,
       0.87293717, 0.87293717, 0.79146304, 0.79146304, 0.79146304,
       0.79146304, 0.70191535, 0.70191535, 0.70191535, 0.70191535,
       0.62102876, 0.62102876, 0.62102876, 0.62102876, 0.54957627,
       0.54957627, 0.54957627, 0.54957627, 0.50083599, 0.50083599,
       0.50083599, 0.50083599, 0.47665599, 0.47665599, 0.47665599,
       0.47665599, 0.46931339, 0.46931339, 0.46931339, 0.46931339,
       0.4680499 , 0.4680499 , 0.4680499 , 0.4680499 , 0.46732564,
       0.46732564, 0.46732564, 0.46732564, 0.46628964, 0.46628964,
       0.46628964, 0.46628964, 0.46482191, 0.46482191, 0.46482191,
       0.46482191, 0.46383924, 0.46383924, 0.46383924, 0.46383924,
       0.46359009, 0.46359009, 0.46359009, 0.46359009, 0.46381923,
       0.46381923, 0.46381923, 0.46381923, 0.46482679, 0.46482679,
       0.46482679, 0.46482679, 0.46530733, 0.46530733, 0.46530733,
       0.46530733, 0.46390266, 0.46390266, 0.46390266, 0.46390266,
       0.45436119, 0.45436119, 0.45436119, 0.45436119, 0.41039534,
       0.41039534, 0.41039534, 0.41039534, 0.27755879, 0.27755879,
       0.27755879, 0.27755879, 0.13288495, 0.13288495, 0.13288495,
       0.13288495, 0.10288468, 0.10288468, 0.10288468, 0.10288468,
       0.1002179 , 0.1002179 , 0.1002179 , 0.1002179 , 0.10001617,
       0.10001617, 0.10001617, 0.10001617, 0.1000012 , 0.1000012 ,
       0.1000012 , 0.1000012 , 0.10000009, 0.10000009, 0.10000009,
       0.10000009, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999993, 0.99999993,
       0.99999993, 0.99999993, 0.99999948, 0.99999948, 0.99999948,
       0.99999948, 0.99999639, 0.99999639, 0.99999639, 0.99999639,
       0.99997776, 0.99997776, 0.99997776, 0.99997776, 0.99987902,
       0.99987902, 0.99987902, 0.99987902, 0.99942658, 0.99942658,
       0.99942658, 0.99942658, 0.99767258, 0.99767258, 0.99767258,
       0.99767258, 0.99206839, 0.99206839, 0.99206839, 0.99206839,
       0.97770184, 0.97770184, 0.97770184, 0.97770184, 0.94867108,
       0.94867108, 0.94867108, 0.94867108, 0.90224525, 0.90224525,
       0.90224525, 0.90224525, 0.84145258, 0.84145258, 0.84145258,
       0.84145258, 0.77386505, 0.77386505, 0.77386505, 0.77386505,
       0.71340462, 0.71340462, 0.71340462, 0.71340462, 0.65703975,
       0.65703975, 0.65703975, 0.65703975, 0.60849329, 0.60849329,
       0.60849329, 0.60849329, 0.58468831, 0.58468831, 0.58468831,
       0.58468831, 0.58294187, 0.58294187, 0.58294187, 0.58294187,
       0.58573115, 0.58573115, 0.58573115, 0.58573115, 0.58763646,
       0.58763646, 0.58763646, 0.58763646, 0.58482843, 0.58482843,
       0.58482843, 0.58482843, 0.57251091, 0.57251091, 0.57251091,
       0.57251091, 0.54537817, 0.54537817, 0.54537817, 0.54537817,
       0.50073074, 0.50073074, 0.50073074, 0.50073074, 0.4391213 ,
       0.4391213 , 0.4391213 , 0.4391213 , 0.38293704, 0.38293704,
       0.38293704, 0.38293704, 0.35013347, 0.35013347, 0.35013347,
       0.35013347, 0.33368088, 0.33368088, 0.33368088, 0.33368088,
       0.32582494, 0.32582494, 0.32582494, 0.32582494, 0.31844833,
       0.31844833, 0.31844833, 0.31844833, 0.29046653, 0.29046653,
       0.29046653, 0.29046653, 0.20455633, 0.20455633, 0.20455633,
       0.20455633, 0.1372754 , 0.1372754 , 0.1372754 , 0.1372754 ,
       0.12612182, 0.12612182, 0.12612182, 0.12612182, 0.1250873 ,
       0.1250873 , 0.1250873 , 0.1250873 , 0.12500654, 0.12500654,
       0.12500654, 0.12500654, 0.12500049, 0.12500049, 0.12500049,
       0.12500049, 0.12500004, 0.12500004, 0.12500004, 0.12500004,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000010e-01, 7.50000010e-01, 7.50000010e-01, 7.50000010e-01,
       7.50000081e-01, 7.50000081e-01, 7.50000081e-01, 7.50000081e-01,
       7.50000620e-01, 7.50000620e-01, 7.50000620e-01, 7.50000620e-01,
       7.50004274e-01, 7.50004274e-01, 7.50004274e-01, 7.50004274e-01,
       7.50026313e-01, 7.50026313e-01, 7.50026313e-01, 7.50026313e-01,
       7.50143141e-01, 7.50143141e-01, 7.50143141e-01, 7.50143141e-01,
       7.50678514e-01, 7.50678514e-01, 7.50678514e-01, 7.50678514e-01,
       7.52755312e-01, 7.52755312e-01, 7.52755312e-01, 7.52755312e-01,
       7.59409383e-01, 7.59409383e-01, 7.59409383e-01, 7.59409383e-01,
       7.76615231e-01, 7.76615231e-01, 7.76615231e-01, 7.76615231e-01,
       8.12080151e-01, 8.12080151e-01, 8.12080151e-01, 8.12080151e-01,
       8.70817643e-01, 8.70817643e-01, 8.70817643e-01, 8.70817643e-01,
       9.51667486e-01, 9.51667486e-01, 9.51667486e-01, 9.51667486e-01,
       1.04421860e+00, 1.04421860e+00, 1.04421860e+00, 1.04421860e+00,
       1.13749267e+00, 1.13749267e+00, 1.13749267e+00, 1.13749267e+00,
       1.23129415e+00, 1.23129415e+00, 1.23129415e+00, 1.23129415e+00,
       1.30304219e+00, 1.30304219e+00, 1.30304219e+00, 1.30304219e+00,
       1.34192905e+00, 1.34192905e+00, 1.34192905e+00, 1.34192905e+00,
       1.35567521e+00, 1.35567521e+00, 1.35567521e+00, 1.35567521e+00,
       1.35980921e+00, 1.35980921e+00, 1.35980921e+00, 1.35980921e+00,
       1.36138601e+00, 1.36138601e+00, 1.36138601e+00, 1.36138601e+00,
       1.36219441e+00, 1.36219441e+00, 1.36219441e+00, 1.36219441e+00,
       1.36249996e+00, 1.36249996e+00, 1.36249996e+00, 1.36249996e+00,
       1.36190367e+00, 1.36190367e+00, 1.36190367e+00, 1.36190367e+00,
       1.36127546e+00, 1.36127546e+00, 1.36127546e+00, 1.36127546e+00,
       1.36128875e+00, 1.36128875e+00, 1.36128875e+00, 1.36128875e+00,
       1.36152144e+00, 1.36152144e+00, 1.36152144e+00, 1.36152144e+00,
       1.36239947e+00, 1.36239947e+00, 1.36239947e+00, 1.36239947e+00,
       1.36213183e+00, 1.36213183e+00, 1.36213183e+00, 1.36213183e+00,
       1.35586085e+00, 1.35586085e+00, 1.35586085e+00, 1.35586085e+00,
       1.32010356e+00, 1.32010356e+00, 1.32010356e+00, 1.32010356e+00,
       1.16287547e+00, 1.16287547e+00, 1.16287547e+00, 1.16287547e+00,
       6.61162492e-01, 6.61162492e-01, 6.61162492e-01, 6.61162492e-01,
       1.16351678e-01, 1.16351678e-01, 1.16351678e-01, 1.16351678e-01,
       9.97096672e-03, 9.97096672e-03, 9.97096672e-03, 9.97096672e-03,
       7.48552643e-04, 7.48552643e-04, 7.48552643e-04, 7.48552643e-04,
       5.55786565e-05, 5.55786565e-05, 5.55786565e-05, 5.55786565e-05,
       4.11419588e-06, 4.11419588e-06, 4.11419588e-06, 4.11419588e-06,
       3.03837917e-07, 3.03837917e-07, 3.03837917e-07, 3.03837917e-07,
       2.23849014e-08, 2.23849014e-08, 2.23849014e-08, 2.23849014e-08,
       1.64507675e-09, 1.64507675e-09, 1.64507675e-09, 1.64507675e-09,
       1.20527942e-10, 1.20527942e-10, 1.20527942e-10, 1.20527942e-10,
       8.79167161e-12, 8.79167161e-12, 8.79167161e-12, 8.79167161e-12,
       6.36916518e-13, 6.36916518e-13, 6.36916518e-13, 6.36916518e-13,
       4.58094779e-14, 4.58094779e-14, 4.58094779e-14, 4.58094779e-14,
       3.28064473e-15, 3.28064473e-15, 3.28064473e-15, 3.28064473e-15,
       2.21511670e-16, 2.21511670e-16, 2.21511670e-16, 2.21511670e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.9999999 , 0.9999999 ,
       0.9999999 , 0.9999999 , 0.99999927, 0.99999927, 0.99999927,
       0.99999927, 0.99999494, 0.99999494, 0.99999494, 0.99999494,
       0.99996887, 0.99996887, 0.99996887, 0.99996887, 0.99983065,
       0.99983065, 0.99983065, 0.99983065, 0.99919747, 0.99919747,
       0.99919747, 0.99919747, 0.99674497, 0.99674497, 0.99674497,
       0.99674497, 0.98892685, 0.98892685, 0.98892685, 0.98892685,
       0.96898818, 0.96898818, 0.96898818, 0.96898818, 0.92909988,
       0.92909988, 0.92909988, 0.92909988, 0.86636274, 0.86636274,
       0.86636274, 0.86636274, 0.7861649 , 0.7861649 , 0.7861649 ,
       0.7861649 , 0.69970743, 0.69970743, 0.69970743, 0.69970743,
       0.62175522, 0.62175522, 0.62175522, 0.62175522, 0.55208192,
       0.55208192, 0.55208192, 0.55208192, 0.50351395, 0.50351395,
       0.50351395, 0.50351395, 0.47813801, 0.47813801, 0.47813801,
       0.47813801, 0.46954374, 0.46954374, 0.46954374, 0.46954374,
       0.46791496, 0.46791496, 0.46791496, 0.46791496, 0.46740496,
       0.46740496, 0.46740496, 0.46740496, 0.466675  , 0.466675  ,
       0.466675  , 0.466675  , 0.46544862, 0.46544862, 0.46544862,
       0.46544862, 0.46432762, 0.46432762, 0.46432762, 0.46432762,
       0.46372285, 0.46372285, 0.46372285, 0.46372285, 0.46365147,
       0.46365147, 0.46365147, 0.46365147, 0.46418465, 0.46418465,
       0.46418465, 0.46418465, 0.46505548, 0.46505548, 0.46505548,
       0.46505548, 0.46493934, 0.46493934, 0.46493934, 0.46493934,
       0.46223591, 0.46223591, 0.46223591, 0.46223591, 0.44656565,
       0.44656565, 0.44656565, 0.44656565, 0.38108891, 0.38108891,
       0.38108891, 0.38108891, 0.22238569, 0.22238569, 0.22238569,
       0.22238569, 0.11633052, 0.11633052, 0.11633052, 0.11633052,
       0.10132364, 0.10132364, 0.10132364, 0.10132364, 0.10009904,
       0.10009904, 0.10009904, 0.10009904, 0.10000735, 0.10000735,
       0.10000735, 0.10000735, 0.10000054, 0.10000054, 0.10000054,
       0.10000054, 0.10000004, 0.10000004, 0.10000004, 0.10000004,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999989, 0.99999989,
       0.99999989, 0.99999989, 0.99999918, 0.99999918, 0.99999918,
       0.99999918, 0.99999463, 0.99999463, 0.99999463, 0.99999463,
       0.99996845, 0.99996845, 0.99996845, 0.99996845, 0.99983612,
       0.99983612, 0.99983612, 0.99983612, 0.9992586 , 0.9992586 ,
       0.9992586 , 0.9992586 , 0.99712842, 0.99712842, 0.99712842,
       0.99712842, 0.99065816, 0.99065816, 0.99065816, 0.99065816,
       0.97487697, 0.97487697, 0.97487697, 0.97487697, 0.94441074,
       0.94441074, 0.94441074, 0.94441074, 0.89748102, 0.89748102,
       0.89748102, 0.89748102, 0.83763755, 0.83763755, 0.83763755,
       0.83763755, 0.77233781, 0.77233781, 0.77233781, 0.77233781,
       0.7132907 , 0.7132907 , 0.7132907 , 0.7132907 , 0.65963706,
       0.65963706, 0.65963706, 0.65963706, 0.612651  , 0.612651  ,
       0.612651  , 0.612651  , 0.5857125 , 0.5857125 , 0.5857125 ,
       0.5857125 , 0.58169792, 0.58169792, 0.58169792, 0.58169792,
       0.5836328 , 0.5836328 , 0.5836328 , 0.5836328 , 0.58674094,
       0.58674094, 0.58674094, 0.58674094, 0.58596439, 0.58596439,
       0.58596439, 0.58596439, 0.57862616, 0.57862616, 0.57862616,
       0.57862616, 0.55885909, 0.55885909, 0.55885909, 0.55885909,
       0.52235302, 0.52235302, 0.52235302, 0.52235302, 0.46790255,
       0.46790255, 0.46790255, 0.46790255, 0.40461805, 0.40461805,
       0.40461805, 0.40461805, 0.36237207, 0.36237207, 0.36237207,
       0.36237207, 0.33984239, 0.33984239, 0.33984239, 0.33984239,
       0.32970398, 0.32970398, 0.32970398, 0.32970398, 0.32449566,
       0.32449566, 0.32449566, 0.32449566, 0.31491343, 0.31491343,
       0.31491343, 0.31491343, 0.2715366 , 0.2715366 , 0.2715366 ,
       0.2715366 , 0.17519676, 0.17519676, 0.17519676, 0.17519676,
       0.13110272, 0.13110272, 0.13110272, 0.13110272, 0.12551958,
       0.12551958, 0.12551958, 0.12551958, 0.12503987, 0.12503987,
       0.12503987, 0.12503987, 0.12500298, 0.12500298, 0.12500298,
       0.12500298, 0.12500022, 0.12500022, 0.12500022, 0.12500022,
       0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
       7.50000132e-01, 7.50000132e-01, 7.50000132e-01, 7.50000132e-01,
       7.50000966e-01, 7.50000966e-01, 7.50000966e-01, 7.50000966e-01,
       7.50006351e-01, 7.50006351e-01, 7.50006351e-01, 7.50006351e-01,
       7.50037333e-01, 7.50037333e-01, 7.50037333e-01, 7.50037333e-01,
       7.50193899e-01, 7.50193899e-01, 7.50193899e-01, 7.50193899e-01,
       7.50877324e-01, 7.50877324e-01, 7.50877324e-01, 7.50877324e-01,
       7.53400222e-01, 7.53400222e-01, 7.53400222e-01, 7.53400222e-01,
       7.61089231e-01, 7.61089231e-01, 7.61089231e-01, 7.61089231e-01,
       7.80026437e-01, 7.80026437e-01, 7.80026437e-01, 7.80026437e-01,
       8.17367158e-01, 8.17367158e-01, 8.17367158e-01, 8.17367158e-01,
       8.76981911e-01, 8.76981911e-01, 8.76981911e-01, 8.76981911e-01,
       9.56868187e-01, 9.56868187e-01, 9.56868187e-01, 9.56868187e-01,
       1.04646915e+00, 1.04646915e+00, 1.04646915e+00, 1.04646915e+00,
       1.13664890e+00, 1.13664890e+00, 1.13664890e+00, 1.13664890e+00,
       1.22747197e+00, 1.22747197e+00, 1.22747197e+00, 1.22747197e+00,
       1.29906860e+00, 1.29906860e+00, 1.29906860e+00, 1.29906860e+00,
       1.33980440e+00, 1.33980440e+00, 1.33980440e+00, 1.33980440e+00,
       1.35473761e+00, 1.35473761e+00, 1.35473761e+00, 1.35473761e+00,
       1.35912884e+00, 1.35912884e+00, 1.35912884e+00, 1.35912884e+00,
       1.36103279e+00, 1.36103279e+00, 1.36103279e+00, 1.36103279e+00,
       1.36224006e+00, 1.36224006e+00, 1.36224006e+00, 1.36224006e+00,
       1.36307271e+00, 1.36307271e+00, 1.36307271e+00, 1.36307271e+00,
       1.36277930e+00, 1.36277930e+00, 1.36277930e+00, 1.36277930e+00,
       1.36186954e+00, 1.36186954e+00, 1.36186954e+00, 1.36186954e+00,
       1.36140807e+00, 1.36140807e+00, 1.36140807e+00, 1.36140807e+00,
       1.36104332e+00, 1.36104332e+00, 1.36104332e+00, 1.36104332e+00,
       1.36139643e+00, 1.36139643e+00, 1.36139643e+00, 1.36139643e+00,
       1.36210857e+00, 1.36210857e+00, 1.36210857e+00, 1.36210857e+00,
       1.36065559e+00, 1.36065559e+00, 1.36065559e+00, 1.36065559e+00,
       1.34903815e+00, 1.34903815e+00, 1.34903815e+00, 1.34903815e+00,
       1.29211103e+00, 1.29211103e+00, 1.29211103e+00, 1.29211103e+00,
       1.05539569e+00, 1.05539569e+00, 1.05539569e+00, 1.05539569e+00,
       4.48123192e-01, 4.48123192e-01, 4.48123192e-01, 4.48123192e-01,
       5.68576756e-02, 5.68576756e-02, 5.68576756e-02, 5.68576756e-02,
       4.54568441e-03, 4.54568441e-03, 4.54568441e-03, 4.54568441e-03,
       3.40320288e-04, 3.40320288e-04, 3.40320288e-04, 3.40320288e-04,
       2.52658640e-05, 2.52658640e-05, 2.52658640e-05, 2.52658640e-05,
       1.87162703e-06, 1.87162703e-06, 1.87162703e-06, 1.87162703e-06,
       1.38344702e-07, 1.38344702e-07, 1.38344702e-07, 1.38344702e-07,
       1.02018842e-08, 1.02018842e-08, 1.02018842e-08, 1.02018842e-08,
       7.50419983e-10, 7.50419983e-10, 7.50419983e-10, 7.50419983e-10,
       5.50338981e-11, 5.50338981e-11, 5.50338981e-11, 5.50338981e-11,
       4.01951569e-12, 4.01951569e-12, 4.01951569e-12, 4.01951569e-12,
       2.91936804e-13, 2.91936804e-13, 2.91936804e-13, 2.91936804e-13,
       2.11199253e-14, 2.11199253e-14, 2.11199253e-14, 2.11199253e-14,
       1.47398293e-15, 1.47398293e-15, 1.47398293e-15, 1.47398293e-15,
       9.45362951e-17, 9.45362951e-17, 9.45362951e-17, 9.45362951e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999984, 0.99999984,
       0.99999984, 0.99999984, 0.99999886, 0.99999886, 0.99999886,
       0.99999886, 0.99999249, 0.99999249, 0.99999249, 0.99999249,
       0.99995583, 0.99995583, 0.99995583, 0.99995583, 0.9997706 ,
       0.9997706 , 0.9997706 , 0.9997706 , 0.99896245, 0.99896245,
       0.99896245, 0.99896245, 0.9959846 , 0.9959846 , 0.9959846 ,
       0.9959846 , 0.98696264, 0.98696264, 0.98696264, 0.98696264,
       0.96508085, 0.96508085, 0.96508085, 0.96508085, 0.92328027,
       0.92328027, 0.92328027, 0.92328027, 0.85997549, 0.85997549,
       0.85997549, 0.85997549, 0.78115703, 0.78115703, 0.78115703,
       0.78115703, 0.69766029, 0.69766029, 0.69766029, 0.69766029,
       0.62252492, 0.62252492, 0.62252492, 0.62252492, 0.55444993,
       0.55444993, 0.55444993, 0.55444993, 0.50606466, 0.50606466,
       0.50606466, 0.50606466, 0.4797491 , 0.4797491 , 0.4797491 ,
       0.4797491 , 0.47000142, 0.47000142, 0.47000142, 0.47000142,
       0.46778259, 0.46778259, 0.46778259, 0.46778259, 0.46731388,
       0.46731388, 0.46731388, 0.46731388, 0.46681772, 0.46681772,
       0.46681772, 0.46681772, 0.46594134, 0.46594134, 0.46594134,
       0.46594134, 0.46489255, 0.46489255, 0.46489255, 0.46489255,
       0.46406793, 0.46406793, 0.46406793, 0.46406793, 0.46371733,
       0.46371733, 0.46371733, 0.46371733, 0.46392827, 0.46392827,
       0.46392827, 0.46392827, 0.46457704, 0.46457704, 0.46457704,
       0.46457704, 0.4649299 , 0.4649299 , 0.4649299 , 0.4649299 ,
       0.464449  , 0.464449  , 0.464449  , 0.464449  , 0.45965373,
       0.45965373, 0.45965373, 0.45965373, 0.43413396, 0.43413396,
       0.43413396, 0.43413396, 0.3417067 , 0.3417067 , 0.3417067 ,
       0.3417067 , 0.17380695, 0.17380695, 0.17380695, 0.17380695,
       0.10772404, 0.10772404, 0.10772404, 0.10772404, 0.10060218,
       0.10060218, 0.10060218, 0.10060218, 0.10004502, 0.10004502,
       0.10004502, 0.10004502, 0.10000334, 0.10000334, 0.10000334,
       0.10000334, 0.10000025, 0.10000025, 0.10000025, 0.10000025,
       0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
       0.99999982, 0.99999982, 0.99999875, 0.99999875, 0.99999875,
       0.99999875, 0.99999216, 0.99999216, 0.99999216, 0.99999216,
       0.99995594, 0.99995594, 0.99995594, 0.99995594, 0.99978118,
       0.99978118, 0.99978118, 0.99978118, 0.99905363, 0.99905363,
       0.99905363, 0.99905363, 0.99649673, 0.99649673, 0.99649673,
       0.99649673, 0.98910195, 0.98910195, 0.98910195, 0.98910195,
       0.97190917, 0.97190917, 0.97190917, 0.97190917, 0.94012653,
       0.94012653, 0.94012653, 0.94012653, 0.89285479, 0.89285479,
       0.89285479, 0.89285479, 0.83403394, 0.83403394, 0.83403394,
       0.83403394, 0.77099739, 0.77099739, 0.77099739, 0.77099739,
       0.71316881, 0.71316881, 0.71316881, 0.71316881, 0.66167639,
       0.66167639, 0.66167639, 0.66167639, 0.61669901, 0.61669901,
       0.61669901, 0.61669901, 0.58751731, 0.58751731, 0.58751731,
       0.58751731, 0.58088401, 0.58088401, 0.58088401, 0.58088401,
       0.58197653, 0.58197653, 0.58197653, 0.58197653, 0.58530083,
       0.58530083, 0.58530083, 0.58530083, 0.58593749, 0.58593749,
       0.58593749, 0.58593749, 0.58219521, 0.58219521, 0.58219521,
       0.58219521, 0.56871482, 0.56871482, 0.56871482, 0.56871482,
       0.54028566, 0.54028566, 0.54028566, 0.54028566, 0.49391932,
       0.49391932, 0.49391932, 0.49391932, 0.43125951, 0.43125951,
       0.43125951, 0.43125951, 0.37842572, 0.37842572, 0.37842572,
       0.37842572, 0.34810948, 0.34810948, 0.34810948, 0.34810948,
       0.33368361, 0.33368361, 0.33368361, 0.33368361, 0.32786563,
       0.32786563, 0.32786563, 0.32786563, 0.32355452, 0.32355452,
       0.32355452, 0.32355452, 0.30821032, 0.30821032, 0.30821032,
       0.30821032, 0.24538437, 0.24538437, 0.24538437, 0.24538437,
       0.15274327, 0.15274327, 0.15274327, 0.15274327, 0.12792757,
       0.12792757, 0.12792757, 0.12792757, 0.12523902, 0.12523902,
       0.12523902, 0.12523902, 0.12501814, 0.12501814, 0.12501814,
       0.12501814, 0.12500135, 0.12500135, 0.12500135, 0.12500135,
       0.1250001 , 0.1250001 , 0.1250001 , 0.1250001 , 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
       7.50000211e-01, 7.50000211e-01, 7.50000211e-01, 7.50000211e-01,
       7.50001474e-01, 7.50001474e-01, 7.50001474e-01, 7.50001474e-01,
       7.50009273e-01, 7.50009273e-01, 7.50009273e-01, 7.50009273e-01,
       7.50052129e-01, 7.50052129e-01, 7.50052129e-01, 7.50052129e-01,
       7.50258907e-01, 7.50258907e-01, 7.50258907e-01, 7.50258907e-01,
       7.51119944e-01, 7.51119944e-01, 7.51119944e-01, 7.51119944e-01,
       7.54149241e-01, 7.54149241e-01, 7.54149241e-01, 7.54149241e-01,
       7.62945461e-01, 7.62945461e-01, 7.62945461e-01, 7.62945461e-01,
       7.83619793e-01, 7.83619793e-01, 7.83619793e-01, 7.83619793e-01,
       8.22703779e-01, 8.22703779e-01, 8.22703779e-01, 8.22703779e-01,
       8.82990632e-01, 8.82990632e-01, 8.82990632e-01, 8.82990632e-01,
       9.61803322e-01, 9.61803322e-01, 9.61803322e-01, 9.61803322e-01,
       1.04857800e+00, 1.04857800e+00, 1.04857800e+00, 1.04857800e+00,
       1.13591034e+00, 1.13591034e+00, 1.13591034e+00, 1.13591034e+00,
       1.22389255e+00, 1.22389255e+00, 1.22389255e+00, 1.22389255e+00,
       1.29496803e+00, 1.29496803e+00, 1.29496803e+00, 1.29496803e+00,
       1.33747715e+00, 1.33747715e+00, 1.33747715e+00, 1.33747715e+00,
       1.35392574e+00, 1.35392574e+00, 1.35392574e+00, 1.35392574e+00,
       1.35857156e+00, 1.35857156e+00, 1.35857156e+00, 1.35857156e+00,
       1.36055928e+00, 1.36055928e+00, 1.36055928e+00, 1.36055928e+00,
       1.36197585e+00, 1.36197585e+00, 1.36197585e+00, 1.36197585e+00,
       1.36328541e+00, 1.36328541e+00, 1.36328541e+00, 1.36328541e+00,
       1.36343618e+00, 1.36343618e+00, 1.36343618e+00, 1.36343618e+00,
       1.36275200e+00, 1.36275200e+00, 1.36275200e+00, 1.36275200e+00,
       1.36185315e+00, 1.36185315e+00, 1.36185315e+00, 1.36185315e+00,
       1.36106906e+00, 1.36106906e+00, 1.36106906e+00, 1.36106906e+00,
       1.36076174e+00, 1.36076174e+00, 1.36076174e+00, 1.36076174e+00,
       1.36153615e+00, 1.36153615e+00, 1.36153615e+00, 1.36153615e+00,
       1.36145251e+00, 1.36145251e+00, 1.36145251e+00, 1.36145251e+00,
       1.35798352e+00, 1.35798352e+00, 1.35798352e+00, 1.35798352e+00,
       1.33896458e+00, 1.33896458e+00, 1.33896458e+00, 1.33896458e+00,
       1.24901222e+00, 1.24901222e+00, 1.24901222e+00, 1.24901222e+00,
       9.05845095e-01, 9.05845095e-01, 9.05845095e-01, 9.05845095e-01,
       2.60939488e-01, 2.60939488e-01, 2.60939488e-01, 2.60939488e-01,
       2.66949863e-02, 2.66949863e-02, 2.66949863e-02, 2.66949863e-02,
       2.06759900e-03, 2.06759900e-03, 2.06759900e-03, 2.06759900e-03,
       1.54404335e-04, 1.54404335e-04, 1.54404335e-04, 1.54404335e-04,
       1.14811015e-05, 1.14811015e-05, 1.14811015e-05, 1.14811015e-05,
       8.51232178e-07, 8.51232178e-07, 8.51232178e-07, 8.51232178e-07,
       6.29700498e-08, 6.29700498e-08, 6.29700498e-08, 6.29700498e-08,
       4.64771793e-09, 4.64771793e-09, 4.64771793e-09, 4.64771793e-09,
       3.42187413e-10, 3.42187413e-10, 3.42187413e-10, 3.42187413e-10,
       2.51200466e-11, 2.51200466e-11, 2.51200466e-11, 2.51200466e-11,
       1.83703667e-12, 1.83703667e-12, 1.83703667e-12, 1.83703667e-12,
       1.33855888e-13, 1.33855888e-13, 1.33855888e-13, 1.33855888e-13,
       9.58591565e-15, 9.58591565e-15, 9.58591565e-15, 9.58591565e-15,
       6.58015436e-16, 6.58015436e-16, 6.58015436e-16, 6.58015436e-16,
       4.63362200e-17, 4.63362200e-17, 4.63362200e-17, 4.63362200e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.99999975, 0.99999975,
       0.99999975, 0.99999975, 0.99999826, 0.99999826, 0.99999826,
       0.99999826, 0.99998903, 0.99998903, 0.99998903, 0.99998903,
       0.99993832, 0.99993832, 0.99993832, 0.99993832, 0.9996937 ,
       0.9996937 , 0.9996937 , 0.9996937 , 0.9986757 , 0.9986757 ,
       0.9986757 , 0.9986757 , 0.99510219, 0.99510219, 0.99510219,
       0.99510219, 0.98479658, 0.98479658, 0.98479658, 0.98479658,
       0.96098067, 0.96098067, 0.96098067, 0.96098067, 0.91743778,
       0.91743778, 0.91743778, 0.91743778, 0.85378402, 0.85378402,
       0.85378402, 0.85378402, 0.7764234 , 0.7764234 , 0.7764234 ,
       0.7764234 , 0.69575388, 0.69575388, 0.69575388, 0.69575388,
       0.62328396, 0.62328396, 0.62328396, 0.62328396, 0.55678008,
       0.55678008, 0.55678008, 0.55678008, 0.50850264, 0.50850264,
       0.50850264, 0.50850264, 0.48137473, 0.48137473, 0.48137473,
       0.48137473, 0.47065375, 0.47065375, 0.47065375, 0.47065375,
       0.46777062, 0.46777062, 0.46777062, 0.46777062, 0.46716399,
       0.46716399, 0.46716399, 0.46716399, 0.46676886, 0.46676886,
       0.46676886, 0.46676886, 0.46619345, 0.46619345, 0.46619345,
       0.46619345, 0.46537137, 0.46537137, 0.46537137, 0.46537137,
       0.46458172, 0.46458172, 0.46458172, 0.46458172, 0.46395933,
       0.46395933, 0.46395933, 0.46395933, 0.46392493, 0.46392493,
       0.46392493, 0.46392493, 0.46425901, 0.46425901, 0.46425901,
       0.46425901, 0.46466477, 0.46466477, 0.46466477, 0.46466477,
       0.46482226, 0.46482226, 0.46482226, 0.46482226, 0.46376334,
       0.46376334, 0.46376334, 0.46376334, 0.45509168, 0.45509168,
       0.45509168, 0.45509168, 0.41543057, 0.41543057, 0.41543057,
       0.41543057, 0.29185634, 0.29185634, 0.29185634, 0.29185634,
       0.13928365, 0.13928365, 0.13928365, 0.13928365, 0.10357133,
       0.10357133, 0.10357133, 0.10357133, 0.10027368, 0.10027368,
       0.10027368, 0.10027368, 0.10002043, 0.10002043, 0.10002043,
       0.10002043, 0.10000152, 0.10000152, 0.10000152, 0.10000152,
       0.10000011, 0.10000011, 0.10000011, 0.10000011, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999996,
       0.99999996, 0.99999996, 0.99999996, 0.99999972, 0.99999972,
       0.99999972, 0.99999972, 0.99999813, 0.99999813, 0.99999813,
       0.99999813, 0.99998874, 0.99998874, 0.99998874, 0.99998874,
       0.99993939, 0.99993939, 0.99993939, 0.99993939, 0.99971172,
       0.99971172, 0.99971172, 0.99971172, 0.99880638, 0.99880638,
       0.99880638, 0.99880638, 0.99577085, 0.99577085, 0.99577085,
       0.99577085, 0.98739937, 0.98739937, 0.98739937, 0.98739937,
       0.96881177, 0.96881177, 0.96881177, 0.96881177, 0.93583686,
       0.93583686, 0.93583686, 0.93583686, 0.88837163, 0.88837163,
       0.88837163, 0.88837163, 0.83062885, 0.83062885, 0.83062885,
       0.83062885, 0.76981937, 0.76981937, 0.76981937, 0.76981937,
       0.71310496, 0.71310496, 0.71310496, 0.71310496, 0.66323748,
       0.66323748, 0.66323748, 0.66323748, 0.62045416, 0.62045416,
       0.62045416, 0.62045416, 0.58992516, 0.58992516, 0.58992516,
       0.58992516, 0.58052011, 0.58052011, 0.58052011, 0.58052011,
       0.58080503, 0.58080503, 0.58080503, 0.58080503, 0.58354665,
       0.58354665, 0.58354665, 0.58354665, 0.58540693, 0.58540693,
       0.58540693, 0.58540693, 0.58382526, 0.58382526, 0.58382526,
       0.58382526, 0.57540774, 0.57540774, 0.57540774, 0.57540774,
       0.55436649, 0.55436649, 0.55436649, 0.55436649, 0.51638779,
       0.51638779, 0.51638779, 0.51638779, 0.46017314, 0.46017314,
       0.46017314, 0.46017314, 0.39863657, 0.39863657, 0.39863657,
       0.39863657, 0.3593355 , 0.3593355 , 0.3593355 , 0.3593355 ,
       0.33897034, 0.33897034, 0.33897034, 0.33897034, 0.33057608,
       0.33057608, 0.33057608, 0.33057608, 0.32697565, 0.32697565,
       0.32697565, 0.32697565, 0.32222492, 0.32222492, 0.32222492,
       0.32222492, 0.29663114, 0.29663114, 0.29663114, 0.29663114,
       0.21326785, 0.21326785, 0.21326785, 0.21326785, 0.13963631,
       0.13963631, 0.13963631, 0.13963631, 0.12638405, 0.12638405,
       0.12638405, 0.12638405, 0.12510904, 0.12510904, 0.12510904,
       0.12510904, 0.12500824, 0.12500824, 0.12500824, 0.12500824,
       0.12500062, 0.12500062, 0.12500062, 0.12500062, 0.12500005,
       0.12500005, 0.12500005, 0.12500005, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
       7.50000045e-01, 7.50000045e-01, 7.50000045e-01, 7.50000045e-01,
       7.50000331e-01, 7.50000331e-01, 7.50000331e-01, 7.50000331e-01,
       7.50002210e-01, 7.50002210e-01, 7.50002210e-01, 7.50002210e-01,
       7.50013317e-01, 7.50013317e-01, 7.50013317e-01, 7.50013317e-01,
       7.50071715e-01, 7.50071715e-01, 7.50071715e-01, 7.50071715e-01,
       7.50341105e-01, 7.50341105e-01, 7.50341105e-01, 7.50341105e-01,
       7.51412648e-01, 7.51412648e-01, 7.51412648e-01, 7.51412648e-01,
       7.55010444e-01, 7.55010444e-01, 7.55010444e-01, 7.55010444e-01,
       7.64979298e-01, 7.64979298e-01, 7.64979298e-01, 7.64979298e-01,
       7.87380429e-01, 7.87380429e-01, 7.87380429e-01, 7.87380429e-01,
       8.28067152e-01, 8.28067152e-01, 8.28067152e-01, 8.28067152e-01,
       8.88835090e-01, 8.88835090e-01, 8.88835090e-01, 8.88835090e-01,
       9.66485823e-01, 9.66485823e-01, 9.66485823e-01, 9.66485823e-01,
       1.05055852e+00, 1.05055852e+00, 1.05055852e+00, 1.05055852e+00,
       1.13522481e+00, 1.13522481e+00, 1.13522481e+00, 1.13522481e+00,
       1.22058953e+00, 1.22058953e+00, 1.22058953e+00, 1.22058953e+00,
       1.29086599e+00, 1.29086599e+00, 1.29086599e+00, 1.29086599e+00,
       1.33487117e+00, 1.33487117e+00, 1.33487117e+00, 1.33487117e+00,
       1.35308250e+00, 1.35308250e+00, 1.35308250e+00, 1.35308250e+00,
       1.35819700e+00, 1.35819700e+00, 1.35819700e+00, 1.35819700e+00,
       1.36011186e+00, 1.36011186e+00, 1.36011186e+00, 1.36011186e+00,
       1.36156806e+00, 1.36156806e+00, 1.36156806e+00, 1.36156806e+00,
       1.36315058e+00, 1.36315058e+00, 1.36315058e+00, 1.36315058e+00,
       1.36379727e+00, 1.36379727e+00, 1.36379727e+00, 1.36379727e+00,
       1.36351067e+00, 1.36351067e+00, 1.36351067e+00, 1.36351067e+00,
       1.36261248e+00, 1.36261248e+00, 1.36261248e+00, 1.36261248e+00,
       1.36146436e+00, 1.36146436e+00, 1.36146436e+00, 1.36146436e+00,
       1.36063916e+00, 1.36063916e+00, 1.36063916e+00, 1.36063916e+00,
       1.36092008e+00, 1.36092008e+00, 1.36092008e+00, 1.36092008e+00,
       1.36127360e+00, 1.36127360e+00, 1.36127360e+00, 1.36127360e+00,
       1.36020110e+00, 1.36020110e+00, 1.36020110e+00, 1.36020110e+00,
       1.35450702e+00, 1.35450702e+00, 1.35450702e+00, 1.35450702e+00,
       1.32300030e+00, 1.32300030e+00, 1.32300030e+00, 1.32300030e+00,
       1.18237908e+00, 1.18237908e+00, 1.18237908e+00, 1.18237908e+00,
       7.15441717e-01, 7.15441717e-01, 7.15441717e-01, 7.15441717e-01,
       1.38769905e-01, 1.38769905e-01, 1.38769905e-01, 1.38769905e-01,
       1.23577720e-02, 1.23577720e-02, 1.23577720e-02, 1.23577720e-02,
       9.36224416e-04, 9.36224416e-04, 9.36224416e-04, 9.36224416e-04,
       7.00272710e-05, 7.00272710e-05, 7.00272710e-05, 7.00272710e-05,
       5.21364262e-06, 5.21364262e-06, 5.21364262e-06, 5.21364262e-06,
       3.86975587e-07, 3.86975587e-07, 3.86975587e-07, 3.86975587e-07,
       2.86533268e-08, 2.86533268e-08, 2.86533268e-08, 2.86533268e-08,
       2.11667470e-09, 2.11667470e-09, 2.11667470e-09, 2.11667470e-09,
       1.55981163e-10, 1.55981163e-10, 1.55981163e-10, 1.55981163e-10,
       1.14620004e-11, 1.14620004e-11, 1.14620004e-11, 1.14620004e-11,
       8.39464394e-13, 8.39464394e-13, 8.39464394e-13, 8.39464394e-13,
       6.10879150e-14, 6.10879150e-14, 6.10879150e-14, 6.10879150e-14,
       4.40544803e-15, 4.40544803e-15, 4.40544803e-15, 4.40544803e-15,
       3.15470277e-16, 3.15470277e-16, 3.15470277e-16, 3.15470277e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
       0.99999995, 0.99999995, 0.99999995, 0.99999961, 0.99999961,
       0.99999961, 0.99999961, 0.99999739, 0.99999739, 0.99999739,
       0.99999739, 0.99998424, 0.99998424, 0.99998424, 0.99998424,
       0.99991515, 0.99991515, 0.99991515, 0.99991515, 0.99959648,
       0.99959648, 0.99959648, 0.99959648, 0.99832987, 0.99832987,
       0.99832987, 0.99832987, 0.99408857, 0.99408857, 0.99408857,
       0.99408857, 0.98242851, 0.98242851, 0.98242851, 0.98242851,
       0.95670672, 0.95670672, 0.95670672, 0.95670672, 0.91159757,
       0.91159757, 0.91159757, 0.91159757, 0.8477941 , 0.8477941 ,
       0.8477941 , 0.8477941 , 0.77194869, 0.77194869, 0.77194869,
       0.77194869, 0.69397675, 0.69397675, 0.69397675, 0.69397675,
       0.62399737, 0.62399737, 0.62399737, 0.62399737, 0.55909955,
       0.55909955, 0.55909955, 0.55909955, 0.51089525, 0.51089525,
       0.51089525, 0.51089525, 0.48295725, 0.48295725, 0.48295725,
       0.48295725, 0.47140761, 0.47140761, 0.47140761, 0.47140761,
       0.46792021, 0.46792021, 0.46792021, 0.46792021, 0.46704157,
       0.46704157, 0.46704157, 0.46704157, 0.46664044, 0.46664044,
       0.46664044, 0.46664044, 0.46622055, 0.46622055, 0.46622055,
       0.46622055, 0.46568048, 0.46568048, 0.46568048, 0.46568048,
       0.46505167, 0.46505167, 0.46505167, 0.46505167, 0.46437416,
       0.46437416, 0.46437416, 0.46437416, 0.46411629, 0.46411629,
       0.46411629, 0.46411629, 0.46418296, 0.46418296, 0.46418296,
       0.46418296, 0.46437517, 0.46437517, 0.46437517, 0.46437517,
       0.46474262, 0.46474262, 0.46474262, 0.46474262, 0.4647905 ,
       0.4647905 , 0.4647905 , 0.4647905 , 0.46219808, 0.46219808,
       0.46219808, 0.46219808, 0.44788536, 0.44788536, 0.44788536,
       0.44788536, 0.38869085, 0.38869085, 0.38869085, 0.38869085,
       0.23647903, 0.23647903, 0.23647903, 0.23647903, 0.11972131,
       0.11972131, 0.11972131, 0.11972131, 0.10164215, 0.10164215,
       0.10164215, 0.10164215, 0.10012388, 0.10012388, 0.10012388,
       0.10012388, 0.10000926, 0.10000926, 0.10000926, 0.10000926,
       0.10000069, 0.10000069, 0.10000069, 0.10000069, 0.10000005,
       0.10000005, 0.10000005, 0.10000005, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
       0.99999994, 0.99999994, 0.99999994, 0.99999957, 0.99999957,
       0.99999957, 0.99999957, 0.99999725, 0.99999725, 0.99999725,
       0.99999725, 0.99998408, 0.99998408, 0.99998408, 0.99998408,
       0.99991777, 0.99991777, 0.99991777, 0.99991777, 0.99962494,
       0.99962494, 0.99962494, 0.99962494, 0.99851137, 0.99851137,
       0.99851137, 0.99851137, 0.99494469, 0.99494469, 0.99494469,
       0.99494469, 0.98555163, 0.98555163, 0.98555163, 0.98555163,
       0.96559893, 0.96559893, 0.96559893, 0.96559893, 0.93155858,
       0.93155858, 0.93155858, 0.93155858, 0.88403476, 0.88403476,
       0.88403476, 0.88403476, 0.8274092 , 0.8274092 , 0.8274092 ,
       0.8274092 , 0.76877221, 0.76877221, 0.76877221, 0.76877221,
       0.71316056, 0.71316056, 0.71316056, 0.71316056, 0.66441163,
       0.66441163, 0.66441163, 0.66441163, 0.62379118, 0.62379118,
       0.62379118, 0.62379118, 0.59276036, 0.59276036, 0.59276036,
       0.59276036, 0.58060214, 0.58060214, 0.58060214, 0.58060214,
       0.58004359, 0.58004359, 0.58004359, 0.58004359, 0.58181969,
       0.58181969, 0.58181969, 0.58181969, 0.58456085, 0.58456085,
       0.58456085, 0.58456085, 0.58426133, 0.58426133, 0.58426133,
       0.58426133, 0.57952111, 0.57952111, 0.57952111, 0.57952111,
       0.56481381, 0.56481381, 0.56481381, 0.56481381, 0.53498407,
       0.53498407, 0.53498407, 0.53498407, 0.48707968, 0.48707968,
       0.48707968, 0.48707968, 0.4240172 , 0.4240172 , 0.4240172 ,
       0.4240172 , 0.37419742, 0.37419742, 0.37419742, 0.37419742,
       0.34640254, 0.34640254, 0.34640254, 0.34640254, 0.33383188,
       0.33383188, 0.33383188, 0.33383188, 0.32905424, 0.32905424,
       0.32905424, 0.32905424, 0.32677563, 0.32677563, 0.32677563,
       0.32677563, 0.31923078, 0.31923078, 0.31923078, 0.31923078,
       0.27840167, 0.27840167, 0.27840167, 0.27840167, 0.1822785 ,
       0.1822785 , 0.1822785 , 0.1822785 , 0.13240005, 0.13240005,
       0.13240005, 0.13240005, 0.12564148, 0.12564148, 0.12564148,
       0.12564148, 0.12504969, 0.12504969, 0.12504969, 0.12504969,
       0.12500374, 0.12500374, 0.12500374, 0.12500374, 0.12500028,
       0.12500028, 0.12500028, 0.12500028, 0.12500002, 0.12500002,
       0.12500002, 0.12500002, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000072e-01, 7.50000072e-01, 7.50000072e-01, 7.50000072e-01,
       7.50000509e-01, 7.50000509e-01, 7.50000509e-01, 7.50000509e-01,
       7.50003258e-01, 7.50003258e-01, 7.50003258e-01, 7.50003258e-01,
       7.50018836e-01, 7.50018836e-01, 7.50018836e-01, 7.50018836e-01,
       7.50097297e-01, 7.50097297e-01, 7.50097297e-01, 7.50097297e-01,
       7.50443797e-01, 7.50443797e-01, 7.50443797e-01, 7.50443797e-01,
       7.51761984e-01, 7.51761984e-01, 7.51761984e-01, 7.51761984e-01,
       7.55991281e-01, 7.55991281e-01, 7.55991281e-01, 7.55991281e-01,
       7.67190124e-01, 7.67190124e-01, 7.67190124e-01, 7.67190124e-01,
       7.91292369e-01, 7.91292369e-01, 7.91292369e-01, 7.91292369e-01,
       8.33436036e-01, 8.33436036e-01, 8.33436036e-01, 8.33436036e-01,
       8.94508968e-01, 8.94508968e-01, 8.94508968e-01, 8.94508968e-01,
       9.70928324e-01, 9.70928324e-01, 9.70928324e-01, 9.70928324e-01,
       1.05242450e+00, 1.05242450e+00, 1.05242450e+00, 1.05242450e+00,
       1.13456684e+00, 1.13456684e+00, 1.13456684e+00, 1.13456684e+00,
       1.21752814e+00, 1.21752814e+00, 1.21752814e+00, 1.21752814e+00,
       1.28688080e+00, 1.28688080e+00, 1.28688080e+00, 1.28688080e+00,
       1.33202565e+00, 1.33202565e+00, 1.33202565e+00, 1.33202565e+00,
       1.35205511e+00, 1.35205511e+00, 1.35205511e+00, 1.35205511e+00,
       1.35794285e+00, 1.35794285e+00, 1.35794285e+00, 1.35794285e+00,
       1.35979765e+00, 1.35979765e+00, 1.35979765e+00, 1.35979765e+00,
       1.36117165e+00, 1.36117165e+00, 1.36117165e+00, 1.36117165e+00,
       1.36278081e+00, 1.36278081e+00, 1.36278081e+00, 1.36278081e+00,
       1.36384708e+00, 1.36384708e+00, 1.36384708e+00, 1.36384708e+00,
       1.36394428e+00, 1.36394428e+00, 1.36394428e+00, 1.36394428e+00,
       1.36340422e+00, 1.36340422e+00, 1.36340422e+00, 1.36340422e+00,
       1.36216954e+00, 1.36216954e+00, 1.36216954e+00, 1.36216954e+00,
       1.36091948e+00, 1.36091948e+00, 1.36091948e+00, 1.36091948e+00,
       1.36072488e+00, 1.36072488e+00, 1.36072488e+00, 1.36072488e+00,
       1.36080076e+00, 1.36080076e+00, 1.36080076e+00, 1.36080076e+00,
       1.36052967e+00, 1.36052967e+00, 1.36052967e+00, 1.36052967e+00,
       1.35904254e+00, 1.35904254e+00, 1.35904254e+00, 1.35904254e+00,
       1.34885124e+00, 1.34885124e+00, 1.34885124e+00, 1.34885124e+00,
       1.29744243e+00, 1.29744243e+00, 1.29744243e+00, 1.29744243e+00,
       1.08422445e+00, 1.08422445e+00, 1.08422445e+00, 1.08422445e+00,
       5.02990327e-01, 5.02990327e-01, 5.02990327e-01, 5.02990327e-01,
       6.93727442e-02, 6.93727442e-02, 6.93727442e-02, 6.93727442e-02,
       5.63191058e-03, 5.63191058e-03, 5.63191058e-03, 5.63191058e-03,
       4.24506091e-04, 4.24506091e-04, 4.24506091e-04, 4.24506091e-04,
       3.17404436e-05, 3.17404436e-05, 3.17404436e-05, 3.17404436e-05,
       2.36582375e-06, 2.36582375e-06, 2.36582375e-06, 2.36582375e-06,
       1.75833876e-07, 1.75833876e-07, 1.75833876e-07, 1.75833876e-07,
       1.30328080e-08, 1.30328080e-08, 1.30328080e-08, 1.30328080e-08,
       9.63639514e-10, 9.63639514e-10, 9.63639514e-10, 9.63639514e-10,
       7.10763736e-11, 7.10763736e-11, 7.10763736e-11, 7.10763736e-11,
       5.22825264e-12, 5.22825264e-12, 5.22825264e-12, 5.22825264e-12,
       3.83163730e-13, 3.83163730e-13, 3.83163730e-13, 3.83163730e-13,
       2.79726565e-14, 2.79726565e-14, 2.79726565e-14, 2.79726565e-14,
       2.02525897e-15, 2.02525897e-15, 2.02525897e-15, 2.02525897e-15,
       1.51631827e-16, 1.51631827e-16, 1.51631827e-16, 1.51631827e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999991,
       0.99999991, 0.99999991, 0.99999991, 0.9999994 , 0.9999994 ,
       0.9999994 , 0.9999994 , 0.99999614, 0.99999614, 0.99999614,
       0.99999614, 0.99997771, 0.99997771, 0.99997771, 0.99997771,
       0.99988488, 0.99988488, 0.99988488, 0.99988488, 0.99947502,
       0.99947502, 0.99947502, 0.99947502, 0.99791728, 0.99791728,
       0.99791728, 0.99791728, 0.99293536, 0.99293536, 0.99293536,
       0.99293536, 0.97986052, 0.97986052, 0.97986052, 0.97986052,
       0.95227911, 0.95227911, 0.95227911, 0.95227911, 0.90578254,
       0.90578254, 0.90578254, 0.90578254, 0.84200911, 0.84200911,
       0.84200911, 0.84200911, 0.76771824, 0.76771824, 0.76771824,
       0.76771824, 0.69232015, 0.69232015, 0.69232015, 0.69232015,
       0.62465064, 0.62465064, 0.62465064, 0.62465064, 0.56138795,
       0.56138795, 0.56138795, 0.56138795, 0.51330741, 0.51330741,
       0.51330741, 0.51330741, 0.4845093 , 0.4845093 , 0.4845093 ,
       0.4845093 , 0.47217185, 0.47217185, 0.47217185, 0.47217185,
       0.46819774, 0.46819774, 0.46819774, 0.46819774, 0.46701446,
       0.46701446, 0.46701446, 0.46701446, 0.46652199, 0.46652199,
       0.46652199, 0.46652199, 0.46611084, 0.46611084, 0.46611084,
       0.46611084, 0.46578348, 0.46578348, 0.46578348, 0.46578348,
       0.46535618, 0.46535618, 0.46535618, 0.46535618, 0.46482306,
       0.46482306, 0.46482306, 0.46482306, 0.46446841, 0.46446841,
       0.46446841, 0.46446841, 0.46430983, 0.46430983, 0.46430983,
       0.46430983, 0.46428048, 0.46428048, 0.46428048, 0.46428048,
       0.46452486, 0.46452486, 0.46452486, 0.46452486, 0.4649441 ,
       0.4649441 , 0.4649441 , 0.4649441 , 0.46428963, 0.46428963,
       0.46428963, 0.46428963, 0.45964556, 0.45964556, 0.45964556,
       0.45964556, 0.4368908 , 0.4368908 , 0.4368908 , 0.4368908 ,
       0.35200209, 0.35200209, 0.35200209, 0.35200209, 0.18536524,
       0.18536524, 0.18536524, 0.18536524, 0.10948877, 0.10948877,
       0.10948877, 0.10948877, 0.10074638, 0.10074638, 0.10074638,
       0.10074638, 0.10005616, 0.10005616, 0.10005616, 0.10005616,
       0.1000042 , 0.1000042 , 0.1000042 , 0.1000042 , 0.10000031,
       0.10000031, 0.10000031, 0.10000031, 0.10000002, 0.10000002,
       0.10000002, 0.10000002, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.9999999 ,
       0.9999999 , 0.9999999 , 0.9999999 , 0.99999935, 0.99999935,
       0.99999935, 0.99999935, 0.999996  , 0.999996  , 0.999996  ,
       0.999996  , 0.9999778 , 0.9999778 , 0.9999778 , 0.9999778 ,
       0.99988988, 0.99988988, 0.99988988, 0.99988988, 0.99951775,
       0.99951775, 0.99951775, 0.99951775, 0.99816293, 0.99816293,
       0.99816293, 0.99816293, 0.99401287, 0.99401287, 0.99401287,
       0.99401287, 0.98356146, 0.98356146, 0.98356146, 0.98356146,
       0.9622853 , 0.9622853 , 0.9622853 , 0.9622853 , 0.92730693,
       0.92730693, 0.92730693, 0.92730693, 0.87984577, 0.87984577,
       0.87984577, 0.87984577, 0.82436213, 0.82436213, 0.82436213,
       0.82436213, 0.76781991, 0.76781991, 0.76781991, 0.76781991,
       0.71338064, 0.71338064, 0.71338064, 0.71338064, 0.66530752,
       0.66530752, 0.66530752, 0.66530752, 0.62662899, 0.62662899,
       0.62662899, 0.62662899, 0.59584458, 0.59584458, 0.59584458,
       0.59584458, 0.58122522, 0.58122522, 0.58122522, 0.58122522,
       0.57945682, 0.57945682, 0.57945682, 0.57945682, 0.58056762,
       0.58056762, 0.58056762, 0.58056762, 0.58335259, 0.58335259,
       0.58335259, 0.58335259, 0.5840114 , 0.5840114 , 0.5840114 ,
       0.5840114 , 0.58173244, 0.58173244, 0.58173244, 0.58173244,
       0.57212127, 0.57212127, 0.57212127, 0.57212127, 0.54967525,
       0.54967525, 0.54967525, 0.54967525, 0.51027045, 0.51027045,
       0.51027045, 0.51027045, 0.45256286, 0.45256286, 0.45256286,
       0.45256286, 0.39319195, 0.39319195, 0.39319195, 0.39319195,
       0.35669662, 0.35669662, 0.35669662, 0.35669662, 0.33848333,
       0.33848333, 0.33848333, 0.33848333, 0.33098586, 0.33098586,
       0.33098586, 0.33098586, 0.32867169, 0.32867169, 0.32867169,
       0.32867169, 0.32673109, 0.32673109, 0.32673109, 0.32673109,
       0.31276146, 0.31276146, 0.31276146, 0.31276146, 0.25297057,
       0.25297057, 0.25297057, 0.25297057, 0.15774063, 0.15774063,
       0.15774063, 0.15774063, 0.12857133, 0.12857133, 0.12857133,
       0.12857133, 0.12529541, 0.12529541, 0.12529541, 0.12529541,
       0.12502259, 0.12502259, 0.12502259, 0.12502259, 0.1250017 ,
       0.1250017 , 0.1250017 , 0.1250017 , 0.12500013, 0.12500013,
       0.12500013, 0.12500013, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000015e-01, 7.50000015e-01, 7.50000015e-01, 7.50000015e-01,
       7.50000114e-01, 7.50000114e-01, 7.50000114e-01, 7.50000114e-01,
       7.50000768e-01, 7.50000768e-01, 7.50000768e-01, 7.50000768e-01,
       7.50004730e-01, 7.50004730e-01, 7.50004730e-01, 7.50004730e-01,
       7.50026264e-01, 7.50026264e-01, 7.50026264e-01, 7.50026264e-01,
       7.50130297e-01, 7.50130297e-01, 7.50130297e-01, 7.50130297e-01,
       7.50570647e-01, 7.50570647e-01, 7.50570647e-01, 7.50570647e-01,
       7.52174682e-01, 7.52174682e-01, 7.52174682e-01, 7.52174682e-01,
       7.57098423e-01, 7.57098423e-01, 7.57098423e-01, 7.57098423e-01,
       7.69575519e-01, 7.69575519e-01, 7.69575519e-01, 7.69575519e-01,
       7.95338848e-01, 7.95338848e-01, 7.95338848e-01, 7.95338848e-01,
       8.38790934e-01, 8.38790934e-01, 8.38790934e-01, 8.38790934e-01,
       9.00008072e-01, 9.00008072e-01, 9.00008072e-01, 9.00008072e-01,
       9.75143222e-01, 9.75143222e-01, 9.75143222e-01, 9.75143222e-01,
       1.05418743e+00, 1.05418743e+00, 1.05418743e+00, 1.05418743e+00,
       1.13392925e+00, 1.13392925e+00, 1.13392925e+00, 1.13392925e+00,
       1.21464803e+00, 1.21464803e+00, 1.21464803e+00, 1.21464803e+00,
       1.28307514e+00, 1.28307514e+00, 1.28307514e+00, 1.28307514e+00,
       1.32905104e+00, 1.32905104e+00, 1.32905104e+00, 1.32905104e+00,
       1.35077100e+00, 1.35077100e+00, 1.35077100e+00, 1.35077100e+00,
       1.35767915e+00, 1.35767915e+00, 1.35767915e+00, 1.35767915e+00,
       1.35963173e+00, 1.35963173e+00, 1.35963173e+00, 1.35963173e+00,
       1.36086885e+00, 1.36086885e+00, 1.36086885e+00, 1.36086885e+00,
       1.36233245e+00, 1.36233245e+00, 1.36233245e+00, 1.36233245e+00,
       1.36365306e+00, 1.36365306e+00, 1.36365306e+00, 1.36365306e+00,
       1.36410375e+00, 1.36410375e+00, 1.36410375e+00, 1.36410375e+00,
       1.36392708e+00, 1.36392708e+00, 1.36392708e+00, 1.36392708e+00,
       1.36298853e+00, 1.36298853e+00, 1.36298853e+00, 1.36298853e+00,
       1.36152724e+00, 1.36152724e+00, 1.36152724e+00, 1.36152724e+00,
       1.36088739e+00, 1.36088739e+00, 1.36088739e+00, 1.36088739e+00,
       1.36059622e+00, 1.36059622e+00, 1.36059622e+00, 1.36059622e+00,
       1.36030814e+00, 1.36030814e+00, 1.36030814e+00, 1.36030814e+00,
       1.36008913e+00, 1.36008913e+00, 1.36008913e+00, 1.36008913e+00,
       1.35711729e+00, 1.35711729e+00, 1.35711729e+00, 1.35711729e+00,
       1.33931866e+00, 1.33931866e+00, 1.33931866e+00, 1.33931866e+00,
       1.25869909e+00, 1.25869909e+00, 1.25869909e+00, 1.25869909e+00,
       9.47391457e-01, 9.47391457e-01, 9.47391457e-01, 9.47391457e-01,
       3.03306502e-01, 3.03306502e-01, 3.03306502e-01, 3.03306502e-01,
       3.27779884e-02, 3.27779884e-02, 3.27779884e-02, 3.27779884e-02,
       2.56194868e-03, 2.56194868e-03, 2.56194868e-03, 2.56194868e-03,
       1.92341225e-04, 1.92341225e-04, 1.92341225e-04, 1.92341225e-04,
       1.43841206e-05, 1.43841206e-05, 1.43841206e-05, 1.43841206e-05,
       1.07319292e-06, 1.07319292e-06, 1.07319292e-06, 1.07319292e-06,
       7.98515072e-08, 7.98515072e-08, 7.98515072e-08, 7.98515072e-08,
       5.92527078e-09, 5.92527078e-09, 5.92527078e-09, 5.92527078e-09,
       4.38545776e-10, 4.38545776e-10, 4.38545776e-10, 4.38545776e-10,
       3.23766591e-11, 3.23766591e-11, 3.23766591e-11, 3.23766591e-11,
       2.38365625e-12, 2.38365625e-12, 2.38365625e-12, 2.38365625e-12,
       1.74984281e-13, 1.74984281e-13, 1.74984281e-13, 1.74984281e-13,
       1.27988486e-14, 1.27988486e-14, 1.27988486e-14, 1.27988486e-14,
       9.36619527e-16, 9.36619527e-16, 9.36619527e-16, 9.36619527e-16,
       5.90078683e-17, 5.90078683e-17, 5.90078683e-17, 5.90078683e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999987,
       0.99999987, 0.99999987, 0.99999987, 0.99999909, 0.99999909,
       0.99999909, 0.99999909, 0.9999944 , 0.9999944 , 0.9999944 ,
       0.9999944 , 0.99996892, 0.99996892, 0.99996892, 0.99996892,
       0.99984584, 0.99984584, 0.99984584, 0.99984584, 0.99932502,
       0.99932502, 0.99932502, 0.99932502, 0.99743007, 0.99743007,
       0.99743007, 0.99743007, 0.99163522, 0.99163522, 0.99163522,
       0.99163522, 0.97709688, 0.97709688, 0.97709688, 0.97709688,
       0.94771858, 0.94771858, 0.94771858, 0.94771858, 0.90001323,
       0.90001323, 0.90001323, 0.90001323, 0.83643028, 0.83643028,
       0.83643028, 0.83643028, 0.76371797, 0.76371797, 0.76371797,
       0.76371797, 0.69077552, 0.69077552, 0.69077552, 0.69077552,
       0.62524441, 0.62524441, 0.62524441, 0.62524441, 0.56360708,
       0.56360708, 0.56360708, 0.56360708, 0.51576884, 0.51576884,
       0.51576884, 0.51576884, 0.48608775, 0.48608775, 0.48608775,
       0.48608775, 0.47290348, 0.47290348, 0.47290348, 0.47290348,
       0.46852795, 0.46852795, 0.46852795, 0.46852795, 0.46709417,
       0.46709417, 0.46709417, 0.46709417, 0.4664615 , 0.4664615 ,
       0.4664615 , 0.4664615 , 0.46595946, 0.46595946, 0.46595946,
       0.46595946, 0.46573483, 0.46573483, 0.46573483, 0.46573483,
       0.46549762, 0.46549762, 0.46549762, 0.46549762, 0.4651401 ,
       0.4651401 , 0.4651401 , 0.4651401 , 0.4648877 , 0.4648877 ,
       0.4648877 , 0.4648877 , 0.46460628, 0.46460628, 0.46460628,
       0.46460628, 0.46435859, 0.46435859, 0.46435859, 0.46435859,
       0.46443008, 0.46443008, 0.46443008, 0.46443008, 0.46484084,
       0.46484084, 0.46484084, 0.46484084, 0.46477421, 0.46477421,
       0.46477421, 0.46477421, 0.46345495, 0.46345495, 0.46345495,
       0.46345495, 0.45575261, 0.45575261, 0.45575261, 0.45575261,
       0.41991969, 0.41991969, 0.41991969, 0.41991969, 0.30495101,
       0.30495101, 0.30495101, 0.30495101, 0.14641294, 0.14641294,
       0.14641294, 0.14641294, 0.10439859, 0.10439859, 0.10439859,
       0.10439859, 0.10033916, 0.10033916, 0.10033916, 0.10033916,
       0.10002545, 0.10002545, 0.10002545, 0.10002545, 0.1000019 ,
       0.1000019 , 0.1000019 , 0.1000019 , 0.10000014, 0.10000014,
       0.10000014, 0.10000014, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999985,
       0.99999985, 0.99999985, 0.99999985, 0.99999903, 0.99999903,
       0.99999903, 0.99999903, 0.99999428, 0.99999428, 0.99999428,
       0.99999428, 0.99996946, 0.99996946, 0.99996946, 0.99996946,
       0.99985432, 0.99985432, 0.99985432, 0.99985432, 0.99938676,
       0.99938676, 0.99938676, 0.99938676, 0.99775536, 0.99775536,
       0.99775536, 0.99775536, 0.99297081, 0.99297081, 0.99297081,
       0.99297081, 0.98143309, 0.98143309, 0.98143309, 0.98143309,
       0.95888578, 0.95888578, 0.95888578, 0.95888578, 0.9230955 ,
       0.9230955 , 0.9230955 , 0.9230955 , 0.87580507, 0.87580507,
       0.87580507, 0.87580507, 0.82147709, 0.82147709, 0.82147709,
       0.82147709, 0.76692374, 0.76692374, 0.76692374, 0.76692374,
       0.71378615, 0.71378615, 0.71378615, 0.71378615, 0.66604952,
       0.66604952, 0.66604952, 0.66604952, 0.62893204, 0.62893204,
       0.62893204, 0.62893204, 0.59898326, 0.59898326, 0.59898326,
       0.59898326, 0.58239235, 0.58239235, 0.58239235, 0.58239235,
       0.57906513, 0.57906513, 0.57906513, 0.57906513, 0.5796752 ,
       0.5796752 , 0.5796752 , 0.5796752 , 0.58197407, 0.58197407,
       0.58197407, 0.58197407, 0.58350893, 0.58350893, 0.58350893,
       0.58350893, 0.58262487, 0.58262487, 0.58262487, 0.58262487,
       0.5768568 , 0.5768568 , 0.5768568 , 0.5768568 , 0.56077107,
       0.56077107, 0.56077107, 0.56077107, 0.52949915, 0.52949915,
       0.52949915, 0.52949915, 0.48013846, 0.48013846, 0.48013846,
       0.48013846, 0.41713955, 0.41713955, 0.41713955, 0.41713955,
       0.37044721, 0.37044721, 0.37044721, 0.37044721, 0.34523075,
       0.34523075, 0.34523075, 0.34523075, 0.33369594, 0.33369594,
       0.33369594, 0.33369594, 0.32989191, 0.32989191, 0.32989191,
       0.32989191, 0.32903442, 0.32903442, 0.32903442, 0.32903442,
       0.32566179, 0.32566179, 0.32566179, 0.32566179, 0.30140914,
       0.30140914, 0.30140914, 0.30140914, 0.22161536, 0.22161536,
       0.22161536, 0.22161536, 0.142229  , 0.142229  , 0.142229  ,
       0.142229  , 0.12669189, 0.12669189, 0.12669189, 0.12669189,
       0.12513485, 0.12513485, 0.12513485, 0.12513485, 0.12501025,
       0.12501025, 0.12501025, 0.12501025, 0.12500077, 0.12500077,
       0.12500077, 0.12500077, 0.12500006, 0.12500006, 0.12500006,
       0.12500006, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000176e-01, 7.50000176e-01, 7.50000176e-01, 7.50000176e-01,
       7.50001143e-01, 7.50001143e-01, 7.50001143e-01, 7.50001143e-01,
       7.50006765e-01, 7.50006765e-01, 7.50006765e-01, 7.50006765e-01,
       7.50036132e-01, 7.50036132e-01, 7.50036132e-01, 7.50036132e-01,
       7.50172369e-01, 7.50172369e-01, 7.50172369e-01, 7.50172369e-01,
       7.50725674e-01, 7.50725674e-01, 7.50725674e-01, 7.50725674e-01,
       7.52657561e-01, 7.52657561e-01, 7.52657561e-01, 7.52657561e-01,
       7.58337621e-01, 7.58337621e-01, 7.58337621e-01, 7.58337621e-01,
       7.72131336e-01, 7.72131336e-01, 7.72131336e-01, 7.72131336e-01,
       7.99502632e-01, 7.99502632e-01, 7.99502632e-01, 7.99502632e-01,
       8.44114177e-01, 8.44114177e-01, 8.44114177e-01, 8.44114177e-01,
       9.05331881e-01, 9.05331881e-01, 9.05331881e-01, 9.05331881e-01,
       9.79125457e-01, 9.79125457e-01, 9.79125457e-01, 9.79125457e-01,
       1.05587185e+00, 1.05587185e+00, 1.05587185e+00, 1.05587185e+00,
       1.13331506e+00, 1.13331506e+00, 1.13331506e+00, 1.13331506e+00,
       1.21189543e+00, 1.21189543e+00, 1.21189543e+00, 1.21189543e+00,
       1.27944869e+00, 1.27944869e+00, 1.27944869e+00, 1.27944869e+00,
       1.32606311e+00, 1.32606311e+00, 1.32606311e+00, 1.32606311e+00,
       1.34925512e+00, 1.34925512e+00, 1.34925512e+00, 1.34925512e+00,
       1.35728578e+00, 1.35728578e+00, 1.35728578e+00, 1.35728578e+00,
       1.35954920e+00, 1.35954920e+00, 1.35954920e+00, 1.35954920e+00,
       1.36069411e+00, 1.36069411e+00, 1.36069411e+00, 1.36069411e+00,
       1.36194086e+00, 1.36194086e+00, 1.36194086e+00, 1.36194086e+00,
       1.36330593e+00, 1.36330593e+00, 1.36330593e+00, 1.36330593e+00,
       1.36405650e+00, 1.36405650e+00, 1.36405650e+00, 1.36405650e+00,
       1.36415497e+00, 1.36415497e+00, 1.36415497e+00, 1.36415497e+00,
       1.36359348e+00, 1.36359348e+00, 1.36359348e+00, 1.36359348e+00,
       1.36234614e+00, 1.36234614e+00, 1.36234614e+00, 1.36234614e+00,
       1.36135889e+00, 1.36135889e+00, 1.36135889e+00, 1.36135889e+00,
       1.36073912e+00, 1.36073912e+00, 1.36073912e+00, 1.36073912e+00,
       1.36010502e+00, 1.36010502e+00, 1.36010502e+00, 1.36010502e+00,
       1.36015262e+00, 1.36015262e+00, 1.36015262e+00, 1.36015262e+00,
       1.35942760e+00, 1.35942760e+00, 1.35942760e+00, 1.35942760e+00,
       1.35349451e+00, 1.35349451e+00, 1.35349451e+00, 1.35349451e+00,
       1.32499316e+00, 1.32499316e+00, 1.32499316e+00, 1.32499316e+00,
       1.19968030e+00, 1.19968030e+00, 1.19968030e+00, 1.19968030e+00,
       7.65654632e-01, 7.65654632e-01, 7.65654632e-01, 7.65654632e-01,
       1.63013744e-01, 1.63013744e-01, 1.63013744e-01, 1.63013744e-01,
       1.51766301e-02, 1.51766301e-02, 1.51766301e-02, 1.51766301e-02,
       1.15961586e-03, 1.15961586e-03, 1.15961586e-03, 1.15961586e-03,
       8.71092067e-05, 8.71092067e-05, 8.71092067e-05, 8.71092067e-05,
       6.51852874e-06, 6.51852874e-06, 6.51852874e-06, 6.51852874e-06,
       4.86666078e-07, 4.86666078e-07, 4.86666078e-07, 4.86666078e-07,
       3.62471947e-08, 3.62471947e-08, 3.62471947e-08, 3.62471947e-08,
       2.69260253e-09, 2.69260253e-09, 2.69260253e-09, 2.69260253e-09,
       1.99494358e-10, 1.99494358e-10, 1.99494358e-10, 1.99494358e-10,
       1.47423360e-11, 1.47423360e-11, 1.47423360e-11, 1.47423360e-11,
       1.08650415e-12, 1.08650415e-12, 1.08650415e-12, 1.08650415e-12,
       7.98526879e-14, 7.98526879e-14, 7.98526879e-14, 7.98526879e-14,
       5.91227187e-15, 5.91227187e-15, 5.91227187e-15, 5.91227187e-15,
       3.97725372e-16, 3.97725372e-16, 3.97725372e-16, 3.97725372e-16,
       1.14152033e-17, 1.14152033e-17, 1.14152033e-17, 1.14152033e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999979,
       0.99999979, 0.99999979, 0.99999979, 0.99999865, 0.99999865,
       0.99999865, 0.99999865, 0.999992  , 0.999992  , 0.999992  ,
       0.999992  , 0.99995725, 0.99995725, 0.99995725, 0.99995725,
       0.99979607, 0.99979607, 0.99979607, 0.99979607, 0.99914172,
       0.99914172, 0.99914172, 0.99914172, 0.9968603 , 0.9968603 ,
       0.9968603 , 0.9968603 , 0.99018195, 0.99018195, 0.99018195,
       0.99018195, 0.97414391, 0.97414391, 0.97414391, 0.97414391,
       0.94304609, 0.94304609, 0.94304609, 0.94304609, 0.89430785,
       0.89430785, 0.89430785, 0.89430785, 0.83105531, 0.83105531,
       0.83105531, 0.83105531, 0.75992159, 0.75992159, 0.75992159,
       0.75992159, 0.68934729, 0.68934729, 0.68934729, 0.68934729,
       0.62578832, 0.62578832, 0.62578832, 0.62578832, 0.56572412,
       0.56572412, 0.56572412, 0.56572412, 0.51826812, 0.51826812,
       0.51826812, 0.51826812, 0.48775305, 0.48775305, 0.48775305,
       0.48775305, 0.47361881, 0.47361881, 0.47361881, 0.47361881,
       0.46884188, 0.46884188, 0.46884188, 0.46884188, 0.46724329,
       0.46724329, 0.46724329, 0.46724329, 0.46648424, 0.46648424,
       0.46648424, 0.46648424, 0.46584328, 0.46584328, 0.46584328,
       0.46584328, 0.46559981, 0.46559981, 0.46559981, 0.46559981,
       0.46550449, 0.46550449, 0.46550449, 0.46550449, 0.46529836,
       0.46529836, 0.46529836, 0.46529836, 0.46519784, 0.46519784,
       0.46519784, 0.46519784, 0.46501854, 0.46501854, 0.46501854,
       0.46501854, 0.4645934 , 0.4645934 , 0.4645934 , 0.4645934 ,
       0.4644984 , 0.4644984 , 0.4644984 , 0.4644984 , 0.4647448 ,
       0.4647448 , 0.4647448 , 0.4647448 , 0.46480417, 0.46480417,
       0.46480417, 0.46480417, 0.46452695, 0.46452695, 0.46452695,
       0.46452695, 0.46226705, 0.46226705, 0.46226705, 0.46226705,
       0.44923987, 0.44923987, 0.44923987, 0.44923987, 0.39520123,
       0.39520123, 0.39520123, 0.39520123, 0.25019732, 0.25019732,
       0.25019732, 0.25019732, 0.12347913, 0.12347913, 0.12347913,
       0.12347913, 0.10201923, 0.10201923, 0.10201923, 0.10201923,
       0.10015345, 0.10015345, 0.10015345, 0.10015345, 0.10001152,
       0.10001152, 0.10001152, 0.10001152, 0.10000086, 0.10000086,
       0.10000086, 0.10000086, 0.10000006, 0.10000006, 0.10000006,
       0.10000006, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999977,
       0.99999977, 0.99999977, 0.99999977, 0.99999859, 0.99999859,
       0.99999859, 0.99999859, 0.99999193, 0.99999193, 0.99999193,
       0.99999193, 0.99995852, 0.99995852, 0.99995852, 0.99995852,
       0.99980949, 0.99980949, 0.99980949, 0.99980949, 0.99922831,
       0.99922831, 0.99922831, 0.99922831, 0.99728299, 0.99728299,
       0.99728299, 0.99728299, 0.99181486, 0.99181486, 0.99181486,
       0.99181486, 0.97917208, 0.97917208, 0.97917208, 0.97917208,
       0.95541523, 0.95541523, 0.95541523, 0.95541523, 0.91893615,
       0.91893615, 0.91893615, 0.91893615, 0.87190997, 0.87190997,
       0.87190997, 0.87190997, 0.8187528 , 0.8187528 , 0.8187528 ,
       0.8187528 , 0.76602872, 0.76602872, 0.76602872, 0.76602872,
       0.7143833 , 0.7143833 , 0.7143833 , 0.7143833 , 0.66676801,
       0.66676801, 0.66676801, 0.66676801, 0.6307179 , 0.6307179 ,
       0.6307179 , 0.6307179 , 0.60198349, 0.60198349, 0.60198349,
       0.60198349, 0.58404794, 0.58404794, 0.58404794, 0.58404794,
       0.57892756, 0.57892756, 0.57892756, 0.57892756, 0.57904741,
       0.57904741, 0.57904741, 0.57904741, 0.58062787, 0.58062787,
       0.58062787, 0.58062787, 0.58283322, 0.58283322, 0.58283322,
       0.58283322, 0.58277091, 0.58277091, 0.58277091, 0.58277091,
       0.57963328, 0.57963328, 0.57963328, 0.57963328, 0.56873886,
       0.56873886, 0.56873886, 0.56873886, 0.54485283, 0.54485283,
       0.54485283, 0.54485283, 0.50395357, 0.50395357, 0.50395357,
       0.50395357, 0.44501153, 0.44501153, 0.44501153, 0.44501153,
       0.38825268, 0.38825268, 0.38825268, 0.38825268, 0.35468169,
       0.35468169, 0.35468169, 0.35468169, 0.33785192, 0.33785192,
       0.33785192, 0.33785192, 0.331301  , 0.331301  , 0.331301  ,
       0.331301  , 0.33001344, 0.33001344, 0.33001344, 0.33001344,
       0.32943388, 0.32943388, 0.32943388, 0.32943388, 0.32258242,
       0.32258242, 0.32258242, 0.32258242, 0.28431554, 0.28431554,
       0.28431554, 0.28431554, 0.1892955 , 0.1892955 , 0.1892955 ,
       0.1892955 , 0.1338258 , 0.1338258 , 0.1338258 , 0.1338258 ,
       0.12578276, 0.12578276, 0.12578276, 0.12578276, 0.1250613 ,
       0.1250613 , 0.1250613 , 0.1250613 , 0.12500465, 0.12500465,
       0.12500465, 0.12500465, 0.12500035, 0.12500035, 0.12500035,
       0.12500035, 0.12500003, 0.12500003, 0.12500003, 0.12500003,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000039e-01, 7.50000039e-01, 7.50000039e-01, 7.50000039e-01,
       7.50000267e-01, 7.50000267e-01, 7.50000267e-01, 7.50000267e-01,
       7.50001674e-01, 7.50001674e-01, 7.50001674e-01, 7.50001674e-01,
       7.50009545e-01, 7.50009545e-01, 7.50009545e-01, 7.50009545e-01,
       7.50049084e-01, 7.50049084e-01, 7.50049084e-01, 7.50049084e-01,
       7.50225416e-01, 7.50225416e-01, 7.50225416e-01, 7.50225416e-01,
       7.50913227e-01, 7.50913227e-01, 7.50913227e-01, 7.50913227e-01,
       7.53217421e-01, 7.53217421e-01, 7.53217421e-01, 7.53217421e-01,
       7.59713585e-01, 7.59713585e-01, 7.59713585e-01, 7.59713585e-01,
       7.74851816e-01, 7.74851816e-01, 7.74851816e-01, 7.74851816e-01,
       8.03766307e-01, 8.03766307e-01, 8.03766307e-01, 8.03766307e-01,
       8.49390171e-01, 8.49390171e-01, 8.49390171e-01, 8.49390171e-01,
       9.10489184e-01, 9.10489184e-01, 9.10489184e-01, 9.10489184e-01,
       9.82823141e-01, 9.82823141e-01, 9.82823141e-01, 9.82823141e-01,
       1.05751085e+00, 1.05751085e+00, 1.05751085e+00, 1.05751085e+00,
       1.13275935e+00, 1.13275935e+00, 1.13275935e+00, 1.13275935e+00,
       1.20924075e+00, 1.20924075e+00, 1.20924075e+00, 1.20924075e+00,
       1.27595955e+00, 1.27595955e+00, 1.27595955e+00, 1.27595955e+00,
       1.32313321e+00, 1.32313321e+00, 1.32313321e+00, 1.32313321e+00,
       1.34759687e+00, 1.34759687e+00, 1.34759687e+00, 1.34759687e+00,
       1.35670899e+00, 1.35670899e+00, 1.35670899e+00, 1.35670899e+00,
       1.35944955e+00, 1.35944955e+00, 1.35944955e+00, 1.35944955e+00,
       1.36061079e+00, 1.36061079e+00, 1.36061079e+00, 1.36061079e+00,
       1.36171079e+00, 1.36171079e+00, 1.36171079e+00, 1.36171079e+00,
       1.36290556e+00, 1.36290556e+00, 1.36290556e+00, 1.36290556e+00,
       1.36383904e+00, 1.36383904e+00, 1.36383904e+00, 1.36383904e+00,
       1.36419289e+00, 1.36419289e+00, 1.36419289e+00, 1.36419289e+00,
       1.36391125e+00, 1.36391125e+00, 1.36391125e+00, 1.36391125e+00,
       1.36302760e+00, 1.36302760e+00, 1.36302760e+00, 1.36302760e+00,
       1.36208548e+00, 1.36208548e+00, 1.36208548e+00, 1.36208548e+00,
       1.36114875e+00, 1.36114875e+00, 1.36114875e+00, 1.36114875e+00,
       1.36014308e+00, 1.36014308e+00, 1.36014308e+00, 1.36014308e+00,
       1.36010184e+00, 1.36010184e+00, 1.36010184e+00, 1.36010184e+00,
       1.35992178e+00, 1.35992178e+00, 1.35992178e+00, 1.35992178e+00,
       1.35788212e+00, 1.35788212e+00, 1.35788212e+00, 1.35788212e+00,
       1.34841935e+00, 1.34841935e+00, 1.34841935e+00, 1.34841935e+00,
       1.30264541e+00, 1.30264541e+00, 1.30264541e+00, 1.30264541e+00,
       1.10947676e+00, 1.10947676e+00, 1.10947676e+00, 1.10947676e+00,
       5.55338397e-01, 5.55338397e-01, 5.55338397e-01, 5.55338397e-01,
       8.31514874e-02, 8.31514874e-02, 8.31514874e-02, 8.31514874e-02,
       6.89643013e-03, 6.89643013e-03, 6.89643013e-03, 6.89643013e-03,
       5.24246789e-04, 5.24246789e-04, 5.24246789e-04, 5.24246789e-04,
       3.94230246e-05, 3.94230246e-05, 3.94230246e-05, 3.94230246e-05,
       2.95275452e-06, 2.95275452e-06, 2.95275452e-06, 2.95275452e-06,
       2.20643830e-07, 2.20643830e-07, 2.20643830e-07, 2.20643830e-07,
       1.64480940e-08, 1.64480940e-08, 1.64480940e-08, 1.64480940e-08,
       1.22307279e-09, 1.22307279e-09, 1.22307279e-09, 1.22307279e-09,
       9.07116089e-11, 9.07116089e-11, 9.07116089e-11, 9.07116089e-11,
       6.71020267e-12, 6.71020267e-12, 6.71020267e-12, 6.71020267e-12,
       4.95019676e-13, 4.95019676e-13, 4.95019676e-13, 4.95019676e-13,
       3.65542843e-14, 3.65542843e-14, 3.65542843e-14, 3.65542843e-14,
       2.62269446e-15, 2.62269446e-15, 2.62269446e-15, 2.62269446e-15,
       1.74466545e-16, 1.74466545e-16, 1.74466545e-16, 1.74466545e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999968,
       0.99999968, 0.99999968, 0.99999968, 0.99999802, 0.99999802,
       0.99999802, 0.99999802, 0.99998871, 0.99998871, 0.99998871,
       0.99998871, 0.99994192, 0.99994192, 0.99994192, 0.99994192,
       0.99973332, 0.99973332, 0.99973332, 0.99973332, 0.99892001,
       0.99892001, 0.99892001, 0.99892001, 0.99620009, 0.99620009,
       0.99620009, 0.99620009, 0.98857069, 0.98857069, 0.98857069,
       0.98857069, 0.97100982, 0.97100982, 0.97100982, 0.97100982,
       0.93828248, 0.93828248, 0.93828248, 0.93828248, 0.88868204,
       0.88868204, 0.88868204, 0.88868204, 0.82587279, 0.82587279,
       0.82587279, 0.82587279, 0.75627712, 0.75627712, 0.75627712,
       0.75627712, 0.68804743, 0.68804743, 0.68804743, 0.68804743,
       0.62631819, 0.62631819, 0.62631819, 0.62631819, 0.56772481,
       0.56772481, 0.56772481, 0.56772481, 0.52076656, 0.52076656,
       0.52076656, 0.52076656, 0.48953753, 0.48953753, 0.48953753,
       0.48953753, 0.47437293, 0.47437293, 0.47437293, 0.47437293,
       0.46911158, 0.46911158, 0.46911158, 0.46911158, 0.46740275,
       0.46740275, 0.46740275, 0.46740275, 0.46657107, 0.46657107,
       0.46657107, 0.46657107, 0.46582165, 0.46582165, 0.46582165,
       0.46582165, 0.46543932, 0.46543932, 0.46543932, 0.46543932,
       0.4654086 , 0.4654086 , 0.4654086 , 0.4654086 , 0.46534166,
       0.46534166, 0.46534166, 0.46534166, 0.46535445, 0.46535445,
       0.46535445, 0.46535445, 0.4653544 , 0.4653544 , 0.4653544 ,
       0.4653544 , 0.46497431, 0.46497431, 0.46497431, 0.46497431,
       0.46469511, 0.46469511, 0.46469511, 0.46469511, 0.46475993,
       0.46475993, 0.46475993, 0.46475993, 0.464781  , 0.464781  ,
       0.464781  , 0.464781  , 0.46475951, 0.46475951, 0.46475951,
       0.46475951, 0.46429906, 0.46429906, 0.46429906, 0.46429906,
       0.45994624, 0.45994624, 0.45994624, 0.45994624, 0.43907961,
       0.43907961, 0.43907961, 0.43907961, 0.36134325, 0.36134325,
       0.36134325, 0.36134325, 0.19702827, 0.19702827, 0.19702827,
       0.19702827, 0.11146119, 0.11146119, 0.11146119, 0.11146119,
       0.1009144 , 0.1009144 , 0.1009144 , 0.1009144 , 0.10006936,
       0.10006936, 0.10006936, 0.10006936, 0.10000522, 0.10000522,
       0.10000522, 0.10000522, 0.10000039, 0.10000039, 0.10000039,
       0.10000039, 0.10000003, 0.10000003, 0.10000003, 0.10000003,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999966,
       0.99999966, 0.99999966, 0.99999966, 0.99999796, 0.99999796,
       0.99999796, 0.99999796, 0.99998877, 0.99998877, 0.99998877,
       0.99998877, 0.99994431, 0.99994431, 0.99994431, 0.99994431,
       0.99975356, 0.99975356, 0.99975356, 0.99975356, 0.99903846,
       0.99903846, 0.99903846, 0.99903846, 0.99674028, 0.99674028,
       0.99674028, 0.99674028, 0.9905424 , 0.9905424 , 0.9905424 ,
       0.9905424 , 0.97678524, 0.97678524, 0.97678524, 0.97678524,
       0.95188827, 0.95188827, 0.95188827, 0.95188827, 0.91483889,
       0.91483889, 0.91483889, 0.91483889, 0.86814947, 0.86814947,
       0.86814947, 0.86814947, 0.81614043, 0.81614043, 0.81614043,
       0.81614043, 0.76514638, 0.76514638, 0.76514638, 0.76514638,
       0.71513541, 0.71513541, 0.71513541, 0.71513541, 0.66759433,
       0.66759433, 0.66759433, 0.66759433, 0.63206294, 0.63206294,
       0.63206294, 0.63206294, 0.60467247, 0.60467247, 0.60467247,
       0.60467247, 0.58608604, 0.58608604, 0.58608604, 0.58608604,
       0.57910917, 0.57910917, 0.57910917, 0.57910917, 0.57863491,
       0.57863491, 0.57863491, 0.57863491, 0.57958226, 0.57958226,
       0.57958226, 0.57958226, 0.58186037, 0.58186037, 0.58186037,
       0.58186037, 0.58254066, 0.58254066, 0.58254066, 0.58254066,
       0.58105548, 0.58105548, 0.58105548, 0.58105548, 0.5741289 ,
       0.5741289 , 0.5741289 , 0.5741289 , 0.55663703, 0.55663703,
       0.55663703, 0.55663703, 0.52383547, 0.52383547, 0.52383547,
       0.52383547, 0.47295059, 0.47295059, 0.47295059, 0.47295059,
       0.41066789, 0.41066789, 0.41066789, 0.41066789, 0.36741736,
       0.36741736, 0.36741736, 0.36741736, 0.34401862, 0.34401862,
       0.34401862, 0.34401862, 0.33359114, 0.33359114, 0.33359114,
       0.33359114, 0.33073618, 0.33073618, 0.33073618, 0.33073618,
       0.33046507, 0.33046507, 0.33046507, 0.33046507, 0.32945985,
       0.32945985, 0.32945985, 0.32945985, 0.31646094, 0.31646094,
       0.31646094, 0.31646094, 0.25979697, 0.25979697, 0.25979697,
       0.25979697, 0.16286529, 0.16286529, 0.16286529, 0.16286529,
       0.12929032, 0.12929032, 0.12929032, 0.12929032, 0.12536025,
       0.12536025, 0.12536025, 0.12536025, 0.1250278 , 0.1250278 ,
       0.1250278 , 0.1250278 , 0.1250021 , 0.1250021 , 0.1250021 ,
       0.1250021 , 0.12500016, 0.12500016, 0.12500016, 0.12500016,
       0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000008e-01, 7.50000008e-01, 7.50000008e-01, 7.50000008e-01,
       7.50000061e-01, 7.50000061e-01, 7.50000061e-01, 7.50000061e-01,
       7.50000400e-01, 7.50000400e-01, 7.50000400e-01, 7.50000400e-01,
       7.50002418e-01, 7.50002418e-01, 7.50002418e-01, 7.50002418e-01,
       7.50013293e-01, 7.50013293e-01, 7.50013293e-01, 7.50013293e-01,
       7.50065892e-01, 7.50065892e-01, 7.50065892e-01, 7.50065892e-01,
       7.50291602e-01, 7.50291602e-01, 7.50291602e-01, 7.50291602e-01,
       7.51137963e-01, 7.51137963e-01, 7.51137963e-01, 7.51137963e-01,
       7.53860931e-01, 7.53860931e-01, 7.53860931e-01, 7.53860931e-01,
       7.61229895e-01, 7.61229895e-01, 7.61229895e-01, 7.61229895e-01,
       7.77729726e-01, 7.77729726e-01, 7.77729726e-01, 7.77729726e-01,
       8.08112566e-01, 8.08112566e-01, 8.08112566e-01, 8.08112566e-01,
       8.54605431e-01, 8.54605431e-01, 8.54605431e-01, 8.54605431e-01,
       9.15480064e-01, 9.15480064e-01, 9.15480064e-01, 9.15480064e-01,
       9.86288872e-01, 9.86288872e-01, 9.86288872e-01, 9.86288872e-01,
       1.05903455e+00, 1.05903455e+00, 1.05903455e+00, 1.05903455e+00,
       1.13226352e+00, 1.13226352e+00, 1.13226352e+00, 1.13226352e+00,
       1.20670021e+00, 1.20670021e+00, 1.20670021e+00, 1.20670021e+00,
       1.27256005e+00, 1.27256005e+00, 1.27256005e+00, 1.27256005e+00,
       1.32027206e+00, 1.32027206e+00, 1.32027206e+00, 1.32027206e+00,
       1.34589382e+00, 1.34589382e+00, 1.34589382e+00, 1.34589382e+00,
       1.35597341e+00, 1.35597341e+00, 1.35597341e+00, 1.35597341e+00,
       1.35925362e+00, 1.35925362e+00, 1.35925362e+00, 1.35925362e+00,
       1.36055940e+00, 1.36055940e+00, 1.36055940e+00, 1.36055940e+00,
       1.36160216e+00, 1.36160216e+00, 1.36160216e+00, 1.36160216e+00,
       1.36259868e+00, 1.36259868e+00, 1.36259868e+00, 1.36259868e+00,
       1.36352978e+00, 1.36352978e+00, 1.36352978e+00, 1.36352978e+00,
       1.36408956e+00, 1.36408956e+00, 1.36408956e+00, 1.36408956e+00,
       1.36400563e+00, 1.36400563e+00, 1.36400563e+00, 1.36400563e+00,
       1.36344216e+00, 1.36344216e+00, 1.36344216e+00, 1.36344216e+00,
       1.36276431e+00, 1.36276431e+00, 1.36276431e+00, 1.36276431e+00,
       1.36178307e+00, 1.36178307e+00, 1.36178307e+00, 1.36178307e+00,
       1.36049076e+00, 1.36049076e+00, 1.36049076e+00, 1.36049076e+00,
       1.36016799e+00, 1.36016799e+00, 1.36016799e+00, 1.36016799e+00,
       1.36000464e+00, 1.36000464e+00, 1.36000464e+00, 1.36000464e+00,
       1.35908609e+00, 1.35908609e+00, 1.35908609e+00, 1.35908609e+00,
       1.35614599e+00, 1.35614599e+00, 1.35614599e+00, 1.35614599e+00,
       1.34038610e+00, 1.34038610e+00, 1.34038610e+00, 1.34038610e+00,
       1.26724046e+00, 1.26724046e+00, 1.26724046e+00, 1.26724046e+00,
       9.82640800e-01, 9.82640800e-01, 9.82640800e-01, 9.82640800e-01,
       3.48788395e-01, 3.48788395e-01, 3.48788395e-01, 3.48788395e-01,
       3.96209590e-02, 3.96209590e-02, 3.96209590e-02, 3.96209590e-02,
       3.13229418e-03, 3.13229418e-03, 3.13229418e-03, 3.13229418e-03,
       2.36909021e-04, 2.36909021e-04, 2.36909021e-04, 2.36909021e-04,
       1.78221789e-05, 1.78221789e-05, 1.78221789e-05, 1.78221789e-05,
       1.33690626e-06, 1.33690626e-06, 1.33690626e-06, 1.33690626e-06,
       9.99987457e-08, 9.99987457e-08, 9.99987457e-08, 9.99987457e-08,
       7.46125178e-09, 7.46125178e-09, 7.46125178e-09, 7.46125178e-09,
       5.55345318e-10, 5.55345318e-10, 5.55345318e-10, 5.55345318e-10,
       4.12297396e-11, 4.12297396e-11, 4.12297396e-11, 4.12297396e-11,
       3.05298490e-12, 3.05298490e-12, 3.05298490e-12, 3.05298490e-12,
       2.25630808e-13, 2.25630808e-13, 2.25630808e-13, 2.25630808e-13,
       1.65496825e-14, 1.65496825e-14, 1.65496825e-14, 1.65496825e-14,
       1.18089382e-15, 1.18089382e-15, 1.18089382e-15, 1.18089382e-15,
       7.03960128e-17, 7.03960128e-17, 7.03960128e-17, 7.03960128e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999953,
       0.99999953, 0.99999953, 0.99999953, 0.99999714, 0.99999714,
       0.99999714, 0.99999714, 0.99998427, 0.99998427, 0.99998427,
       0.99998427, 0.99992204, 0.99992204, 0.99992204, 0.99992204,
       0.99965503, 0.99965503, 0.99965503, 0.99965503, 0.99865441,
       0.99865441, 0.99865441, 0.99865441, 0.99544177, 0.99544177,
       0.99544177, 0.99544177, 0.98679799, 0.98679799, 0.98679799,
       0.98679799, 0.96770449, 0.96770449, 0.96770449, 0.96770449,
       0.93344814, 0.93344814, 0.93344814, 0.93344814, 0.88314892,
       0.88314892, 0.88314892, 0.88314892, 0.82088008, 0.82088008,
       0.82088008, 0.82088008, 0.75281451, 0.75281451, 0.75281451,
       0.75281451, 0.68680422, 0.68680422, 0.68680422, 0.68680422,
       0.62684396, 0.62684396, 0.62684396, 0.62684396, 0.56962935,
       0.56962935, 0.56962935, 0.56962935, 0.5232226 , 0.5232226 ,
       0.5232226 , 0.5232226 , 0.49143435, 0.49143435, 0.49143435,
       0.49143435, 0.47522501, 0.47522501, 0.47522501, 0.47522501,
       0.46935729, 0.46935729, 0.46935729, 0.46935729, 0.46752687,
       0.46752687, 0.46752687, 0.46752687, 0.46668373, 0.46668373,
       0.46668373, 0.46668373, 0.46587781, 0.46587781, 0.46587781,
       0.46587781, 0.46533792, 0.46533792, 0.46533792, 0.46533792,
       0.46526321, 0.46526321, 0.46526321, 0.46526321, 0.46529401,
       0.46529401, 0.46529401, 0.46529401, 0.46538814, 0.46538814,
       0.46538814, 0.46538814, 0.46554165, 0.46554165, 0.46554165,
       0.46554165, 0.4653427 , 0.4653427 , 0.4653427 , 0.4653427 ,
       0.46500494, 0.46500494, 0.46500494, 0.46500494, 0.4649203 ,
       0.4649203 , 0.4649203 , 0.4649203 , 0.46481236, 0.46481236,
       0.46481236, 0.46481236, 0.4648016 , 0.4648016 , 0.4648016 ,
       0.4648016 , 0.46486006, 0.46486006, 0.46486006, 0.46486006,
       0.46351591, 0.46351591, 0.46351591, 0.46351591, 0.45617693,
       0.45617693, 0.45617693, 0.45617693, 0.42387417, 0.42387417,
       0.42387417, 0.42387417, 0.31662409, 0.31662409, 0.31662409,
       0.31662409, 0.15467947, 0.15467947, 0.15467947, 0.15467947,
       0.10533579, 0.10533579, 0.10533579, 0.10533579, 0.10041475,
       0.10041475, 0.10041475, 0.10041475, 0.10003134, 0.10003134,
       0.10003134, 0.10003134, 0.10000236, 0.10000236, 0.10000236,
       0.10000236, 0.10000018, 0.10000018, 0.10000018, 0.10000018,
       0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.9999995 ,
       0.9999995 , 0.9999995 , 0.9999995 , 0.99999709, 0.99999709,
       0.99999709, 0.99999709, 0.99998454, 0.99998454, 0.99998454,
       0.99998454, 0.99992608, 0.99992608, 0.99992608, 0.99992608,
       0.99968447, 0.99968447, 0.99968447, 0.99968447, 0.99881309,
       0.99881309, 0.99881309, 0.99881309, 0.9961219 , 0.9961219 ,
       0.9961219 , 0.9961219 , 0.98915182, 0.98915182, 0.98915182,
       0.98915182, 0.9742804 , 0.9742804 , 0.9742804 , 0.9742804 ,
       0.94831908, 0.94831908, 0.94831908, 0.94831908, 0.91081218,
       0.91081218, 0.91081218, 0.91081218, 0.86452304, 0.86452304,
       0.86452304, 0.86452304, 0.81364869, 0.81364869, 0.81364869,
       0.81364869, 0.76425007, 0.76425007, 0.76425007, 0.76425007,
       0.71596964, 0.71596964, 0.71596964, 0.71596964, 0.66862165,
       0.66862165, 0.66862165, 0.66862165, 0.63309882, 0.63309882,
       0.63309882, 0.63309882, 0.60692411, 0.60692411, 0.60692411,
       0.60692411, 0.58834503, 0.58834503, 0.58834503, 0.58834503,
       0.5797179 , 0.5797179 , 0.5797179 , 0.5797179 , 0.57833736,
       0.57833736, 0.57833736, 0.57833736, 0.57885427, 0.57885427,
       0.57885427, 0.57885427, 0.58070829, 0.58070829, 0.58070829,
       0.58070829, 0.5821418 , 0.5821418 , 0.5821418 , 0.5821418 ,
       0.58161437, 0.58161437, 0.58161437, 0.58161437, 0.57752342,
       0.57752342, 0.57752342, 0.57752342, 0.56529572, 0.56529572,
       0.56529572, 0.56529572, 0.53988046, 0.53988046, 0.53988046,
       0.53988046, 0.49734652, 0.49734652, 0.49734652, 0.49734652,
       0.43756408, 0.43756408, 0.43756408, 0.43756408, 0.38405097,
       0.38405097, 0.38405097, 0.38405097, 0.35274026, 0.35274026,
       0.35274026, 0.35274026, 0.33729664, 0.33729664, 0.33729664,
       0.33729664, 0.33184586, 0.33184586, 0.33184586, 0.33184586,
       0.3308689 , 0.3308689 , 0.3308689 , 0.3308689 , 0.33116014,
       0.33116014, 0.33116014, 0.33116014, 0.3284959 , 0.3284959 ,
       0.3284959 , 0.3284959 , 0.305514  , 0.305514  , 0.305514  ,
       0.305514  , 0.22909354, 0.22909354, 0.22909354, 0.22909354,
       0.14525793, 0.14525793, 0.14525793, 0.14525793, 0.12704227,
       0.12704227, 0.12704227, 0.12704227, 0.12516466, 0.12516466,
       0.12516466, 0.12516466, 0.12501259, 0.12501259, 0.12501259,
       0.12501259, 0.12500095, 0.12500095, 0.12500095, 0.12500095,
       0.12500007, 0.12500007, 0.12500007, 0.12500007, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
       7.50000093e-01, 7.50000093e-01, 7.50000093e-01, 7.50000093e-01,
       7.50000591e-01, 7.50000591e-01, 7.50000591e-01, 7.50000591e-01,
       7.50003448e-01, 7.50003448e-01, 7.50003448e-01, 7.50003448e-01,
       7.50018287e-01, 7.50018287e-01, 7.50018287e-01, 7.50018287e-01,
       7.50087467e-01, 7.50087467e-01, 7.50087467e-01, 7.50087467e-01,
       7.50373360e-01, 7.50373360e-01, 7.50373360e-01, 7.50373360e-01,
       7.51404804e-01, 7.51404804e-01, 7.51404804e-01, 7.51404804e-01,
       7.54594512e-01, 7.54594512e-01, 7.54594512e-01, 7.54594512e-01,
       7.62888923e-01, 7.62888923e-01, 7.62888923e-01, 7.62888923e-01,
       7.80756528e-01, 7.80756528e-01, 7.80756528e-01, 7.80756528e-01,
       8.12524446e-01, 8.12524446e-01, 8.12524446e-01, 8.12524446e-01,
       8.59748156e-01, 8.59748156e-01, 8.59748156e-01, 8.59748156e-01,
       9.20303317e-01, 9.20303317e-01, 9.20303317e-01, 9.20303317e-01,
       9.89569875e-01, 9.89569875e-01, 9.89569875e-01, 9.89569875e-01,
       1.06043656e+00, 1.06043656e+00, 1.06043656e+00, 1.06043656e+00,
       1.13178235e+00, 1.13178235e+00, 1.13178235e+00, 1.13178235e+00,
       1.20428722e+00, 1.20428722e+00, 1.20428722e+00, 1.20428722e+00,
       1.26922681e+00, 1.26922681e+00, 1.26922681e+00, 1.26922681e+00,
       1.31744793e+00, 1.31744793e+00, 1.31744793e+00, 1.31744793e+00,
       1.34420543e+00, 1.34420543e+00, 1.34420543e+00, 1.34420543e+00,
       1.35515354e+00, 1.35515354e+00, 1.35515354e+00, 1.35515354e+00,
       1.35893569e+00, 1.35893569e+00, 1.35893569e+00, 1.35893569e+00,
       1.36047087e+00, 1.36047087e+00, 1.36047087e+00, 1.36047087e+00,
       1.36156372e+00, 1.36156372e+00, 1.36156372e+00, 1.36156372e+00,
       1.36242402e+00, 1.36242402e+00, 1.36242402e+00, 1.36242402e+00,
       1.36322740e+00, 1.36322740e+00, 1.36322740e+00, 1.36322740e+00,
       1.36389115e+00, 1.36389115e+00, 1.36389115e+00, 1.36389115e+00,
       1.36394778e+00, 1.36394778e+00, 1.36394778e+00, 1.36394778e+00,
       1.36363338e+00, 1.36363338e+00, 1.36363338e+00, 1.36363338e+00,
       1.36317823e+00, 1.36317823e+00, 1.36317823e+00, 1.36317823e+00,
       1.36245466e+00, 1.36245466e+00, 1.36245466e+00, 1.36245466e+00,
       1.36111329e+00, 1.36111329e+00, 1.36111329e+00, 1.36111329e+00,
       1.36045029e+00, 1.36045029e+00, 1.36045029e+00, 1.36045029e+00,
       1.36011173e+00, 1.36011173e+00, 1.36011173e+00, 1.36011173e+00,
       1.35943008e+00, 1.35943008e+00, 1.35943008e+00, 1.35943008e+00,
       1.35849429e+00, 1.35849429e+00, 1.35849429e+00, 1.35849429e+00,
       1.35337432e+00, 1.35337432e+00, 1.35337432e+00, 1.35337432e+00,
       1.32699322e+00, 1.32699322e+00, 1.32699322e+00, 1.32699322e+00,
       1.21392814e+00, 1.21392814e+00, 1.21392814e+00, 1.21392814e+00,
       8.11305629e-01, 8.11305629e-01, 8.11305629e-01, 8.11305629e-01,
       1.91993018e-01, 1.91993018e-01, 1.91993018e-01, 1.91993018e-01,
       1.84260657e-02, 1.84260657e-02, 1.84260657e-02, 1.84260657e-02,
       1.41864065e-03, 1.41864065e-03, 1.41864065e-03, 1.41864065e-03,
       1.07039498e-04, 1.07039498e-04, 1.07039498e-04, 1.07039498e-04,
       8.05698302e-06, 8.05698302e-06, 8.05698302e-06, 8.05698302e-06,
       6.04942296e-07, 6.04942296e-07, 6.04942296e-07, 6.04942296e-07,
       4.53003318e-08, 4.53003318e-08, 4.53003318e-08, 4.53003318e-08,
       3.38340676e-09, 3.38340676e-09, 3.38340676e-09, 3.38340676e-09,
       2.52067618e-10, 2.52067618e-10, 2.52067618e-10, 2.52067618e-10,
       1.87321914e-11, 1.87321914e-11, 1.87321914e-11, 1.87321914e-11,
       1.38872868e-12, 1.38872868e-12, 1.38872868e-12, 1.38872868e-12,
       1.02623229e-13, 1.02623229e-13, 1.02623229e-13, 1.02623229e-13,
       7.45434898e-15, 7.45434898e-15, 7.45434898e-15, 7.45434898e-15,
       5.62547042e-16, 5.62547042e-16, 5.62547042e-16, 5.62547042e-16,
       3.42190912e-17, 3.42190912e-17, 3.42190912e-17, 3.42190912e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999989, 0.99999989, 0.99999989, 0.99999989, 0.9999993 ,
       0.9999993 , 0.9999993 , 0.9999993 , 0.99999592, 0.99999592,
       0.99999592, 0.99999592, 0.99997836, 0.99997836, 0.99997836,
       0.99997836, 0.99989651, 0.99989651, 0.99989651, 0.99989651,
       0.99955833, 0.99955833, 0.99955833, 0.99955833, 0.99833914,
       0.99833914, 0.99833914, 0.99833914, 0.994578  , 0.994578  ,
       0.994578  , 0.994578  , 0.98486191, 0.98486191, 0.98486191,
       0.98486191, 0.96423927, 0.96423927, 0.96423927, 0.96423927,
       0.92856276, 0.92856276, 0.92856276, 0.92856276, 0.87771963,
       0.87771963, 0.87771963, 0.87771963, 0.81607625, 0.81607625,
       0.81607625, 0.81607625, 0.74954761, 0.74954761, 0.74954761,
       0.74954761, 0.68560013, 0.68560013, 0.68560013, 0.68560013,
       0.62733728, 0.62733728, 0.62733728, 0.62733728, 0.57145736,
       0.57145736, 0.57145736, 0.57145736, 0.52561297, 0.52561297,
       0.52561297, 0.52561297, 0.4934087 , 0.4934087 , 0.4934087 ,
       0.4934087 , 0.4762095 , 0.4762095 , 0.4762095 , 0.4762095 ,
       0.46962957, 0.46962957, 0.46962957, 0.46962957, 0.46760322,
       0.46760322, 0.46760322, 0.46760322, 0.46677931, 0.46677931,
       0.46677931, 0.46677931, 0.46598101, 0.46598101, 0.46598101,
       0.46598101, 0.4653201 , 0.4653201 , 0.4653201 , 0.4653201 ,
       0.46512805, 0.46512805, 0.46512805, 0.46512805, 0.46518516,
       0.46518516, 0.46518516, 0.46518516, 0.46533628, 0.46533628,
       0.46533628, 0.46533628, 0.46560697, 0.46560697, 0.46560697,
       0.46560697, 0.46556363, 0.46556363, 0.46556363, 0.46556363,
       0.46534283, 0.46534283, 0.46534283, 0.46534283, 0.46521233,
       0.46521233, 0.46521233, 0.46521233, 0.46494555, 0.46494555,
       0.46494555, 0.46494555, 0.46485571, 0.46485571, 0.46485571,
       0.46485571, 0.46502167, 0.46502167, 0.46502167, 0.46502167,
       0.46460407, 0.46460407, 0.46460407, 0.46460407, 0.46217056,
       0.46217056, 0.46217056, 0.46217056, 0.4504888 , 0.4504888 ,
       0.4504888 , 0.4504888 , 0.40110266, 0.40110266, 0.40110266,
       0.40110266, 0.26313779, 0.26313779, 0.26313779, 0.26313779,
       0.12803042, 0.12803042, 0.12803042, 0.12803042, 0.1024553 ,
       0.1024553 , 0.1024553 , 0.1024553 , 0.10018774, 0.10018774,
       0.10018774, 0.10018774, 0.10001416, 0.10001416, 0.10001416,
       0.10001416, 0.10000107, 0.10000107, 0.10000107, 0.10000107,
       0.10000008, 0.10000008, 0.10000008, 0.10000008, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999988, 0.99999988, 0.99999988, 0.99999988, 0.99999927,
       0.99999927, 0.99999927, 0.99999927, 0.9999959 , 0.9999959 ,
       0.9999959 , 0.9999959 , 0.99997898, 0.99997898, 0.99997898,
       0.99997898, 0.99990291, 0.99990291, 0.99990291, 0.99990291,
       0.99959993, 0.99959993, 0.99959993, 0.99959993, 0.99854785,
       0.99854785, 0.99854785, 0.99854785, 0.99542289, 0.99542289,
       0.99542289, 0.99542289, 0.98764264, 0.98764264, 0.98764264,
       0.98764264, 0.97166631, 0.97166631, 0.97166631, 0.97166631,
       0.94472122, 0.94472122, 0.94472122, 0.94472122, 0.90686323,
       0.90686323, 0.90686323, 0.90686323, 0.86103104, 0.86103104,
       0.86103104, 0.86103104, 0.81128459, 0.81128459, 0.81128459,
       0.81128459, 0.76333114, 0.76333114, 0.76333114, 0.76333114,
       0.71681296, 0.71681296, 0.71681296, 0.71681296, 0.66988534,
       0.66988534, 0.66988534, 0.66988534, 0.63398635, 0.63398635,
       0.63398635, 0.63398635, 0.60868419, 0.60868419, 0.60868419,
       0.60868419, 0.59062344, 0.59062344, 0.59062344, 0.59062344,
       0.58075915, 0.58075915, 0.58075915, 0.58075915, 0.57821989,
       0.57821989, 0.57821989, 0.57821989, 0.57834671, 0.57834671,
       0.57834671, 0.57834671, 0.57958969, 0.57958969, 0.57958969,
       0.57958969, 0.58156325, 0.58156325, 0.58156325, 0.58156325,
       0.58167402, 0.58167402, 0.58167402, 0.58167402, 0.57949654,
       0.57949654, 0.57949654, 0.57949654, 0.57136665, 0.57136665,
       0.57136665, 0.57136665, 0.55237715, 0.55237715, 0.55237715,
       0.55237715, 0.5178861 , 0.5178861 , 0.5178861 , 0.5178861 ,
       0.46556784, 0.46556784, 0.46556784, 0.46556784, 0.40490108,
       0.40490108, 0.40490108, 0.40490108, 0.36456809, 0.36456809,
       0.36456809, 0.36456809, 0.34291316, 0.34291316, 0.34291316,
       0.34291316, 0.33384449, 0.33384449, 0.33384449, 0.33384449,
       0.33130867, 0.33130867, 0.33130867, 0.33130867, 0.33149943,
       0.33149943, 0.33149943, 0.33149943, 0.33184294, 0.33184294,
       0.33184294, 0.33184294, 0.32533092, 0.32533092, 0.32533092,
       0.32533092, 0.28902333, 0.28902333, 0.28902333, 0.28902333,
       0.1964541 , 0.1964541 , 0.1964541 , 0.1964541 , 0.13545621,
       0.13545621, 0.13545621, 0.13545621, 0.12594954, 0.12594954,
       0.12594954, 0.12594954, 0.12507487, 0.12507487, 0.12507487,
       0.12507487, 0.1250057 , 0.1250057 , 0.1250057 , 0.1250057 ,
       0.12500043, 0.12500043, 0.12500043, 0.12500043, 0.12500003,
       0.12500003, 0.12500003, 0.12500003, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000021e-01, 7.50000021e-01, 7.50000021e-01, 7.50000021e-01,
       7.50000140e-01, 7.50000140e-01, 7.50000140e-01, 7.50000140e-01,
       7.50000861e-01, 7.50000861e-01, 7.50000861e-01, 7.50000861e-01,
       7.50004854e-01, 7.50004854e-01, 7.50004854e-01, 7.50004854e-01,
       7.50024870e-01, 7.50024870e-01, 7.50024870e-01, 7.50024870e-01,
       7.50114879e-01, 7.50114879e-01, 7.50114879e-01, 7.50114879e-01,
       7.50473401e-01, 7.50473401e-01, 7.50473401e-01, 7.50473401e-01,
       7.51718892e-01, 7.51718892e-01, 7.51718892e-01, 7.51718892e-01,
       7.55424229e-01, 7.55424229e-01, 7.55424229e-01, 7.55424229e-01,
       7.64691790e-01, 7.64691790e-01, 7.64691790e-01, 7.64691790e-01,
       7.83922560e-01, 7.83922560e-01, 7.83922560e-01, 7.83922560e-01,
       8.16985524e-01, 8.16985524e-01, 8.16985524e-01, 8.16985524e-01,
       8.64808121e-01, 8.64808121e-01, 8.64808121e-01, 8.64808121e-01,
       9.24958686e-01, 9.24958686e-01, 9.24958686e-01, 9.24958686e-01,
       9.92693337e-01, 9.92693337e-01, 9.92693337e-01, 9.92693337e-01,
       1.06173967e+00, 1.06173967e+00, 1.06173967e+00, 1.06173967e+00,
       1.13129021e+00, 1.13129021e+00, 1.13129021e+00, 1.13129021e+00,
       1.20198744e+00, 1.20198744e+00, 1.20198744e+00, 1.20198744e+00,
       1.26595672e+00, 1.26595672e+00, 1.26595672e+00, 1.26595672e+00,
       1.31461852e+00, 1.31461852e+00, 1.31461852e+00, 1.31461852e+00,
       1.34253734e+00, 1.34253734e+00, 1.34253734e+00, 1.34253734e+00,
       1.35432704e+00, 1.35432704e+00, 1.35432704e+00, 1.35432704e+00,
       1.35852967e+00, 1.35852967e+00, 1.35852967e+00, 1.35852967e+00,
       1.36029446e+00, 1.36029446e+00, 1.36029446e+00, 1.36029446e+00,
       1.36153027e+00, 1.36153027e+00, 1.36153027e+00, 1.36153027e+00,
       1.36236269e+00, 1.36236269e+00, 1.36236269e+00, 1.36236269e+00,
       1.36299920e+00, 1.36299920e+00, 1.36299920e+00, 1.36299920e+00,
       1.36365952e+00, 1.36365952e+00, 1.36365952e+00, 1.36365952e+00,
       1.36380842e+00, 1.36380842e+00, 1.36380842e+00, 1.36380842e+00,
       1.36364674e+00, 1.36364674e+00, 1.36364674e+00, 1.36364674e+00,
       1.36337979e+00, 1.36337979e+00, 1.36337979e+00, 1.36337979e+00,
       1.36291780e+00, 1.36291780e+00, 1.36291780e+00, 1.36291780e+00,
       1.36179759e+00, 1.36179759e+00, 1.36179759e+00, 1.36179759e+00,
       1.36099880e+00, 1.36099880e+00, 1.36099880e+00, 1.36099880e+00,
       1.36037766e+00, 1.36037766e+00, 1.36037766e+00, 1.36037766e+00,
       1.35961227e+00, 1.35961227e+00, 1.35961227e+00, 1.35961227e+00,
       1.35921926e+00, 1.35921926e+00, 1.35921926e+00, 1.35921926e+00,
       1.35759675e+00, 1.35759675e+00, 1.35759675e+00, 1.35759675e+00,
       1.34828922e+00, 1.34828922e+00, 1.34828922e+00, 1.34828922e+00,
       1.30681890e+00, 1.30681890e+00, 1.30681890e+00, 1.30681890e+00,
       1.13247598e+00, 1.13247598e+00, 1.13247598e+00, 1.13247598e+00,
       6.05650926e-01, 6.05650926e-01, 6.05650926e-01, 6.05650926e-01,
       9.87277152e-02, 9.87277152e-02, 9.87277152e-02, 9.87277152e-02,
       8.39794778e-03, 8.39794778e-03, 8.39794778e-03, 8.39794778e-03,
       6.41036738e-04, 6.41036738e-04, 6.41036738e-04, 6.41036738e-04,
       4.83799215e-05, 4.83799215e-05, 4.83799215e-05, 4.83799215e-05,
       3.64189070e-06, 3.64189070e-06, 3.64189070e-06, 3.64189070e-06,
       2.73646970e-07, 2.73646970e-07, 2.73646970e-07, 2.73646970e-07,
       2.05122779e-08, 2.05122779e-08, 2.05122779e-08, 2.05122779e-08,
       1.53361037e-09, 1.53361037e-09, 1.53361037e-09, 1.53361037e-09,
       1.14368647e-10, 1.14368647e-10, 1.14368647e-10, 1.14368647e-10,
       8.50778657e-12, 8.50778657e-12, 8.50778657e-12, 8.50778657e-12,
       6.31241749e-13, 6.31241749e-13, 6.31241749e-13, 6.31241749e-13,
       4.65959457e-14, 4.65959457e-14, 4.65959457e-14, 4.65959457e-14,
       3.44111781e-15, 3.44111781e-15, 3.44111781e-15, 3.44111781e-15,
       2.44715227e-16, 2.44715227e-16, 2.44715227e-16, 2.44715227e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999983, 0.99999983, 0.99999983, 0.99999983, 0.99999898,
       0.99999898, 0.99999898, 0.99999898, 0.99999426, 0.99999426,
       0.99999426, 0.99999426, 0.99997057, 0.99997057, 0.99997057,
       0.99997057, 0.99986408, 0.99986408, 0.99986408, 0.99986408,
       0.99944001, 0.99944001, 0.99944001, 0.99944001, 0.99796817,
       0.99796817, 0.99796817, 0.99796817, 0.99360189, 0.99360189,
       0.99360189, 0.99360189, 0.98276203, 0.98276203, 0.98276203,
       0.98276203, 0.96062669, 0.96062669, 0.96062669, 0.96062669,
       0.92364506, 0.92364506, 0.92364506, 0.92364506, 0.87240348,
       0.87240348, 0.87240348, 0.87240348, 0.81145937, 0.81145937,
       0.81145937, 0.81145937, 0.74647243, 0.74647243, 0.74647243,
       0.74647243, 0.68444299, 0.68444299, 0.68444299, 0.68444299,
       0.62778294, 0.62778294, 0.62778294, 0.62778294, 0.5732094 ,
       0.5732094 , 0.5732094 , 0.5732094 , 0.52793038, 0.52793038,
       0.52793038, 0.52793038, 0.49541854, 0.49541854, 0.49541854,
       0.49541854, 0.47732601, 0.47732601, 0.47732601, 0.47732601,
       0.46998067, 0.46998067, 0.46998067, 0.46998067, 0.46765631,
       0.46765631, 0.46765631, 0.46765631, 0.46682798, 0.46682798,
       0.46682798, 0.46682798, 0.46608977, 0.46608977, 0.46608977,
       0.46608977, 0.4653755 , 0.4653755 , 0.4653755 , 0.4653755 ,
       0.46504229, 0.46504229, 0.46504229, 0.46504229, 0.46505976,
       0.46505976, 0.46505976, 0.46505976, 0.46523378, 0.46523378,
       0.46523378, 0.46523378, 0.46557421, 0.46557421, 0.46557421,
       0.46557421, 0.4656599 , 0.4656599 , 0.4656599 , 0.4656599 ,
       0.46558172, 0.46558172, 0.46558172, 0.46558172, 0.46553439,
       0.46553439, 0.46553439, 0.46553439, 0.46520836, 0.46520836,
       0.46520836, 0.46520836, 0.46498438, 0.46498438, 0.46498438,
       0.46498438, 0.46510742, 0.46510742, 0.46510742, 0.46510742,
       0.46494014, 0.46494014, 0.46494014, 0.46494014, 0.46413174,
       0.46413174, 0.46413174, 0.46413174, 0.46026772, 0.46026772,
       0.46026772, 0.46026772, 0.44125804, 0.44125804, 0.44125804,
       0.44125804, 0.36962649, 0.36962649, 0.36962649, 0.36962649,
       0.20878392, 0.20878392, 0.20878392, 0.20878392, 0.11372397,
       0.11372397, 0.11372397, 0.11372397, 0.10111414, 0.10111414,
       0.10111414, 0.10111414, 0.10008482, 0.10008482, 0.10008482,
       0.10008482, 0.1000064 , 0.1000064 , 0.1000064 , 0.1000064 ,
       0.10000048, 0.10000048, 0.10000048, 0.10000048, 0.10000004,
       0.10000004, 0.10000004, 0.10000004, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
       0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999895,
       0.99999895, 0.99999895, 0.99999895, 0.99999429, 0.99999429,
       0.99999429, 0.99999429, 0.99997173, 0.99997173, 0.99997173,
       0.99997173, 0.99987376, 0.99987376, 0.99987376, 0.99987376,
       0.99949743, 0.99949743, 0.99949743, 0.99949743, 0.99823832,
       0.99823832, 0.99823832, 0.99823832, 0.99463867, 0.99463867,
       0.99463867, 0.99463867, 0.98601545, 0.98601545, 0.98601545,
       0.98601545, 0.96895243, 0.96895243, 0.96895243, 0.96895243,
       0.94110753, 0.94110753, 0.94110753, 0.94110753, 0.90299803,
       0.90299803, 0.90299803, 0.90299803, 0.85767273, 0.85767273,
       0.85767273, 0.85767273, 0.80904917, 0.80904917, 0.80904917,
       0.80904917, 0.76239648, 0.76239648, 0.76239648, 0.76239648,
       0.71749093, 0.71749093, 0.71749093, 0.71749093, 0.67147851,
       0.67147851, 0.67147851, 0.67147851, 0.63489   , 0.63489   ,
       0.63489   , 0.63489   , 0.60997929, 0.60997929, 0.60997929,
       0.60997929, 0.59272294, 0.59272294, 0.59272294, 0.59272294,
       0.58215958, 0.58215958, 0.58215958, 0.58215958, 0.57835617,
       0.57835617, 0.57835617, 0.57835617, 0.57803304, 0.57803304,
       0.57803304, 0.57803304, 0.57873351, 0.57873351, 0.57873351,
       0.57873351, 0.58068604, 0.58068604, 0.58068604, 0.58068604,
       0.58148766, 0.58148766, 0.58148766, 0.58148766, 0.58048792,
       0.58048792, 0.58048792, 0.58048792, 0.57541107, 0.57541107,
       0.57541107, 0.57541107, 0.56176436, 0.56176436, 0.56176436,
       0.56176436, 0.53464163, 0.53464163, 0.53464163, 0.53464163,
       0.49054306, 0.49054306, 0.49054306, 0.49054306, 0.43056034,
       0.43056034, 0.43056034, 0.43056034, 0.38004005, 0.38004005,
       0.38004005, 0.38004005, 0.35093816, 0.35093816, 0.35093816,
       0.35093816, 0.33716902, 0.33716902, 0.33716902, 0.33716902,
       0.33218768, 0.33218768, 0.33218768, 0.33218768, 0.33163645,
       0.33163645, 0.33163645, 0.33163645, 0.33249535, 0.33249535,
       0.33249535, 0.33249535, 0.33172011, 0.33172011, 0.33172011,
       0.33172011, 0.3191431 , 0.3191431 , 0.3191431 , 0.3191431 ,
       0.2660949 , 0.2660949 , 0.2660949 , 0.2660949 , 0.16817172,
       0.16817172, 0.16817172, 0.16817172, 0.13009983, 0.13009983,
       0.13009983, 0.13009983, 0.12543611, 0.12543611, 0.12543611,
       0.12543611, 0.12503393, 0.12503393, 0.12503393, 0.12503393,
       0.12500258, 0.12500258, 0.12500258, 0.12500258, 0.12500019,
       0.12500019, 0.12500019, 0.12500019, 0.12500001, 0.12500001,
       0.12500001, 0.12500001, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000032e-01, 7.50000032e-01, 7.50000032e-01, 7.50000032e-01,
       7.50000208e-01, 7.50000208e-01, 7.50000208e-01, 7.50000208e-01,
       7.50001239e-01, 7.50001239e-01, 7.50001239e-01, 7.50001239e-01,
       7.50006753e-01, 7.50006753e-01, 7.50006753e-01, 7.50006753e-01,
       7.50033455e-01, 7.50033455e-01, 7.50033455e-01, 7.50033455e-01,
       7.50149366e-01, 7.50149366e-01, 7.50149366e-01, 7.50149366e-01,
       7.50594713e-01, 7.50594713e-01, 7.50594713e-01, 7.50594713e-01,
       7.52085532e-01, 7.52085532e-01, 7.52085532e-01, 7.52085532e-01,
       7.56355674e-01, 7.56355674e-01, 7.56355674e-01, 7.56355674e-01,
       7.66638355e-01, 7.66638355e-01, 7.66638355e-01, 7.66638355e-01,
       7.87217230e-01, 7.87217230e-01, 7.87217230e-01, 7.87217230e-01,
       8.21480083e-01, 8.21480083e-01, 8.21480083e-01, 8.21480083e-01,
       8.69776615e-01, 8.69776615e-01, 8.69776615e-01, 8.69776615e-01,
       9.29447294e-01, 9.29447294e-01, 9.29447294e-01, 9.29447294e-01,
       9.95674208e-01, 9.95674208e-01, 9.95674208e-01, 9.95674208e-01,
       1.06296792e+00, 1.06296792e+00, 1.06296792e+00, 1.06296792e+00,
       1.13078254e+00, 1.13078254e+00, 1.13078254e+00, 1.13078254e+00,
       1.19977119e+00, 1.19977119e+00, 1.19977119e+00, 1.19977119e+00,
       1.26275299e+00, 1.26275299e+00, 1.26275299e+00, 1.26275299e+00,
       1.31175348e+00, 1.31175348e+00, 1.31175348e+00, 1.31175348e+00,
       1.34085462e+00, 1.34085462e+00, 1.34085462e+00, 1.34085462e+00,
       1.35353646e+00, 1.35353646e+00, 1.35353646e+00, 1.35353646e+00,
       1.35810343e+00, 1.35810343e+00, 1.35810343e+00, 1.35810343e+00,
       1.36003123e+00, 1.36003123e+00, 1.36003123e+00, 1.36003123e+00,
       1.36143326e+00, 1.36143326e+00, 1.36143326e+00, 1.36143326e+00,
       1.36236200e+00, 1.36236200e+00, 1.36236200e+00, 1.36236200e+00,
       1.36287773e+00, 1.36287773e+00, 1.36287773e+00, 1.36287773e+00,
       1.36345264e+00, 1.36345264e+00, 1.36345264e+00, 1.36345264e+00,
       1.36363732e+00, 1.36363732e+00, 1.36363732e+00, 1.36363732e+00,
       1.36353697e+00, 1.36353697e+00, 1.36353697e+00, 1.36353697e+00,
       1.36343404e+00, 1.36343404e+00, 1.36343404e+00, 1.36343404e+00,
       1.36315760e+00, 1.36315760e+00, 1.36315760e+00, 1.36315760e+00,
       1.36232473e+00, 1.36232473e+00, 1.36232473e+00, 1.36232473e+00,
       1.36166019e+00, 1.36166019e+00, 1.36166019e+00, 1.36166019e+00,
       1.36084564e+00, 1.36084564e+00, 1.36084564e+00, 1.36084564e+00,
       1.35984618e+00, 1.35984618e+00, 1.35984618e+00, 1.35984618e+00,
       1.35955179e+00, 1.35955179e+00, 1.35955179e+00, 1.35955179e+00,
       1.35897144e+00, 1.35897144e+00, 1.35897144e+00, 1.35897144e+00,
       1.35552174e+00, 1.35552174e+00, 1.35552174e+00, 1.35552174e+00,
       1.34102919e+00, 1.34102919e+00, 1.34102919e+00, 1.34102919e+00,
       1.27545330e+00, 1.27545330e+00, 1.27545330e+00, 1.27545330e+00,
       1.01455011e+00, 1.01455011e+00, 1.01455011e+00, 1.01455011e+00,
       3.94082610e-01, 3.94082610e-01, 3.94082610e-01, 3.94082610e-01,
       4.73339439e-02, 4.73339439e-02, 4.73339439e-02, 4.73339439e-02,
       3.80163833e-03, 3.80163833e-03, 3.80163833e-03, 3.80163833e-03,
       2.89378256e-04, 2.89378256e-04, 2.89378256e-04, 2.89378256e-04,
       2.18495362e-05, 2.18495362e-05, 2.18495362e-05, 2.18495362e-05,
       1.64610353e-06, 1.64610353e-06, 1.64610353e-06, 1.64610353e-06,
       1.23761362e-07, 1.23761362e-07, 1.23761362e-07, 1.23761362e-07,
       9.28475911e-09, 9.28475911e-09, 9.28475911e-09, 9.28475911e-09,
       6.94864466e-10, 6.94864466e-10, 6.94864466e-10, 6.94864466e-10,
       5.18715247e-11, 5.18715247e-11, 5.18715247e-11, 5.18715247e-11,
       3.86232749e-12, 3.86232749e-12, 3.86232749e-12, 3.86232749e-12,
       2.86798402e-13, 2.86798402e-13, 2.86798402e-13, 2.86798402e-13,
       2.12511563e-14, 2.12511563e-14, 2.12511563e-14, 2.12511563e-14,
       1.51978465e-15, 1.51978465e-15, 1.51978465e-15, 1.51978465e-15,
       8.24527483e-17, 8.24527483e-17, 8.24527483e-17, 8.24527483e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999853,
       0.99999853, 0.99999853, 0.99999853, 0.99999201, 0.99999201,
       0.99999201, 0.99999201, 0.99996042, 0.99996042, 0.99996042,
       0.99996042, 0.99982328, 0.99982328, 0.99982328, 0.99982328,
       0.99929656, 0.99929656, 0.99929656, 0.99929656, 0.9975353 ,
       0.9975353 , 0.9975353 , 0.9975353 , 0.99250721, 0.99250721,
       0.99250721, 0.99250721, 0.98049952, 0.98049952, 0.98049952,
       0.98049952, 0.95688026, 0.95688026, 0.95688026, 0.95688026,
       0.91871272, 0.91871272, 0.91871272, 0.91871272, 0.86720806,
       0.86720806, 0.86720806, 0.86720806, 0.80702616, 0.80702616,
       0.80702616, 0.80702616, 0.74357673, 0.74357673, 0.74357673,
       0.74357673, 0.68334214, 0.68334214, 0.68334214, 0.68334214,
       0.62818486, 0.62818486, 0.62818486, 0.62818486, 0.57487936,
       0.57487936, 0.57487936, 0.57487936, 0.53017432, 0.53017432,
       0.53017432, 0.53017432, 0.49742975, 0.49742975, 0.49742975,
       0.49742975, 0.47854702, 0.47854702, 0.47854702, 0.47854702,
       0.47044075, 0.47044075, 0.47044075, 0.47044075, 0.46773171,
       0.46773171, 0.46773171, 0.46773171, 0.46683192, 0.46683192,
       0.46683192, 0.46683192, 0.46616185, 0.46616185, 0.46616185,
       0.46616185, 0.4654718 , 0.4654718 , 0.4654718 , 0.4654718 ,
       0.46502244, 0.46502244, 0.46502244, 0.46502244, 0.46495839,
       0.46495839, 0.46495839, 0.46495839, 0.46511062, 0.46511062,
       0.46511062, 0.46511062, 0.46546668, 0.46546668, 0.46546668,
       0.46546668, 0.46567427, 0.46567427, 0.46567427, 0.46567427,
       0.4656998 , 0.4656998 , 0.4656998 , 0.4656998 , 0.46577701,
       0.46577701, 0.46577701, 0.46577701, 0.46553312, 0.46553312,
       0.46553312, 0.46553312, 0.46520841, 0.46520841, 0.46520841,
       0.46520841, 0.46521622, 0.46521622, 0.46521622, 0.46521622,
       0.46509428, 0.46509428, 0.46509428, 0.46509428, 0.46477283,
       0.46477283, 0.46477283, 0.46477283, 0.46362484, 0.46362484,
       0.46362484, 0.46362484, 0.45682453, 0.45682453, 0.45682453,
       0.45682453, 0.42721627, 0.42721627, 0.42721627, 0.42721627,
       0.32761038, 0.32761038, 0.32761038, 0.32761038, 0.16329323,
       0.16329323, 0.16329323, 0.16329323, 0.1064006 , 0.1064006 ,
       0.1064006 , 0.1064006 , 0.10050349, 0.10050349, 0.10050349,
       0.10050349, 0.10003828, 0.10003828, 0.10003828, 0.10003828,
       0.10000289, 0.10000289, 0.10000289, 0.10000289, 0.10000022,
       0.10000022, 0.10000022, 0.10000022, 0.10000002, 0.10000002,
       0.10000002, 0.10000002, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999851,
       0.99999851, 0.99999851, 0.99999851, 0.99999215, 0.99999215,
       0.99999215, 0.99999215, 0.99996236, 0.99996236, 0.99996236,
       0.99996236, 0.99983743, 0.99983743, 0.99983743, 0.99983743,
       0.99937421, 0.99937421, 0.99937421, 0.99937421, 0.99787995,
       0.99787995, 0.99787995, 0.99787995, 0.99376522, 0.99376522,
       0.99376522, 0.99376522, 0.98427193, 0.98427193, 0.98427193,
       0.98427193, 0.96614873, 0.96614873, 0.96614873, 0.96614873,
       0.93749002, 0.93749002, 0.93749002, 0.93749002, 0.89922146,
       0.89922146, 0.89922146, 0.89922146, 0.85444615, 0.85444615,
       0.85444615, 0.85444615, 0.80694026, 0.80694026, 0.80694026,
       0.80694026, 0.76147336, 0.76147336, 0.76147336, 0.76147336,
       0.71798649, 0.71798649, 0.71798649, 0.71798649, 0.67328624,
       0.67328624, 0.67328624, 0.67328624, 0.63596237, 0.63596237,
       0.63596237, 0.63596237, 0.61090962, 0.61090962, 0.61090962,
       0.61090962, 0.59448665, 0.59448665, 0.59448665, 0.59448665,
       0.58377912, 0.58377912, 0.58377912, 0.58377912, 0.57884073,
       0.57884073, 0.57884073, 0.57884073, 0.57784159, 0.57784159,
       0.57784159, 0.57784159, 0.57814677, 0.57814677, 0.57814677,
       0.57814677, 0.57965393, 0.57965393, 0.57965393, 0.57965393,
       0.58114142, 0.58114142, 0.58114142, 0.58114142, 0.58086906,
       0.58086906, 0.58086906, 0.58086906, 0.57793383, 0.57793383,
       0.57793383, 0.57793383, 0.56855027, 0.56855027, 0.56855027,
       0.56855027, 0.54788997, 0.54788997, 0.54788997, 0.54788997,
       0.51173387, 0.51173387, 0.51173387, 0.51173387, 0.45826092,
       0.45826092, 0.45826092, 0.45826092, 0.39944332, 0.39944332,
       0.39944332, 0.39944332, 0.36188141, 0.36188141, 0.36188141,
       0.36188141, 0.34228638, 0.34228638, 0.34228638, 0.34228638,
       0.33391914, 0.33391914, 0.33391914, 0.33391914, 0.33194109,
       0.33194109, 0.33194109, 0.33194109, 0.33247925, 0.33247925,
       0.33247925, 0.33247925, 0.33319907, 0.33319907, 0.33319907,
       0.33319907, 0.33042192, 0.33042192, 0.33042192, 0.33042192,
       0.30893759, 0.30893759, 0.30893759, 0.30893759, 0.23627498,
       0.23627498, 0.23627498, 0.23627498, 0.14849035, 0.14849035,
       0.14849035, 0.14849035, 0.12743542, 0.12743542, 0.12743542,
       0.12743542, 0.12519919, 0.12519919, 0.12519919, 0.12519919,
       0.12501533, 0.12501533, 0.12501533, 0.12501533, 0.12500116,
       0.12500116, 0.12500116, 0.12500116, 0.12500009, 0.12500009,
       0.12500009, 0.12500009, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
       7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
       7.50000306e-01, 7.50000306e-01, 7.50000306e-01, 7.50000306e-01,
       7.50001762e-01, 7.50001762e-01, 7.50001762e-01, 7.50001762e-01,
       7.50009291e-01, 7.50009291e-01, 7.50009291e-01, 7.50009291e-01,
       7.50044538e-01, 7.50044538e-01, 7.50044538e-01, 7.50044538e-01,
       7.50192354e-01, 7.50192354e-01, 7.50192354e-01, 7.50192354e-01,
       7.50740552e-01, 7.50740552e-01, 7.50740552e-01, 7.50740552e-01,
       7.52510129e-01, 7.52510129e-01, 7.52510129e-01, 7.52510129e-01,
       7.57393863e-01, 7.57393863e-01, 7.57393863e-01, 7.57393863e-01,
       7.68727220e-01, 7.68727220e-01, 7.68727220e-01, 7.68727220e-01,
       7.90629207e-01, 7.90629207e-01, 7.90629207e-01, 7.90629207e-01,
       8.25993244e-01, 8.25993244e-01, 8.25993244e-01, 8.25993244e-01,
       8.74646375e-01, 8.74646375e-01, 8.74646375e-01, 8.74646375e-01,
       9.33771553e-01, 9.33771553e-01, 9.33771553e-01, 9.33771553e-01,
       9.98521665e-01, 9.98521665e-01, 9.98521665e-01, 9.98521665e-01,
       1.06413782e+00, 1.06413782e+00, 1.06413782e+00, 1.06413782e+00,
       1.13027656e+00, 1.13027656e+00, 1.13027656e+00, 1.13027656e+00,
       1.19762442e+00, 1.19762442e+00, 1.19762442e+00, 1.19762442e+00,
       1.25961704e+00, 1.25961704e+00, 1.25961704e+00, 1.25961704e+00,
       1.30884188e+00, 1.30884188e+00, 1.30884188e+00, 1.30884188e+00,
       1.33910827e+00, 1.33910827e+00, 1.33910827e+00, 1.33910827e+00,
       1.35277568e+00, 1.35277568e+00, 1.35277568e+00, 1.35277568e+00,
       1.35771893e+00, 1.35771893e+00, 1.35771893e+00, 1.35771893e+00,
       1.35973017e+00, 1.35973017e+00, 1.35973017e+00, 1.35973017e+00,
       1.36124410e+00, 1.36124410e+00, 1.36124410e+00, 1.36124410e+00,
       1.36234589e+00, 1.36234589e+00, 1.36234589e+00, 1.36234589e+00,
       1.36284576e+00, 1.36284576e+00, 1.36284576e+00, 1.36284576e+00,
       1.36330700e+00, 1.36330700e+00, 1.36330700e+00, 1.36330700e+00,
       1.36348314e+00, 1.36348314e+00, 1.36348314e+00, 1.36348314e+00,
       1.36337493e+00, 1.36337493e+00, 1.36337493e+00, 1.36337493e+00,
       1.36336149e+00, 1.36336149e+00, 1.36336149e+00, 1.36336149e+00,
       1.36324405e+00, 1.36324405e+00, 1.36324405e+00, 1.36324405e+00,
       1.36265870e+00, 1.36265870e+00, 1.36265870e+00, 1.36265870e+00,
       1.36215849e+00, 1.36215849e+00, 1.36215849e+00, 1.36215849e+00,
       1.36145357e+00, 1.36145357e+00, 1.36145357e+00, 1.36145357e+00,
       1.36027737e+00, 1.36027737e+00, 1.36027737e+00, 1.36027737e+00,
       1.35985957e+00, 1.35985957e+00, 1.35985957e+00, 1.35985957e+00,
       1.35950146e+00, 1.35950146e+00, 1.35950146e+00, 1.35950146e+00,
       1.35794105e+00, 1.35794105e+00, 1.35794105e+00, 1.35794105e+00,
       1.35302786e+00, 1.35302786e+00, 1.35302786e+00, 1.35302786e+00,
       1.32948395e+00, 1.32948395e+00, 1.32948395e+00, 1.32948395e+00,
       1.22656804e+00, 1.22656804e+00, 1.22656804e+00, 1.22656804e+00,
       8.53469650e-01, 8.53469650e-01, 8.53469650e-01, 8.53469650e-01,
       2.22591142e-01, 2.22591142e-01, 2.22591142e-01, 2.22591142e-01,
       2.20888528e-02, 2.20888528e-02, 2.20888528e-02, 2.20888528e-02,
       1.71922272e-03, 1.71922272e-03, 1.71922272e-03, 1.71922272e-03,
       1.30417470e-04, 1.30417470e-04, 1.30417470e-04, 1.30417470e-04,
       9.86300289e-06, 9.86300289e-06, 9.86300289e-06, 9.86300289e-06,
       7.43754125e-07, 7.43754125e-07, 7.43754125e-07, 7.43754125e-07,
       5.59602796e-08, 5.59602796e-08, 5.59602796e-08, 5.59602796e-08,
       4.20149858e-09, 4.20149858e-09, 4.20149858e-09, 4.20149858e-09,
       3.14719729e-10, 3.14719729e-10, 3.14719729e-10, 3.14719729e-10,
       2.35165721e-11, 2.35165721e-11, 2.35165721e-11, 2.35165721e-11,
       1.75282978e-12, 1.75282978e-12, 1.75282978e-12, 1.75282978e-12,
       1.30293969e-13, 1.30293969e-13, 1.30293969e-13, 1.30293969e-13,
       9.55439487e-15, 9.55439487e-15, 9.55439487e-15, 9.55439487e-15,
       6.56847280e-16, 6.56847280e-16, 6.56847280e-16, 6.56847280e-16,
       3.41706842e-17, 3.41706842e-17, 3.41706842e-17, 3.41706842e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999964, 0.99999964, 0.99999964, 0.99999964, 0.99999792,
       0.99999792, 0.99999792, 0.99999792, 0.99998901, 0.99998901,
       0.99998901, 0.99998901, 0.9999473 , 0.9999473 , 0.9999473 ,
       0.9999473 , 0.99977243, 0.99977243, 0.99977243, 0.99977243,
       0.99912413, 0.99912413, 0.99912413, 0.99912413, 0.99703423,
       0.99703423, 0.99703423, 0.99703423, 0.99128845, 0.99128845,
       0.99128845, 0.99128845, 0.97807702, 0.97807702, 0.97807702,
       0.97807702, 0.95301417, 0.95301417, 0.95301417, 0.95301417,
       0.91378216, 0.91378216, 0.91378216, 0.91378216, 0.86213936,
       0.86213936, 0.86213936, 0.86213936, 0.80277216, 0.80277216,
       0.80277216, 0.80277216, 0.7408459 , 0.7408459 , 0.7408459 ,
       0.7408459 , 0.68230078, 0.68230078, 0.68230078, 0.68230078,
       0.62855672, 0.62855672, 0.62855672, 0.62855672, 0.5764662 ,
       0.5764662 , 0.5764662 , 0.5764662 , 0.53234585, 0.53234585,
       0.53234585, 0.53234585, 0.49942183, 0.49942183, 0.49942183,
       0.49942183, 0.47983443, 0.47983443, 0.47983443, 0.47983443,
       0.47100923, 0.47100923, 0.47100923, 0.47100923, 0.46787142,
       0.46787142, 0.46787142, 0.46787142, 0.46682295, 0.46682295,
       0.46682295, 0.46682295, 0.46618014, 0.46618014, 0.46618014,
       0.46618014, 0.46556219, 0.46556219, 0.46556219, 0.46556219,
       0.46506118, 0.46506118, 0.46506118, 0.46506118, 0.46489673,
       0.46489673, 0.46489673, 0.46489673, 0.46500213, 0.46500213,
       0.46500213, 0.46500213, 0.46532374, 0.46532374, 0.46532374,
       0.46532374, 0.46561466, 0.46561466, 0.46561466, 0.46561466,
       0.46573189, 0.46573189, 0.46573189, 0.46573189, 0.46592128,
       0.46592128, 0.46592128, 0.46592128, 0.46578294, 0.46578294,
       0.46578294, 0.46578294, 0.46549998, 0.46549998, 0.46549998,
       0.46549998, 0.46541691, 0.46541691, 0.46541691, 0.46541691,
       0.46523714, 0.46523714, 0.46523714, 0.46523714, 0.46502176,
       0.46502176, 0.46502176, 0.46502176, 0.46475263, 0.46475263,
       0.46475263, 0.46475263, 0.46237713, 0.46237713, 0.46237713,
       0.46237713, 0.45142205, 0.45142205, 0.45142205, 0.45142205,
       0.40654284, 0.40654284, 0.40654284, 0.40654284, 0.27563326,
       0.27563326, 0.27563326, 0.27563326, 0.13295938, 0.13295938,
       0.13295938, 0.13295938, 0.1029486 , 0.1029486 , 0.1029486 ,
       0.1029486 , 0.10022754, 0.10022754, 0.10022754, 0.10022754,
       0.10001725, 0.10001725, 0.10001725, 0.10001725, 0.1000013 ,
       0.1000013 , 0.1000013 , 0.1000013 , 0.1000001 , 0.1000001 ,
       0.1000001 , 0.1000001 , 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999962, 0.99999962, 0.99999962, 0.99999962, 0.99999791,
       0.99999791, 0.99999791, 0.99999791, 0.99998931, 0.99998931,
       0.99998931, 0.99998931, 0.99995038, 0.99995038, 0.99995038,
       0.99995038, 0.99979255, 0.99979255, 0.99979255, 0.99979255,
       0.99922731, 0.99922731, 0.99922731, 0.99922731, 0.99746821,
       0.99746821, 0.99746821, 0.99746821, 0.99279908, 0.99279908,
       0.99279908, 0.99279908, 0.98241481, 0.98241481, 0.98241481,
       0.98241481, 0.96326558, 0.96326558, 0.96326558, 0.96326558,
       0.93387982, 0.93387982, 0.93387982, 0.93387982, 0.89553728,
       0.89553728, 0.89553728, 0.89553728, 0.85134817, 0.85134817,
       0.85134817, 0.85134817, 0.80495162, 0.80495162, 0.80495162,
       0.80495162, 0.76058273, 0.76058273, 0.76058273, 0.76058273,
       0.71835604, 0.71835604, 0.71835604, 0.71835604, 0.67514463,
       0.67514463, 0.67514463, 0.67514463, 0.63729119, 0.63729119,
       0.63729119, 0.63729119, 0.61162641, 0.61162641, 0.61162641,
       0.61162641, 0.59582875, 0.59582875, 0.59582875, 0.59582875,
       0.58543448, 0.58543448, 0.58543448, 0.58543448, 0.57967261,
       0.57967261, 0.57967261, 0.57967261, 0.57782428, 0.57782428,
       0.57782428, 0.57782428, 0.57777383, 0.57777383, 0.57777383,
       0.57777383, 0.57870314, 0.57870314, 0.57870314, 0.57870314,
       0.58056833, 0.58056833, 0.58056833, 0.58056833, 0.58087553,
       0.58087553, 0.58087553, 0.58087553, 0.57939156, 0.57939156,
       0.57939156, 0.57939156, 0.57325442, 0.57325442, 0.57325442,
       0.57325442, 0.55803941, 0.55803941, 0.55803941, 0.55803941,
       0.52921033, 0.52921033, 0.52921033, 0.52921033, 0.4837152 ,
       0.4837152 , 0.4837152 , 0.4837152 , 0.42371397, 0.42371397,
       0.42371397, 0.42371397, 0.376212  , 0.376212  , 0.376212  ,
       0.376212  , 0.34965307, 0.34965307, 0.34965307, 0.34965307,
       0.33690123, 0.33690123, 0.33690123, 0.33690123, 0.33265682,
       0.33265682, 0.33265682, 0.33265682, 0.33246875, 0.33246875,
       0.33246875, 0.33246875, 0.33332651, 0.33332651, 0.33332651,
       0.33332651, 0.33357826, 0.33357826, 0.33357826, 0.33357826,
       0.32736337, 0.32736337, 0.32736337, 0.32736337, 0.29324759,
       0.29324759, 0.29324759, 0.29324759, 0.20348887, 0.20348887,
       0.20348887, 0.20348887, 0.13723772, 0.13723772, 0.13723772,
       0.13723772, 0.12613944, 0.12613944, 0.12613944, 0.12613944,
       0.12509047, 0.12509047, 0.12509047, 0.12509047, 0.12500693,
       0.12500693, 0.12500693, 0.12500693, 0.12500053, 0.12500053,
       0.12500053, 0.12500053, 0.12500004, 0.12500004, 0.12500004,
       0.12500004, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
       7.50000073e-01, 7.50000073e-01, 7.50000073e-01, 7.50000073e-01,
       7.50000444e-01, 7.50000444e-01, 7.50000444e-01, 7.50000444e-01,
       7.50002476e-01, 7.50002476e-01, 7.50002476e-01, 7.50002476e-01,
       7.50012648e-01, 7.50012648e-01, 7.50012648e-01, 7.50012648e-01,
       7.50058710e-01, 7.50058710e-01, 7.50058710e-01, 7.50058710e-01,
       7.50245463e-01, 7.50245463e-01, 7.50245463e-01, 7.50245463e-01,
       7.50914434e-01, 7.50914434e-01, 7.50914434e-01, 7.50914434e-01,
       7.52998113e-01, 7.52998113e-01, 7.52998113e-01, 7.52998113e-01,
       7.58543146e-01, 7.58543146e-01, 7.58543146e-01, 7.58543146e-01,
       7.70955766e-01, 7.70955766e-01, 7.70955766e-01, 7.70955766e-01,
       7.94146625e-01, 7.94146625e-01, 7.94146625e-01, 7.94146625e-01,
       8.30511067e-01, 8.30511067e-01, 8.30511067e-01, 8.30511067e-01,
       8.79411509e-01, 8.79411509e-01, 8.79411509e-01, 8.79411509e-01,
       9.37934877e-01, 9.37934877e-01, 9.37934877e-01, 9.37934877e-01,
       1.00124282e+00, 1.00124282e+00, 1.00124282e+00, 1.00124282e+00,
       1.06525741e+00, 1.06525741e+00, 1.06525741e+00, 1.06525741e+00,
       1.12978836e+00, 1.12978836e+00, 1.12978836e+00, 1.12978836e+00,
       1.19554873e+00, 1.19554873e+00, 1.19554873e+00, 1.19554873e+00,
       1.25655219e+00, 1.25655219e+00, 1.25655219e+00, 1.25655219e+00,
       1.30588997e+00, 1.30588997e+00, 1.30588997e+00, 1.30588997e+00,
       1.33725902e+00, 1.33725902e+00, 1.33725902e+00, 1.33725902e+00,
       1.35200167e+00, 1.35200167e+00, 1.35200167e+00, 1.35200167e+00,
       1.35740137e+00, 1.35740137e+00, 1.35740137e+00, 1.35740137e+00,
       1.35945680e+00, 1.35945680e+00, 1.35945680e+00, 1.35945680e+00,
       1.36098916e+00, 1.36098916e+00, 1.36098916e+00, 1.36098916e+00,
       1.36225665e+00, 1.36225665e+00, 1.36225665e+00, 1.36225665e+00,
       1.36284870e+00, 1.36284870e+00, 1.36284870e+00, 1.36284870e+00,
       1.36323230e+00, 1.36323230e+00, 1.36323230e+00, 1.36323230e+00,
       1.36337379e+00, 1.36337379e+00, 1.36337379e+00, 1.36337379e+00,
       1.36322082e+00, 1.36322082e+00, 1.36322082e+00, 1.36322082e+00,
       1.36321667e+00, 1.36321667e+00, 1.36321667e+00, 1.36321667e+00,
       1.36320442e+00, 1.36320442e+00, 1.36320442e+00, 1.36320442e+00,
       1.36283306e+00, 1.36283306e+00, 1.36283306e+00, 1.36283306e+00,
       1.36246959e+00, 1.36246959e+00, 1.36246959e+00, 1.36246959e+00,
       1.36197500e+00, 1.36197500e+00, 1.36197500e+00, 1.36197500e+00,
       1.36085259e+00, 1.36085259e+00, 1.36085259e+00, 1.36085259e+00,
       1.36028892e+00, 1.36028892e+00, 1.36028892e+00, 1.36028892e+00,
       1.35984919e+00, 1.35984919e+00, 1.35984919e+00, 1.35984919e+00,
       1.35883540e+00, 1.35883540e+00, 1.35883540e+00, 1.35883540e+00,
       1.35714143e+00, 1.35714143e+00, 1.35714143e+00, 1.35714143e+00,
       1.34894991e+00, 1.34894991e+00, 1.34894991e+00, 1.34894991e+00,
       1.31073945e+00, 1.31073945e+00, 1.31073945e+00, 1.31073945e+00,
       1.15250494e+00, 1.15250494e+00, 1.15250494e+00, 1.15250494e+00,
       6.53937892e-01, 6.53937892e-01, 6.53937892e-01, 6.53937892e-01,
       1.15935794e-01, 1.15935794e-01, 1.15935794e-01, 1.15935794e-01,
       1.01224064e-02, 1.01224064e-02, 1.01224064e-02, 1.01224064e-02,
       7.75605173e-04, 7.75605173e-04, 7.75605173e-04, 7.75605173e-04,
       5.88223629e-05, 5.88223629e-05, 5.88223629e-05, 5.88223629e-05,
       4.44985365e-06, 4.44985365e-06, 4.44985365e-06, 4.44985365e-06,
       3.35889504e-07, 3.35889504e-07, 3.35889504e-07, 3.35889504e-07,
       2.52955860e-08, 2.52955860e-08, 2.52955860e-08, 2.52955860e-08,
       1.90071378e-09, 1.90071378e-09, 1.90071378e-09, 1.90071378e-09,
       1.42497338e-10, 1.42497338e-10, 1.42497338e-10, 1.42497338e-10,
       1.06576856e-11, 1.06576856e-11, 1.06576856e-11, 1.06576856e-11,
       7.95109096e-13, 7.95109096e-13, 7.95109096e-13, 7.95109096e-13,
       5.90704393e-14, 5.90704393e-14, 5.90704393e-14, 5.90704393e-14,
       4.31701064e-15, 4.31701064e-15, 4.31701064e-15, 4.31701064e-15,
       3.15002440e-16, 3.15002440e-16, 3.15002440e-16, 3.15002440e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999947, 0.99999947, 0.99999947, 0.99999947, 0.99999707,
       0.99999707, 0.99999707, 0.99999707, 0.99998504, 0.99998504,
       0.99998504, 0.99998504, 0.99993054, 0.99993054, 0.99993054,
       0.99993054, 0.9997096 , 0.9997096 , 0.9997096 , 0.9997096 ,
       0.99891859, 0.99891859, 0.99891859, 0.99891859, 0.99645866,
       0.99645866, 0.99645866, 0.99645866, 0.98994093, 0.98994093,
       0.98994093, 0.98994093, 0.97549864, 0.97549864, 0.97549864,
       0.97549864, 0.94904306, 0.94904306, 0.94904306, 0.94904306,
       0.90886853, 0.90886853, 0.90886853, 0.90886853, 0.85720188,
       0.85720188, 0.85720188, 0.85720188, 0.79869209, 0.79869209,
       0.79869209, 0.79869209, 0.73826586, 0.73826586, 0.73826586,
       0.73826586, 0.68131655, 0.68131655, 0.68131655, 0.68131655,
       0.62890962, 0.62890962, 0.62890962, 0.62890962, 0.57797733,
       0.57797733, 0.57797733, 0.57797733, 0.53444855, 0.53444855,
       0.53444855, 0.53444855, 0.5013871 , 0.5013871 , 0.5013871 ,
       0.5013871 , 0.48115492, 0.48115492, 0.48115492, 0.48115492,
       0.47166155, 0.47166155, 0.47166155, 0.47166155, 0.468095  ,
       0.468095  , 0.468095  , 0.468095  , 0.46684318, 0.46684318,
       0.46684318, 0.46684318, 0.46616211, 0.46616211, 0.46616211,
       0.46616211, 0.46561043, 0.46561043, 0.46561043, 0.46561043,
       0.46512576, 0.46512576, 0.46512576, 0.46512576, 0.46487872,
       0.46487872, 0.46487872, 0.46487872, 0.46492772, 0.46492772,
       0.46492772, 0.46492772, 0.4651844 , 0.4651844 , 0.4651844 ,
       0.4651844 , 0.4655066 , 0.4655066 , 0.4655066 , 0.4655066 ,
       0.46569201, 0.46569201, 0.46569201, 0.46569201, 0.46598138,
       0.46598138, 0.46598138, 0.46598138, 0.46594011, 0.46594011,
       0.46594011, 0.46594011, 0.4657527 , 0.4657527 , 0.4657527 ,
       0.4657527 , 0.4656862 , 0.4656862 , 0.4656862 , 0.4656862 ,
       0.46543641, 0.46543641, 0.46543641, 0.46543641, 0.46518651,
       0.46518651, 0.46518651, 0.46518651, 0.46517111, 0.46517111,
       0.46517111, 0.46517111, 0.46429022, 0.46429022, 0.46429022,
       0.46429022, 0.46039234, 0.46039234, 0.46039234, 0.46039234,
       0.44325735, 0.44325735, 0.44325735, 0.44325735, 0.37715612,
       0.37715612, 0.37715612, 0.37715612, 0.22068217, 0.22068217,
       0.22068217, 0.22068217, 0.11627314, 0.11627314, 0.11627314,
       0.11627314, 0.10134388, 0.10134388, 0.10134388, 0.10134388,
       0.10010262, 0.10010262, 0.10010262, 0.10010262, 0.10000778,
       0.10000778, 0.10000778, 0.10000778, 0.10000059, 0.10000059,
       0.10000059, 0.10000059, 0.10000004, 0.10000004, 0.10000004,
       0.10000004, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999946, 0.99999946, 0.99999946, 0.99999946, 0.99999709,
       0.99999709, 0.99999709, 0.99999709, 0.9999856 , 0.9999856 ,
       0.9999856 , 0.9999856 , 0.9999352 , 0.9999352 , 0.9999352 ,
       0.9999352 , 0.99973758, 0.99973758, 0.99973758, 0.99973758,
       0.99905358, 0.99905358, 0.99905358, 0.99905358, 0.99699862,
       0.99699862, 0.99699862, 0.99699862, 0.99173748, 0.99173748,
       0.99173748, 0.99173748, 0.98044778, 0.98044778, 0.98044778,
       0.98044778, 0.96031352, 0.96031352, 0.96031352, 0.96031352,
       0.93028712, 0.93028712, 0.93028712, 0.93028712, 0.89194825,
       0.89194825, 0.89194825, 0.89194825, 0.84837482, 0.84837482,
       0.84837482, 0.84837482, 0.80307475, 0.80307475, 0.80307475,
       0.80307475, 0.75973657, 0.75973657, 0.75973657, 0.75973657,
       0.71864049, 0.71864049, 0.71864049, 0.71864049, 0.6769383 ,
       0.6769383 , 0.6769383 , 0.6769383 , 0.63889909, 0.63889909,
       0.63889909, 0.63889909, 0.61229773, 0.61229773, 0.61229773,
       0.61229773, 0.59674677, 0.59674677, 0.59674677, 0.59674677,
       0.58694413, 0.58694413, 0.58694413, 0.58694413, 0.58077655,
       0.58077655, 0.58077655, 0.58077655, 0.57805601, 0.57805601,
       0.57805601, 0.57805601, 0.57755678, 0.57755678, 0.57755678,
       0.57755678, 0.57803073, 0.57803073, 0.57803073, 0.57803073,
       0.57971225, 0.57971225, 0.57971225, 0.57971225, 0.5806943 ,
       0.5806943 , 0.5806943 , 0.5806943 , 0.58009671, 0.58009671,
       0.58009671, 0.58009671, 0.57636073, 0.57636073, 0.57636073,
       0.57636073, 0.5655678 , 0.5655678 , 0.5655678 , 0.5655678 ,
       0.54322304, 0.54322304, 0.54322304, 0.54322304, 0.50551025,
       0.50551025, 0.50551025, 0.50551025, 0.45076947, 0.45076947,
       0.45076947, 0.45076947, 0.39435096, 0.39435096, 0.39435096,
       0.39435096, 0.3597402 , 0.3597402 , 0.3597402 , 0.3597402 ,
       0.34154439, 0.34154439, 0.34154439, 0.34154439, 0.33413329,
       0.33413329, 0.33413329, 0.33413329, 0.33272707, 0.33272707,
       0.33272707, 0.33272707, 0.33306897, 0.33306897, 0.33306897,
       0.33306897, 0.33417837, 0.33417837, 0.33417837, 0.33417837,
       0.33342156, 0.33342156, 0.33342156, 0.33342156, 0.32134726,
       0.32134726, 0.32134726, 0.32134726, 0.27151457, 0.27151457,
       0.27151457, 0.27151457, 0.17391339, 0.17391339, 0.17391339,
       0.17391339, 0.131043  , 0.131043  , 0.131043  , 0.131043  ,
       0.12552415, 0.12552415, 0.12552415, 0.12552415, 0.12504101,
       0.12504101, 0.12504101, 0.12504101, 0.12500313, 0.12500313,
       0.12500313, 0.12500313, 0.12500024, 0.12500024, 0.12500024,
       0.12500024, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000017e-01, 7.50000017e-01, 7.50000017e-01, 7.50000017e-01,
       7.50000108e-01, 7.50000108e-01, 7.50000108e-01, 7.50000108e-01,
       7.50000636e-01, 7.50000636e-01, 7.50000636e-01, 7.50000636e-01,
       7.50003442e-01, 7.50003442e-01, 7.50003442e-01, 7.50003442e-01,
       7.50017043e-01, 7.50017043e-01, 7.50017043e-01, 7.50017043e-01,
       7.50076668e-01, 7.50076668e-01, 7.50076668e-01, 7.50076668e-01,
       7.50310517e-01, 7.50310517e-01, 7.50310517e-01, 7.50310517e-01,
       7.51120114e-01, 7.51120114e-01, 7.51120114e-01, 7.51120114e-01,
       7.53554867e-01, 7.53554867e-01, 7.53554867e-01, 7.53554867e-01,
       7.59807118e-01, 7.59807118e-01, 7.59807118e-01, 7.59807118e-01,
       7.73320214e-01, 7.73320214e-01, 7.73320214e-01, 7.73320214e-01,
       7.97757265e-01, 7.97757265e-01, 7.97757265e-01, 7.97757265e-01,
       8.35020634e-01, 8.35020634e-01, 8.35020634e-01, 8.35020634e-01,
       8.84067394e-01, 8.84067394e-01, 8.84067394e-01, 8.84067394e-01,
       9.41941415e-01, 9.41941415e-01, 9.41941415e-01, 9.41941415e-01,
       1.00384428e+00, 1.00384428e+00, 1.00384428e+00, 1.00384428e+00,
       1.06633018e+00, 1.06633018e+00, 1.06633018e+00, 1.06633018e+00,
       1.12932515e+00, 1.12932515e+00, 1.12932515e+00, 1.12932515e+00,
       1.19354968e+00, 1.19354968e+00, 1.19354968e+00, 1.19354968e+00,
       1.25356360e+00, 1.25356360e+00, 1.25356360e+00, 1.25356360e+00,
       1.30291531e+00, 1.30291531e+00, 1.30291531e+00, 1.30291531e+00,
       1.33529031e+00, 1.33529031e+00, 1.33529031e+00, 1.33529031e+00,
       1.35115947e+00, 1.35115947e+00, 1.35115947e+00, 1.35115947e+00,
       1.35713174e+00, 1.35713174e+00, 1.35713174e+00, 1.35713174e+00,
       1.35925965e+00, 1.35925965e+00, 1.35925965e+00, 1.35925965e+00,
       1.36072477e+00, 1.36072477e+00, 1.36072477e+00, 1.36072477e+00,
       1.36208351e+00, 1.36208351e+00, 1.36208351e+00, 1.36208351e+00,
       1.36283213e+00, 1.36283213e+00, 1.36283213e+00, 1.36283213e+00,
       1.36320426e+00, 1.36320426e+00, 1.36320426e+00, 1.36320426e+00,
       1.36331504e+00, 1.36331504e+00, 1.36331504e+00, 1.36331504e+00,
       1.36312690e+00, 1.36312690e+00, 1.36312690e+00, 1.36312690e+00,
       1.36305072e+00, 1.36305072e+00, 1.36305072e+00, 1.36305072e+00,
       1.36308238e+00, 1.36308238e+00, 1.36308238e+00, 1.36308238e+00,
       1.36286521e+00, 1.36286521e+00, 1.36286521e+00, 1.36286521e+00,
       1.36262787e+00, 1.36262787e+00, 1.36262787e+00, 1.36262787e+00,
       1.36231759e+00, 1.36231759e+00, 1.36231759e+00, 1.36231759e+00,
       1.36138818e+00, 1.36138818e+00, 1.36138818e+00, 1.36138818e+00,
       1.36084001e+00, 1.36084001e+00, 1.36084001e+00, 1.36084001e+00,
       1.36024205e+00, 1.36024205e+00, 1.36024205e+00, 1.36024205e+00,
       1.35931961e+00, 1.35931961e+00, 1.35931961e+00, 1.35931961e+00,
       1.35862778e+00, 1.35862778e+00, 1.35862778e+00, 1.35862778e+00,
       1.35576681e+00, 1.35576681e+00, 1.35576681e+00, 1.35576681e+00,
       1.34188087e+00, 1.34188087e+00, 1.34188087e+00, 1.34188087e+00,
       1.28237194e+00, 1.28237194e+00, 1.28237194e+00, 1.28237194e+00,
       1.04403836e+00, 1.04403836e+00, 1.04403836e+00, 1.04403836e+00,
       4.40023066e-01, 4.40023066e-01, 4.40023066e-01, 4.40023066e-01,
       5.63022869e-02, 5.63022869e-02, 5.63022869e-02, 5.63022869e-02,
       4.58333546e-03, 4.58333546e-03, 4.58333546e-03, 4.58333546e-03,
       3.49968099e-04, 3.49968099e-04, 3.49968099e-04, 3.49968099e-04,
       2.65258651e-05, 2.65258651e-05, 2.65258651e-05, 2.65258651e-05,
       2.00742922e-06, 2.00742922e-06, 2.00742922e-06, 2.00742922e-06,
       1.51640690e-07, 1.51640690e-07, 1.51640690e-07, 1.51640690e-07,
       1.14299111e-08, 1.14299111e-08, 1.14299111e-08, 1.14299111e-08,
       8.59588993e-10, 8.59588993e-10, 8.59588993e-10, 8.59588993e-10,
       6.44987274e-11, 6.44987274e-11, 6.44987274e-11, 6.44987274e-11,
       4.82824703e-12, 4.82824703e-12, 4.82824703e-12, 4.82824703e-12,
       3.60377106e-13, 3.60377106e-13, 3.60377106e-13, 3.60377106e-13,
       2.67995136e-14, 2.67995136e-14, 2.67995136e-14, 2.67995136e-14,
       1.97682800e-15, 1.97682800e-15, 1.97682800e-15, 1.97682800e-15,
       1.51415324e-16, 1.51415324e-16, 1.51415324e-16, 1.51415324e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
       0.99999925, 0.99999925, 0.99999925, 0.99999925, 0.99999593,
       0.99999593, 0.99999593, 0.99999593, 0.99997983, 0.99997983,
       0.99997983, 0.99997983, 0.99990929, 0.99990929, 0.99990929,
       0.99990929, 0.99963266, 0.99963266, 0.99963266, 0.99963266,
       0.99867551, 0.99867551, 0.99867551, 0.99867551, 0.99580237,
       0.99580237, 0.99580237, 0.99580237, 0.98846096, 0.98846096,
       0.98846096, 0.98846096, 0.97276987, 0.97276987, 0.97276987,
       0.97276987, 0.94498179, 0.94498179, 0.94498179, 0.94498179,
       0.90398561, 0.90398561, 0.90398561, 0.90398561, 0.85239877,
       0.85239877, 0.85239877, 0.85239877, 0.79478009, 0.79478009,
       0.79478009, 0.79478009, 0.73582397, 0.73582397, 0.73582397,
       0.73582397, 0.68038471, 0.68038471, 0.68038471, 0.68038471,
       0.62924921, 0.62924921, 0.62924921, 0.62924921, 0.57942336,
       0.57942336, 0.57942336, 0.57942336, 0.53648813, 0.53648813,
       0.53648813, 0.53648813, 0.50332705, 0.50332705, 0.50332705,
       0.50332705, 0.48248881, 0.48248881, 0.48248881, 0.48248881,
       0.47236439, 0.47236439, 0.47236439, 0.47236439, 0.46839479,
       0.46839479, 0.46839479, 0.46839479, 0.46692446, 0.46692446,
       0.46692446, 0.46692446, 0.46614238, 0.46614238, 0.46614238,
       0.46614238, 0.46561056, 0.46561056, 0.46561056, 0.46561056,
       0.4651818 , 0.4651818 , 0.4651818 , 0.4651818 , 0.46489012,
       0.46489012, 0.46489012, 0.46489012, 0.46489108, 0.46489108,
       0.46489108, 0.46489108, 0.4650843 , 0.4650843 , 0.4650843 ,
       0.4650843 , 0.46537787, 0.46537787, 0.46537787, 0.46537787,
       0.46560331, 0.46560331, 0.46560331, 0.46560331, 0.46596369,
       0.46596369, 0.46596369, 0.46596369, 0.46601669, 0.46601669,
       0.46601669, 0.46601669, 0.46592137, 0.46592137, 0.46592137,
       0.46592137, 0.46593666, 0.46593666, 0.46593666, 0.46593666,
       0.46569284, 0.46569284, 0.46569284, 0.46569284, 0.46537354,
       0.46537354, 0.46537354, 0.46537354, 0.46539853, 0.46539853,
       0.46539853, 0.46539853, 0.46498145, 0.46498145, 0.46498145,
       0.46498145, 0.46356472, 0.46356472, 0.46356472, 0.46356472,
       0.45748027, 0.45748027, 0.45748027, 0.45748027, 0.43042442,
       0.43042442, 0.43042442, 0.43042442, 0.33773594, 0.33773594,
       0.33773594, 0.33773594, 0.1723474 , 0.1723474 , 0.1723474 ,
       0.1723474 , 0.10764844, 0.10764844, 0.10764844, 0.10764844,
       0.10060719, 0.10060719, 0.10060719, 0.10060719, 0.1000463 ,
       0.1000463 , 0.1000463 , 0.1000463 , 0.10000351, 0.10000351,
       0.10000351, 0.10000351, 0.10000027, 0.10000027, 0.10000027,
       0.10000027, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_hllc': [{'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999993, 0.99999993, 0.99999993, 0.99999993,
       0.99999956, 0.99999956, 0.99999956, 0.99999956, 0.99999758,
       0.99999758, 0.99999758, 0.99999758, 0.99998782, 0.99998782,
       0.99998782, 0.99998782, 0.99994422, 0.99994422, 0.99994422,
       0.99994422, 0.99977003, 0.99977003, 0.99977003, 0.99977003,
       0.99915542, 0.99915542, 0.99915542, 0.99915542, 0.99727188,
       0.99727188, 0.99727188, 0.99727188, 0.99234954, 0.99234954,
       0.99234954, 0.99234954, 0.98156538, 0.98156538, 0.98156538,
       0.98156538, 0.96194746, 0.96194746, 0.96194746, 0.96194746,
       0.93218276, 0.93218276, 0.93218276, 0.93218276, 0.8936786 ,
       0.8936786 , 0.8936786 , 0.8936786 , 0.84954127, 0.84954127,
       0.84954127, 0.84954127, 0.80317128, 0.80317128, 0.80317128,
       0.80317128, 0.75830147, 0.75830147, 0.75830147, 0.75830147,
       0.71601042, 0.71601042, 0.71601042, 0.71601042, 0.67327991,
       0.67327991, 0.67327991, 0.67327991, 0.63607874, 0.63607874,
       0.63607874, 0.63607874, 0.61091745, 0.61091745, 0.61091745,
       0.61091745, 0.59673414, 0.59673414, 0.59673414, 0.59673414,
       0.58738935, 0.58738935, 0.58738935, 0.58738935, 0.58067077,
       0.58067077, 0.58067077, 0.58067077, 0.57738951, 0.57738951,
       0.57738951, 0.57738951, 0.57684123, 0.57684123, 0.57684123,
       0.57684123, 0.57741731, 0.57741731, 0.57741731, 0.57741731,
       0.57933199, 0.57933199, 0.57933199, 0.57933199, 0.5807667 ,
       0.5807667 , 0.5807667 , 0.5807667 , 0.58038131, 0.58038131,
       0.58038131, 0.58038131, 0.57694171, 0.57694171, 0.57694171,
       0.57694171, 0.56652927, 0.56652927, 0.56652927, 0.56652927,
       0.54427792, 0.54427792, 0.54427792, 0.54427792, 0.50574245,
       0.50574245, 0.50574245, 0.50574245, 0.44917162, 0.44917162,
       0.44917162, 0.44917162, 0.39267489, 0.39267489, 0.39267489,
       0.39267489, 0.35904482, 0.35904482, 0.35904482, 0.35904482,
       0.34183176, 0.34183176, 0.34183176, 0.34183176, 0.33519947,
       0.33519947, 0.33519947, 0.33519947, 0.33392488, 0.33392488,
       0.33392488, 0.33392488, 0.33443666, 0.33443666, 0.33443666,
       0.33443666, 0.33522049, 0.33522049, 0.33522049, 0.33522049,
       0.33404885, 0.33404885, 0.33404885, 0.33404885, 0.32180389,
       0.32180389, 0.32180389, 0.32180389, 0.27211543, 0.27211543,
       0.27211543, 0.27211543, 0.17353096, 0.17353096, 0.17353096,
       0.17353096, 0.13090219, 0.13090219, 0.13090219, 0.13090219,
       0.12548944, 0.12548944, 0.12548944, 0.12548944, 0.12503725,
       0.12503725, 0.12503725, 0.12503725, 0.12500281, 0.12500281,
       0.12500281, 0.12500281, 0.12500021, 0.12500021, 0.12500021,
       0.12500021, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
       7.50000087e-01, 7.50000087e-01, 7.50000087e-01, 7.50000087e-01,
       7.50000519e-01, 7.50000519e-01, 7.50000519e-01, 7.50000519e-01,
       7.50002860e-01, 7.50002860e-01, 7.50002860e-01, 7.50002860e-01,
       7.50014413e-01, 7.50014413e-01, 7.50014413e-01, 7.50014413e-01,
       7.50065997e-01, 7.50065997e-01, 7.50065997e-01, 7.50065997e-01,
       7.50272133e-01, 7.50272133e-01, 7.50272133e-01, 7.50272133e-01,
       7.50999658e-01, 7.50999658e-01, 7.50999658e-01, 7.50999658e-01,
       7.53231583e-01, 7.53231583e-01, 7.53231583e-01, 7.53231583e-01,
       7.59081507e-01, 7.59081507e-01, 7.59081507e-01, 7.59081507e-01,
       7.71986731e-01, 7.71986731e-01, 7.71986731e-01, 7.71986731e-01,
       7.95781524e-01, 7.95781524e-01, 7.95781524e-01, 7.95781524e-01,
       8.32680719e-01, 8.32680719e-01, 8.32680719e-01, 8.32680719e-01,
       8.81876321e-01, 8.81876321e-01, 8.81876321e-01, 8.81876321e-01,
       9.40397529e-01, 9.40397529e-01, 9.40397529e-01, 9.40397529e-01,
       1.00383705e+00, 1.00383705e+00, 1.00383705e+00, 1.00383705e+00,
       1.06846436e+00, 1.06846436e+00, 1.06846436e+00, 1.06846436e+00,
       1.13364194e+00, 1.13364194e+00, 1.13364194e+00, 1.13364194e+00,
       1.19966388e+00, 1.19966388e+00, 1.19966388e+00, 1.19966388e+00,
       1.25823577e+00, 1.25823577e+00, 1.25823577e+00, 1.25823577e+00,
       1.30460285e+00, 1.30460285e+00, 1.30460285e+00, 1.30460285e+00,
       1.33510884e+00, 1.33510884e+00, 1.33510884e+00, 1.33510884e+00,
       1.35096608e+00, 1.35096608e+00, 1.35096608e+00, 1.35096608e+00,
       1.35752911e+00, 1.35752911e+00, 1.35752911e+00, 1.35752911e+00,
       1.36008887e+00, 1.36008887e+00, 1.36008887e+00, 1.36008887e+00,
       1.36168158e+00, 1.36168158e+00, 1.36168158e+00, 1.36168158e+00,
       1.36273536e+00, 1.36273536e+00, 1.36273536e+00, 1.36273536e+00,
       1.36310325e+00, 1.36310325e+00, 1.36310325e+00, 1.36310325e+00,
       1.36308266e+00, 1.36308266e+00, 1.36308266e+00, 1.36308266e+00,
       1.36292459e+00, 1.36292459e+00, 1.36292459e+00, 1.36292459e+00,
       1.36276796e+00, 1.36276796e+00, 1.36276796e+00, 1.36276796e+00,
       1.36261137e+00, 1.36261137e+00, 1.36261137e+00, 1.36261137e+00,
       1.36242480e+00, 1.36242480e+00, 1.36242480e+00, 1.36242480e+00,
       1.36240105e+00, 1.36240105e+00, 1.36240105e+00, 1.36240105e+00,
       1.36236978e+00, 1.36236978e+00, 1.36236978e+00, 1.36236978e+00,
       1.36206049e+00, 1.36206049e+00, 1.36206049e+00, 1.36206049e+00,
       1.36120137e+00, 1.36120137e+00, 1.36120137e+00, 1.36120137e+00,
       1.36080070e+00, 1.36080070e+00, 1.36080070e+00, 1.36080070e+00,
       1.36024607e+00, 1.36024607e+00, 1.36024607e+00, 1.36024607e+00,
       1.35960979e+00, 1.35960979e+00, 1.35960979e+00, 1.35960979e+00,
       1.35845878e+00, 1.35845878e+00, 1.35845878e+00, 1.35845878e+00,
       1.35582525e+00, 1.35582525e+00, 1.35582525e+00, 1.35582525e+00,
       1.34268743e+00, 1.34268743e+00, 1.34268743e+00, 1.34268743e+00,
       1.28409176e+00, 1.28409176e+00, 1.28409176e+00, 1.28409176e+00,
       1.04736551e+00, 1.04736551e+00, 1.04736551e+00, 1.04736551e+00,
       4.29328817e-01, 4.29328817e-01, 4.29328817e-01, 4.29328817e-01,
       5.19371545e-02, 5.19371545e-02, 5.19371545e-02, 5.19371545e-02,
       4.15794051e-03, 4.15794051e-03, 4.15794051e-03, 4.15794051e-03,
       3.15435852e-04, 3.15435852e-04, 3.15435852e-04, 3.15435852e-04,
       2.37540443e-05, 2.37540443e-05, 2.37540443e-05, 2.37540443e-05,
       1.78468394e-06, 1.78468394e-06, 1.78468394e-06, 1.78468394e-06,
       1.33840550e-07, 1.33840550e-07, 1.33840550e-07, 1.33840550e-07,
       1.00204015e-08, 1.00204015e-08, 1.00204015e-08, 1.00204015e-08,
       7.48783638e-10, 7.48783638e-10, 7.48783638e-10, 7.48783638e-10,
       5.58269795e-11, 5.58269795e-11, 5.58269795e-11, 5.58269795e-11,
       4.15162222e-12, 4.15162222e-12, 4.15162222e-12, 4.15162222e-12,
       3.07872093e-13, 3.07872093e-13, 3.07872093e-13, 3.07872093e-13,
       2.27463383e-14, 2.27463383e-14, 2.27463383e-14, 2.27463383e-14,
       1.62261633e-15, 1.62261633e-15, 1.62261633e-15, 1.62261633e-15,
       1.00069544e-16, 1.00069544e-16, 1.00069544e-16, 1.00069544e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 ,
       0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999662,
       0.99999662, 0.99999662, 0.99999662, 0.99998295, 0.99998295,
       0.99998295, 0.99998295, 0.99992191, 0.99992191, 0.99992191,
       0.99992191, 0.99967806, 0.99967806, 0.99967806, 0.99967806,
       0.9988179 , 0.9988179 , 0.9988179 , 0.9988179 , 0.99618367,
       0.99618367, 0.99618367, 0.99618367, 0.9893114 , 0.9893114 ,
       0.9893114 , 0.9893114 , 0.97431068, 0.97431068, 0.97431068,
       0.97431068, 0.94720653, 0.94720653, 0.94720653, 0.94720653,
       0.90652171, 0.90652171, 0.90652171, 0.90652171, 0.85466372,
       0.85466372, 0.85466372, 0.85466372, 0.79629842, 0.79629842,
       0.79629842, 0.79629842, 0.73604968, 0.73604968, 0.73604968,
       0.73604968, 0.67878231, 0.67878231, 0.67878231, 0.67878231,
       0.6256561 , 0.6256561 , 0.6256561 , 0.6256561 , 0.57494258,
       0.57494258, 0.57494258, 0.57494258, 0.533212  , 0.533212  ,
       0.533212  , 0.533212  , 0.50207587, 0.50207587, 0.50207587,
       0.50207587, 0.48250309, 0.48250309, 0.48250309, 0.48250309,
       0.47250947, 0.47250947, 0.47250947, 0.47250947, 0.46817049,
       0.46817049, 0.46817049, 0.46817049, 0.46640112, 0.46640112,
       0.46640112, 0.46640112, 0.46567017, 0.46567017, 0.46567017,
       0.46567017, 0.46537494, 0.46537494, 0.46537494, 0.46537494,
       0.4652207 , 0.4652207 , 0.4652207 , 0.4652207 , 0.46520697,
       0.46520697, 0.46520697, 0.46520697, 0.46526117, 0.46526117,
       0.46526117, 0.46526117, 0.46535935, 0.46535935, 0.46535935,
       0.46535935, 0.46554981, 0.46554981, 0.46554981, 0.46554981,
       0.46588653, 0.46588653, 0.46588653, 0.46588653, 0.46609435,
       0.46609435, 0.46609435, 0.46609435, 0.46609123, 0.46609123,
       0.46609123, 0.46609123, 0.46609313, 0.46609313, 0.46609313,
       0.46609313, 0.4660888 , 0.4660888 , 0.4660888 , 0.4660888 ,
       0.46579135, 0.46579135, 0.46579135, 0.46579135, 0.46552363,
       0.46552363, 0.46552363, 0.46552363, 0.46536737, 0.46536737,
       0.46536737, 0.46536737, 0.46516396, 0.46516396, 0.46516396,
       0.46516396, 0.46370822, 0.46370822, 0.46370822, 0.46370822,
       0.45758086, 0.45758086, 0.45758086, 0.45758086, 0.43124529,
       0.43124529, 0.43124529, 0.43124529, 0.33859453, 0.33859453,
       0.33859453, 0.33859453, 0.17013955, 0.17013955, 0.17013955,
       0.17013955, 0.10699674, 0.10699674, 0.10699674, 0.10699674,
       0.10055056, 0.10055056, 0.10055056, 0.10055056, 0.10004173,
       0.10004173, 0.10004173, 0.10004173, 0.10000314, 0.10000314,
       0.10000314, 0.10000314, 0.10000024, 0.10000024, 0.10000024,
       0.10000024, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}]}
minmod_rusanov
{'none_hll': [{'rho': array([0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999942,
       0.99999942, 0.99999942, 0.99999942, 0.99999778, 0.99999778,
       0.99999778, 0.99999778, 0.99999202, 0.99999202, 0.99999202,
       0.99999202, 0.99997316, 0.99997316, 0.99997316, 0.99997316,
       0.99991602, 0.99991602, 0.99991602, 0.99991602, 0.9997563 ,
       0.9997563 , 0.9997563 , 0.9997563 , 0.9993467 , 0.9993467 ,
       0.9993467 , 0.9993467 , 0.99838817, 0.99838817, 0.99838817,
       0.99838817, 0.99635204, 0.99635204, 0.99635204, 0.99635204,
       0.99244104, 0.99244104, 0.99244104, 0.99244104, 0.9856563 ,
       0.9856563 , 0.9856563 , 0.9856563 , 0.97499773, 0.97499773,
       0.97499773, 0.97499773, 0.95972818, 0.95972818, 0.95972818,
       0.95972818, 0.93956535, 0.93956535, 0.93956535, 0.93956535,
       0.91470956, 0.91470956, 0.91470956, 0.91470956, 0.88572617,
       0.88572617, 0.88572617, 0.88572617, 0.85336749, 0.85336749,
       0.85336749, 0.85336749, 0.8183986 , 0.8183986 , 0.8183986 ,
       0.8183986 , 0.78138933, 0.78138933, 0.78138933, 0.78138933,
       0.74190427, 0.74190427, 0.74190427, 0.74190427, 0.68069561,
       0.68069561, 0.68069561, 0.68069561, 0.64567578, 0.64567578,
       0.64567578, 0.64567578, 0.62072799, 0.62072799, 0.62072799,
       0.62072799, 0.60234245, 0.60234245, 0.60234245, 0.60234245,
       0.58959115, 0.58959115, 0.58959115, 0.58959115, 0.58159638,
       0.58159638, 0.58159638, 0.58159638, 0.57703206, 0.57703206,
       0.57703206, 0.57703206, 0.5742342 , 0.5742342 , 0.5742342 ,
       0.5742342 , 0.57154338, 0.57154338, 0.57154338, 0.57154338,
       0.56752869, 0.56752869, 0.56752869, 0.56752869, 0.56100982,
       0.56100982, 0.56100982, 0.56100982, 0.55104138, 0.55104138,
       0.55104138, 0.55104138, 0.5369988 , 0.5369988 , 0.5369988 ,
       0.5369988 , 0.51874878, 0.51874878, 0.51874878, 0.51874878,
       0.49679082, 0.49679082, 0.49679082, 0.49679082, 0.4722612 ,
       0.4722612 , 0.4722612 , 0.4722612 , 0.44675753, 0.44675753,
       0.44675753, 0.44675753, 0.42202434, 0.42202434, 0.42202434,
       0.42202434, 0.39959589, 0.39959589, 0.39959589, 0.39959589,
       0.38049936, 0.38049936, 0.38049936, 0.38049936, 0.36508019,
       0.36508019, 0.36508019, 0.36508019, 0.35299013, 0.35299013,
       0.35299013, 0.35299013, 0.34303431, 0.34303431, 0.34303431,
       0.34303431, 0.33311509, 0.33311509, 0.33311509, 0.33311509,
       0.32011436, 0.32011436, 0.32011436, 0.32011436, 0.29976301,
       0.29976301, 0.29976301, 0.29976301, 0.2678043 , 0.2678043 ,
       0.2678043 , 0.2678043 , 0.22419984, 0.22419984, 0.22419984,
       0.22419984, 0.17832614, 0.17832614, 0.17832614, 0.17832614,
       0.14528472, 0.14528472, 0.14528472, 0.14528472, 0.13048361,
       0.13048361, 0.13048361, 0.13048361, 0.12620226, 0.12620226,
       0.12620226, 0.12620226, 0.12524229, 0.12524229, 0.12524229,
       0.12524229, 0.12504738, 0.12504738, 0.12504738, 0.12504738,
       0.12500914, 0.12500914, 0.12500914, 0.12500914, 0.12500174,
       0.12500174, 0.12500174, 0.12500174, 0.12500033, 0.12500033,
       0.12500033, 0.12500033, 0.12500006, 0.12500006, 0.12500006,
       0.12500006, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000167e-01, 7.50000167e-01, 7.50000167e-01, 7.50000167e-01,
       7.50000683e-01, 7.50000683e-01, 7.50000683e-01, 7.50000683e-01,
       7.50002625e-01, 7.50002625e-01, 7.50002625e-01, 7.50002625e-01,
       7.50009447e-01, 7.50009447e-01, 7.50009447e-01, 7.50009447e-01,
       7.50031758e-01, 7.50031758e-01, 7.50031758e-01, 7.50031758e-01,
       7.50099366e-01, 7.50099366e-01, 7.50099366e-01, 7.50099366e-01,
       7.50288337e-01, 7.50288337e-01, 7.50288337e-01, 7.50288337e-01,
       7.50772988e-01, 7.50772988e-01, 7.50772988e-01, 7.50772988e-01,
       7.51907376e-01, 7.51907376e-01, 7.51907376e-01, 7.51907376e-01,
       7.54318699e-01, 7.54318699e-01, 7.54318699e-01, 7.54318699e-01,
       7.58958083e-01, 7.58958083e-01, 7.58958083e-01, 7.58958083e-01,
       7.67034111e-01, 7.67034111e-01, 7.67034111e-01, 7.67034111e-01,
       7.79799756e-01, 7.79799756e-01, 7.79799756e-01, 7.79799756e-01,
       7.98268450e-01, 7.98268450e-01, 7.98268450e-01, 7.98268450e-01,
       8.23003448e-01, 8.23003448e-01, 8.23003448e-01, 8.23003448e-01,
       8.54075522e-01, 8.54075522e-01, 8.54075522e-01, 8.54075522e-01,
       8.91170219e-01, 8.91170219e-01, 8.91170219e-01, 8.91170219e-01,
       9.33761223e-01, 9.33761223e-01, 9.33761223e-01, 9.33761223e-01,
       9.81292612e-01, 9.81292612e-01, 9.81292612e-01, 9.81292612e-01,
       1.03344347e+00, 1.03344347e+00, 1.03344347e+00, 1.03344347e+00,
       1.09134872e+00, 1.09134872e+00, 1.09134872e+00, 1.09134872e+00,
       1.18628677e+00, 1.18628677e+00, 1.18628677e+00, 1.18628677e+00,
       1.24355729e+00, 1.24355729e+00, 1.24355729e+00, 1.24355729e+00,
       1.28577631e+00, 1.28577631e+00, 1.28577631e+00, 1.28577631e+00,
       1.31763060e+00, 1.31763060e+00, 1.31763060e+00, 1.31763060e+00,
       1.33994607e+00, 1.33994607e+00, 1.33994607e+00, 1.33994607e+00,
       1.35366900e+00, 1.35366900e+00, 1.35366900e+00, 1.35366900e+00,
       1.36065228e+00, 1.36065228e+00, 1.36065228e+00, 1.36065228e+00,
       1.36330406e+00, 1.36330406e+00, 1.36330406e+00, 1.36330406e+00,
       1.36377802e+00, 1.36377802e+00, 1.36377802e+00, 1.36377802e+00,
       1.36346214e+00, 1.36346214e+00, 1.36346214e+00, 1.36346214e+00,
       1.36300839e+00, 1.36300839e+00, 1.36300839e+00, 1.36300839e+00,
       1.36262613e+00, 1.36262613e+00, 1.36262613e+00, 1.36262613e+00,
       1.36234022e+00, 1.36234022e+00, 1.36234022e+00, 1.36234022e+00,
       1.36212440e+00, 1.36212440e+00, 1.36212440e+00, 1.36212440e+00,
       1.36194570e+00, 1.36194570e+00, 1.36194570e+00, 1.36194570e+00,
       1.36176870e+00, 1.36176870e+00, 1.36176870e+00, 1.36176870e+00,
       1.36154433e+00, 1.36154433e+00, 1.36154433e+00, 1.36154433e+00,
       1.36118699e+00, 1.36118699e+00, 1.36118699e+00, 1.36118699e+00,
       1.36053007e+00, 1.36053007e+00, 1.36053007e+00, 1.36053007e+00,
       1.35923531e+00, 1.35923531e+00, 1.35923531e+00, 1.35923531e+00,
       1.35660636e+00, 1.35660636e+00, 1.35660636e+00, 1.35660636e+00,
       1.35121276e+00, 1.35121276e+00, 1.35121276e+00, 1.35121276e+00,
       1.34015167e+00, 1.34015167e+00, 1.34015167e+00, 1.34015167e+00,
       1.31767491e+00, 1.31767491e+00, 1.31767491e+00, 1.31767491e+00,
       1.27285288e+00, 1.27285288e+00, 1.27285288e+00, 1.27285288e+00,
       1.18653029e+00, 1.18653029e+00, 1.18653029e+00, 1.18653029e+00,
       1.03082789e+00, 1.03082789e+00, 1.03082789e+00, 1.03082789e+00,
       7.82059657e-01, 7.82059657e-01, 7.82059657e-01, 7.82059657e-01,
       4.62795165e-01, 4.62795165e-01, 4.62795165e-01, 4.62795165e-01,
       1.85035678e-01, 1.85035678e-01, 1.85035678e-01, 1.85035678e-01,
       4.91064989e-02, 4.91064989e-02, 4.91064989e-02, 4.91064989e-02,
       1.04300500e-02, 1.04300500e-02, 1.04300500e-02, 1.04300500e-02,
       2.06834747e-03, 2.06834747e-03, 2.06834747e-03, 2.06834747e-03,
       4.02159204e-04, 4.02159204e-04, 4.02159204e-04, 4.02159204e-04,
       7.74241901e-05, 7.74241901e-05, 7.74241901e-05, 7.74241901e-05,
       1.47732907e-05, 1.47732907e-05, 1.47732907e-05, 1.47732907e-05,
       2.79133251e-06, 2.79133251e-06, 2.79133251e-06, 2.79133251e-06,
       5.21558611e-07, 5.21558611e-07, 5.21558611e-07, 5.21558611e-07,
       9.62314180e-08, 9.62314180e-08, 9.62314180e-08, 9.62314180e-08,
       1.75063215e-08, 1.75063215e-08, 1.75063215e-08, 1.75063215e-08,
       3.13525934e-09, 3.13525934e-09, 3.13525934e-09, 3.13525934e-09,
       5.51945459e-10, 5.51945459e-10, 5.51945459e-10, 5.51945459e-10,
       9.53728523e-11, 9.53728523e-11, 9.53728523e-11]), 'P': array([0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999919,
       0.99999919, 0.99999919, 0.99999919, 0.99999689, 0.99999689,
       0.99999689, 0.99999689, 0.99998882, 0.99998882, 0.99998882,
       0.99998882, 0.99996242, 0.99996242, 0.99996242, 0.99996242,
       0.99988243, 0.99988243, 0.99988243, 0.99988243, 0.99965888,
       0.99965888, 0.99965888, 0.99965888, 0.99908571, 0.99908571,
       0.99908571, 0.99908571, 0.99774515, 0.99774515, 0.99774515,
       0.99774515, 0.99490042, 0.99490042, 0.99490042, 0.99490042,
       0.98944596, 0.98944596, 0.98944596, 0.98944596, 0.98001064,
       0.98001064, 0.98001064, 0.98001064, 0.96525111, 0.96525111,
       0.96525111, 0.96525111, 0.94423203, 0.94423203, 0.94423203,
       0.94423203, 0.91669404, 0.91669404, 0.91669404, 0.91669404,
       0.88307786, 0.88307786, 0.88307786, 0.88307786, 0.84433672,
       0.84433672, 0.84433672, 0.84433672, 0.80166635, 0.80166635,
       0.80166635, 0.80166635, 0.75625152, 0.75625152, 0.75625152,
       0.75625152, 0.70899078, 0.70899078, 0.70899078, 0.70899078,
       0.65951543, 0.65951543, 0.65951543, 0.65951543, 0.58481452,
       0.58481452, 0.58481452, 0.58481452, 0.5433517 , 0.5433517 ,
       0.5433517 , 0.5433517 , 0.51442502, 0.51442502, 0.51442502,
       0.51442502, 0.49348741, 0.49348741, 0.49348741, 0.49348741,
       0.47926376, 0.47926376, 0.47926376, 0.47926376, 0.4706976 ,
       0.4706976 , 0.4706976 , 0.4706976 , 0.46639387, 0.46639387,
       0.46639387, 0.46639387, 0.46477369, 0.46477369, 0.46477369,
       0.46477369, 0.46449143, 0.46449143, 0.46449143, 0.46449143,
       0.46469357, 0.46469357, 0.46469357, 0.46469357, 0.46498071,
       0.46498071, 0.46498071, 0.46498071, 0.46522404, 0.46522404,
       0.46522404, 0.46522404, 0.46540634, 0.46540634, 0.46540634,
       0.46540634, 0.46553884, 0.46553884, 0.46553884, 0.46553884,
       0.46563123, 0.46563123, 0.46563123, 0.46563123, 0.46568376,
       0.46568376, 0.46568376, 0.46568376, 0.46568347, 0.46568347,
       0.46568347, 0.46568347, 0.46559619, 0.46559619, 0.46559619,
       0.46559619, 0.46534764, 0.46534764, 0.46534764, 0.46534764,
       0.46478249, 0.46478249, 0.46478249, 0.46478249, 0.46357931,
       0.46357931, 0.46357931, 0.46357931, 0.46108012, 0.46108012,
       0.46108012, 0.46108012, 0.4559703 , 0.4559703 , 0.4559703 ,
       0.4559703 , 0.44573327, 0.44573327, 0.44573327, 0.44573327,
       0.42592481, 0.42592481, 0.42592481, 0.42592481, 0.38995176,
       0.38995176, 0.38995176, 0.38995176, 0.33171722, 0.33171722,
       0.33171722, 0.33171722, 0.25409808, 0.25409808, 0.25409808,
       0.25409808, 0.1771826 , 0.1771826 , 0.1771826 , 0.1771826 ,
       0.126735  , 0.126735  , 0.126735  , 0.126735  , 0.10663112,
       0.10663112, 0.10663112, 0.10663112, 0.10138491, 0.10138491,
       0.10138491, 0.10138491, 0.1002738 , 0.1002738 , 0.1002738 ,
       0.1002738 , 0.10005321, 0.10005321, 0.10005321, 0.10005321,
       0.10001024, 0.10001024, 0.10001024, 0.10001024, 0.10000195,
       0.10000195, 0.10000195, 0.10000195, 0.10000037, 0.10000037,
       0.10000037, 0.10000037, 0.10000007, 0.10000007, 0.10000007,
       0.10000007, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_rusanov': [{'rho': array([0.99999871, 0.99999871, 0.99999871, 0.99999871, 0.99999661,
       0.99999661, 0.99999661, 0.99999661, 0.99998966, 0.99998966,
       0.99998966, 0.99998966, 0.99997049, 0.99997049, 0.99997049,
       0.99997049, 0.99992058, 0.99992058, 0.99992058, 0.99992058,
       0.99979749, 0.99979749, 0.99979749, 0.99979749, 0.99951129,
       0.99951129, 0.99951129, 0.99951129, 0.99888599, 0.99888599,
       0.99888599, 0.99888599, 0.9976064 , 0.9976064 , 0.9976064 ,
       0.9976064 , 0.99516153, 0.99516153, 0.99516153, 0.99516153,
       0.99081297, 0.99081297, 0.99081297, 0.99081297, 0.98362904,
       0.98362904, 0.98362904, 0.98362904, 0.9726153 , 0.9726153 ,
       0.9726153 , 0.9726153 , 0.95692666, 0.95692666, 0.95692666,
       0.95692666, 0.93608458, 0.93608458, 0.93608458, 0.93608458,
       0.91009674, 0.91009674, 0.91009674, 0.91009674, 0.87942017,
       0.87942017, 0.87942017, 0.87942017, 0.84480243, 0.84480243,
       0.84480243, 0.84480243, 0.80717174, 0.80717174, 0.80717174,
       0.80717174, 0.76833323, 0.76833323, 0.76833323, 0.76833323,
       0.7317958 , 0.7317958 , 0.7317958 , 0.7317958 , 0.69866292,
       0.69866292, 0.69866292, 0.69866292, 0.66877266, 0.66877266,
       0.66877266, 0.66877266, 0.64250712, 0.64250712, 0.64250712,
       0.64250712, 0.62085534, 0.62085534, 0.62085534, 0.62085534,
       0.60473075, 0.60473075, 0.60473075, 0.60473075, 0.59427383,
       0.59427383, 0.59427383, 0.59427383, 0.58874167, 0.58874167,
       0.58874167, 0.58874167, 0.58661231, 0.58661231, 0.58661231,
       0.58661231, 0.58586097, 0.58586097, 0.58586097, 0.58586097,
       0.58476947, 0.58476947, 0.58476947, 0.58476947, 0.58158321,
       0.58158321, 0.58158321, 0.58158321, 0.57471343, 0.57471343,
       0.57471343, 0.57471343, 0.56327381, 0.56327381, 0.56327381,
       0.56327381, 0.54639053, 0.54639053, 0.54639053, 0.54639053,
       0.52240684, 0.52240684, 0.52240684, 0.52240684, 0.48899281,
       0.48899281, 0.48899281, 0.48899281, 0.4463966 , 0.4463966 ,
       0.4463966 , 0.4463966 , 0.40411539, 0.40411539, 0.40411539,
       0.40411539, 0.37294067, 0.37294067, 0.37294067, 0.37294067,
       0.35182753, 0.35182753, 0.35182753, 0.35182753, 0.33895289,
       0.33895289, 0.33895289, 0.33895289, 0.33221897, 0.33221897,
       0.33221897, 0.33221897, 0.3294285 , 0.3294285 , 0.3294285 ,
       0.3294285 , 0.32860094, 0.32860094, 0.32860094, 0.32860094,
       0.32743466, 0.32743466, 0.32743466, 0.32743466, 0.31726988,
       0.31726988, 0.31726988, 0.31726988, 0.27001934, 0.27001934,
       0.27001934, 0.27001934, 0.17357126, 0.17357126, 0.17357126,
       0.17357126, 0.13098555, 0.13098555, 0.13098555, 0.13098555,
       0.12551968, 0.12551968, 0.12551968, 0.12551968, 0.12504027,
       0.12504027, 0.12504027, 0.12504027, 0.12500303, 0.12500303,
       0.12500303, 0.12500303, 0.12500023, 0.12500023, 0.12500023,
       0.12500023, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50001531e-01, 7.50001531e-01, 7.50001531e-01, 7.50001531e-01,
       7.50004007e-01, 7.50004007e-01, 7.50004007e-01, 7.50004007e-01,
       7.50012237e-01, 7.50012237e-01, 7.50012237e-01, 7.50012237e-01,
       7.50034917e-01, 7.50034917e-01, 7.50034917e-01, 7.50034917e-01,
       7.50093968e-01, 7.50093968e-01, 7.50093968e-01, 7.50093968e-01,
       7.50239615e-01, 7.50239615e-01, 7.50239615e-01, 7.50239615e-01,
       7.50578307e-01, 7.50578307e-01, 7.50578307e-01, 7.50578307e-01,
       7.51318450e-01, 7.51318450e-01, 7.51318450e-01, 7.51318450e-01,
       7.52833953e-01, 7.52833953e-01, 7.52833953e-01, 7.52833953e-01,
       7.55733191e-01, 7.55733191e-01, 7.55733191e-01, 7.55733191e-01,
       7.60902495e-01, 7.60902495e-01, 7.60902495e-01, 7.60902495e-01,
       7.69479672e-01, 7.69479672e-01, 7.69479672e-01, 7.69479672e-01,
       7.82724068e-01, 7.82724068e-01, 7.82724068e-01, 7.82724068e-01,
       8.01796569e-01, 8.01796569e-01, 8.01796569e-01, 8.01796569e-01,
       8.27525186e-01, 8.27525186e-01, 8.27525186e-01, 8.27525186e-01,
       8.60261011e-01, 8.60261011e-01, 8.60261011e-01, 8.60261011e-01,
       8.99894497e-01, 8.99894497e-01, 8.99894497e-01, 8.99894497e-01,
       9.46030525e-01, 9.46030525e-01, 9.46030525e-01, 9.46030525e-01,
       9.98277447e-01, 9.98277447e-01, 9.98277447e-01, 9.98277447e-01,
       1.05334834e+00, 1.05334834e+00, 1.05334834e+00, 1.05334834e+00,
       1.10804511e+00, 1.10804511e+00, 1.10804511e+00, 1.10804511e+00,
       1.15927234e+00, 1.15927234e+00, 1.15927234e+00, 1.15927234e+00,
       1.20602476e+00, 1.20602476e+00, 1.20602476e+00, 1.20602476e+00,
       1.24734222e+00, 1.24734222e+00, 1.24734222e+00, 1.24734222e+00,
       1.28248845e+00, 1.28248845e+00, 1.28248845e+00, 1.28248845e+00,
       1.31052537e+00, 1.31052537e+00, 1.31052537e+00, 1.31052537e+00,
       1.33076480e+00, 1.33076480e+00, 1.33076480e+00, 1.33076480e+00,
       1.34415463e+00, 1.34415463e+00, 1.34415463e+00, 1.34415463e+00,
       1.35305806e+00, 1.35305806e+00, 1.35305806e+00, 1.35305806e+00,
       1.35894065e+00, 1.35894065e+00, 1.35894065e+00, 1.35894065e+00,
       1.36185203e+00, 1.36185203e+00, 1.36185203e+00, 1.36185203e+00,
       1.36239557e+00, 1.36239557e+00, 1.36239557e+00, 1.36239557e+00,
       1.36215707e+00, 1.36215707e+00, 1.36215707e+00, 1.36215707e+00,
       1.36194266e+00, 1.36194266e+00, 1.36194266e+00, 1.36194266e+00,
       1.36206937e+00, 1.36206937e+00, 1.36206937e+00, 1.36206937e+00,
       1.36246607e+00, 1.36246607e+00, 1.36246607e+00, 1.36246607e+00,
       1.36297688e+00, 1.36297688e+00, 1.36297688e+00, 1.36297688e+00,
       1.36312897e+00, 1.36312897e+00, 1.36312897e+00, 1.36312897e+00,
       1.36298101e+00, 1.36298101e+00, 1.36298101e+00, 1.36298101e+00,
       1.36246641e+00, 1.36246641e+00, 1.36246641e+00, 1.36246641e+00,
       1.36157437e+00, 1.36157437e+00, 1.36157437e+00, 1.36157437e+00,
       1.36070130e+00, 1.36070130e+00, 1.36070130e+00, 1.36070130e+00,
       1.36003987e+00, 1.36003987e+00, 1.36003987e+00, 1.36003987e+00,
       1.35919056e+00, 1.35919056e+00, 1.35919056e+00, 1.35919056e+00,
       1.35638143e+00, 1.35638143e+00, 1.35638143e+00, 1.35638143e+00,
       1.34281703e+00, 1.34281703e+00, 1.34281703e+00, 1.34281703e+00,
       1.28083198e+00, 1.28083198e+00, 1.28083198e+00, 1.28083198e+00,
       1.03437248e+00, 1.03437248e+00, 1.03437248e+00, 1.03437248e+00,
       4.39845204e-01, 4.39845204e-01, 4.39845204e-01, 4.39845204e-01,
       5.63702448e-02, 5.63702448e-02, 5.63702448e-02, 5.63702448e-02,
       4.56728510e-03, 4.56728510e-03, 4.56728510e-03, 4.56728510e-03,
       3.44109702e-04, 3.44109702e-04, 3.44109702e-04, 3.44109702e-04,
       2.57117118e-05, 2.57117118e-05, 2.57117118e-05, 2.57117118e-05,
       1.91493931e-06, 1.91493931e-06, 1.91493931e-06, 1.91493931e-06,
       1.42183400e-07, 1.42183400e-07, 1.42183400e-07, 1.42183400e-07,
       1.05285748e-08, 1.05285748e-08, 1.05285748e-08, 1.05285748e-08,
       7.77701570e-10, 7.77701570e-10, 7.77701570e-10, 7.77701570e-10,
       5.73011541e-11, 5.73011541e-11, 5.73011541e-11, 5.73011541e-11,
       4.21117928e-12, 4.21117928e-12, 4.21117928e-12, 4.21117928e-12,
       3.08654210e-13, 3.08654210e-13, 3.08654210e-13, 3.08654210e-13,
       2.24724643e-14, 2.24724643e-14, 2.24724643e-14, 2.24724643e-14,
       1.61702291e-15, 1.61702291e-15, 1.61702291e-15, 1.61702291e-15,
       1.02454347e-16, 1.02454347e-16, 1.02454347e-16, 1.02454347e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([0.99999819, 0.99999819, 0.99999819, 0.99999819, 0.99999526,
       0.99999526, 0.99999526, 0.99999526, 0.99998552, 0.99998552,
       0.99998552, 0.99998552, 0.99995869, 0.99995869, 0.99995869,
       0.99995869, 0.99988882, 0.99988882, 0.99988882, 0.99988882,
       0.99971652, 0.99971652, 0.99971652, 0.99971652, 0.99931595,
       0.99931595, 0.99931595, 0.99931595, 0.9984411 , 0.9984411 ,
       0.9984411 , 0.9984411 , 0.99665195, 0.99665195, 0.99665195,
       0.99665195, 0.99323734, 0.99323734, 0.99323734, 0.99323734,
       0.98717551, 0.98717551, 0.98717551, 0.98717551, 0.97719106,
       0.97719106, 0.97719106, 0.97719106, 0.96195133, 0.96195133,
       0.96195133, 0.96195133, 0.94037646, 0.94037646, 0.94037646,
       0.94037646, 0.91194761, 0.91194761, 0.91194761, 0.91194761,
       0.87686269, 0.87686269, 0.87686269, 0.87686269, 0.83595614,
       0.83595614, 0.83595614, 0.83595614, 0.79042203, 0.79042203,
       0.79042203, 0.79042203, 0.74145147, 0.74145147, 0.74145147,
       0.74145147, 0.69147779, 0.69147779, 0.69147779, 0.69147779,
       0.64572403, 0.64572403, 0.64572403, 0.64572403, 0.60528213,
       0.60528213, 0.60528213, 0.60528213, 0.57010763, 0.57010763,
       0.57010763, 0.57010763, 0.5404967 , 0.5404967 , 0.5404967 ,
       0.5404967 , 0.51678706, 0.51678706, 0.51678706, 0.51678706,
       0.49867658, 0.49867658, 0.49867658, 0.49867658, 0.4853026 ,
       0.4853026 , 0.4853026 , 0.4853026 , 0.47607786, 0.47607786,
       0.47607786, 0.47607786, 0.47071083, 0.47071083, 0.47071083,
       0.47071083, 0.46816931, 0.46816931, 0.46816931, 0.46816931,
       0.46677659, 0.46677659, 0.46677659, 0.46677659, 0.46558153,
       0.46558153, 0.46558153, 0.46558153, 0.4647659 , 0.4647659 ,
       0.4647659 , 0.4647659 , 0.46441055, 0.46441055, 0.46441055,
       0.46441055, 0.46437878, 0.46437878, 0.46437878, 0.46437878,
       0.46459568, 0.46459568, 0.46459568, 0.46459568, 0.46499426,
       0.46499426, 0.46499426, 0.46499426, 0.46520033, 0.46520033,
       0.46520033, 0.46520033, 0.46528777, 0.46528777, 0.46528777,
       0.46528777, 0.46526662, 0.46526662, 0.46526662, 0.46526662,
       0.46508061, 0.46508061, 0.46508061, 0.46508061, 0.4649127 ,
       0.4649127 , 0.4649127 , 0.4649127 , 0.46486127, 0.46486127,
       0.46486127, 0.46486127, 0.4647071 , 0.4647071 , 0.4647071 ,
       0.4647071 , 0.46356721, 0.46356721, 0.46356721, 0.46356721,
       0.45731151, 0.45731151, 0.45731151, 0.45731151, 0.42928346,
       0.42928346, 0.42928346, 0.42928346, 0.33578024, 0.33578024,
       0.33578024, 0.33578024, 0.17249402, 0.17249402, 0.17249402,
       0.17249402, 0.10769716, 0.10769716, 0.10769716, 0.10769716,
       0.10060508, 0.10060508, 0.10060508, 0.10060508, 0.10004552,
       0.10004552, 0.10004552, 0.10004552, 0.1000034 , 0.1000034 ,
       0.1000034 , 0.1000034 , 0.10000025, 0.10000025, 0.10000025,
       0.10000025, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_hll': [{'rho': array([1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125]), 'vx': array([0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  ]), 'P': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999477, 0.99999477,
       0.99999477, 0.99999477, 0.99786485, 0.99786485, 0.99786485,
       0.99786485, 0.93485786, 0.93485786, 0.93485786, 0.93485786,
       0.40121931, 0.40121931, 0.40121931, 0.40121931, 0.15582104,
       0.15582104, 0.15582104, 0.15582104, 0.12524217, 0.12524217,
       0.12524217, 0.12524217, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75000582, 0.75000582,
       0.75000582, 0.75000582, 0.75222331, 0.75222331, 0.75222331,
       0.75222331, 0.81126632, 0.81126632, 0.81126632, 0.81126632,
       1.02140027, 1.02140027, 1.02140027, 1.02140027, 0.31355893,
       0.31355893, 0.31355893, 0.31355893, 0.0023764 , 0.0023764 ,
       0.0023764 , 0.0023764 , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999312, 0.99999312,
       0.99999312, 0.99999312, 0.99735755, 0.99735755, 0.99735755,
       0.99735755, 0.93228381, 0.93228381, 0.93228381, 0.93228381,
       0.39392227, 0.39392227, 0.39392227, 0.39392227, 0.14137148,
       0.14137148, 0.14137148, 0.14137148, 0.1003091 , 0.1003091 ,
       0.1003091 , 0.1003091 , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999593,
       0.99999593, 0.99999593, 0.99999593, 0.99976514, 0.99976514,
       0.99976514, 0.99976514, 0.99350557, 0.99350557, 0.99350557,
       0.99350557, 0.91229178, 0.91229178, 0.91229178, 0.91229178,
       0.5439655 , 0.5439655 , 0.5439655 , 0.5439655 , 0.26096859,
       0.26096859, 0.26096859, 0.26096859, 0.14372642, 0.14372642,
       0.14372642, 0.14372642, 0.12576866, 0.12576866, 0.12576866,
       0.12576866, 0.12501238, 0.12501238, 0.12501238, 0.12501238,
       0.12500005, 0.12500005, 0.12500005, 0.12500005, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000034e-01, 7.50000034e-01, 7.50000034e-01, 7.50000034e-01,
       7.50004712e-01, 7.50004712e-01, 7.50004712e-01, 7.50004712e-01,
       7.50264827e-01, 7.50264827e-01, 7.50264827e-01, 7.50264827e-01,
       7.56937682e-01, 7.56937682e-01, 7.56937682e-01, 7.56937682e-01,
       8.39140555e-01, 8.39140555e-01, 8.39140555e-01, 8.39140555e-01,
       1.20185078e+00, 1.20185078e+00, 1.20185078e+00, 1.20185078e+00,
       9.09724624e-01, 9.09724624e-01, 9.09724624e-01, 9.09724624e-01,
       1.82774882e-01, 1.82774882e-01, 1.82774882e-01, 1.82774882e-01,
       7.06720021e-03, 7.06720021e-03, 7.06720021e-03, 7.06720021e-03,
       1.07910808e-04, 1.07910808e-04, 1.07910808e-04, 1.07910808e-04,
       4.52081665e-07, 4.52081665e-07, 4.52081665e-07, 4.52081665e-07,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999442,
       0.99999442, 0.99999442, 0.99999442, 0.99968659, 0.99968659,
       0.99968659, 0.99968659, 0.99178136, 0.99178136, 0.99178136,
       0.99178136, 0.89903919, 0.89903919, 0.89903919, 0.89903919,
       0.51770741, 0.51770741, 0.51770741, 0.51770741, 0.2728004 ,
       0.2728004 , 0.2728004 , 0.2728004 , 0.12535917, 0.12535917,
       0.12535917, 0.12535917, 0.10093445, 0.10093445, 0.10093445,
       0.10093445, 0.10001427, 0.10001427, 0.10001427, 0.10001427,
       0.10000006, 0.10000006, 0.10000006, 0.10000006, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999923, 0.99999923, 0.99999923, 0.99999923, 0.99996861,
       0.99996861, 0.99996861, 0.99996861, 0.99921031, 0.99921031,
       0.99921031, 0.99921031, 0.98796713, 0.98796713, 0.98796713,
       0.98796713, 0.89633843, 0.89633843, 0.89633843, 0.89633843,
       0.62495402, 0.62495402, 0.62495402, 0.62495402, 0.36745601,
       0.36745601, 0.36745601, 0.36745601, 0.20859145, 0.20859145,
       0.20859145, 0.20859145, 0.13495091, 0.13495091, 0.13495091,
       0.13495091, 0.12554615, 0.12554615, 0.12554615, 0.12554615,
       0.12501743, 0.12501743, 0.12501743, 0.12501743, 0.12500034,
       0.12500034, 0.12500034, 0.12500034, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
       7.50000909e-01, 7.50000909e-01, 7.50000909e-01, 7.50000909e-01,
       7.50036531e-01, 7.50036531e-01, 7.50036531e-01, 7.50036531e-01,
       7.50902656e-01, 7.50902656e-01, 7.50902656e-01, 7.50902656e-01,
       7.63307867e-01, 7.63307867e-01, 7.63307867e-01, 7.63307867e-01,
       8.65269104e-01, 8.65269104e-01, 8.65269104e-01, 8.65269104e-01,
       1.24045354e+00, 1.24045354e+00, 1.24045354e+00, 1.24045354e+00,
       1.21114735e+00, 1.21114735e+00, 1.21114735e+00, 1.21114735e+00,
       6.72413161e-01, 6.72413161e-01, 6.72413161e-01, 6.72413161e-01,
       9.49710351e-02, 9.49710351e-02, 9.49710351e-02, 9.49710351e-02,
       4.89829591e-03, 4.89829591e-03, 4.89829591e-03, 4.89829591e-03,
       1.50276620e-04, 1.50276620e-04, 1.50276620e-04, 1.50276620e-04,
       2.85787671e-06, 2.85787671e-06, 2.85787671e-06, 2.85787671e-06,
       2.86001060e-08, 2.86001060e-08, 2.86001060e-08, 2.86001060e-08,
       9.82632001e-11, 9.82632001e-11, 9.82632001e-11, 9.82632001e-11,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99995678,
       0.99995678, 0.99995678, 0.99995678, 0.99893195, 0.99893195,
       0.99893195, 0.99893195, 0.98431021, 0.98431021, 0.98431021,
       0.98431021, 0.87225606, 0.87225606, 0.87225606, 0.87225606,
       0.57198082, 0.57198082, 0.57198082, 0.57198082, 0.38708981,
       0.38708981, 0.38708981, 0.38708981, 0.2169621 , 0.2169621 ,
       0.2169621 , 0.2169621 , 0.11307803, 0.11307803, 0.11307803,
       0.11307803, 0.10064828, 0.10064828, 0.10064828, 0.10064828,
       0.10001988, 0.10001988, 0.10001988, 0.10001988, 0.10000038,
       0.10000038, 0.10000038, 0.10000038, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999987, 0.99999987, 0.99999987, 0.99999987,
       0.99999553, 0.99999553, 0.99999553, 0.99999553, 0.99989298,
       0.99989298, 0.99989298, 0.99989298, 0.99825442, 0.99825442,
       0.99825442, 0.99825442, 0.98154523, 0.98154523, 0.98154523,
       0.98154523, 0.88346323, 0.88346323, 0.88346323, 0.88346323,
       0.66814286, 0.66814286, 0.66814286, 0.66814286, 0.450449  ,
       0.450449  , 0.450449  , 0.450449  , 0.30003012, 0.30003012,
       0.30003012, 0.30003012, 0.17291515, 0.17291515, 0.17291515,
       0.17291515, 0.12999501, 0.12999501, 0.12999501, 0.12999501,
       0.12530317, 0.12530317, 0.12530317, 0.12530317, 0.12501302,
       0.12501302, 0.12501302, 0.12501302, 0.1250004 , 0.1250004 ,
       0.1250004 , 0.1250004 , 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
       7.50005260e-01, 7.50005260e-01, 7.50005260e-01, 7.50005260e-01,
       7.50125177e-01, 7.50125177e-01, 7.50125177e-01, 7.50125177e-01,
       7.52016532e-01, 7.52016532e-01, 7.52016532e-01, 7.52016532e-01,
       7.70955544e-01, 7.70955544e-01, 7.70955544e-01, 7.70955544e-01,
       8.87963066e-01, 8.87963066e-01, 8.87963066e-01, 8.87963066e-01,
       1.23600978e+00, 1.23600978e+00, 1.23600978e+00, 1.23600978e+00,
       1.32985101e+00, 1.32985101e+00, 1.32985101e+00, 1.32985101e+00,
       1.08018999e+00, 1.08018999e+00, 1.08018999e+00, 1.08018999e+00,
       4.31751162e-01, 4.31751162e-01, 4.31751162e-01, 4.31751162e-01,
       4.67980493e-02, 4.67980493e-02, 4.67980493e-02, 4.67980493e-02,
       2.66505147e-03, 2.66505147e-03, 2.66505147e-03, 2.66505147e-03,
       1.11496365e-04, 1.11496365e-04, 1.11496365e-04, 1.11496365e-04,
       3.41260935e-06, 3.41260935e-06, 3.41260935e-06, 3.41260935e-06,
       7.27672658e-08, 7.27672658e-08, 7.27672658e-08, 7.27672658e-08,
       1.00397593e-09, 1.00397593e-09, 1.00397593e-09, 1.00397593e-09,
       7.70528135e-12, 7.70528135e-12, 7.70528135e-12, 7.70528135e-12,
       2.25884809e-14, 2.25884809e-14, 2.25884809e-14, 2.25884809e-14,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999982, 0.99999982, 0.99999982, 0.99999982,
       0.99999378, 0.99999378, 0.99999378, 0.99999378, 0.99985189,
       0.99985189, 0.99985189, 0.99985189, 0.99761523, 0.99761523,
       0.99761523, 0.99761523, 0.97543178, 0.97543178, 0.97543178,
       0.97543178, 0.85010187, 0.85010187, 0.85010187, 0.85010187,
       0.59115606, 0.59115606, 0.59115606, 0.59115606, 0.45201122,
       0.45201122, 0.45201122, 0.45201122, 0.33798169, 0.33798169,
       0.33798169, 0.33798169, 0.16975198, 0.16975198, 0.16975198,
       0.16975198, 0.10631224, 0.10631224, 0.10631224, 0.10631224,
       0.10035268, 0.10035268, 0.10035268, 0.10035268, 0.10001475,
       0.10001475, 0.10001475, 0.10001475, 0.10000045, 0.10000045,
       0.10000045, 0.10000045, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999934, 0.99999934, 0.99999934, 0.99999934,
       0.99998473, 0.99998473, 0.99998473, 0.99998473, 0.99973934,
       0.99973934, 0.99973934, 0.99973934, 0.99684694, 0.99684694,
       0.99684694, 0.99684694, 0.97449508, 0.97449508, 0.97449508,
       0.97449508, 0.87259818, 0.87259818, 0.87259818, 0.87259818,
       0.6864975 , 0.6864975 , 0.6864975 , 0.6864975 , 0.51289402,
       0.51289402, 0.51289402, 0.51289402, 0.38247596, 0.38247596,
       0.38247596, 0.38247596, 0.24627862, 0.24627862, 0.24627862,
       0.24627862, 0.1506058 , 0.1506058 , 0.1506058 , 0.1506058 ,
       0.12742094, 0.12742094, 0.12742094, 0.12742094, 0.12515547,
       0.12515547, 0.12515547, 0.12515547, 0.12500778, 0.12500778,
       0.12500778, 0.12500778, 0.12500031, 0.12500031, 0.12500031,
       0.12500031, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000776e-01, 7.50000776e-01, 7.50000776e-01, 7.50000776e-01,
       7.50017997e-01, 7.50017997e-01, 7.50017997e-01, 7.50017997e-01,
       7.50305930e-01, 7.50305930e-01, 7.50305930e-01, 7.50305930e-01,
       7.53669775e-01, 7.53669775e-01, 7.53669775e-01, 7.53669775e-01,
       7.79517872e-01, 7.79517872e-01, 7.79517872e-01, 7.79517872e-01,
       9.06676406e-01, 9.06676406e-01, 9.06676406e-01, 9.06676406e-01,
       1.21521648e+00, 1.21521648e+00, 1.21521648e+00, 1.21521648e+00,
       1.36901918e+00, 1.36901918e+00, 1.36901918e+00, 1.36901918e+00,
       1.27921096e+00, 1.27921096e+00, 1.27921096e+00, 1.27921096e+00,
       9.03289139e-01, 9.03289139e-01, 9.03289139e-01, 9.03289139e-01,
       2.43356441e-01, 2.43356441e-01, 2.43356441e-01, 2.43356441e-01,
       2.21897389e-02, 2.21897389e-02, 2.21897389e-02, 2.21897389e-02,
       1.34917711e-03, 1.34917711e-03, 1.34917711e-03, 1.34917711e-03,
       6.63347975e-05, 6.63347975e-05, 6.63347975e-05, 6.63347975e-05,
       2.61791335e-06, 2.61791335e-06, 2.61791335e-06, 2.61791335e-06,
       8.01915979e-08, 8.01915979e-08, 8.01915979e-08, 8.01915979e-08,
       1.84159266e-09, 1.84159266e-09, 1.84159266e-09, 1.84159266e-09,
       3.02840362e-11, 3.02840362e-11, 3.02840362e-11, 3.02840362e-11,
       3.31059514e-13, 3.31059514e-13, 3.31059514e-13, 3.31059514e-13,
       2.11159390e-15, 2.11159390e-15, 2.11159390e-15, 2.11159390e-15,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999908, 0.99999908, 0.99999908, 0.99999908,
       0.99997871, 0.99997871, 0.99997871, 0.99997871, 0.99963804,
       0.99963804, 0.99963804, 0.99963804, 0.99566401, 0.99566401,
       0.99566401, 0.99566401, 0.96560299, 0.96560299, 0.96560299,
       0.96560299, 0.8320416 , 0.8320416 , 0.8320416 , 0.8320416 ,
       0.59163041, 0.59163041, 0.59163041, 0.59163041, 0.48324232,
       0.48324232, 0.48324232, 0.48324232, 0.4189936 , 0.4189936 ,
       0.4189936 , 0.4189936 , 0.28887293, 0.28887293, 0.28887293,
       0.28887293, 0.13630773, 0.13630773, 0.13630773, 0.13630773,
       0.1029605 , 0.1029605 , 0.1029605 , 0.1029605 , 0.10017852,
       0.10017852, 0.10017852, 0.10017852, 0.10000878, 0.10000878,
       0.10000878, 0.10000878, 0.10000035, 0.10000035, 0.10000035,
       0.10000035, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.9999999 , 0.9999999 , 0.9999999 ,
       0.9999999 , 0.99999776, 0.99999776, 0.99999776, 0.99999776,
       0.99996053, 0.99996053, 0.99996053, 0.99996053, 0.99947569,
       0.99947569, 0.99947569, 0.99947569, 0.99496288, 0.99496288,
       0.99496288, 0.99496288, 0.96703059, 0.96703059, 0.96703059,
       0.96703059, 0.86276573, 0.86276573, 0.86276573, 0.86276573,
       0.69336478, 0.69336478, 0.69336478, 0.69336478, 0.55587482,
       0.55587482, 0.55587482, 0.55587482, 0.44582134, 0.44582134,
       0.44582134, 0.44582134, 0.32572207, 0.32572207, 0.32572207,
       0.32572207, 0.20563197, 0.20563197, 0.20563197, 0.20563197,
       0.13815838, 0.13815838, 0.13815838, 0.13815838, 0.12615318,
       0.12615318, 0.12615318, 0.12615318, 0.12507598, 0.12507598,
       0.12507598, 0.12507598, 0.1250042 , 0.1250042 , 0.1250042 ,
       0.1250042 , 0.12500019, 0.12500019, 0.12500019, 0.12500019,
       0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000116e-01, 7.50000116e-01, 7.50000116e-01, 7.50000116e-01,
       7.50002645e-01, 7.50002645e-01, 7.50002645e-01, 7.50002645e-01,
       7.50046576e-01, 7.50046576e-01, 7.50046576e-01, 7.50046576e-01,
       7.50616761e-01, 7.50616761e-01, 7.50616761e-01, 7.50616761e-01,
       7.55893760e-01, 7.55893760e-01, 7.55893760e-01, 7.55893760e-01,
       7.88691015e-01, 7.88691015e-01, 7.88691015e-01, 7.88691015e-01,
       9.22508524e-01, 9.22508524e-01, 9.22508524e-01, 9.22508524e-01,
       1.19424995e+00, 1.19424995e+00, 1.19424995e+00, 1.19424995e+00,
       1.37115296e+00, 1.37115296e+00, 1.37115296e+00, 1.37115296e+00,
       1.35656186e+00, 1.35656186e+00, 1.35656186e+00, 1.35656186e+00,
       1.19624538e+00, 1.19624538e+00, 1.19624538e+00, 1.19624538e+00,
       6.97637293e-01, 6.97637293e-01, 6.97637293e-01, 6.97637293e-01,
       1.27100170e-01, 1.27100170e-01, 1.27100170e-01, 1.27100170e-01,
       1.03412299e-02, 1.03412299e-02, 1.03412299e-02, 1.03412299e-02,
       6.53644299e-04, 6.53644299e-04, 6.53644299e-04, 6.53644299e-04,
       3.56971103e-05, 3.56971103e-05, 3.56971103e-05, 3.56971103e-05,
       1.64522459e-06, 1.64522459e-06, 1.64522459e-06, 1.64522459e-06,
       6.25358486e-08, 6.25358486e-08, 6.25358486e-08, 6.25358486e-08,
       1.91748504e-09, 1.91748504e-09, 1.91748504e-09, 1.91748504e-09,
       4.62606839e-11, 4.62606839e-11, 4.62606839e-11, 4.62606839e-11,
       8.51285413e-13, 8.51285413e-13, 8.51285413e-13, 8.51285413e-13,
       1.14285693e-14, 1.14285693e-14, 1.14285693e-14, 1.14285693e-14,
       9.19950648e-17, 9.19950648e-17, 9.19950648e-17, 9.19950648e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999687, 0.99999687, 0.99999687, 0.99999687,
       0.99994489, 0.99994489, 0.99994489, 0.99994489, 0.99927039,
       0.99927039, 0.99927039, 0.99927039, 0.99304531, 0.99304531,
       0.99304531, 0.99304531, 0.95519679, 0.95519679, 0.95519679,
       0.95519679, 0.8168341 , 0.8168341 , 0.8168341 , 0.8168341 ,
       0.58819152, 0.58819152, 0.58819152, 0.58819152, 0.49438551,
       0.49438551, 0.49438551, 0.49438551, 0.45793166, 0.45793166,
       0.45793166, 0.45793166, 0.39260514, 0.39260514, 0.39260514,
       0.39260514, 0.23309146, 0.23309146, 0.23309146, 0.23309146,
       0.11798708, 0.11798708, 0.11798708, 0.11798708, 0.1013727 ,
       0.1013727 , 0.1013727 , 0.1013727 , 0.10008648, 0.10008648,
       0.10008648, 0.10008648, 0.10000472, 0.10000472, 0.10000472,
       0.10000472, 0.10000022, 0.10000022, 0.10000022, 0.10000022,
       0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999967, 0.99999967, 0.99999967,
       0.99999967, 0.99999397, 0.99999397, 0.99999397, 0.99999397,
       0.99991437, 0.99991437, 0.99991437, 0.99991437, 0.99906962,
       0.99906962, 0.99906962, 0.99906962, 0.992598  , 0.992598  ,
       0.992598  , 0.992598  , 0.95931079, 0.95931079, 0.95931079,
       0.95931079, 0.85365694, 0.85365694, 0.85365694, 0.85365694,
       0.69548058, 0.69548058, 0.69548058, 0.69548058, 0.5842581 ,
       0.5842581 , 0.5842581 , 0.5842581 , 0.49197492, 0.49197492,
       0.49197492, 0.49197492, 0.39210102, 0.39210102, 0.39210102,
       0.39210102, 0.27877468, 0.27877468, 0.27877468, 0.27877468,
       0.17568186, 0.17568186, 0.17568186, 0.17568186, 0.1316077 ,
       0.1316077 , 0.1316077 , 0.1316077 , 0.12553921, 0.12553921,
       0.12553921, 0.12553921, 0.12503633, 0.12503633, 0.12503633,
       0.12503633, 0.12500214, 0.12500214, 0.12500214, 0.12500214,
       0.12500011, 0.12500011, 0.12500011, 0.12500011, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000018e-01, 7.50000018e-01, 7.50000018e-01, 7.50000018e-01,
       7.50000395e-01, 7.50000395e-01, 7.50000395e-01, 7.50000395e-01,
       7.50007125e-01, 7.50007125e-01, 7.50007125e-01, 7.50007125e-01,
       7.50101120e-01, 7.50101120e-01, 7.50101120e-01, 7.50101120e-01,
       7.51096094e-01, 7.51096094e-01, 7.51096094e-01, 7.51096094e-01,
       7.58695376e-01, 7.58695376e-01, 7.58695376e-01, 7.58695376e-01,
       7.98253123e-01, 7.98253123e-01, 7.98253123e-01, 7.98253123e-01,
       9.36217768e-01, 9.36217768e-01, 9.36217768e-01, 9.36217768e-01,
       1.17874930e+00, 1.17874930e+00, 1.17874930e+00, 1.17874930e+00,
       1.35926058e+00, 1.35926058e+00, 1.35926058e+00, 1.35926058e+00,
       1.37992227e+00, 1.37992227e+00, 1.37992227e+00, 1.37992227e+00,
       1.31852830e+00, 1.31852830e+00, 1.31852830e+00, 1.31852830e+00,
       1.09147080e+00, 1.09147080e+00, 1.09147080e+00, 1.09147080e+00,
       4.80823248e-01, 4.80823248e-01, 4.80823248e-01, 4.80823248e-01,
       6.29020815e-02, 6.29020815e-02, 6.29020815e-02, 6.29020815e-02,
       4.74941638e-03, 4.74941638e-03, 4.74941638e-03, 4.74941638e-03,
       3.10811782e-04, 3.10811782e-04, 3.10811782e-04, 3.10811782e-04,
       1.81866640e-05, 1.81866640e-05, 1.81866640e-05, 1.81866640e-05,
       9.31308580e-07, 9.31308580e-07, 9.31308580e-07, 9.31308580e-07,
       4.09103671e-08, 4.09103671e-08, 4.09103671e-08, 4.09103671e-08,
       1.51483229e-09, 1.51483229e-09, 1.51483229e-09, 1.51483229e-09,
       4.65132031e-11, 4.65132031e-11, 4.65132031e-11, 4.65132031e-11,
       1.16294442e-12, 1.16294442e-12, 1.16294442e-12, 1.16294442e-12,
       2.31530746e-14, 2.31530746e-14, 2.31530746e-14, 2.31530746e-14,
       3.45133688e-16, 3.45133688e-16, 3.45133688e-16, 3.45133688e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.99999953, 0.99999953, 0.99999953,
       0.99999953, 0.99999157, 0.99999157, 0.99999157, 0.99999157,
       0.99988036, 0.99988036, 0.99988036, 0.99988036, 0.99870367,
       0.99870367, 0.99870367, 0.99870367, 0.98975672, 0.98975672,
       0.98975672, 0.98975672, 0.94447806, 0.94447806, 0.94447806,
       0.94447806, 0.80372375, 0.80372375, 0.80372375, 0.80372375,
       0.58659611, 0.58659611, 0.58659611, 0.58659611, 0.49630691,
       0.49630691, 0.49630691, 0.49630691, 0.47256565, 0.47256565,
       0.47256565, 0.47256565, 0.44649608, 0.44649608, 0.44649608,
       0.44649608, 0.35475085, 0.35475085, 0.35475085, 0.35475085,
       0.18206373, 0.18206373, 0.18206373, 0.18206373, 0.10858619,
       0.10858619, 0.10858619, 0.10858619, 0.10062915, 0.10062915,
       0.10062915, 0.10062915, 0.10004112, 0.10004112, 0.10004112,
       0.10004112, 0.10000241, 0.10000241, 0.10000241, 0.10000241,
       0.10000012, 0.10000012, 0.10000012, 0.10000012, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.99999907, 0.99999907, 0.99999907,
       0.99999907, 0.99998617, 0.99998617, 0.99998617, 0.99998617,
       0.99983554, 0.99983554, 0.99983554, 0.99983554, 0.9984902 ,
       0.9984902 , 0.9984902 , 0.9984902 , 0.9897648 , 0.9897648 ,
       0.9897648 , 0.9897648 , 0.95146278, 0.95146278, 0.95146278,
       0.95146278, 0.84522655, 0.84522655, 0.84522655, 0.84522655,
       0.69592792, 0.69592792, 0.69592792, 0.69592792, 0.60160526,
       0.60160526, 0.60160526, 0.60160526, 0.52681117, 0.52681117,
       0.52681117, 0.52681117, 0.44280683, 0.44280683, 0.44280683,
       0.44280683, 0.3438762 , 0.3438762 , 0.3438762 , 0.3438762 ,
       0.24139758, 0.24139758, 0.24139758, 0.24139758, 0.15433653,
       0.15433653, 0.15433653, 0.15433653, 0.12820419, 0.12820419,
       0.12820419, 0.12820419, 0.12525101, 0.12525101, 0.12525101,
       0.12525101, 0.12501713, 0.12501713, 0.12501713, 0.12501713,
       0.12500106, 0.12500106, 0.12500106, 0.12500106, 0.12500006,
       0.12500006, 0.12500006, 0.12500006, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000060e-01, 7.50000060e-01, 7.50000060e-01, 7.50000060e-01,
       7.50001095e-01, 7.50001095e-01, 7.50001095e-01, 7.50001095e-01,
       7.50016352e-01, 7.50016352e-01, 7.50016352e-01, 7.50016352e-01,
       7.50194298e-01, 7.50194298e-01, 7.50194298e-01, 7.50194298e-01,
       7.51780598e-01, 7.51780598e-01, 7.51780598e-01, 7.51780598e-01,
       7.62062621e-01, 7.62062621e-01, 7.62062621e-01, 7.62062621e-01,
       8.08036385e-01, 8.08036385e-01, 8.08036385e-01, 8.08036385e-01,
       9.48280192e-01, 9.48280192e-01, 9.48280192e-01, 9.48280192e-01,
       1.16919832e+00, 1.16919832e+00, 1.16919832e+00, 1.16919832e+00,
       1.34151992e+00, 1.34151992e+00, 1.34151992e+00, 1.34151992e+00,
       1.38408905e+00, 1.38408905e+00, 1.38408905e+00, 1.38408905e+00,
       1.36212724e+00, 1.36212724e+00, 1.36212724e+00, 1.36212724e+00,
       1.27575638e+00, 1.27575638e+00, 1.27575638e+00, 1.27575638e+00,
       9.46706959e-01, 9.46706959e-01, 9.46706959e-01, 9.46706959e-01,
       2.86961496e-01, 2.86961496e-01, 2.86961496e-01, 2.86961496e-01,
       2.97471236e-02, 2.97471236e-02, 2.97471236e-02, 2.97471236e-02,
       2.18276389e-03, 2.18276389e-03, 2.18276389e-03, 2.18276389e-03,
       1.45981809e-04, 1.45981809e-04, 1.45981809e-04, 1.45981809e-04,
       8.97326097e-06, 8.97326097e-06, 8.97326097e-06, 8.97326097e-06,
       4.95542253e-07, 4.95542253e-07, 4.95542253e-07, 4.95542253e-07,
       2.41369077e-08, 2.41369077e-08, 2.41369077e-08, 2.41369077e-08,
       1.02173681e-09, 1.02173681e-09, 1.02173681e-09, 1.02173681e-09,
       3.71041963e-11, 3.71041963e-11, 3.71041963e-11, 3.71041963e-11,
       1.14134185e-12, 1.14134185e-12, 1.14134185e-12, 1.14134185e-12,
       2.93180081e-14, 2.93180081e-14, 2.93180081e-14, 2.93180081e-14,
       5.89861085e-16, 5.89861085e-16, 5.89861085e-16, 5.89861085e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999993, 0.99999993,
       0.99999993, 0.99999993, 0.9999987 , 0.9999987 , 0.9999987 ,
       0.9999987 , 0.99998065, 0.99998065, 0.99998065, 0.99998065,
       0.99977012, 0.99977012, 0.99977012, 0.99977012, 0.9978949 ,
       0.9978949 , 0.9978949 , 0.9978949 , 0.98581938, 0.98581938,
       0.98581938, 0.98581938, 0.93364034, 0.93364034, 0.93364034,
       0.93364034, 0.79223561, 0.79223561, 0.79223561, 0.79223561,
       0.58787464, 0.58787464, 0.58787464, 0.58787464, 0.49421357,
       0.49421357, 0.49421357, 0.49421357, 0.47736962, 0.47736962,
       0.47736962, 0.47736962, 0.46789435, 0.46789435, 0.46789435,
       0.46789435, 0.42797779, 0.42797779, 0.42797779, 0.42797779,
       0.30606771, 0.30606771, 0.30606771, 0.30606771, 0.14410239,
       0.14410239, 0.14410239, 0.14410239, 0.10398792, 0.10398792,
       0.10398792, 0.10398792, 0.10028892, 0.10028892, 0.10028892,
       0.10028892, 0.10001931, 0.10001931, 0.10001931, 0.10001931,
       0.10000119, 0.10000119, 0.10000119, 0.10000119, 0.10000007,
       0.10000007, 0.10000007, 0.10000007, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999986, 0.99999986,
       0.99999986, 0.99999986, 0.99999778, 0.99999778, 0.99999778,
       0.99999778, 0.99997175, 0.99997175, 0.99997175, 0.99997175,
       0.99971141, 0.99971141, 0.99971141, 0.99971141, 0.99770946,
       0.99770946, 0.99770946, 0.99770946, 0.98648851, 0.98648851,
       0.98648851, 0.98648851, 0.94358959, 0.94358959, 0.94358959,
       0.94358959, 0.83747957, 0.83747957, 0.83747957, 0.83747957,
       0.69607636, 0.69607636, 0.69607636, 0.69607636, 0.61195392,
       0.61195392, 0.61195392, 0.61195392, 0.5520745 , 0.5520745 ,
       0.5520745 , 0.5520745 , 0.48227586, 0.48227586, 0.48227586,
       0.48227586, 0.39628276, 0.39628276, 0.39628276, 0.39628276,
       0.30461516, 0.30461516, 0.30461516, 0.30461516, 0.20942901,
       0.20942901, 0.20942901, 0.20942901, 0.14069158, 0.14069158,
       0.14069158, 0.14069158, 0.12652847, 0.12652847, 0.12652847,
       0.12652847, 0.1251159 , 0.1251159 , 0.1251159 , 0.1251159 ,
       0.12500801, 0.12500801, 0.12500801, 0.12500801, 0.12500051,
       0.12500051, 0.12500051, 0.12500051, 0.12500003, 0.12500003,
       0.12500003, 0.12500003, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000169e-01, 7.50000169e-01, 7.50000169e-01, 7.50000169e-01,
       7.50002624e-01, 7.50002624e-01, 7.50002624e-01, 7.50002624e-01,
       7.50033404e-01, 7.50033404e-01, 7.50033404e-01, 7.50033404e-01,
       7.50341048e-01, 7.50341048e-01, 7.50341048e-01, 7.50341048e-01,
       7.52703614e-01, 7.52703614e-01, 7.52703614e-01, 7.52703614e-01,
       7.65969457e-01, 7.65969457e-01, 7.65969457e-01, 7.65969457e-01,
       8.17910409e-01, 8.17910409e-01, 8.17910409e-01, 8.17910409e-01,
       9.59019483e-01, 9.59019483e-01, 9.59019483e-01, 9.59019483e-01,
       1.16435988e+00, 1.16435988e+00, 1.16435988e+00, 1.16435988e+00,
       1.32431238e+00, 1.32431238e+00, 1.32431238e+00, 1.32431238e+00,
       1.37819363e+00, 1.37819363e+00, 1.37819363e+00, 1.37819363e+00,
       1.37548447e+00, 1.37548447e+00, 1.37548447e+00, 1.37548447e+00,
       1.34495171e+00, 1.34495171e+00, 1.34495171e+00, 1.34495171e+00,
       1.21521933e+00, 1.21521933e+00, 1.21521933e+00, 1.21521933e+00,
       7.56439760e-01, 7.56439760e-01, 7.56439760e-01, 7.56439760e-01,
       1.54532788e-01, 1.54532788e-01, 1.54532788e-01, 1.54532788e-01,
       1.38332523e-02, 1.38332523e-02, 1.38332523e-02, 1.38332523e-02,
       9.98607774e-04, 9.98607774e-04, 9.98607774e-04, 9.98607774e-04,
       6.81041170e-05, 6.81041170e-05, 6.81041170e-05, 6.81041170e-05,
       4.33839800e-06, 4.33839800e-06, 4.33839800e-06, 4.33839800e-06,
       2.53281003e-07, 2.53281003e-07, 2.53281003e-07, 2.53281003e-07,
       1.33255506e-08, 1.33255506e-08, 1.33255506e-08, 1.33255506e-08,
       6.23193675e-10, 6.23193675e-10, 6.23193675e-10, 6.23193675e-10,
       2.56186446e-11, 2.56186446e-11, 2.56186446e-11, 2.56186446e-11,
       9.16383815e-13, 9.16383815e-13, 9.16383815e-13, 9.16383815e-13,
       2.82273423e-14, 2.82273423e-14, 2.82273423e-14, 2.82273423e-14,
       7.11936272e-16, 7.11936272e-16, 7.11936272e-16, 7.11936272e-16,
       9.95777976e-18, 9.95777976e-18, 9.95777976e-18, 9.95777976e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.9999998 , 0.9999998 ,
       0.9999998 , 0.9999998 , 0.9999969 , 0.9999969 , 0.9999969 ,
       0.9999969 , 0.99996048, 0.99996048, 0.99996048, 0.99996048,
       0.99959652, 0.99959652, 0.99959652, 0.99959652, 0.99680533,
       0.99680533, 0.99680533, 0.99680533, 0.98127177, 0.98127177,
       0.98127177, 0.98127177, 0.92282751, 0.92282751, 0.92282751,
       0.92282751, 0.78204719, 0.78204719, 0.78204719, 0.78204719,
       0.59144542, 0.59144542, 0.59144542, 0.59144542, 0.49225455,
       0.49225455, 0.49225455, 0.49225455, 0.47625652, 0.47625652,
       0.47625652, 0.47625652, 0.47479773, 0.47479773, 0.47479773,
       0.47479773, 0.46075469, 0.46075469, 0.46075469, 0.46075469,
       0.4019023 , 0.4019023 , 0.4019023 , 0.4019023 , 0.25005069,
       0.25005069, 0.25005069, 0.25005069, 0.1222868 , 0.1222868 ,
       0.1222868 , 0.1222868 , 0.10183971, 0.10183971, 0.10183971,
       0.10183971, 0.10013213, 0.10013213, 0.10013213, 0.10013213,
       0.10000901, 0.10000901, 0.10000901, 0.10000901, 0.10000057,
       0.10000057, 0.10000057, 0.10000057, 0.10000003, 0.10000003,
       0.10000003, 0.10000003, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999965, 0.99999965,
       0.99999965, 0.99999965, 0.99999524, 0.99999524, 0.99999524,
       0.99999524, 0.99994721, 0.99994721, 0.99994721, 0.99994721,
       0.99952776, 0.99952776, 0.99952776, 0.99952776, 0.99670338,
       0.99670338, 0.99670338, 0.99670338, 0.98280363, 0.98280363,
       0.98280363, 0.98280363, 0.93577386, 0.93577386, 0.93577386,
       0.93577386, 0.83041599, 0.83041599, 0.83041599, 0.83041599,
       0.69625631, 0.69625631, 0.69625631, 0.69625631, 0.61829217,
       0.61829217, 0.61829217, 0.61829217, 0.5699253 , 0.5699253 ,
       0.5699253 , 0.5699253 , 0.51291693, 0.51291693, 0.51291693,
       0.51291693, 0.43877311, 0.43877311, 0.43877311, 0.43877311,
       0.35520766, 0.35520766, 0.35520766, 0.35520766, 0.27305597,
       0.27305597, 0.27305597, 0.27305597, 0.18148452, 0.18148452,
       0.18148452, 0.18148452, 0.13315019, 0.13315019, 0.13315019,
       0.13315019, 0.12571382, 0.12571382, 0.12571382, 0.12571382,
       0.12505333, 0.12505333, 0.12505333, 0.12505333, 0.12500372,
       0.12500372, 0.12500372, 0.12500372, 0.12500024, 0.12500024,
       0.12500024, 0.12500024, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
       7.50000419e-01, 7.50000419e-01, 7.50000419e-01, 7.50000419e-01,
       7.50005630e-01, 7.50005630e-01, 7.50005630e-01, 7.50005630e-01,
       7.50062433e-01, 7.50062433e-01, 7.50062433e-01, 7.50062433e-01,
       7.50558196e-01, 7.50558196e-01, 7.50558196e-01, 7.50558196e-01,
       7.53894015e-01, 7.53894015e-01, 7.53894015e-01, 7.53894015e-01,
       7.70379540e-01, 7.70379540e-01, 7.70379540e-01, 7.70379540e-01,
       8.27772252e-01, 8.27772252e-01, 8.27772252e-01, 8.27772252e-01,
       9.68662085e-01, 9.68662085e-01, 9.68662085e-01, 9.68662085e-01,
       1.16220491e+00, 1.16220491e+00, 1.16220491e+00, 1.16220491e+00,
       1.31086380e+00, 1.31086380e+00, 1.31086380e+00, 1.31086380e+00,
       1.36872585e+00, 1.36872585e+00, 1.36872585e+00, 1.36872585e+00,
       1.37564389e+00, 1.37564389e+00, 1.37564389e+00, 1.37564389e+00,
       1.36763431e+00, 1.36763431e+00, 1.36763431e+00, 1.36763431e+00,
       1.32344547e+00, 1.32344547e+00, 1.32344547e+00, 1.32344547e+00,
       1.12324529e+00, 1.12324529e+00, 1.12324529e+00, 1.12324529e+00,
       5.43452950e-01, 5.43452950e-01, 5.43452950e-01, 5.43452950e-01,
       7.89030941e-02, 7.89030941e-02, 7.89030941e-02, 7.89030941e-02,
       6.32477098e-03, 6.32477098e-03, 6.32477098e-03, 6.32477098e-03,
       4.56774221e-04, 4.56774221e-04, 4.56774221e-04, 4.56774221e-04,
       3.16014322e-05, 3.16014322e-05, 3.16014322e-05, 3.16014322e-05,
       2.06840337e-06, 2.06840337e-06, 2.06840337e-06, 2.06840337e-06,
       1.25987808e-07, 1.25987808e-07, 1.25987808e-07, 1.25987808e-07,
       7.03125054e-09, 7.03125054e-09, 7.03125054e-09, 7.03125054e-09,
       3.55048102e-10, 3.55048102e-10, 3.55048102e-10, 3.55048102e-10,
       1.60552001e-11, 1.60552001e-11, 1.60552001e-11, 1.60552001e-11,
       6.44472443e-13, 6.44472443e-13, 6.44472443e-13, 6.44472443e-13,
       2.27342322e-14, 2.27342322e-14, 2.27342322e-14, 2.27342322e-14,
       6.57996181e-16, 6.57996181e-16, 6.57996181e-16, 6.57996181e-16,
       2.02110955e-17, 2.02110955e-17, 2.02110955e-17, 2.02110955e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.9999995 , 0.9999995 ,
       0.9999995 , 0.9999995 , 0.99999334, 0.99999334, 0.99999334,
       0.99999334, 0.99992613, 0.99992613, 0.99992613, 0.99992613,
       0.9993397 , 0.9993397 , 0.9993397 , 0.9993397 , 0.99540189,
       0.99540189, 0.99540189, 0.99540189, 0.97616471, 0.97616471,
       0.97616471, 0.97616471, 0.91214742, 0.91214742, 0.91214742,
       0.91214742, 0.77293438, 0.77293438, 0.77293438, 0.77293438,
       0.59602991, 0.59602991, 0.59602991, 0.59602991, 0.49258015,
       0.49258015, 0.49258015, 0.49258015, 0.47304087, 0.47304087,
       0.47304087, 0.47304087, 0.47487876, 0.47487876, 0.47487876,
       0.47487876, 0.47229223, 0.47229223, 0.47229223, 0.47229223,
       0.44924829, 0.44924829, 0.44924829, 0.44924829, 0.3670158 ,
       0.3670158 , 0.3670158 , 0.3670158 , 0.1964563 , 0.1964563 ,
       0.1964563 , 0.1964563 , 0.11088441, 0.11088441, 0.11088441,
       0.11088441, 0.10083843, 0.10083843, 0.10083843, 0.10083843,
       0.10006043, 0.10006043, 0.10006043, 0.10006043, 0.10000418,
       0.10000418, 0.10000418, 0.10000418, 0.10000027, 0.10000027,
       0.10000027, 0.10000027, 0.10000002, 0.10000002, 0.10000002,
       0.10000002, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999994,
       0.99999994, 0.99999994, 0.99999994, 0.99999921, 0.99999921,
       0.99999921, 0.99999921, 0.99999063, 0.99999063, 0.99999063,
       0.99999063, 0.99990804, 0.99990804, 0.99990804, 0.99990804,
       0.99926917, 0.99926917, 0.99926917, 0.99926917, 0.99545263,
       0.99545263, 0.99545263, 0.99545263, 0.97875109, 0.97875109,
       0.97875109, 0.97875109, 0.92808061, 0.92808061, 0.92808061,
       0.92808061, 0.82401271, 0.82401271, 0.82401271, 0.82401271,
       0.69646404, 0.69646404, 0.69646404, 0.69646404, 0.62232848,
       0.62232848, 0.62232848, 0.62232848, 0.58232539, 0.58232539,
       0.58232539, 0.58232539, 0.53664687, 0.53664687, 0.53664687,
       0.53664687, 0.47382656, 0.47382656, 0.47382656, 0.47382656,
       0.3966429 , 0.3966429 , 0.3966429 , 0.3966429 , 0.32215049,
       0.32215049, 0.32215049, 0.32215049, 0.24536837, 0.24536837,
       0.24536837, 0.24536837, 0.15939671, 0.15939671, 0.15939671,
       0.15939671, 0.1290282 , 0.1290282 , 0.1290282 , 0.1290282 ,
       0.12533162, 0.12533162, 0.12533162, 0.12533162, 0.12502449,
       0.12502449, 0.12502449, 0.12502449, 0.12500172, 0.12500172,
       0.12500172, 0.12500172, 0.12500012, 0.12500012, 0.12500012,
       0.12500012, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000067e-01, 7.50000067e-01, 7.50000067e-01, 7.50000067e-01,
       7.50000937e-01, 7.50000937e-01, 7.50000937e-01, 7.50000937e-01,
       7.50011082e-01, 7.50011082e-01, 7.50011082e-01, 7.50011082e-01,
       7.50108766e-01, 7.50108766e-01, 7.50108766e-01, 7.50108766e-01,
       7.50863989e-01, 7.50863989e-01, 7.50863989e-01, 7.50863989e-01,
       7.55375416e-01, 7.55375416e-01, 7.55375416e-01, 7.55375416e-01,
       7.75249150e-01, 7.75249150e-01, 7.75249150e-01, 7.75249150e-01,
       8.37539996e-01, 8.37539996e-01, 8.37539996e-01, 8.37539996e-01,
       9.77371489e-01, 9.77371489e-01, 9.77371489e-01, 9.77371489e-01,
       1.16096785e+00, 1.16096785e+00, 1.16096785e+00, 1.16096785e+00,
       1.30163748e+00, 1.30163748e+00, 1.30163748e+00, 1.30163748e+00,
       1.35906515e+00, 1.35906515e+00, 1.35906515e+00, 1.35906515e+00,
       1.37165137e+00, 1.37165137e+00, 1.37165137e+00, 1.37165137e+00,
       1.37159981e+00, 1.37159981e+00, 1.37159981e+00, 1.37159981e+00,
       1.36020817e+00, 1.36020817e+00, 1.36020817e+00, 1.36020817e+00,
       1.28954477e+00, 1.28954477e+00, 1.28954477e+00, 1.28954477e+00,
       9.92965165e-01, 9.92965165e-01, 9.92965165e-01, 9.92965165e-01,
       3.41054294e-01, 3.41054294e-01, 3.41054294e-01, 3.41054294e-01,
       3.78450976e-02, 3.78450976e-02, 3.78450976e-02, 3.78450976e-02,
       2.89520706e-03, 2.89520706e-03, 2.89520706e-03, 2.89520706e-03,
       2.08927779e-04, 2.08927779e-04, 2.08927779e-04, 2.08927779e-04,
       1.46114029e-05, 1.46114029e-05, 1.46114029e-05, 1.46114029e-05,
       9.77146281e-07, 9.77146281e-07, 9.77146281e-07, 9.77146281e-07,
       6.15180946e-08, 6.15180946e-08, 6.15180946e-08, 6.15180946e-08,
       3.59623288e-09, 3.59623288e-09, 3.59623288e-09, 3.59623288e-09,
       1.92933425e-10, 1.92933425e-10, 1.92933425e-10, 1.92933425e-10,
       9.40773578e-12, 9.40773578e-12, 9.40773578e-12, 9.40773578e-12,
       4.13570502e-13, 4.13570502e-13, 4.13570502e-13, 4.13570502e-13,
       1.62288270e-14, 1.62288270e-14, 1.62288270e-14, 1.62288270e-14,
       5.61211316e-16, 5.61211316e-16, 5.61211316e-16, 5.61211316e-16,
       1.04414501e-17, 1.04414501e-17, 1.04414501e-17, 1.04414501e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999992,
       0.99999992, 0.99999992, 0.99999992, 0.99999889, 0.99999889,
       0.99999889, 0.99999889, 0.99998689, 0.99998689, 0.99998689,
       0.99998689, 0.99987131, 0.99987131, 0.99987131, 0.99987131,
       0.99897815, 0.99897815, 0.99897815, 0.99897815, 0.99365816,
       0.99365816, 0.99365816, 0.99365816, 0.9705574 , 0.9705574 ,
       0.9705574 , 0.9705574 , 0.90168105, 0.90168105, 0.90168105,
       0.90168105, 0.76473302, 0.76473302, 0.76473302, 0.76473302,
       0.60049273, 0.60049273, 0.60049273, 0.60049273, 0.49550855,
       0.49550855, 0.49550855, 0.49550855, 0.47006662, 0.47006662,
       0.47006662, 0.47006662, 0.47260804, 0.47260804, 0.47260804,
       0.47260804, 0.47428975, 0.47428975, 0.47428975, 0.47428975,
       0.46714499, 0.46714499, 0.46714499, 0.46714499, 0.43304518,
       0.43304518, 0.43304518, 0.43304518, 0.32159783, 0.32159783,
       0.32159783, 0.32159783, 0.15419082, 0.15419082, 0.15419082,
       0.15419082, 0.1050973 , 0.1050973 , 0.1050973 , 0.1050973 ,
       0.10038332, 0.10038332, 0.10038332, 0.10038332, 0.10002764,
       0.10002764, 0.10002764, 0.10002764, 0.10000193, 0.10000193,
       0.10000193, 0.10000193, 0.10000013, 0.10000013, 0.10000013,
       0.10000013, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
       0.99999987, 0.99999987, 0.99999987, 0.99999837, 0.99999837,
       0.99999837, 0.99999837, 0.9999828 , 0.9999828 , 0.9999828 ,
       0.9999828 , 0.99984871, 0.99984871, 0.99984871, 0.99984871,
       0.99891955, 0.99891955, 0.99891955, 0.99891955, 0.99394315,
       0.99394315, 0.99394315, 0.99394315, 0.97437567, 0.97437567,
       0.97437567, 0.97437567, 0.92055976, 0.92055976, 0.92055976,
       0.92055976, 0.81822558, 0.81822558, 0.81822558, 0.81822558,
       0.69670438, 0.69670438, 0.69670438, 0.69670438, 0.62488661,
       0.62488661, 0.62488661, 0.62488661, 0.59118008, 0.59118008,
       0.59118008, 0.59118008, 0.5544861 , 0.5544861 , 0.5544861 ,
       0.5544861 , 0.50269605, 0.50269605, 0.50269605, 0.50269605,
       0.4331649 , 0.4331649 , 0.4331649 , 0.4331649 , 0.36021979,
       0.36021979, 0.36021979, 0.36021979, 0.29637809, 0.29637809,
       0.29637809, 0.29637809, 0.21820395, 0.21820395, 0.21820395,
       0.21820395, 0.14411847, 0.14411847, 0.14411847, 0.14411847,
       0.126943  , 0.126943  , 0.126943  , 0.126943  , 0.12515306,
       0.12515306, 0.12515306, 0.12515306, 0.12501123, 0.12501123,
       0.12501123, 0.12501123, 0.1250008 , 0.1250008 , 0.1250008 ,
       0.1250008 , 0.12500005, 0.12500005, 0.12500005, 0.12500005,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
       7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
       7.50001925e-01, 7.50001925e-01, 7.50001925e-01, 7.50001925e-01,
       7.50020345e-01, 7.50020345e-01, 7.50020345e-01, 7.50020345e-01,
       7.50178950e-01, 7.50178950e-01, 7.50178950e-01, 7.50178950e-01,
       7.51277500e-01, 7.51277500e-01, 7.51277500e-01, 7.51277500e-01,
       7.57165560e-01, 7.57165560e-01, 7.57165560e-01, 7.57165560e-01,
       7.80529643e-01, 7.80529643e-01, 7.80529643e-01, 7.80529643e-01,
       8.47148531e-01, 8.47148531e-01, 8.47148531e-01, 8.47148531e-01,
       9.85270426e-01, 9.85270426e-01, 9.85270426e-01, 9.85270426e-01,
       1.15957712e+00, 1.15957712e+00, 1.15957712e+00, 1.15957712e+00,
       1.29566032e+00, 1.29566032e+00, 1.29566032e+00, 1.29566032e+00,
       1.35118587e+00, 1.35118587e+00, 1.35118587e+00, 1.35118587e+00,
       1.36601672e+00, 1.36601672e+00, 1.36601672e+00, 1.36601672e+00,
       1.36997305e+00, 1.36997305e+00, 1.36997305e+00, 1.36997305e+00,
       1.36942484e+00, 1.36942484e+00, 1.36942484e+00, 1.36942484e+00,
       1.34862905e+00, 1.34862905e+00, 1.34862905e+00, 1.34862905e+00,
       1.23673227e+00, 1.23673227e+00, 1.23673227e+00, 1.23673227e+00,
       8.18685529e-01, 8.18685529e-01, 8.18685529e-01, 8.18685529e-01,
       1.89365930e-01, 1.89365930e-01, 1.89365930e-01, 1.89365930e-01,
       1.77483277e-02, 1.77483277e-02, 1.77483277e-02, 1.77483277e-02,
       1.32231275e-03, 1.32231275e-03, 1.32231275e-03, 1.32231275e-03,
       9.55485885e-05, 9.55485885e-05, 9.55485885e-05, 9.55485885e-05,
       6.74007898e-06, 6.74007898e-06, 6.74007898e-06, 6.74007898e-06,
       4.58238639e-07, 4.58238639e-07, 4.58238639e-07, 4.58238639e-07,
       2.96179808e-08, 2.96179808e-08, 2.96179808e-08, 2.96179808e-08,
       1.79683460e-09, 1.79683460e-09, 1.79683460e-09, 1.79683460e-09,
       1.01205791e-10, 1.01205791e-10, 1.01205791e-10, 1.01205791e-10,
       5.24439143e-12, 5.24439143e-12, 5.24439143e-12, 5.24439143e-12,
       2.48169579e-13, 2.48169579e-13, 2.48169579e-13, 2.48169579e-13,
       1.06030558e-14, 1.06030558e-14, 1.06030558e-14, 1.06030558e-14,
       3.88917738e-16, 3.88917738e-16, 3.88917738e-16, 3.88917738e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999982,
       0.99999982, 0.99999982, 0.99999982, 0.99999772, 0.99999772,
       0.99999772, 0.99999772, 0.99997593, 0.99997593, 0.99997593,
       0.99997593, 0.99978828, 0.99978828, 0.99978828, 0.99978828,
       0.99848943, 0.99848943, 0.99848943, 0.99848943, 0.99155515,
       0.99155515, 0.99155515, 0.99155515, 0.964514  , 0.964514  ,
       0.964514  , 0.964514  , 0.89148856, 0.89148856, 0.89148856,
       0.89148856, 0.75731665, 0.75731665, 0.75731665, 0.75731665,
       0.6041739 , 0.6041739 , 0.6041739 , 0.6041739 , 0.50038286,
       0.50038286, 0.50038286, 0.50038286, 0.46850918, 0.46850918,
       0.46850918, 0.46850918, 0.46942557, 0.46942557, 0.46942557,
       0.46942557, 0.47328763, 0.47328763, 0.47328763, 0.47328763,
       0.47194986, 0.47194986, 0.47194986, 0.47194986, 0.46019101,
       0.46019101, 0.46019101, 0.46019101, 0.41012287, 0.41012287,
       0.41012287, 0.41012287, 0.26737713, 0.26737713, 0.26737713,
       0.26737713, 0.12780983, 0.12780983, 0.12780983, 0.12780983,
       0.1023651 , 0.1023651 , 0.1023651 , 0.1023651 , 0.10017499,
       0.10017499, 0.10017499, 0.10017499, 0.10001264, 0.10001264,
       0.10001264, 0.10001264, 0.10000089, 0.10000089, 0.10000089,
       0.10000089, 0.10000006, 0.10000006, 0.10000006, 0.10000006,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999972,
       0.99999972, 0.99999972, 0.99999972, 0.99999688, 0.99999688,
       0.99999688, 0.99999688, 0.99997019, 0.99997019, 0.99997019,
       0.99997019, 0.99976264, 0.99976264, 0.99976264, 0.99976264,
       0.99846262, 0.99846262, 0.99846262, 0.99846262, 0.9921662 ,
       0.9921662 , 0.9921662 , 0.9921662 , 0.96972408, 0.96972408,
       0.96972408, 0.96972408, 0.91324871, 0.91324871, 0.91324871,
       0.91324871, 0.81299809, 0.81299809, 0.81299809, 0.81299809,
       0.69707716, 0.69707716, 0.69707716, 0.69707716, 0.6262992 ,
       0.6262992 , 0.6262992 , 0.6262992 , 0.59760474, 0.59760474,
       0.59760474, 0.59760474, 0.56779664, 0.56779664, 0.56779664,
       0.56779664, 0.52592744, 0.52592744, 0.52592744, 0.52592744,
       0.46563753, 0.46563753, 0.46563753, 0.46563753, 0.39326426,
       0.39326426, 0.39326426, 0.39326426, 0.33284785, 0.33284785,
       0.33284785, 0.33284785, 0.27504145, 0.27504145, 0.27504145,
       0.27504145, 0.19106843, 0.19106843, 0.19106843, 0.19106843,
       0.13511522, 0.13511522, 0.13511522, 0.13511522, 0.12591513,
       0.12591513, 0.12591513, 0.12591513, 0.12507031, 0.12507031,
       0.12507031, 0.12507031, 0.12500515, 0.12500515, 0.12500515,
       0.12500515, 0.12500037, 0.12500037, 0.12500037, 0.12500037,
       0.12500003, 0.12500003, 0.12500003, 0.12500003, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000329e-01, 7.50000329e-01, 7.50000329e-01, 7.50000329e-01,
       7.50003695e-01, 7.50003695e-01, 7.50003695e-01, 7.50003695e-01,
       7.50035264e-01, 7.50035264e-01, 7.50035264e-01, 7.50035264e-01,
       7.50280759e-01, 7.50280759e-01, 7.50280759e-01, 7.50280759e-01,
       7.51818086e-01, 7.51818086e-01, 7.51818086e-01, 7.51818086e-01,
       7.59276172e-01, 7.59276172e-01, 7.59276172e-01, 7.59276172e-01,
       7.86169462e-01, 7.86169462e-01, 7.86169462e-01, 7.86169462e-01,
       8.56546408e-01, 8.56546408e-01, 8.56546408e-01, 8.56546408e-01,
       9.92456196e-01, 9.92456196e-01, 9.92456196e-01, 9.92456196e-01,
       1.15763323e+00, 1.15763323e+00, 1.15763323e+00, 1.15763323e+00,
       1.29146040e+00, 1.29146040e+00, 1.29146040e+00, 1.29146040e+00,
       1.34573538e+00, 1.34573538e+00, 1.34573538e+00, 1.34573538e+00,
       1.36098136e+00, 1.36098136e+00, 1.36098136e+00, 1.36098136e+00,
       1.36604284e+00, 1.36604284e+00, 1.36604284e+00, 1.36604284e+00,
       1.36966028e+00, 1.36966028e+00, 1.36966028e+00, 1.36966028e+00,
       1.36622633e+00, 1.36622633e+00, 1.36622633e+00, 1.36622633e+00,
       1.32998311e+00, 1.32998311e+00, 1.32998311e+00, 1.32998311e+00,
       1.15597656e+00, 1.15597656e+00, 1.15597656e+00, 1.15597656e+00,
       6.12942776e-01, 6.12942776e-01, 6.12942776e-01, 6.12942776e-01,
       9.84564756e-02, 9.84564756e-02, 9.84564756e-02, 9.84564756e-02,
       8.15622587e-03, 8.15622587e-03, 8.15622587e-03, 8.15622587e-03,
       6.03159348e-04, 6.03159348e-04, 6.03159348e-04, 6.03159348e-04,
       4.37065832e-05, 4.37065832e-05, 4.37065832e-05, 4.37065832e-05,
       3.10316624e-06, 3.10316624e-06, 3.10316624e-06, 3.10316624e-06,
       2.13754454e-07, 2.13754454e-07, 2.13754454e-07, 2.13754454e-07,
       1.41094631e-08, 1.41094631e-08, 1.41094631e-08, 1.41094631e-08,
       8.82092666e-10, 8.82092666e-10, 8.82092666e-10, 8.82092666e-10,
       5.16973157e-11, 5.16973157e-11, 5.16973157e-11, 5.16973157e-11,
       2.81588859e-12, 2.81588859e-12, 2.81588859e-12, 2.81588859e-12,
       1.41485550e-13, 1.41485550e-13, 1.41485550e-13, 1.41485550e-13,
       6.51607025e-15, 6.51607025e-15, 6.51607025e-15, 6.51607025e-15,
       2.40152978e-16, 2.40152978e-16, 2.40152978e-16, 2.40152978e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999961,
       0.99999961, 0.99999961, 0.99999961, 0.99999563, 0.99999563,
       0.99999563, 0.99999563, 0.99995828, 0.99995828, 0.99995828,
       0.99995828, 0.99966785, 0.99966785, 0.99966785, 0.99966785,
       0.99785087, 0.99785087, 0.99785087, 0.99785087, 0.98908149,
       0.98908149, 0.98908149, 0.98908149, 0.9581009 , 0.9581009 ,
       0.9581009 , 0.9581009 , 0.88161392, 0.88161392, 0.88161392,
       0.88161392, 0.75058451, 0.75058451, 0.75058451, 0.75058451,
       0.60688233, 0.60688233, 0.60688233, 0.60688233, 0.50620558,
       0.50620558, 0.50620558, 0.50620558, 0.46870616, 0.46870616,
       0.46870616, 0.46870616, 0.46692176, 0.46692176, 0.46692176,
       0.46692176, 0.47084207, 0.47084207, 0.47084207, 0.47084207,
       0.47212989, 0.47212989, 0.47212989, 0.47212989, 0.46881527,
       0.46881527, 0.46881527, 0.46881527, 0.45065004, 0.45065004,
       0.45065004, 0.45065004, 0.37876151, 0.37876151, 0.37876151,
       0.37876151, 0.21224192, 0.21224192, 0.21224192, 0.21224192,
       0.11373333, 0.11373333, 0.11373333, 0.11373333, 0.10108205,
       0.10108205, 0.10108205, 0.10108205, 0.1000798 , 0.1000798 ,
       0.1000798 , 0.1000798 , 0.10000578, 0.10000578, 0.10000578,
       0.10000578, 0.10000041, 0.10000041, 0.10000041, 0.10000041,
       0.10000003, 0.10000003, 0.10000003, 0.10000003, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999945,
       0.99999945, 0.99999945, 0.99999945, 0.99999434, 0.99999434,
       0.99999434, 0.99999434, 0.99995077, 0.99995077, 0.99995077,
       0.99995077, 0.99964227, 0.99964227, 0.99964227, 0.99964227,
       0.99788241, 0.99788241, 0.99788241, 0.99788241, 0.99011845,
       0.99011845, 0.99011845, 0.99011845, 0.96484327, 0.96484327,
       0.96484327, 0.96484327, 0.90617454, 0.90617454, 0.90617454,
       0.90617454, 0.80826973, 0.80826973, 0.80826973, 0.80826973,
       0.69774371, 0.69774371, 0.69774371, 0.69774371, 0.62678051,
       0.62678051, 0.62678051, 0.62678051, 0.60206381, 0.60206381,
       0.60206381, 0.60206381, 0.57792713, 0.57792713, 0.57792713,
       0.57792713, 0.54425972, 0.54425972, 0.54425972, 0.54425972,
       0.49346931, 0.49346931, 0.49346931, 0.49346931, 0.42544549,
       0.42544549, 0.42544549, 0.42544549, 0.36171435, 0.36171435,
       0.36171435, 0.36171435, 0.31197099, 0.31197099, 0.31197099,
       0.31197099, 0.25437815, 0.25437815, 0.25437815, 0.25437815,
       0.16685114, 0.16685114, 0.16685114, 0.16685114, 0.13005985,
       0.13005985, 0.13005985, 0.13005985, 0.1254259 , 0.1254259 ,
       0.1254259 , 0.1254259 , 0.12503221, 0.12503221, 0.12503221,
       0.12503221, 0.12500236, 0.12500236, 0.12500236, 0.12500236,
       0.12500017, 0.12500017, 0.12500017, 0.12500017, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000056e-01, 7.50000056e-01, 7.50000056e-01, 7.50000056e-01,
       7.50000657e-01, 7.50000657e-01, 7.50000657e-01, 7.50000657e-01,
       7.50006699e-01, 7.50006699e-01, 7.50006699e-01, 7.50006699e-01,
       7.50058238e-01, 7.50058238e-01, 7.50058238e-01, 7.50058238e-01,
       7.50423153e-01, 7.50423153e-01, 7.50423153e-01, 7.50423153e-01,
       7.52504789e-01, 7.52504789e-01, 7.52504789e-01, 7.52504789e-01,
       7.61712941e-01, 7.61712941e-01, 7.61712941e-01, 7.61712941e-01,
       7.92115818e-01, 7.92115818e-01, 7.92115818e-01, 7.92115818e-01,
       8.65693722e-01, 8.65693722e-01, 8.65693722e-01, 8.65693722e-01,
       9.99009811e-01, 9.99009811e-01, 9.99009811e-01, 9.99009811e-01,
       1.15520654e+00, 1.15520654e+00, 1.15520654e+00, 1.15520654e+00,
       1.28768450e+00, 1.28768450e+00, 1.28768450e+00, 1.28768450e+00,
       1.34268320e+00, 1.34268320e+00, 1.34268320e+00, 1.34268320e+00,
       1.35715119e+00, 1.35715119e+00, 1.35715119e+00, 1.35715119e+00,
       1.36145245e+00, 1.36145245e+00, 1.36145245e+00, 1.36145245e+00,
       1.36744320e+00, 1.36744320e+00, 1.36744320e+00, 1.36744320e+00,
       1.36938027e+00, 1.36938027e+00, 1.36938027e+00, 1.36938027e+00,
       1.36032906e+00, 1.36032906e+00, 1.36032906e+00, 1.36032906e+00,
       1.30083630e+00, 1.30083630e+00, 1.30083630e+00, 1.30083630e+00,
       1.03904720e+00, 1.03904720e+00, 1.03904720e+00, 1.03904720e+00,
       4.03867617e-01, 4.03867617e-01, 4.03867617e-01, 4.03867617e-01,
       4.78324169e-02, 4.78324169e-02, 4.78324169e-02, 4.78324169e-02,
       3.73133151e-03, 3.73133151e-03, 3.73133151e-03, 3.73133151e-03,
       2.75051151e-04, 2.75051151e-04, 2.75051151e-04, 2.75051151e-04,
       1.99786506e-05, 1.99786506e-05, 1.99786506e-05, 1.99786506e-05,
       1.42705014e-06, 1.42705014e-06, 1.42705014e-06, 1.42705014e-06,
       9.93370281e-08, 9.93370281e-08, 9.93370281e-08, 9.93370281e-08,
       6.66943143e-09, 6.66943143e-09, 6.66943143e-09, 6.66943143e-09,
       4.27344831e-10, 4.27344831e-10, 4.27344831e-10, 4.27344831e-10,
       2.58814547e-11, 2.58814547e-11, 2.58814547e-11, 2.58814547e-11,
       1.46936578e-12, 1.46936578e-12, 1.46936578e-12, 1.46936578e-12,
       7.76106587e-14, 7.76106587e-14, 7.76106587e-14, 7.76106587e-14,
       3.75314846e-15, 3.75314846e-15, 3.75314846e-15, 3.75314846e-15,
       1.59879132e-16, 1.59879132e-16, 1.59879132e-16, 1.59879132e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999922,
       0.99999922, 0.99999922, 0.99999922, 0.99999207, 0.99999207,
       0.99999207, 0.99999207, 0.99993109, 0.99993109, 0.99993109,
       0.99993109, 0.99949942, 0.99949942, 0.99949942, 0.99949942,
       0.9970403 , 0.9970403 , 0.9970403 , 0.9970403 , 0.98623335,
       0.98623335, 0.98623335, 0.98623335, 0.95138454, 0.95138454,
       0.95138454, 0.95138454, 0.87208823, 0.87208823, 0.87208823,
       0.87208823, 0.74445435, 0.74445435, 0.74445435, 0.74445435,
       0.60875561, 0.60875561, 0.60875561, 0.60875561, 0.51204856,
       0.51204856, 0.51204856, 0.51204856, 0.47069723, 0.47069723,
       0.47069723, 0.47069723, 0.46531969, 0.46531969, 0.46531969,
       0.46531969, 0.46797682, 0.46797682, 0.46797682, 0.46797682,
       0.47094798, 0.47094798, 0.47094798, 0.47094798, 0.47050583,
       0.47050583, 0.47050583, 0.47050583, 0.4648433 , 0.4648433 ,
       0.4648433 , 0.4648433 , 0.43679273, 0.43679273, 0.43679273,
       0.43679273, 0.33696764, 0.33696764, 0.33696764, 0.33696764,
       0.16596212, 0.16596212, 0.16596212, 0.16596212, 0.10647712,
       0.10647712, 0.10647712, 0.10647712, 0.10049417, 0.10049417,
       0.10049417, 0.10049417, 0.10003639, 0.10003639, 0.10003639,
       0.10003639, 0.10000264, 0.10000264, 0.10000264, 0.10000264,
       0.10000019, 0.10000019, 0.10000019, 0.10000019, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999895,
       0.99999895, 0.99999895, 0.99999895, 0.99999022, 0.99999022,
       0.99999022, 0.99999022, 0.99992199, 0.99992199, 0.99992199,
       0.99992199, 0.99947912, 0.99947912, 0.99947912, 0.99947912,
       0.99716379, 0.99716379, 0.99716379, 0.99716379, 0.98780171,
       0.98780171, 0.98780171, 0.98780171, 0.95977919, 0.95977919,
       0.95977919, 0.95977919, 0.899356  , 0.899356  , 0.899356  ,
       0.899356  , 0.80398103, 0.80398103, 0.80398103, 0.80398103,
       0.69885064, 0.69885064, 0.69885064, 0.69885064, 0.62663048,
       0.62663048, 0.62663048, 0.62663048, 0.60456203, 0.60456203,
       0.60456203, 0.60456203, 0.58574218, 0.58574218, 0.58574218,
       0.58574218, 0.55889671, 0.55889671, 0.55889671, 0.55889671,
       0.51652074, 0.51652074, 0.51652074, 0.51652074, 0.45677399,
       0.45677399, 0.45677399, 0.45677399, 0.38843992, 0.38843992,
       0.38843992, 0.38843992, 0.33857154, 0.33857154, 0.33857154,
       0.33857154, 0.2958245 , 0.2958245 , 0.2958245 , 0.2958245 ,
       0.23037144, 0.23037144, 0.23037144, 0.23037144, 0.14866712,
       0.14866712, 0.14866712, 0.14866712, 0.12746378, 0.12746378,
       0.12746378, 0.12746378, 0.12519715, 0.12519715, 0.12519715,
       0.12519715, 0.12501472, 0.12501472, 0.12501472, 0.12501472,
       0.12500108, 0.12500108, 0.12500108, 0.12500108, 0.12500008,
       0.12500008, 0.12500008, 0.12500008, 0.12500001, 0.12500001,
       0.12500001, 0.12500001, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000115e-01, 7.50000115e-01, 7.50000115e-01, 7.50000115e-01,
       7.50001238e-01, 7.50001238e-01, 7.50001238e-01, 7.50001238e-01,
       7.50011569e-01, 7.50011569e-01, 7.50011569e-01, 7.50011569e-01,
       7.50092289e-01, 7.50092289e-01, 7.50092289e-01, 7.50092289e-01,
       7.50616160e-01, 7.50616160e-01, 7.50616160e-01, 7.50616160e-01,
       7.53355737e-01, 7.53355737e-01, 7.53355737e-01, 7.53355737e-01,
       7.64475707e-01, 7.64475707e-01, 7.64475707e-01, 7.64475707e-01,
       7.98316114e-01, 7.98316114e-01, 7.98316114e-01, 7.98316114e-01,
       8.74560291e-01, 8.74560291e-01, 8.74560291e-01, 8.74560291e-01,
       1.00500047e+00, 1.00500047e+00, 1.00500047e+00, 1.00500047e+00,
       1.15260232e+00, 1.15260232e+00, 1.15260232e+00, 1.15260232e+00,
       1.28340256e+00, 1.28340256e+00, 1.28340256e+00, 1.28340256e+00,
       1.34114330e+00, 1.34114330e+00, 1.34114330e+00, 1.34114330e+00,
       1.35501138e+00, 1.35501138e+00, 1.35501138e+00, 1.35501138e+00,
       1.35810478e+00, 1.35810478e+00, 1.35810478e+00, 1.35810478e+00,
       1.36336774e+00, 1.36336774e+00, 1.36336774e+00, 1.36336774e+00,
       1.36847879e+00, 1.36847879e+00, 1.36847879e+00, 1.36847879e+00,
       1.36811377e+00, 1.36811377e+00, 1.36811377e+00, 1.36811377e+00,
       1.35072599e+00, 1.35072599e+00, 1.35072599e+00, 1.35072599e+00,
       1.25426560e+00, 1.25426560e+00, 1.25426560e+00, 1.25426560e+00,
       8.79763139e-01, 8.79763139e-01, 8.79763139e-01, 8.79763139e-01,
       2.32057473e-01, 2.32057473e-01, 2.32057473e-01, 2.32057473e-01,
       2.26258785e-02, 2.26258785e-02, 2.26258785e-02, 2.26258785e-02,
       1.70706147e-03, 1.70706147e-03, 1.70706147e-03, 1.70706147e-03,
       1.25313284e-04, 1.25313284e-04, 1.25313284e-04, 1.25313284e-04,
       9.12735833e-06, 9.12735833e-06, 9.12735833e-06, 9.12735833e-06,
       6.55213907e-07, 6.55213907e-07, 6.55213907e-07, 6.55213907e-07,
       4.60110799e-08, 4.60110799e-08, 4.60110799e-08, 4.60110799e-08,
       3.13257583e-09, 3.13257583e-09, 3.13257583e-09, 3.13257583e-09,
       2.04833966e-10, 2.04833966e-10, 2.04833966e-10, 2.04833966e-10,
       1.27491473e-11, 1.27491473e-11, 1.27491473e-11, 1.27491473e-11,
       7.49384168e-13, 7.49384168e-13, 7.49384168e-13, 7.49384168e-13,
       4.12715433e-14, 4.12715433e-14, 4.12715433e-14, 4.12715433e-14,
       2.08438071e-15, 2.08438071e-15, 2.08438071e-15, 2.08438071e-15,
       6.95966513e-17, 6.95966513e-17, 6.95966513e-17, 6.95966513e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999854,
       0.99999854, 0.99999854, 0.99999854, 0.99998631, 0.99998631,
       0.99998631, 0.99998631, 0.99989081, 0.99989081, 0.99989081,
       0.99989081, 0.99927118, 0.99927118, 0.99927118, 0.99927118,
       0.99603677, 0.99603677, 0.99603677, 0.99603677, 0.98301421,
       0.98301421, 0.98301421, 0.98301421, 0.94442958, 0.94442958,
       0.94442958, 0.94442958, 0.86293221, 0.86293221, 0.86293221,
       0.86293221, 0.73885742, 0.73885742, 0.73885742, 0.73885742,
       0.61009357, 0.61009357, 0.61009357, 0.61009357, 0.51726091,
       0.51726091, 0.51726091, 0.51726091, 0.47391825, 0.47391825,
       0.47391825, 0.47391825, 0.46487842, 0.46487842, 0.46487842,
       0.46487842, 0.46589916, 0.46589916, 0.46589916, 0.46589916,
       0.46870505, 0.46870505, 0.46870505, 0.46870505, 0.47008932,
       0.47008932, 0.47008932, 0.47008932, 0.4686757 , 0.4686757 ,
       0.4686757 , 0.4686757 , 0.45927249, 0.45927249, 0.45927249,
       0.45927249, 0.41693776, 0.41693776, 0.41693776, 0.41693776,
       0.28500491, 0.28500491, 0.28500491, 0.28500491, 0.13470714,
       0.13470714, 0.13470714, 0.13470714, 0.10302215, 0.10302215,
       0.10302215, 0.10302215, 0.10022593, 0.10022593, 0.10022593,
       0.10022593, 0.10001658, 0.10001658, 0.10001658, 0.10001658,
       0.10000121, 0.10000121, 0.10000121, 0.10000121, 0.10000009,
       0.10000009, 0.10000009, 0.10000009, 0.10000001, 0.10000001,
       0.10000001, 0.10000001, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999981, 0.99999981, 0.99999981, 0.99999981, 0.99999812,
       0.99999812, 0.99999812, 0.99999812, 0.99998381, 0.99998381,
       0.99998381, 0.99998381, 0.99988072, 0.99988072, 0.99988072,
       0.99988072, 0.99926394, 0.99926394, 0.99926394, 0.99926394,
       0.99629293, 0.99629293, 0.99629293, 0.99629293, 0.98522251,
       0.98522251, 0.98522251, 0.98522251, 0.95457584, 0.95457584,
       0.95457584, 0.95457584, 0.89280503, 0.89280503, 0.89280503,
       0.89280503, 0.80007672, 0.80007672, 0.80007672, 0.80007672,
       0.70045666, 0.70045666, 0.70045666, 0.70045666, 0.62631673,
       0.62631673, 0.62631673, 0.62631673, 0.60514204, 0.60514204,
       0.60514204, 0.60514204, 0.59141774, 0.59141774, 0.59141774,
       0.59141774, 0.57060546, 0.57060546, 0.57060546, 0.57060546,
       0.53581477, 0.53581477, 0.53581477, 0.53581477, 0.48414835,
       0.48414835, 0.48414835, 0.48414835, 0.41731063, 0.41731063,
       0.41731063, 0.41731063, 0.36078704, 0.36078704, 0.36078704,
       0.36078704, 0.32184882, 0.32184882, 0.32184882, 0.32184882,
       0.28122767, 0.28122767, 0.28122767, 0.28122767, 0.20285998,
       0.20285998, 0.20285998, 0.20285998, 0.13769277, 0.13769277,
       0.13769277, 0.13769277, 0.12617394, 0.12617394, 0.12617394,
       0.12617394, 0.12509074, 0.12509074, 0.12509074, 0.12509074,
       0.12500673, 0.12500673, 0.12500673, 0.12500673, 0.12500049,
       0.12500049, 0.12500049, 0.12500049, 0.12500004, 0.12500004,
       0.12500004, 0.12500004, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000020e-01, 7.50000020e-01, 7.50000020e-01, 7.50000020e-01,
       7.50000224e-01, 7.50000224e-01, 7.50000224e-01, 7.50000224e-01,
       7.50002223e-01, 7.50002223e-01, 7.50002223e-01, 7.50002223e-01,
       7.50019160e-01, 7.50019160e-01, 7.50019160e-01, 7.50019160e-01,
       7.50141119e-01, 7.50141119e-01, 7.50141119e-01, 7.50141119e-01,
       7.50870743e-01, 7.50870743e-01, 7.50870743e-01, 7.50870743e-01,
       7.54387642e-01, 7.54387642e-01, 7.54387642e-01, 7.54387642e-01,
       7.67558867e-01, 7.67558867e-01, 7.67558867e-01, 7.67558867e-01,
       8.04718986e-01, 8.04718986e-01, 8.04718986e-01, 8.04718986e-01,
       8.83124089e-01, 8.83124089e-01, 8.83124089e-01, 8.83124089e-01,
       1.01048782e+00, 1.01048782e+00, 1.01048782e+00, 1.01048782e+00,
       1.15015373e+00, 1.15015373e+00, 1.15015373e+00, 1.15015373e+00,
       1.27828995e+00, 1.27828995e+00, 1.27828995e+00, 1.27828995e+00,
       1.33996420e+00, 1.33996420e+00, 1.33996420e+00, 1.33996420e+00,
       1.35434258e+00, 1.35434258e+00, 1.35434258e+00, 1.35434258e+00,
       1.35651250e+00, 1.35651250e+00, 1.35651250e+00, 1.35651250e+00,
       1.35943170e+00, 1.35943170e+00, 1.35943170e+00, 1.35943170e+00,
       1.36562928e+00, 1.36562928e+00, 1.36562928e+00, 1.36562928e+00,
       1.36871828e+00, 1.36871828e+00, 1.36871828e+00, 1.36871828e+00,
       1.36559918e+00, 1.36559918e+00, 1.36559918e+00, 1.36559918e+00,
       1.33410068e+00, 1.33410068e+00, 1.33410068e+00, 1.33410068e+00,
       1.18316118e+00, 1.18316118e+00, 1.18316118e+00, 1.18316118e+00,
       6.83501416e-01, 6.83501416e-01, 6.83501416e-01, 6.83501416e-01,
       1.23082855e-01, 1.23082855e-01, 1.23082855e-01, 1.23082855e-01,
       1.05135867e-02, 1.05135867e-02, 1.05135867e-02, 1.05135867e-02,
       7.79480203e-04, 7.79480203e-04, 7.79480203e-04, 7.79480203e-04,
       5.71875744e-05, 5.71875744e-05, 5.71875744e-05, 5.71875744e-05,
       4.16908647e-06, 4.16908647e-06, 4.16908647e-06, 4.16908647e-06,
       3.00491897e-07, 3.00491897e-07, 3.00491897e-07, 3.00491897e-07,
       2.12578537e-08, 2.12578537e-08, 2.12578537e-08, 2.12578537e-08,
       1.46423018e-09, 1.46423018e-09, 1.46423018e-09, 1.46423018e-09,
       9.73781859e-11, 9.73781859e-11, 9.73781859e-11, 9.73781859e-11,
       6.20162096e-12, 6.20162096e-12, 6.20162096e-12, 6.20162096e-12,
       3.75332869e-13, 3.75332869e-13, 3.75332869e-13, 3.75332869e-13,
       2.14560454e-14, 2.14560454e-14, 2.14560454e-14, 2.14560454e-14,
       1.07221018e-15, 1.07221018e-15, 1.07221018e-15, 1.07221018e-15,
       3.44235441e-17, 3.44235441e-17, 3.44235441e-17, 3.44235441e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999737,
       0.99999737, 0.99999737, 0.99999737, 0.99997733, 0.99997733,
       0.99997733, 0.99997733, 0.99983304, 0.99983304, 0.99983304,
       0.99983304, 0.9989702 , 0.9989702 , 0.9989702 , 0.9989702 ,
       0.99482119, 0.99482119, 0.99482119, 0.99482119, 0.97943416,
       0.97943416, 0.97943416, 0.97943416, 0.93729763, 0.93729763,
       0.93729763, 0.93729763, 0.85415822, 0.85415822, 0.85415822,
       0.85415822, 0.73373529, 0.73373529, 0.73373529, 0.73373529,
       0.6112099 , 0.6112099 , 0.6112099 , 0.6112099 , 0.52160141,
       0.52160141, 0.52160141, 0.52160141, 0.47759878, 0.47759878,
       0.47759878, 0.47759878, 0.465481  , 0.465481  , 0.465481  ,
       0.465481  , 0.46501776, 0.46501776, 0.46501776, 0.46501776,
       0.46641955, 0.46641955, 0.46641955, 0.46641955, 0.46863112,
       0.46863112, 0.46863112, 0.46863112, 0.46903125, 0.46903125,
       0.46903125, 0.46903125, 0.466292  , 0.466292  , 0.466292  ,
       0.466292  , 0.45159727, 0.45159727, 0.45159727, 0.45159727,
       0.38874303, 0.38874303, 0.38874303, 0.38874303, 0.22928284,
       0.22928284, 0.22928284, 0.22928284, 0.11739066, 0.11739066,
       0.11739066, 0.11739066, 0.10139613, 0.10139613, 0.10139613,
       0.10139613, 0.10010314, 0.10010314, 0.10010314, 0.10010314,
       0.10000757, 0.10000757, 0.10000757, 0.10000757, 0.10000055,
       0.10000055, 0.10000055, 0.10000055, 0.10000004, 0.10000004,
       0.10000004, 0.10000004, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
       0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999676,
       0.99999676, 0.99999676, 0.99999676, 0.99997414, 0.99997414,
       0.99997414, 0.99997414, 0.99982322, 0.99982322, 0.99982322,
       0.99982322, 0.99898687, 0.99898687, 0.99898687, 0.99898687,
       0.99525772, 0.99525772, 0.99525772, 0.99525772, 0.98239165,
       0.98239165, 0.98239165, 0.98239165, 0.94927458, 0.94927458,
       0.94927458, 0.94927458, 0.88652829, 0.88652829, 0.88652829,
       0.88652829, 0.79650788, 0.79650788, 0.79650788, 0.79650788,
       0.70249376, 0.70249376, 0.70249376, 0.70249376, 0.62636848,
       0.62636848, 0.62636848, 0.62636848, 0.60412838, 0.60412838,
       0.60412838, 0.60412838, 0.59491245, 0.59491245, 0.59491245,
       0.59491245, 0.57973366, 0.57973366, 0.57973366, 0.57973366,
       0.55197703, 0.55197703, 0.55197703, 0.55197703, 0.50772236,
       0.50772236, 0.50772236, 0.50772236, 0.44720509, 0.44720509,
       0.44720509, 0.44720509, 0.38317069, 0.38317069, 0.38317069,
       0.38317069, 0.34144572, 0.34144572, 0.34144572, 0.34144572,
       0.30939376, 0.30939376, 0.30939376, 0.30939376, 0.26448525,
       0.26448525, 0.26448525, 0.26448525, 0.17617514, 0.17617514,
       0.17617514, 0.17617514, 0.1314537 , 0.1314537 , 0.1314537 ,
       0.1314537 , 0.1255488 , 0.1255488 , 0.1255488 , 0.1255488 ,
       0.12504168, 0.12504168, 0.12504168, 0.12504168, 0.12500308,
       0.12500308, 0.12500308, 0.12500308, 0.12500022, 0.12500022,
       0.12500022, 0.12500022, 0.12500002, 0.12500002, 0.12500002,
       0.12500002, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000040e-01, 7.50000040e-01, 7.50000040e-01, 7.50000040e-01,
       7.50000416e-01, 7.50000416e-01, 7.50000416e-01, 7.50000416e-01,
       7.50003829e-01, 7.50003829e-01, 7.50003829e-01, 7.50003829e-01,
       7.50030595e-01, 7.50030595e-01, 7.50030595e-01, 7.50030595e-01,
       7.50209148e-01, 7.50209148e-01, 7.50209148e-01, 7.50209148e-01,
       7.51198600e-01, 7.51198600e-01, 7.51198600e-01, 7.51198600e-01,
       7.55615304e-01, 7.55615304e-01, 7.55615304e-01, 7.55615304e-01,
       7.70951868e-01, 7.70951868e-01, 7.70951868e-01, 7.70951868e-01,
       8.11275275e-01, 8.11275275e-01, 8.11275275e-01, 8.11275275e-01,
       8.91370127e-01, 8.91370127e-01, 8.91370127e-01, 8.91370127e-01,
       1.01552397e+00, 1.01552397e+00, 1.01552397e+00, 1.01552397e+00,
       1.14807632e+00, 1.14807632e+00, 1.14807632e+00, 1.14807632e+00,
       1.27251928e+00, 1.27251928e+00, 1.27251928e+00, 1.27251928e+00,
       1.33824106e+00, 1.33824106e+00, 1.33824106e+00, 1.33824106e+00,
       1.35468133e+00, 1.35468133e+00, 1.35468133e+00, 1.35468133e+00,
       1.35603990e+00, 1.35603990e+00, 1.35603990e+00, 1.35603990e+00,
       1.35749304e+00, 1.35749304e+00, 1.35749304e+00, 1.35749304e+00,
       1.36161701e+00, 1.36161701e+00, 1.36161701e+00, 1.36161701e+00,
       1.36709517e+00, 1.36709517e+00, 1.36709517e+00, 1.36709517e+00,
       1.36853942e+00, 1.36853942e+00, 1.36853942e+00, 1.36853942e+00,
       1.35998310e+00, 1.35998310e+00, 1.35998310e+00, 1.35998310e+00,
       1.30814871e+00, 1.30814871e+00, 1.30814871e+00, 1.30814871e+00,
       1.07919686e+00, 1.07919686e+00, 1.07919686e+00, 1.07919686e+00,
       4.71939660e-01, 4.71939660e-01, 4.71939660e-01, 4.71939660e-01,
       6.10545409e-02, 6.10545409e-02, 6.10545409e-02, 6.10545409e-02,
       4.82456880e-03, 4.82456880e-03, 4.82456880e-03, 4.82456880e-03,
       3.56247646e-04, 3.56247646e-04, 3.56247646e-04, 3.56247646e-04,
       2.61067770e-05, 2.61067770e-05, 2.61067770e-05, 2.61067770e-05,
       1.90472760e-06, 1.90472760e-06, 1.90472760e-06, 1.90472760e-06,
       1.37703296e-07, 1.37703296e-07, 1.37703296e-07, 1.37703296e-07,
       9.80046714e-09, 9.80046714e-09, 9.80046714e-09, 9.80046714e-09,
       6.81680766e-10, 6.81680766e-10, 6.81680766e-10, 6.81680766e-10,
       4.59859347e-11, 4.59859347e-11, 4.59859347e-11, 4.59859347e-11,
       2.98599883e-12, 2.98599883e-12, 2.98599883e-12, 2.98599883e-12,
       1.85306740e-13, 1.85306740e-13, 1.85306740e-13, 1.85306740e-13,
       1.08045186e-14, 1.08045186e-14, 1.08045186e-14, 1.08045186e-14,
       5.92240191e-16, 5.92240191e-16, 5.92240191e-16, 5.92240191e-16,
       3.36083066e-17, 3.36083066e-17, 3.36083066e-17, 3.36083066e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999995, 0.99999995, 0.99999995, 0.99999995,
       0.99999951, 0.99999951, 0.99999951, 0.99999951, 0.99999547,
       0.99999547, 0.99999547, 0.99999547, 0.9999638 , 0.9999638 ,
       0.9999638 , 0.9999638 , 0.99975256, 0.99975256, 0.99975256,
       0.99975256, 0.99858272, 0.99858272, 0.99858272, 0.99858272,
       0.99337694, 0.99337694, 0.99337694, 0.99337694, 0.97550929,
       0.97550929, 0.97550929, 0.97550929, 0.93004626, 0.93004626,
       0.93004626, 0.93004626, 0.84577195, 0.84577195, 0.84577195,
       0.84577195, 0.72903811, 0.72903811, 0.72903811, 0.72903811,
       0.61232549, 0.61232549, 0.61232549, 0.61232549, 0.52517321,
       0.52517321, 0.52517321, 0.52517321, 0.48111312, 0.48111312,
       0.48111312, 0.48111312, 0.46690051, 0.46690051, 0.46690051,
       0.46690051, 0.46488503, 0.46488503, 0.46488503, 0.46488503,
       0.46527105, 0.46527105, 0.46527105, 0.46527105, 0.46650029,
       0.46650029, 0.46650029, 0.46650029, 0.46823227, 0.46823227,
       0.46823227, 0.46823227, 0.46775485, 0.46775485, 0.46775485,
       0.46775485, 0.46346347, 0.46346347, 0.46346347, 0.46346347,
       0.43993022, 0.43993022, 0.43993022, 0.43993022, 0.35059336,
       0.35059336, 0.35059336, 0.35059336, 0.17933862, 0.17933862,
       0.17933862, 0.17933862, 0.10832159, 0.10832159, 0.10832159,
       0.10832159, 0.1006392 , 0.1006392 , 0.1006392 , 0.1006392 ,
       0.10004713, 0.10004713, 0.10004713, 0.10004713, 0.10000345,
       0.10000345, 0.10000345, 0.10000345, 0.10000025, 0.10000025,
       0.10000025, 0.10000025, 0.10000002, 0.10000002, 0.10000002,
       0.10000002, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999937, 0.99999937, 0.99999937, 0.99999937, 0.99999463,
       0.99999463, 0.99999463, 0.99999463, 0.99996001, 0.99996001,
       0.99996001, 0.99996001, 0.99974513, 0.99974513, 0.99974513,
       0.99974513, 0.99863764, 0.99863764, 0.99863764, 0.99863764,
       0.99404812, 0.99404812, 0.99404812, 0.99404812, 0.97932361,
       0.97932361, 0.97932361, 0.97932361, 0.94391361, 0.94391361,
       0.94391361, 0.94391361, 0.88052889, 0.88052889, 0.88052889,
       0.88052889, 0.7932456 , 0.7932456 , 0.7932456 , 0.7932456 ,
       0.70476828, 0.70476828, 0.70476828, 0.70476828, 0.62723661,
       0.62723661, 0.62723661, 0.62723661, 0.60206706, 0.60206706,
       0.60206706, 0.60206706, 0.5963246 , 0.5963246 , 0.5963246 ,
       0.5963246 , 0.58637919, 0.58637919, 0.58637919, 0.58637919,
       0.56513598, 0.56513598, 0.56513598, 0.56513598, 0.52823708,
       0.52823708, 0.52823708, 0.52823708, 0.47484775, 0.47484775,
       0.47484775, 0.47484775, 0.40888641, 0.40888641, 0.40888641,
       0.40888641, 0.35916094, 0.35916094, 0.35916094, 0.35916094,
       0.32770215, 0.32770215, 0.32770215, 0.32770215, 0.29918377,
       0.29918377, 0.29918377, 0.29918377, 0.24277737, 0.24277737,
       0.24277737, 0.24277737, 0.1544822 , 0.1544822 , 0.1544822 ,
       0.1544822 , 0.12813873, 0.12813873, 0.12813873, 0.12813873,
       0.12525473, 0.12525473, 0.12525473, 0.12525473, 0.12501909,
       0.12501909, 0.12501909, 0.12501909, 0.12500141, 0.12500141,
       0.12500141, 0.12500141, 0.1250001 , 0.1250001 , 0.1250001 ,
       0.1250001 , 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
       7.50000076e-01, 7.50000076e-01, 7.50000076e-01, 7.50000076e-01,
       7.50000743e-01, 7.50000743e-01, 7.50000743e-01, 7.50000743e-01,
       7.50006355e-01, 7.50006355e-01, 7.50006355e-01, 7.50006355e-01,
       7.50047312e-01, 7.50047312e-01, 7.50047312e-01, 7.50047312e-01,
       7.50301532e-01, 7.50301532e-01, 7.50301532e-01, 7.50301532e-01,
       7.51611926e-01, 7.51611926e-01, 7.51611926e-01, 7.51611926e-01,
       7.57051218e-01, 7.57051218e-01, 7.57051218e-01, 7.57051218e-01,
       7.74639815e-01, 7.74639815e-01, 7.74639815e-01, 7.74639815e-01,
       8.17938711e-01, 8.17938711e-01, 8.17938711e-01, 8.17938711e-01,
       8.99300214e-01, 8.99300214e-01, 8.99300214e-01, 8.99300214e-01,
       1.02004865e+00, 1.02004865e+00, 1.02004865e+00, 1.02004865e+00,
       1.14652531e+00, 1.14652531e+00, 1.14652531e+00, 1.14652531e+00,
       1.26652821e+00, 1.26652821e+00, 1.26652821e+00, 1.26652821e+00,
       1.33548200e+00, 1.33548200e+00, 1.33548200e+00, 1.33548200e+00,
       1.35534630e+00, 1.35534630e+00, 1.35534630e+00, 1.35534630e+00,
       1.35643148e+00, 1.35643148e+00, 1.35643148e+00, 1.35643148e+00,
       1.35688841e+00, 1.35688841e+00, 1.35688841e+00, 1.35688841e+00,
       1.35905944e+00, 1.35905944e+00, 1.35905944e+00, 1.35905944e+00,
       1.36376675e+00, 1.36376675e+00, 1.36376675e+00, 1.36376675e+00,
       1.36790199e+00, 1.36790199e+00, 1.36790199e+00, 1.36790199e+00,
       1.36676900e+00, 1.36676900e+00, 1.36676900e+00, 1.36676900e+00,
       1.35107712e+00, 1.35107712e+00, 1.35107712e+00, 1.35107712e+00,
       1.26776498e+00, 1.26776498e+00, 1.26776498e+00, 1.26776498e+00,
       9.35091603e-01, 9.35091603e-01, 9.35091603e-01, 9.35091603e-01,
       2.80578131e-01, 2.80578131e-01, 2.80578131e-01, 2.80578131e-01,
       2.89234526e-02, 2.89234526e-02, 2.89234526e-02, 2.89234526e-02,
       2.21034091e-03, 2.21034091e-03, 2.21034091e-03, 2.21034091e-03,
       1.62586243e-04, 1.62586243e-04, 1.62586243e-04, 1.62586243e-04,
       1.19199001e-05, 1.19199001e-05, 1.19199001e-05, 1.19199001e-05,
       8.70329480e-07, 8.70329480e-07, 8.70329480e-07, 8.70329480e-07,
       6.30649885e-08, 6.30649885e-08, 6.30649885e-08, 6.30649885e-08,
       4.51037180e-09, 4.51037180e-09, 4.51037180e-09, 4.51037180e-09,
       3.16293216e-10, 3.16293216e-10, 3.16293216e-10, 3.16293216e-10,
       2.15961374e-11, 2.15961374e-11, 2.15961374e-11, 2.15961374e-11,
       1.42561215e-12, 1.42561215e-12, 1.42561215e-12, 1.42561215e-12,
       9.02795039e-14, 9.02795039e-14, 9.02795039e-14, 9.02795039e-14,
       5.44358060e-15, 5.44358060e-15, 5.44358060e-15, 5.44358060e-15,
       3.46618598e-16, 3.46618598e-16, 3.46618598e-16, 3.46618598e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999912, 0.99999912, 0.99999912, 0.99999912, 0.99999248,
       0.99999248, 0.99999248, 0.99999248, 0.99994402, 0.99994402,
       0.99994402, 0.99994402, 0.99964328, 0.99964328, 0.99964328,
       0.99964328, 0.99809443, 0.99809443, 0.99809443, 0.99809443,
       0.99169035, 0.99169035, 0.99169035, 0.99169035, 0.97126076,
       0.97126076, 0.97126076, 0.97126076, 0.92272829, 0.92272829,
       0.92272829, 0.92272829, 0.83776294, 0.83776294, 0.83776294,
       0.83776294, 0.72464681, 0.72464681, 0.72464681, 0.72464681,
       0.6136125 , 0.6136125 , 0.6136125 , 0.6136125 , 0.52827001,
       0.52827001, 0.52827001, 0.52827001, 0.48410084, 0.48410084,
       0.48410084, 0.48410084, 0.46873669, 0.46873669, 0.46873669,
       0.46873669, 0.465321  , 0.465321  , 0.465321  , 0.465321  ,
       0.46494758, 0.46494758, 0.46494758, 0.46494758, 0.46514031,
       0.46514031, 0.46514031, 0.46514031, 0.46651691, 0.46651691,
       0.46651691, 0.46651691, 0.46747205, 0.46747205, 0.46747205,
       0.46747205, 0.46667036, 0.46667036, 0.46667036, 0.46667036,
       0.45913733, 0.45913733, 0.45913733, 0.45913733, 0.42245963,
       0.42245963, 0.42245963, 0.42245963, 0.30188464, 0.30188464,
       0.30188464, 0.30188464, 0.14267451, 0.14267451, 0.14267451,
       0.14267451, 0.10387503, 0.10387503, 0.10387503, 0.10387503,
       0.10029258, 0.10029258, 0.10029258, 0.10029258, 0.10002151,
       0.10002151, 0.10002151, 0.10002151, 0.10000158, 0.10000158,
       0.10000158, 0.10000158, 0.10000012, 0.10000012, 0.10000012,
       0.10000012, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
       0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99999137,
       0.99999137, 0.99999137, 0.99999137, 0.9999399 , 0.9999399 ,
       0.9999399 , 0.9999399 , 0.99964148, 0.99964148, 0.99964148,
       0.99964148, 0.9982058 , 0.9982058 , 0.9982058 , 0.9982058 ,
       0.99265642, 0.99265642, 0.99265642, 0.99265642, 0.97603583,
       0.97603583, 0.97603583, 0.97603583, 0.93852726, 0.93852726,
       0.93852726, 0.93852726, 0.87480059, 0.87480059, 0.87480059,
       0.87480059, 0.79029824, 0.79029824, 0.79029824, 0.79029824,
       0.70698986, 0.70698986, 0.70698986, 0.70698986, 0.6291912 ,
       0.6291912 , 0.6291912 , 0.6291912 , 0.59965944, 0.59965944,
       0.59965944, 0.59965944, 0.59596883, 0.59596883, 0.59596883,
       0.59596883, 0.59053208, 0.59053208, 0.59053208, 0.59053208,
       0.5754485 , 0.5754485 , 0.5754485 , 0.5754485 , 0.54568684,
       0.54568684, 0.54568684, 0.54568684, 0.49942691, 0.49942691,
       0.49942691, 0.49942691, 0.43715677, 0.43715677, 0.43715677,
       0.43715677, 0.3785361 , 0.3785361 , 0.3785361 , 0.3785361 ,
       0.34229804, 0.34229804, 0.34229804, 0.34229804, 0.31792866,
       0.31792866, 0.31792866, 0.31792866, 0.28869213, 0.28869213,
       0.28869213, 0.28869213, 0.21502361, 0.21502361, 0.21502361,
       0.21502361, 0.14073628, 0.14073628, 0.14073628, 0.14073628,
       0.12650253, 0.12650253, 0.12650253, 0.12650253, 0.12511712,
       0.12511712, 0.12511712, 0.12511712, 0.12500873, 0.12500873,
       0.12500873, 0.12500873, 0.12500064, 0.12500064, 0.12500064,
       0.12500064, 0.12500005, 0.12500005, 0.12500005, 0.12500005,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
       7.50000141e-01, 7.50000141e-01, 7.50000141e-01, 7.50000141e-01,
       7.50001276e-01, 7.50001276e-01, 7.50001276e-01, 7.50001276e-01,
       7.50010210e-01, 7.50010210e-01, 7.50010210e-01, 7.50010210e-01,
       7.50071106e-01, 7.50071106e-01, 7.50071106e-01, 7.50071106e-01,
       7.50424168e-01, 7.50424168e-01, 7.50424168e-01, 7.50424168e-01,
       7.52123167e-01, 7.52123167e-01, 7.52123167e-01, 7.52123167e-01,
       7.58705271e-01, 7.58705271e-01, 7.58705271e-01, 7.58705271e-01,
       7.78604138e-01, 7.78604138e-01, 7.78604138e-01, 7.78604138e-01,
       8.24667213e-01, 8.24667213e-01, 8.24667213e-01, 8.24667213e-01,
       9.06930229e-01, 9.06930229e-01, 9.06930229e-01, 9.06930229e-01,
       1.02400230e+00, 1.02400230e+00, 1.02400230e+00, 1.02400230e+00,
       1.14543639e+00, 1.14543639e+00, 1.14543639e+00, 1.14543639e+00,
       1.26083347e+00, 1.26083347e+00, 1.26083347e+00, 1.26083347e+00,
       1.33169331e+00, 1.33169331e+00, 1.33169331e+00, 1.33169331e+00,
       1.35558798e+00, 1.35558798e+00, 1.35558798e+00, 1.35558798e+00,
       1.35748922e+00, 1.35748922e+00, 1.35748922e+00, 1.35748922e+00,
       1.35707583e+00, 1.35707583e+00, 1.35707583e+00, 1.35707583e+00,
       1.35801616e+00, 1.35801616e+00, 1.35801616e+00, 1.35801616e+00,
       1.36080683e+00, 1.36080683e+00, 1.36080683e+00, 1.36080683e+00,
       1.36564217e+00, 1.36564217e+00, 1.36564217e+00, 1.36564217e+00,
       1.36731393e+00, 1.36731393e+00, 1.36731393e+00, 1.36731393e+00,
       1.36391260e+00, 1.36391260e+00, 1.36391260e+00, 1.36391260e+00,
       1.33675447e+00, 1.33675447e+00, 1.33675447e+00, 1.33675447e+00,
       1.20527086e+00, 1.20527086e+00, 1.20527086e+00, 1.20527086e+00,
       7.48851135e-01, 7.48851135e-01, 7.48851135e-01, 7.48851135e-01,
       1.51176427e-01, 1.51176427e-01, 1.51176427e-01, 1.51176427e-01,
       1.35019359e-02, 1.35019359e-02, 1.35019359e-02, 1.35019359e-02,
       1.00744606e-03, 1.00744606e-03, 1.00744606e-03, 1.00744606e-03,
       7.41979754e-05, 7.41979754e-05, 7.41979754e-05, 7.41979754e-05,
       5.44259245e-06, 5.44259245e-06, 5.44259245e-06, 5.44259245e-06,
       3.97695182e-07, 3.97695182e-07, 3.97695182e-07, 3.97695182e-07,
       2.88737197e-08, 2.88737197e-08, 2.88737197e-08, 2.88737197e-08,
       2.07323036e-09, 2.07323036e-09, 2.07323036e-09, 2.07323036e-09,
       1.46378112e-10, 1.46378112e-10, 1.46378112e-10, 1.46378112e-10,
       1.00972396e-11, 1.00972396e-11, 1.00972396e-11, 1.00972396e-11,
       6.75961800e-13, 6.75961800e-13, 6.75961800e-13, 6.75961800e-13,
       4.36475480e-14, 4.36475480e-14, 4.36475480e-14, 4.36475480e-14,
       2.72468011e-15, 2.72468011e-15, 2.72468011e-15, 2.72468011e-15,
       1.63168395e-16, 1.63168395e-16, 1.63168395e-16, 1.63168395e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999983, 0.99999983, 0.99999983, 0.99999983,
       0.99999849, 0.99999849, 0.99999849, 0.99999849, 0.99998792,
       0.99998792, 0.99998792, 0.99998792, 0.99991587, 0.99991587,
       0.99991587, 0.99991587, 0.99949823, 0.99949823, 0.99949823,
       0.99949823, 0.9974908 , 0.9974908 , 0.9974908 , 0.9974908 ,
       0.98975108, 0.98975108, 0.98975108, 0.98975108, 0.96671385,
       0.96671385, 0.96671385, 0.96671385, 0.91539051, 0.91539051,
       0.91539051, 0.91539051, 0.83010759, 0.83010759, 0.83010759,
       0.83010759, 0.72047423, 0.72047423, 0.72047423, 0.72047423,
       0.61506756, 0.61506756, 0.61506756, 0.61506756, 0.53125219,
       0.53125219, 0.53125219, 0.53125219, 0.48653051, 0.48653051,
       0.48653051, 0.48653051, 0.47051006, 0.47051006, 0.47051006,
       0.47051006, 0.46624138, 0.46624138, 0.46624138, 0.46624138,
       0.46510466, 0.46510466, 0.46510466, 0.46510466, 0.46465008,
       0.46465008, 0.46465008, 0.46465008, 0.4649645 , 0.4649645 ,
       0.4649645 , 0.4649645 , 0.46635721, 0.46635721, 0.46635721,
       0.46635721, 0.4669385 , 0.4669385 , 0.4669385 , 0.4669385 ,
       0.46507386, 0.46507386, 0.46507386, 0.46507386, 0.45256509,
       0.45256509, 0.45256509, 0.45256509, 0.39724826, 0.39724826,
       0.39724826, 0.39724826, 0.24626608, 0.24626608, 0.24626608,
       0.24626608, 0.12167041, 0.12167041, 0.12167041, 0.12167041,
       0.10179518, 0.10179518, 0.10179518, 0.10179518, 0.10013331,
       0.10013331, 0.10013331, 0.10013331, 0.10000982, 0.10000982,
       0.10000982, 0.10000982, 0.10000072, 0.10000072, 0.10000072,
       0.10000072, 0.10000005, 0.10000005, 0.10000005, 0.10000005,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999979, 0.99999979, 0.99999979, 0.99999979,
       0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99998654,
       0.99998654, 0.99998654, 0.99998654, 0.99991195, 0.99991195,
       0.99991195, 0.99991195, 0.99950669, 0.99950669, 0.99950669,
       0.99950669, 0.99768098, 0.99768098, 0.99768098, 0.99768098,
       0.99107741, 0.99107741, 0.99107741, 0.99107741, 0.97254809,
       0.97254809, 0.97254809, 0.97254809, 0.93314576, 0.93314576,
       0.93314576, 0.93314576, 0.86931013, 0.86931013, 0.86931013,
       0.86931013, 0.78745561, 0.78745561, 0.78745561, 0.78745561,
       0.70912742, 0.70912742, 0.70912742, 0.70912742, 0.63224649,
       0.63224649, 0.63224649, 0.63224649, 0.59761707, 0.59761707,
       0.59761707, 0.59761707, 0.59438022, 0.59438022, 0.59438022,
       0.59438022, 0.5922818 , 0.5922818 , 0.5922818 , 0.5922818 ,
       0.58292186, 0.58292186, 0.58292186, 0.58292186, 0.56012924,
       0.56012924, 0.56012924, 0.56012924, 0.52108056, 0.52108056,
       0.52108056, 0.52108056, 0.46554919, 0.46554919, 0.46554919,
       0.46554919, 0.40122218, 0.40122218, 0.40122218, 0.40122218,
       0.35684472, 0.35684472, 0.35684472, 0.35684472, 0.33092508,
       0.33092508, 0.33092508, 0.33092508, 0.3109016 , 0.3109016 ,
       0.3109016 , 0.3109016 , 0.2745178 , 0.2745178 , 0.2745178 ,
       0.2745178 , 0.18574868, 0.18574868, 0.18574868, 0.18574868,
       0.13312446, 0.13312446, 0.13312446, 0.13312446, 0.12570243,
       0.12570243, 0.12570243, 0.12570243, 0.12505374, 0.12505374,
       0.12505374, 0.12505374, 0.12500399, 0.12500399, 0.12500399,
       0.12500399, 0.12500029, 0.12500029, 0.12500029, 0.12500029,
       0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
       7.50000249e-01, 7.50000249e-01, 7.50000249e-01, 7.50000249e-01,
       7.50002122e-01, 7.50002122e-01, 7.50002122e-01, 7.50002122e-01,
       7.50015931e-01, 7.50015931e-01, 7.50015931e-01, 7.50015931e-01,
       7.50104174e-01, 7.50104174e-01, 7.50104174e-01, 7.50104174e-01,
       7.50583657e-01, 7.50583657e-01, 7.50583657e-01, 7.50583657e-01,
       7.52744722e-01, 7.52744722e-01, 7.52744722e-01, 7.52744722e-01,
       7.60584516e-01, 7.60584516e-01, 7.60584516e-01, 7.60584516e-01,
       7.82823347e-01, 7.82823347e-01, 7.82823347e-01, 7.82823347e-01,
       8.31422691e-01, 8.31422691e-01, 8.31422691e-01, 8.31422691e-01,
       9.14253491e-01, 9.14253491e-01, 9.14253491e-01, 9.14253491e-01,
       1.02753151e+00, 1.02753151e+00, 1.02753151e+00, 1.02753151e+00,
       1.14446418e+00, 1.14446418e+00, 1.14446418e+00, 1.14446418e+00,
       1.25572429e+00, 1.25572429e+00, 1.25572429e+00, 1.25572429e+00,
       1.32726860e+00, 1.32726860e+00, 1.32726860e+00, 1.32726860e+00,
       1.35494148e+00, 1.35494148e+00, 1.35494148e+00, 1.35494148e+00,
       1.35862615e+00, 1.35862615e+00, 1.35862615e+00, 1.35862615e+00,
       1.35792280e+00, 1.35792280e+00, 1.35792280e+00, 1.35792280e+00,
       1.35790930e+00, 1.35790930e+00, 1.35790930e+00, 1.35790930e+00,
       1.35939545e+00, 1.35939545e+00, 1.35939545e+00, 1.35939545e+00,
       1.36269094e+00, 1.36269094e+00, 1.36269094e+00, 1.36269094e+00,
       1.36606975e+00, 1.36606975e+00, 1.36606975e+00, 1.36606975e+00,
       1.36643658e+00, 1.36643658e+00, 1.36643658e+00, 1.36643658e+00,
       1.35906893e+00, 1.35906893e+00, 1.35906893e+00, 1.35906893e+00,
       1.31349500e+00, 1.31349500e+00, 1.31349500e+00, 1.31349500e+00,
       1.11168051e+00, 1.11168051e+00, 1.11168051e+00, 1.11168051e+00,
       5.39000363e-01, 5.39000363e-01, 5.39000363e-01, 5.39000363e-01,
       7.70165641e-02, 7.70165641e-02, 7.70165641e-02, 7.70165641e-02,
       6.19417821e-03, 6.19417821e-03, 6.19417821e-03, 6.19417821e-03,
       4.59703599e-04, 4.59703599e-04, 4.59703599e-04, 4.59703599e-04,
       3.38422021e-05, 3.38422021e-05, 3.38422021e-05, 3.38422021e-05,
       2.48403190e-06, 2.48403190e-06, 2.48403190e-06, 2.48403190e-06,
       1.81703671e-07, 1.81703671e-07, 1.81703671e-07, 1.81703671e-07,
       1.32143978e-08, 1.32143978e-08, 1.32143978e-08, 1.32143978e-08,
       9.51971465e-10, 9.51971465e-10, 9.51971465e-10, 9.51971465e-10,
       6.75952916e-11, 6.75952916e-11, 6.75952916e-11, 6.75952916e-11,
       4.70333296e-12, 4.70333296e-12, 4.70333296e-12, 4.70333296e-12,
       3.18764056e-13, 3.18764056e-13, 3.18764056e-13, 3.18764056e-13,
       2.09144307e-14, 2.09144307e-14, 2.09144307e-14, 2.09144307e-14,
       1.34091434e-15, 1.34091434e-15, 1.34091434e-15, 1.34091434e-15,
       7.02262902e-17, 7.02262902e-17, 7.02262902e-17, 7.02262902e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
       0.99999749, 0.99999749, 0.99999749, 0.99999749, 0.99998115,
       0.99998115, 0.99998115, 0.99998115, 0.99987675, 0.99987675,
       0.99987675, 0.99987675, 0.99930963, 0.99930963, 0.99930963,
       0.99930963, 0.9967574 , 0.9967574 , 0.9967574 , 0.9967574 ,
       0.98755235, 0.98755235, 0.98755235, 0.98755235, 0.961897  ,
       0.961897  , 0.961897  , 0.961897  , 0.90807418, 0.90807418,
       0.90807418, 0.90807418, 0.82280457, 0.82280457, 0.82280457,
       0.82280457, 0.71660108, 0.71660108, 0.71660108, 0.71660108,
       0.61647152, 0.61647152, 0.61647152, 0.61647152, 0.53433754,
       0.53433754, 0.53433754, 0.53433754, 0.48862858, 0.48862858,
       0.48862858, 0.48862858, 0.47191446, 0.47191446, 0.47191446,
       0.47191446, 0.46731186, 0.46731186, 0.46731186, 0.46731186,
       0.46568567, 0.46568567, 0.46568567, 0.46568567, 0.46466716,
       0.46466716, 0.46466716, 0.46466716, 0.46428833, 0.46428833,
       0.46428833, 0.46428833, 0.46483777, 0.46483777, 0.46483777,
       0.46483777, 0.46633071, 0.46633071, 0.46633071, 0.46633071,
       0.46626754, 0.46626754, 0.46626754, 0.46626754, 0.46271596,
       0.46271596, 0.46271596, 0.46271596, 0.44260208, 0.44260208,
       0.44260208, 0.44260208, 0.36235029, 0.36235029, 0.36235029,
       0.36235029, 0.19361303, 0.19361303, 0.19361303, 0.19361303,
       0.11058547, 0.11058547, 0.11058547, 0.11058547, 0.10082107,
       0.10082107, 0.10082107, 0.10082107, 0.10006082, 0.10006082,
       0.10006082, 0.10006082, 0.10000448, 0.10000448, 0.10000448,
       0.10000448, 0.10000033, 0.10000033, 0.10000033, 0.10000033,
       0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999996, 0.99999996, 0.99999996,
       0.99999996, 0.99999964, 0.99999964, 0.99999964, 0.99999964,
       0.99999711, 0.99999711, 0.99999711, 0.99999711, 0.99997953,
       0.99997953, 0.99997953, 0.99997953, 0.99987394, 0.99987394,
       0.99987394, 0.99987394, 0.99933463, 0.99933463, 0.99933463,
       0.99933463, 0.99705312, 0.99705312, 0.99705312, 0.99705312,
       0.98930851, 0.98930851, 0.98930851, 0.98930851, 0.96888183,
       0.96888183, 0.96888183, 0.96888183, 0.92779564, 0.92779564,
       0.92779564, 0.92779564, 0.86405491, 0.86405491, 0.86405491,
       0.86405491, 0.78470523, 0.78470523, 0.78470523, 0.78470523,
       0.71095409, 0.71095409, 0.71095409, 0.71095409, 0.63622824,
       0.63622824, 0.63622824, 0.63622824, 0.59650729, 0.59650729,
       0.59650729, 0.59650729, 0.59187689, 0.59187689, 0.59187689,
       0.59187689, 0.59231137, 0.59231137, 0.59231137, 0.59231137,
       0.58763049, 0.58763049, 0.58763049, 0.58763049, 0.57146876,
       0.57146876, 0.57146876, 0.57146876, 0.53974952, 0.53974952,
       0.53974952, 0.53974952, 0.49128145, 0.49128145, 0.49128145,
       0.49128145, 0.4279453 , 0.4279453 , 0.4279453 , 0.4279453 ,
       0.37383925, 0.37383925, 0.37383925, 0.37383925, 0.34208564,
       0.34208564, 0.34208564, 0.34208564, 0.32336538, 0.32336538,
       0.32336538, 0.32336538, 0.30459933, 0.30459933, 0.30459933,
       0.30459933, 0.25375017, 0.25375017, 0.25375017, 0.25375017,
       0.1610919 , 0.1610919 , 0.1610919 , 0.1610919 , 0.12897793,
       0.12897793, 0.12897793, 0.12897793, 0.12532639, 0.12532639,
       0.12532639, 0.12532639, 0.1250246 , 0.1250246 , 0.1250246 ,
       0.1250246 , 0.12500182, 0.12500182, 0.12500182, 0.12500182,
       0.12500013, 0.12500013, 0.12500013, 0.12500013, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000048e-01, 7.50000048e-01, 7.50000048e-01, 7.50000048e-01,
       7.50000428e-01, 7.50000428e-01, 7.50000428e-01, 7.50000428e-01,
       7.50003425e-01, 7.50003425e-01, 7.50003425e-01, 7.50003425e-01,
       7.50024215e-01, 7.50024215e-01, 7.50024215e-01, 7.50024215e-01,
       7.50149149e-01, 7.50149149e-01, 7.50149149e-01, 7.50149149e-01,
       7.50787259e-01, 7.50787259e-01, 7.50787259e-01, 7.50787259e-01,
       7.53488669e-01, 7.53488669e-01, 7.53488669e-01, 7.53488669e-01,
       7.62693058e-01, 7.62693058e-01, 7.62693058e-01, 7.62693058e-01,
       7.87273690e-01, 7.87273690e-01, 7.87273690e-01, 7.87273690e-01,
       8.38170390e-01, 8.38170390e-01, 8.38170390e-01, 8.38170390e-01,
       9.21264845e-01, 9.21264845e-01, 9.21264845e-01, 9.21264845e-01,
       1.03075711e+00, 1.03075711e+00, 1.03075711e+00, 1.03075711e+00,
       1.14341648e+00, 1.14341648e+00, 1.14341648e+00, 1.14341648e+00,
       1.25118970e+00, 1.25118970e+00, 1.25118970e+00, 1.25118970e+00,
       1.32270364e+00, 1.32270364e+00, 1.32270364e+00, 1.32270364e+00,
       1.35337313e+00, 1.35337313e+00, 1.35337313e+00, 1.35337313e+00,
       1.35937786e+00, 1.35937786e+00, 1.35937786e+00, 1.35937786e+00,
       1.35905340e+00, 1.35905340e+00, 1.35905340e+00, 1.35905340e+00,
       1.35850392e+00, 1.35850392e+00, 1.35850392e+00, 1.35850392e+00,
       1.35894967e+00, 1.35894967e+00, 1.35894967e+00, 1.35894967e+00,
       1.36090221e+00, 1.36090221e+00, 1.36090221e+00, 1.36090221e+00,
       1.36370505e+00, 1.36370505e+00, 1.36370505e+00, 1.36370505e+00,
       1.36598769e+00, 1.36598769e+00, 1.36598769e+00, 1.36598769e+00,
       1.36486873e+00, 1.36486873e+00, 1.36486873e+00, 1.36486873e+00,
       1.35070633e+00, 1.35070633e+00, 1.35070633e+00, 1.35070633e+00,
       1.27741452e+00, 1.27741452e+00, 1.27741452e+00, 1.27741452e+00,
       9.81464738e-01, 9.81464738e-01, 9.81464738e-01, 9.81464738e-01,
       3.36046188e-01, 3.36046188e-01, 3.36046188e-01, 3.36046188e-01,
       3.68463062e-02, 3.68463062e-02, 3.68463062e-02, 3.68463062e-02,
       2.83912454e-03, 2.83912454e-03, 2.83912454e-03, 2.83912454e-03,
       2.09688885e-04, 2.09688885e-04, 2.09688885e-04, 2.09688885e-04,
       1.54316406e-05, 1.54316406e-05, 1.54316406e-05, 1.54316406e-05,
       1.13356929e-06, 1.13356929e-06, 1.13356929e-06, 1.13356929e-06,
       8.29963615e-08, 8.29963615e-08, 8.29963615e-08, 8.29963615e-08,
       6.04553786e-09, 6.04553786e-09, 6.04553786e-09, 6.04553786e-09,
       4.36752195e-10, 4.36752195e-10, 4.36752195e-10, 4.36752195e-10,
       3.11603660e-11, 3.11603660e-11, 3.11603660e-11, 3.11603660e-11,
       2.18424142e-12, 2.18424142e-12, 2.18424142e-12, 2.18424142e-12,
       1.49600112e-13, 1.49600112e-13, 1.49600112e-13, 1.49600112e-13,
       9.91152530e-15, 9.91152530e-15, 9.91152530e-15, 9.91152530e-15,
       6.43616174e-16, 6.43616174e-16, 6.43616174e-16, 6.43616174e-16,
       3.40906797e-17, 3.40906797e-17, 3.40906797e-17, 3.40906797e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
       0.99999994, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
       0.99999595, 0.99999595, 0.99999595, 0.99999595, 0.99997135,
       0.99997135, 0.99997135, 0.99997135, 0.99982354, 0.99982354,
       0.99982354, 0.99982354, 0.9990689 , 0.9990689 , 0.9990689 ,
       0.9990689 , 0.99588029, 0.99588029, 0.99588029, 0.99588029,
       0.98509107, 0.98509107, 0.98509107, 0.98509107, 0.95684085,
       0.95684085, 0.95684085, 0.95684085, 0.90081585, 0.90081585,
       0.90081585, 0.90081585, 0.81585349, 0.81585349, 0.81585349,
       0.81585349, 0.71306117, 0.71306117, 0.71306117, 0.71306117,
       0.61770042, 0.61770042, 0.61770042, 0.61770042, 0.53754808,
       0.53754808, 0.53754808, 0.53754808, 0.49069344, 0.49069344,
       0.49069344, 0.49069344, 0.47291767, 0.47291767, 0.47291767,
       0.47291767, 0.46823402, 0.46823402, 0.46823402, 0.46823402,
       0.46647842, 0.46647842, 0.46647842, 0.46647842, 0.46510214,
       0.46510214, 0.46510214, 0.46510214, 0.46413565, 0.46413565,
       0.46413565, 0.46413565, 0.46395683, 0.46395683, 0.46395683,
       0.46395683, 0.46511952, 0.46511952, 0.46511952, 0.46511952,
       0.46605603, 0.46605603, 0.46605603, 0.46605603, 0.46541207,
       0.46541207, 0.46541207, 0.46541207, 0.45926933, 0.45926933,
       0.45926933, 0.45926933, 0.42726405, 0.42726405, 0.42726405,
       0.42726405, 0.31664309, 0.31664309, 0.31664309, 0.31664309,
       0.15234215, 0.15234215, 0.15234215, 0.15234215, 0.10495591,
       0.10495591, 0.10495591, 0.10495591, 0.10037589, 0.10037589,
       0.10037589, 0.10037589, 0.10002774, 0.10002774, 0.10002774,
       0.10002774, 0.10000204, 0.10000204, 0.10000204, 0.10000204,
       0.10000015, 0.10000015, 0.10000015, 0.10000015, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
       0.99999993, 0.9999994 , 0.9999994 , 0.9999994 , 0.9999994 ,
       0.99999545, 0.99999545, 0.99999545, 0.99999545, 0.99996962,
       0.99996962, 0.99996962, 0.99996962, 0.99982324, 0.99982324,
       0.99982324, 0.99982324, 0.9991187 , 0.9991187 , 0.9991187 ,
       0.9991187 , 0.9963127 , 0.9963127 , 0.9963127 , 0.9963127 ,
       0.98734973, 0.98734973, 0.98734973, 0.98734973, 0.96505957,
       0.96505957, 0.96505957, 0.96505957, 0.92250062, 0.92250062,
       0.92250062, 0.92250062, 0.85904285, 0.85904285, 0.85904285,
       0.85904285, 0.78210563, 0.78210563, 0.78210563, 0.78210563,
       0.71214743, 0.71214743, 0.71214743, 0.71214743, 0.64091277,
       0.64091277, 0.64091277, 0.64091277, 0.5967045 , 0.5967045 ,
       0.5967045 , 0.5967045 , 0.58917295, 0.58917295, 0.58917295,
       0.58917295, 0.59108358, 0.59108358, 0.59108358, 0.59108358,
       0.58980314, 0.58980314, 0.58980314, 0.58980314, 0.57968492,
       0.57968492, 0.57968492, 0.57968492, 0.5552647 , 0.5552647 ,
       0.5552647 , 0.5552647 , 0.51411927, 0.51411927, 0.51411927,
       0.51411927, 0.45652797, 0.45652797, 0.45652797, 0.45652797,
       0.39426685, 0.39426685, 0.39426685, 0.39426685, 0.35435985,
       0.35435985, 0.35435985, 0.35435985, 0.33267462, 0.33267462,
       0.33267462, 0.33267462, 0.3183219 , 0.3183219 , 0.3183219 ,
       0.3183219 , 0.29605972, 0.29605972, 0.29605972, 0.29605972,
       0.22620934, 0.22620934, 0.22620934, 0.22620934, 0.1443368 ,
       0.1443368 , 0.1443368 , 0.1443368 , 0.12690967, 0.12690967,
       0.12690967, 0.12690967, 0.12515044, 0.12515044, 0.12515044,
       0.12515044, 0.12501125, 0.12501125, 0.12501125, 0.12501125,
       0.12500083, 0.12500083, 0.12500083, 0.12500083, 0.12500006,
       0.12500006, 0.12500006, 0.12500006, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000084e-01, 7.50000084e-01, 7.50000084e-01, 7.50000084e-01,
       7.50000712e-01, 7.50000712e-01, 7.50000712e-01, 7.50000712e-01,
       7.50005384e-01, 7.50005384e-01, 7.50005384e-01, 7.50005384e-01,
       7.50035944e-01, 7.50035944e-01, 7.50035944e-01, 7.50035944e-01,
       7.50209136e-01, 7.50209136e-01, 7.50209136e-01, 7.50209136e-01,
       7.51042813e-01, 7.51042813e-01, 7.51042813e-01, 7.51042813e-01,
       7.54366472e-01, 7.54366472e-01, 7.54366472e-01, 7.54366472e-01,
       7.65032020e-01, 7.65032020e-01, 7.65032020e-01, 7.65032020e-01,
       7.91929802e-01, 7.91929802e-01, 7.91929802e-01, 7.91929802e-01,
       8.44879000e-01, 8.44879000e-01, 8.44879000e-01, 8.44879000e-01,
       9.27961552e-01, 9.27961552e-01, 9.27961552e-01, 9.27961552e-01,
       1.03376284e+00, 1.03376284e+00, 1.03376284e+00, 1.03376284e+00,
       1.14223005e+00, 1.14223005e+00, 1.14223005e+00, 1.14223005e+00,
       1.24703626e+00, 1.24703626e+00, 1.24703626e+00, 1.24703626e+00,
       1.31835154e+00, 1.31835154e+00, 1.31835154e+00, 1.31835154e+00,
       1.35115729e+00, 1.35115729e+00, 1.35115729e+00, 1.35115729e+00,
       1.35952683e+00, 1.35952683e+00, 1.35952683e+00, 1.35952683e+00,
       1.36000050e+00, 1.36000050e+00, 1.36000050e+00, 1.36000050e+00,
       1.35946783e+00, 1.35946783e+00, 1.35946783e+00, 1.35946783e+00,
       1.35931504e+00, 1.35931504e+00, 1.35931504e+00, 1.35931504e+00,
       1.36014004e+00, 1.36014004e+00, 1.36014004e+00, 1.36014004e+00,
       1.36169449e+00, 1.36169449e+00, 1.36169449e+00, 1.36169449e+00,
       1.36442795e+00, 1.36442795e+00, 1.36442795e+00, 1.36442795e+00,
       1.36544109e+00, 1.36544109e+00, 1.36544109e+00, 1.36544109e+00,
       1.36179797e+00, 1.36179797e+00, 1.36179797e+00, 1.36179797e+00,
       1.33753550e+00, 1.33753550e+00, 1.33753550e+00, 1.33753550e+00,
       1.22289370e+00, 1.22289370e+00, 1.22289370e+00, 1.22289370e+00,
       8.07609730e-01, 8.07609730e-01, 8.07609730e-01, 8.07609730e-01,
       1.84578851e-01, 1.84578851e-01, 1.84578851e-01, 1.84578851e-01,
       1.72459356e-02, 1.72459356e-02, 1.72459356e-02, 1.72459356e-02,
       1.29636420e-03, 1.29636420e-03, 1.29636420e-03, 1.29636420e-03,
       9.56231757e-05, 9.56231757e-05, 9.56231757e-05, 9.56231757e-05,
       7.03861571e-06, 7.03861571e-06, 7.03861571e-06, 7.03861571e-06,
       5.17203032e-07, 5.17203032e-07, 5.17203032e-07, 5.17203032e-07,
       3.79012480e-08, 3.79012480e-08, 3.79012480e-08, 3.79012480e-08,
       2.76477945e-09, 2.76477945e-09, 2.76477945e-09, 2.76477945e-09,
       2.00229731e-10, 2.00229731e-10, 2.00229731e-10, 2.00229731e-10,
       1.43439296e-11, 1.43439296e-11, 1.43439296e-11, 1.43439296e-11,
       1.01180886e-12, 1.01180886e-12, 1.01180886e-12, 1.01180886e-12,
       6.98829576e-14, 6.98829576e-14, 6.98829576e-14, 6.98829576e-14,
       4.66606318e-15, 4.66606318e-15, 4.66606318e-15, 4.66606318e-15,
       3.37838020e-16, 3.37838020e-16, 3.37838020e-16, 3.37838020e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.9999999 , 0.9999999 , 0.9999999 ,
       0.9999999 , 0.99999916, 0.99999916, 0.99999916, 0.99999916,
       0.99999363, 0.99999363, 0.99999363, 0.99999363, 0.99995747,
       0.99995747, 0.99995747, 0.99995747, 0.99975257, 0.99975257,
       0.99975257, 0.99975257, 0.99876684, 0.99876684, 0.99876684,
       0.99876684, 0.99484634, 0.99484634, 0.99484634, 0.99484634,
       0.98236786, 0.98236786, 0.98236786, 0.98236786, 0.95157745,
       0.95157745, 0.95157745, 0.95157745, 0.89364753, 0.89364753,
       0.89364753, 0.89364753, 0.80925164, 0.80925164, 0.80925164,
       0.80925164, 0.70985244, 0.70985244, 0.70985244, 0.70985244,
       0.61872344, 0.61872344, 0.61872344, 0.61872344, 0.54078556,
       0.54078556, 0.54078556, 0.54078556, 0.49293771, 0.49293771,
       0.49293771, 0.49293771, 0.47368455, 0.47368455, 0.47368455,
       0.47368455, 0.46885678, 0.46885678, 0.46885678, 0.46885678,
       0.46721006, 0.46721006, 0.46721006, 0.46721006, 0.46578019,
       0.46578019, 0.46578019, 0.46578019, 0.46443757, 0.46443757,
       0.46443757, 0.46443757, 0.46363693, 0.46363693, 0.46363693,
       0.46363693, 0.46405796, 0.46405796, 0.46405796, 0.46405796,
       0.46529802, 0.46529802, 0.46529802, 0.46529802, 0.46568405,
       0.46568405, 0.46568405, 0.46568405, 0.46436586, 0.46436586,
       0.46436586, 0.46436586, 0.45372193, 0.45372193, 0.45372193,
       0.45372193, 0.40428218, 0.40428218, 0.40428218, 0.40428218,
       0.26242895, 0.26242895, 0.26242895, 0.26242895, 0.12688139,
       0.12688139, 0.12688139, 0.12688139, 0.10229679, 0.10229679,
       0.10229679, 0.10229679, 0.10017155, 0.10017155, 0.10017155,
       0.10017155, 0.10001265, 0.10001265, 0.10001265, 0.10001265,
       0.10000093, 0.10000093, 0.10000093, 0.10000093, 0.10000007,
       0.10000007, 0.10000007, 0.10000007, 0.10000001, 0.10000001,
       0.10000001, 0.10000001, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999988, 0.99999988, 0.99999988,
       0.99999988, 0.99999902, 0.99999902, 0.99999902, 0.99999902,
       0.99999302, 0.99999302, 0.99999302, 0.99999302, 0.99995587,
       0.99995587, 0.99995587, 0.99995587, 0.99975682, 0.99975682,
       0.99975682, 0.99975682, 0.99885188, 0.99885188, 0.99885188,
       0.99885188, 0.99545106, 0.99545106, 0.99545106, 0.99545106,
       0.98520362, 0.98520362, 0.98520362, 0.98520362, 0.96110441,
       0.96110441, 0.96110441, 0.96110441, 0.91728156, 0.91728156,
       0.91728156, 0.91728156, 0.85427981, 0.85427981, 0.85427981,
       0.85427981, 0.77971476, 0.77971476, 0.77971476, 0.77971476,
       0.71287025, 0.71287025, 0.71287025, 0.71287025, 0.64564457,
       0.64564457, 0.64564457, 0.64564457, 0.59826562, 0.59826562,
       0.59826562, 0.59826562, 0.58691045, 0.58691045, 0.58691045,
       0.58691045, 0.58906206, 0.58906206, 0.58906206, 0.58906206,
       0.59003485, 0.59003485, 0.59003485, 0.59003485, 0.58486504,
       0.58486504, 0.58486504, 0.58486504, 0.56744401, 0.56744401,
       0.56744401, 0.56744401, 0.53390234, 0.53390234, 0.53390234,
       0.53390234, 0.48345644, 0.48345644, 0.48345644, 0.48345644,
       0.41935629, 0.41935629, 0.41935629, 0.41935629, 0.3694156 ,
       0.3694156 , 0.3694156 , 0.3694156 , 0.34157081, 0.34157081,
       0.34157081, 0.34157081, 0.3267349 , 0.3267349 , 0.3267349 ,
       0.3267349 , 0.31430765, 0.31430765, 0.31430765, 0.31430765,
       0.28309759, 0.28309759, 0.28309759, 0.28309759, 0.19541361,
       0.19541361, 0.19541361, 0.19541361, 0.13508752, 0.13508752,
       0.13508752, 0.13508752, 0.12589416, 0.12589416, 0.12589416,
       0.12589416, 0.12506897, 0.12506897, 0.12506897, 0.12506897,
       0.12500514, 0.12500514, 0.12500514, 0.12500514, 0.12500038,
       0.12500038, 0.12500038, 0.12500038, 0.12500003, 0.12500003,
       0.12500003, 0.12500003, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
       7.50000144e-01, 7.50000144e-01, 7.50000144e-01, 7.50000144e-01,
       7.50001154e-01, 7.50001154e-01, 7.50001154e-01, 7.50001154e-01,
       7.50008260e-01, 7.50008260e-01, 7.50008260e-01, 7.50008260e-01,
       7.50052218e-01, 7.50052218e-01, 7.50052218e-01, 7.50052218e-01,
       7.50287727e-01, 7.50287727e-01, 7.50287727e-01, 7.50287727e-01,
       7.51358635e-01, 7.51358635e-01, 7.51358635e-01, 7.51358635e-01,
       7.55388706e-01, 7.55388706e-01, 7.55388706e-01, 7.55388706e-01,
       7.67599601e-01, 7.67599601e-01, 7.67599601e-01, 7.67599601e-01,
       7.96765297e-01, 7.96765297e-01, 7.96765297e-01, 7.96765297e-01,
       8.51520678e-01, 8.51520678e-01, 8.51520678e-01, 8.51520678e-01,
       9.34344216e-01, 9.34344216e-01, 9.34344216e-01, 9.34344216e-01,
       1.03659724e+00, 1.03659724e+00, 1.03659724e+00, 1.03659724e+00,
       1.14096365e+00, 1.14096365e+00, 1.14096365e+00, 1.14096365e+00,
       1.24306837e+00, 1.24306837e+00, 1.24306837e+00, 1.24306837e+00,
       1.31432670e+00, 1.31432670e+00, 1.31432670e+00, 1.31432670e+00,
       1.34867754e+00, 1.34867754e+00, 1.34867754e+00, 1.34867754e+00,
       1.35900751e+00, 1.35900751e+00, 1.35900751e+00, 1.35900751e+00,
       1.36059408e+00, 1.36059408e+00, 1.36059408e+00, 1.36059408e+00,
       1.36044668e+00, 1.36044668e+00, 1.36044668e+00, 1.36044668e+00,
       1.36010596e+00, 1.36010596e+00, 1.36010596e+00, 1.36010596e+00,
       1.36018463e+00, 1.36018463e+00, 1.36018463e+00, 1.36018463e+00,
       1.36083030e+00, 1.36083030e+00, 1.36083030e+00, 1.36083030e+00,
       1.36234837e+00, 1.36234837e+00, 1.36234837e+00, 1.36234837e+00,
       1.36463009e+00, 1.36463009e+00, 1.36463009e+00, 1.36463009e+00,
       1.36410988e+00, 1.36410988e+00, 1.36410988e+00, 1.36410988e+00,
       1.35701598e+00, 1.35701598e+00, 1.35701598e+00, 1.35701598e+00,
       1.31740523e+00, 1.31740523e+00, 1.31740523e+00, 1.31740523e+00,
       1.13985851e+00, 1.13985851e+00, 1.13985851e+00, 1.13985851e+00,
       6.02207928e-01, 6.02207928e-01, 6.02207928e-01, 6.02207928e-01,
       9.54826887e-02, 9.54826887e-02, 9.54826887e-02, 9.54826887e-02,
       7.91081899e-03, 7.91081899e-03, 7.91081899e-03, 7.91081899e-03,
       5.90658670e-04, 5.90658670e-04, 5.90658670e-04, 5.90658670e-04,
       4.36023608e-05, 4.36023608e-05, 4.36023608e-05, 4.36023608e-05,
       3.20991156e-06, 3.20991156e-06, 3.20991156e-06, 3.20991156e-06,
       2.35963719e-07, 2.35963719e-07, 2.35963719e-07, 2.35963719e-07,
       1.73040175e-08, 1.73040175e-08, 1.73040175e-08, 1.73040175e-08,
       1.26389111e-09, 1.26389111e-09, 1.26389111e-09, 1.26389111e-09,
       9.17314216e-11, 9.17314216e-11, 9.17314216e-11, 9.17314216e-11,
       6.59454231e-12, 6.59454231e-12, 6.59454231e-12, 6.59454231e-12,
       4.67644782e-13, 4.67644782e-13, 4.67644782e-13, 4.67644782e-13,
       3.25389011e-14, 3.25389011e-14, 3.25389011e-14, 3.25389011e-14,
       2.17274114e-15, 2.17274114e-15, 2.17274114e-15, 2.17274114e-15,
       1.63514197e-16, 1.63514197e-16, 1.63514197e-16, 1.63514197e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.99999983, 0.99999983, 0.99999983,
       0.99999983, 0.99999863, 0.99999863, 0.99999863, 0.99999863,
       0.99999023, 0.99999023, 0.99999023, 0.99999023, 0.99993822,
       0.99993822, 0.99993822, 0.99993822, 0.99965961, 0.99965961,
       0.99965961, 0.99965961, 0.99839366, 0.99839366, 0.99839366,
       0.99839366, 0.99364361, 0.99364361, 0.99364361, 0.99364361,
       0.9793869 , 0.9793869 , 0.9793869 , 0.9793869 , 0.94613945,
       0.94613945, 0.94613945, 0.94613945, 0.88659682, 0.88659682,
       0.88659682, 0.88659682, 0.80299287, 0.80299287, 0.80299287,
       0.80299287, 0.70694993, 0.70694993, 0.70694993, 0.70694993,
       0.61957684, 0.61957684, 0.61957684, 0.61957684, 0.54392052,
       0.54392052, 0.54392052, 0.54392052, 0.49542686, 0.49542686,
       0.49542686, 0.49542686, 0.47445103, 0.47445103, 0.47445103,
       0.47445103, 0.46915145, 0.46915145, 0.46915145, 0.46915145,
       0.46775039, 0.46775039, 0.46775039, 0.46775039, 0.4664833 ,
       0.4664833 , 0.4664833 , 0.4664833 , 0.46501843, 0.46501843,
       0.46501843, 0.46501843, 0.46374393, 0.46374393, 0.46374393,
       0.46374393, 0.46361884, 0.46361884, 0.46361884, 0.46361884,
       0.46424828, 0.46424828, 0.46424828, 0.46424828, 0.46530062,
       0.46530062, 0.46530062, 0.46530062, 0.46544329, 0.46544329,
       0.46544329, 0.46544329, 0.46257326, 0.46257326, 0.46257326,
       0.46257326, 0.44471278, 0.44471278, 0.44471278, 0.44471278,
       0.37244248, 0.37244248, 0.37244248, 0.37244248, 0.20801386,
       0.20801386, 0.20801386, 0.20801386, 0.11324933, 0.11324933,
       0.11324933, 0.11324933, 0.10104929, 0.10104929, 0.10104929,
       0.10104929, 0.10007815, 0.10007815, 0.10007815, 0.10007815,
       0.10000577, 0.10000577, 0.10000577, 0.10000577, 0.10000042,
       0.10000042, 0.10000042, 0.10000042, 0.10000003, 0.10000003,
       0.10000003, 0.10000003, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.9999998 , 0.9999998 , 0.9999998 ,
       0.9999998 , 0.99999846, 0.99999846, 0.99999846, 0.99999846,
       0.99998952, 0.99998952, 0.99998952, 0.99998952, 0.99993714,
       0.99993714, 0.99993714, 0.99993714, 0.99967122, 0.99967122,
       0.99967122, 0.99967122, 0.99852689, 0.99852689, 0.99852689,
       0.99852689, 0.99446052, 0.99446052, 0.99446052, 0.99446052,
       0.98287516, 0.98287516, 0.98287516, 0.98287516, 0.95703951,
       0.95703951, 0.95703951, 0.95703951, 0.91215643, 0.91215643,
       0.91215643, 0.91215643, 0.8497645 , 0.8497645 , 0.8497645 ,
       0.8497645 , 0.77754676, 0.77754676, 0.77754676, 0.77754676,
       0.71330927, 0.71330927, 0.71330927, 0.71330927, 0.64997203,
       0.64997203, 0.64997203, 0.64997203, 0.60097098, 0.60097098,
       0.60097098, 0.60097098, 0.58535154, 0.58535154, 0.58535154,
       0.58535154, 0.58659819, 0.58659819, 0.58659819, 0.58659819,
       0.58934885, 0.58934885, 0.58934885, 0.58934885, 0.58736059,
       0.58736059, 0.58736059, 0.58736059, 0.57621724, 0.57621724,
       0.57621724, 0.57621724, 0.55034135, 0.55034135, 0.55034135,
       0.55034135, 0.50742676, 0.50742676, 0.50742676, 0.50742676,
       0.44761191, 0.44761191, 0.44761191, 0.44761191, 0.38816796,
       0.38816796, 0.38816796, 0.38816796, 0.35214391, 0.35214391,
       0.35214391, 0.35214391, 0.3335225 , 0.3335225 , 0.3335225 ,
       0.3335225 , 0.32286182, 0.32286182, 0.32286182, 0.32286182,
       0.30990165, 0.30990165, 0.30990165, 0.30990165, 0.26354073,
       0.26354073, 0.26354073, 0.26354073, 0.16798532, 0.16798532,
       0.16798532, 0.16798532, 0.1299533 , 0.1299533 , 0.1299533 ,
       0.1299533 , 0.12541416, 0.12541416, 0.12541416, 0.12541416,
       0.12503153, 0.12503153, 0.12503153, 0.12503153, 0.12500234,
       0.12500234, 0.12500234, 0.12500234, 0.12500017, 0.12500017,
       0.12500017, 0.12500017, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
       7.50000240e-01, 7.50000240e-01, 7.50000240e-01, 7.50000240e-01,
       7.50001825e-01, 7.50001825e-01, 7.50001825e-01, 7.50001825e-01,
       7.50012395e-01, 7.50012395e-01, 7.50012395e-01, 7.50012395e-01,
       7.50074381e-01, 7.50074381e-01, 7.50074381e-01, 7.50074381e-01,
       7.50389013e-01, 7.50389013e-01, 7.50389013e-01, 7.50389013e-01,
       7.51743396e-01, 7.51743396e-01, 7.51743396e-01, 7.51743396e-01,
       7.56564809e-01, 7.56564809e-01, 7.56564809e-01, 7.56564809e-01,
       7.70391197e-01, 7.70391197e-01, 7.70391197e-01, 7.70391197e-01,
       8.01753316e-01, 8.01753316e-01, 8.01753316e-01, 8.01753316e-01,
       8.58071057e-01, 8.58071057e-01, 8.58071057e-01, 8.58071057e-01,
       9.40417104e-01, 9.40417104e-01, 9.40417104e-01, 9.40417104e-01,
       1.03928138e+00, 1.03928138e+00, 1.03928138e+00, 1.03928138e+00,
       1.13970389e+00, 1.13970389e+00, 1.13970389e+00, 1.13970389e+00,
       1.23914812e+00, 1.23914812e+00, 1.23914812e+00, 1.23914812e+00,
       1.31054875e+00, 1.31054875e+00, 1.31054875e+00, 1.31054875e+00,
       1.34625395e+00, 1.34625395e+00, 1.34625395e+00, 1.34625395e+00,
       1.35799687e+00, 1.35799687e+00, 1.35799687e+00, 1.35799687e+00,
       1.36074574e+00, 1.36074574e+00, 1.36074574e+00, 1.36074574e+00,
       1.36111035e+00, 1.36111035e+00, 1.36111035e+00, 1.36111035e+00,
       1.36105209e+00, 1.36105209e+00, 1.36105209e+00, 1.36105209e+00,
       1.36078907e+00, 1.36078907e+00, 1.36078907e+00, 1.36078907e+00,
       1.36071354e+00, 1.36071354e+00, 1.36071354e+00, 1.36071354e+00,
       1.36126545e+00, 1.36126545e+00, 1.36126545e+00, 1.36126545e+00,
       1.36293306e+00, 1.36293306e+00, 1.36293306e+00, 1.36293306e+00,
       1.36391003e+00, 1.36391003e+00, 1.36391003e+00, 1.36391003e+00,
       1.36223548e+00, 1.36223548e+00, 1.36223548e+00, 1.36223548e+00,
       1.35001289e+00, 1.35001289e+00, 1.35001289e+00, 1.35001289e+00,
       1.28580407e+00, 1.28580407e+00, 1.28580407e+00, 1.28580407e+00,
       1.02083102e+00, 1.02083102e+00, 1.02083102e+00, 1.02083102e+00,
       3.92354167e-01, 3.92354167e-01, 3.92354167e-01, 3.92354167e-01,
       4.60233453e-02, 4.60233453e-02, 4.60233453e-02, 4.60233453e-02,
       3.61135389e-03, 3.61135389e-03, 3.61135389e-03, 3.61135389e-03,
       2.68870213e-04, 2.68870213e-04, 2.68870213e-04, 2.68870213e-04,
       1.98606715e-05, 1.98606715e-05, 1.98606715e-05, 1.98606715e-05,
       1.46364464e-06, 1.46364464e-06, 1.46364464e-06, 1.46364464e-06,
       1.07646738e-07, 1.07646738e-07, 1.07646738e-07, 1.07646738e-07,
       7.89913828e-09, 7.89913828e-09, 7.89913828e-09, 7.89913828e-09,
       5.77602003e-10, 5.77602003e-10, 5.77602003e-10, 5.77602003e-10,
       4.20009750e-11, 4.20009750e-11, 4.20009750e-11, 4.20009750e-11,
       3.02859296e-12, 3.02859296e-12, 3.02859296e-12, 3.02859296e-12,
       2.15774482e-13, 2.15774482e-13, 2.15774482e-13, 2.15774482e-13,
       1.50503680e-14, 1.50503680e-14, 1.50503680e-14, 1.50503680e-14,
       1.05328765e-15, 1.05328765e-15, 1.05328765e-15, 1.05328765e-15,
       5.90101831e-17, 5.90101831e-17, 5.90101831e-17, 5.90101831e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999997, 0.99999997,
       0.99999997, 0.99999997, 0.99999972, 0.99999972, 0.99999972,
       0.99999972, 0.99999784, 0.99999784, 0.99999784, 0.99999784,
       0.99998533, 0.99998533, 0.99998533, 0.99998533, 0.999912  ,
       0.999912  , 0.999912  , 0.999912  , 0.99953981, 0.99953981,
       0.99953981, 0.99953981, 0.99793921, 0.99793921, 0.99793921,
       0.99793921, 0.99226162, 0.99226162, 0.99226162, 0.99226162,
       0.97615575, 0.97615575, 0.97615575, 0.97615575, 0.94055943,
       0.94055943, 0.94055943, 0.94055943, 0.87968697, 0.87968697,
       0.87968697, 0.87968697, 0.7970675 , 0.7970675 , 0.7970675 ,
       0.7970675 , 0.7043173 , 0.7043173 , 0.7043173 , 0.7043173 ,
       0.62032421, 0.62032421, 0.62032421, 0.62032421, 0.54686006,
       0.54686006, 0.54686006, 0.54686006, 0.49810099, 0.49810099,
       0.49810099, 0.49810099, 0.47541418, 0.47541418, 0.47541418,
       0.47541418, 0.46923871, 0.46923871, 0.46923871, 0.46923871,
       0.46803173, 0.46803173, 0.46803173, 0.46803173, 0.46700788,
       0.46700788, 0.46700788, 0.46700788, 0.46571924, 0.46571924,
       0.46571924, 0.46571924, 0.4641767 , 0.4641767 , 0.4641767 ,
       0.4641767 , 0.46358808, 0.46358808, 0.46358808, 0.46358808,
       0.46369014, 0.46369014, 0.46369014, 0.46369014, 0.46447516,
       0.46447516, 0.46447516, 0.46447516, 0.46535017, 0.46535017,
       0.46535017, 0.46535017, 0.46498179, 0.46498179, 0.46498179,
       0.46498179, 0.45937493, 0.45937493, 0.45937493, 0.45937493,
       0.43093306, 0.43093306, 0.43093306, 0.43093306, 0.32993773,
       0.32993773, 0.32993773, 0.32993773, 0.16285786, 0.16285786,
       0.16285786, 0.16285786, 0.10621868, 0.10621868, 0.10621868,
       0.10621868, 0.10047825, 0.10047825, 0.10047825, 0.10047825,
       0.10003557, 0.10003557, 0.10003557, 0.10003557, 0.10000263,
       0.10000263, 0.10000263, 0.10000263, 0.10000019, 0.10000019,
       0.10000019, 0.10000019, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999996, 0.99999996,
       0.99999996, 0.99999996, 0.99999967, 0.99999967, 0.99999967,
       0.99999967, 0.99999762, 0.99999762, 0.99999762, 0.99999762,
       0.99998459, 0.99998459, 0.99998459, 0.99998459, 0.99991206,
       0.99991206, 0.99991206, 0.99991206, 0.99956257, 0.99956257,
       0.99956257, 0.99956257, 0.99813629, 0.99813629, 0.99813629,
       0.99813629, 0.99333466, 0.99333466, 0.99333466, 0.99333466,
       0.98037152, 0.98037152, 0.98037152, 0.98037152, 0.9528877 ,
       0.9528877 , 0.9528877 , 0.9528877 , 0.90714025, 0.90714025,
       0.90714025, 0.90714025, 0.84549133, 0.84549133, 0.84549133,
       0.84549133, 0.7755971 , 0.7755971 , 0.7755971 , 0.7755971 ,
       0.71345002, 0.71345002, 0.71345002, 0.71345002, 0.65381042,
       0.65381042, 0.65381042, 0.65381042, 0.60449037, 0.60449037,
       0.60449037, 0.60449037, 0.58459071, 0.58459071, 0.58459071,
       0.58459071, 0.58451904, 0.58451904, 0.58451904, 0.58451904,
       0.58778013, 0.58778013, 0.58778013, 0.58778013, 0.58801938,
       0.58801938, 0.58801938, 0.58801938, 0.58183243, 0.58183243,
       0.58183243, 0.58183243, 0.56319798, 0.56319798, 0.56319798,
       0.56319798, 0.52817231, 0.52817231, 0.52817231, 0.52817231,
       0.47570938, 0.47570938, 0.47570938, 0.47570938, 0.41147965,
       0.41147965, 0.41147965, 0.41147965, 0.36562289, 0.36562289,
       0.36562289, 0.36562289, 0.34085096, 0.34085096, 0.34085096,
       0.34085096, 0.32857429, 0.32857429, 0.32857429, 0.32857429,
       0.32046461, 0.32046461, 0.32046461, 0.32046461, 0.30277278,
       0.30277278, 0.30277278, 0.30277278, 0.23628223, 0.23628223,
       0.23628223, 0.23628223, 0.14837728, 0.14837728, 0.14837728,
       0.14837728, 0.12738162, 0.12738162, 0.12738162, 0.12738162,
       0.12519072, 0.12519072, 0.12519072, 0.12519072, 0.12501437,
       0.12501437, 0.12501437, 0.12501437, 0.12500107, 0.12500107,
       0.12500107, 0.12500107, 0.12500008, 0.12500008, 0.12500008,
       0.12500008, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
       7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
       7.50000390e-01, 7.50000390e-01, 7.50000390e-01, 7.50000390e-01,
       7.50002822e-01, 7.50002822e-01, 7.50002822e-01, 7.50002822e-01,
       7.50018229e-01, 7.50018229e-01, 7.50018229e-01, 7.50018229e-01,
       7.50104049e-01, 7.50104049e-01, 7.50104049e-01, 7.50104049e-01,
       7.50517585e-01, 7.50517585e-01, 7.50517585e-01, 7.50517585e-01,
       7.52205977e-01, 7.52205977e-01, 7.52205977e-01, 7.52205977e-01,
       7.57902857e-01, 7.57902857e-01, 7.57902857e-01, 7.57902857e-01,
       7.73399599e-01, 7.73399599e-01, 7.73399599e-01, 7.73399599e-01,
       8.06867047e-01, 8.06867047e-01, 8.06867047e-01, 8.06867047e-01,
       8.64509234e-01, 8.64509234e-01, 8.64509234e-01, 8.64509234e-01,
       9.46188008e-01, 9.46188008e-01, 9.46188008e-01, 9.46188008e-01,
       1.04182143e+00, 1.04182143e+00, 1.04182143e+00, 1.04182143e+00,
       1.13851947e+00, 1.13851947e+00, 1.13851947e+00, 1.13851947e+00,
       1.23521943e+00, 1.23521943e+00, 1.23521943e+00, 1.23521943e+00,
       1.30684121e+00, 1.30684121e+00, 1.30684121e+00, 1.30684121e+00,
       1.34402276e+00, 1.34402276e+00, 1.34402276e+00, 1.34402276e+00,
       1.35679818e+00, 1.35679818e+00, 1.35679818e+00, 1.35679818e+00,
       1.36042879e+00, 1.36042879e+00, 1.36042879e+00, 1.36042879e+00,
       1.36144375e+00, 1.36144375e+00, 1.36144375e+00, 1.36144375e+00,
       1.36176750e+00, 1.36176750e+00, 1.36176750e+00, 1.36176750e+00,
       1.36169308e+00, 1.36169308e+00, 1.36169308e+00, 1.36169308e+00,
       1.36111048e+00, 1.36111048e+00, 1.36111048e+00, 1.36111048e+00,
       1.36105105e+00, 1.36105105e+00, 1.36105105e+00, 1.36105105e+00,
       1.36162469e+00, 1.36162469e+00, 1.36162469e+00, 1.36162469e+00,
       1.36281678e+00, 1.36281678e+00, 1.36281678e+00, 1.36281678e+00,
       1.36293589e+00, 1.36293589e+00, 1.36293589e+00, 1.36293589e+00,
       1.35989169e+00, 1.35989169e+00, 1.35989169e+00, 1.35989169e+00,
       1.33857964e+00, 1.33857964e+00, 1.33857964e+00, 1.33857964e+00,
       1.23678480e+00, 1.23678480e+00, 1.23678480e+00, 1.23678480e+00,
       8.59426221e-01, 8.59426221e-01, 8.59426221e-01, 8.59426221e-01,
       2.22121850e-01, 2.22121850e-01, 2.22121850e-01, 2.22121850e-01,
       2.16158662e-02, 2.16158662e-02, 2.16158662e-02, 2.16158662e-02,
       1.64641832e-03, 1.64641832e-03, 1.64641832e-03, 1.64641832e-03,
       1.22204390e-04, 1.22204390e-04, 1.22204390e-04, 1.22204390e-04,
       9.04194482e-06, 9.04194482e-06, 9.04194482e-06, 9.04194482e-06,
       6.67040993e-07, 6.67040993e-07, 6.67040993e-07, 6.67040993e-07,
       4.90964691e-08, 4.90964691e-08, 4.90964691e-08, 4.90964691e-08,
       3.60523547e-09, 3.60523547e-09, 3.60523547e-09, 3.60523547e-09,
       2.63885888e-10, 2.63885888e-10, 2.63885888e-10, 2.63885888e-10,
       1.92204794e-11, 1.92204794e-11, 1.92204794e-11, 1.92204794e-11,
       1.38961104e-12, 1.38961104e-12, 1.38961104e-12, 1.38961104e-12,
       9.92868582e-14, 9.92868582e-14, 9.92868582e-14, 9.92868582e-14,
       7.03275916e-15, 7.03275916e-15, 7.03275916e-15, 7.03275916e-15,
       5.17027335e-16, 5.17027335e-16, 5.17027335e-16, 5.17027335e-16,
       3.42591394e-17, 3.42591394e-17, 3.42591394e-17, 3.42591394e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999994, 0.99999994,
       0.99999994, 0.99999994, 0.99999954, 0.99999954, 0.99999954,
       0.99999954, 0.99999666, 0.99999666, 0.99999666, 0.99999666,
       0.99997843, 0.99997843, 0.99997843, 0.99997843, 0.99987689,
       0.99987689, 0.99987689, 0.99987689, 0.99938776, 0.99938776,
       0.99938776, 0.99938776, 0.99739311, 0.99739311, 0.99739311,
       0.99739311, 0.99069162, 0.99069162, 0.99069162, 0.99069162,
       0.97268505, 0.97268505, 0.97268505, 0.97268505, 0.93486932,
       0.93486932, 0.93486932, 0.93486932, 0.87293717, 0.87293717,
       0.87293717, 0.87293717, 0.79146304, 0.79146304, 0.79146304,
       0.79146304, 0.70191535, 0.70191535, 0.70191535, 0.70191535,
       0.62102876, 0.62102876, 0.62102876, 0.62102876, 0.54957627,
       0.54957627, 0.54957627, 0.54957627, 0.50083599, 0.50083599,
       0.50083599, 0.50083599, 0.47665599, 0.47665599, 0.47665599,
       0.47665599, 0.46931339, 0.46931339, 0.46931339, 0.46931339,
       0.4680499 , 0.4680499 , 0.4680499 , 0.4680499 , 0.46732564,
       0.46732564, 0.46732564, 0.46732564, 0.46628964, 0.46628964,
       0.46628964, 0.46628964, 0.46482191, 0.46482191, 0.46482191,
       0.46482191, 0.46383924, 0.46383924, 0.46383924, 0.46383924,
       0.46359009, 0.46359009, 0.46359009, 0.46359009, 0.46381923,
       0.46381923, 0.46381923, 0.46381923, 0.46482679, 0.46482679,
       0.46482679, 0.46482679, 0.46530733, 0.46530733, 0.46530733,
       0.46530733, 0.46390266, 0.46390266, 0.46390266, 0.46390266,
       0.45436119, 0.45436119, 0.45436119, 0.45436119, 0.41039534,
       0.41039534, 0.41039534, 0.41039534, 0.27755879, 0.27755879,
       0.27755879, 0.27755879, 0.13288495, 0.13288495, 0.13288495,
       0.13288495, 0.10288468, 0.10288468, 0.10288468, 0.10288468,
       0.1002179 , 0.1002179 , 0.1002179 , 0.1002179 , 0.10001617,
       0.10001617, 0.10001617, 0.10001617, 0.1000012 , 0.1000012 ,
       0.1000012 , 0.1000012 , 0.10000009, 0.10000009, 0.10000009,
       0.10000009, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999993, 0.99999993,
       0.99999993, 0.99999993, 0.99999948, 0.99999948, 0.99999948,
       0.99999948, 0.99999639, 0.99999639, 0.99999639, 0.99999639,
       0.99997776, 0.99997776, 0.99997776, 0.99997776, 0.99987902,
       0.99987902, 0.99987902, 0.99987902, 0.99942658, 0.99942658,
       0.99942658, 0.99942658, 0.99767258, 0.99767258, 0.99767258,
       0.99767258, 0.99206839, 0.99206839, 0.99206839, 0.99206839,
       0.97770184, 0.97770184, 0.97770184, 0.97770184, 0.94867108,
       0.94867108, 0.94867108, 0.94867108, 0.90224525, 0.90224525,
       0.90224525, 0.90224525, 0.84145258, 0.84145258, 0.84145258,
       0.84145258, 0.77386505, 0.77386505, 0.77386505, 0.77386505,
       0.71340462, 0.71340462, 0.71340462, 0.71340462, 0.65703975,
       0.65703975, 0.65703975, 0.65703975, 0.60849329, 0.60849329,
       0.60849329, 0.60849329, 0.58468831, 0.58468831, 0.58468831,
       0.58468831, 0.58294187, 0.58294187, 0.58294187, 0.58294187,
       0.58573115, 0.58573115, 0.58573115, 0.58573115, 0.58763646,
       0.58763646, 0.58763646, 0.58763646, 0.58482843, 0.58482843,
       0.58482843, 0.58482843, 0.57251091, 0.57251091, 0.57251091,
       0.57251091, 0.54537817, 0.54537817, 0.54537817, 0.54537817,
       0.50073074, 0.50073074, 0.50073074, 0.50073074, 0.4391213 ,
       0.4391213 , 0.4391213 , 0.4391213 , 0.38293704, 0.38293704,
       0.38293704, 0.38293704, 0.35013347, 0.35013347, 0.35013347,
       0.35013347, 0.33368088, 0.33368088, 0.33368088, 0.33368088,
       0.32582494, 0.32582494, 0.32582494, 0.32582494, 0.31844833,
       0.31844833, 0.31844833, 0.31844833, 0.29046653, 0.29046653,
       0.29046653, 0.29046653, 0.20455633, 0.20455633, 0.20455633,
       0.20455633, 0.1372754 , 0.1372754 , 0.1372754 , 0.1372754 ,
       0.12612182, 0.12612182, 0.12612182, 0.12612182, 0.1250873 ,
       0.1250873 , 0.1250873 , 0.1250873 , 0.12500654, 0.12500654,
       0.12500654, 0.12500654, 0.12500049, 0.12500049, 0.12500049,
       0.12500049, 0.12500004, 0.12500004, 0.12500004, 0.12500004,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000010e-01, 7.50000010e-01, 7.50000010e-01, 7.50000010e-01,
       7.50000081e-01, 7.50000081e-01, 7.50000081e-01, 7.50000081e-01,
       7.50000620e-01, 7.50000620e-01, 7.50000620e-01, 7.50000620e-01,
       7.50004274e-01, 7.50004274e-01, 7.50004274e-01, 7.50004274e-01,
       7.50026313e-01, 7.50026313e-01, 7.50026313e-01, 7.50026313e-01,
       7.50143141e-01, 7.50143141e-01, 7.50143141e-01, 7.50143141e-01,
       7.50678514e-01, 7.50678514e-01, 7.50678514e-01, 7.50678514e-01,
       7.52755312e-01, 7.52755312e-01, 7.52755312e-01, 7.52755312e-01,
       7.59409383e-01, 7.59409383e-01, 7.59409383e-01, 7.59409383e-01,
       7.76615231e-01, 7.76615231e-01, 7.76615231e-01, 7.76615231e-01,
       8.12080151e-01, 8.12080151e-01, 8.12080151e-01, 8.12080151e-01,
       8.70817643e-01, 8.70817643e-01, 8.70817643e-01, 8.70817643e-01,
       9.51667486e-01, 9.51667486e-01, 9.51667486e-01, 9.51667486e-01,
       1.04421860e+00, 1.04421860e+00, 1.04421860e+00, 1.04421860e+00,
       1.13749267e+00, 1.13749267e+00, 1.13749267e+00, 1.13749267e+00,
       1.23129415e+00, 1.23129415e+00, 1.23129415e+00, 1.23129415e+00,
       1.30304219e+00, 1.30304219e+00, 1.30304219e+00, 1.30304219e+00,
       1.34192905e+00, 1.34192905e+00, 1.34192905e+00, 1.34192905e+00,
       1.35567521e+00, 1.35567521e+00, 1.35567521e+00, 1.35567521e+00,
       1.35980921e+00, 1.35980921e+00, 1.35980921e+00, 1.35980921e+00,
       1.36138601e+00, 1.36138601e+00, 1.36138601e+00, 1.36138601e+00,
       1.36219441e+00, 1.36219441e+00, 1.36219441e+00, 1.36219441e+00,
       1.36249996e+00, 1.36249996e+00, 1.36249996e+00, 1.36249996e+00,
       1.36190367e+00, 1.36190367e+00, 1.36190367e+00, 1.36190367e+00,
       1.36127546e+00, 1.36127546e+00, 1.36127546e+00, 1.36127546e+00,
       1.36128875e+00, 1.36128875e+00, 1.36128875e+00, 1.36128875e+00,
       1.36152144e+00, 1.36152144e+00, 1.36152144e+00, 1.36152144e+00,
       1.36239947e+00, 1.36239947e+00, 1.36239947e+00, 1.36239947e+00,
       1.36213183e+00, 1.36213183e+00, 1.36213183e+00, 1.36213183e+00,
       1.35586085e+00, 1.35586085e+00, 1.35586085e+00, 1.35586085e+00,
       1.32010356e+00, 1.32010356e+00, 1.32010356e+00, 1.32010356e+00,
       1.16287547e+00, 1.16287547e+00, 1.16287547e+00, 1.16287547e+00,
       6.61162492e-01, 6.61162492e-01, 6.61162492e-01, 6.61162492e-01,
       1.16351678e-01, 1.16351678e-01, 1.16351678e-01, 1.16351678e-01,
       9.97096672e-03, 9.97096672e-03, 9.97096672e-03, 9.97096672e-03,
       7.48552643e-04, 7.48552643e-04, 7.48552643e-04, 7.48552643e-04,
       5.55786565e-05, 5.55786565e-05, 5.55786565e-05, 5.55786565e-05,
       4.11419588e-06, 4.11419588e-06, 4.11419588e-06, 4.11419588e-06,
       3.03837917e-07, 3.03837917e-07, 3.03837917e-07, 3.03837917e-07,
       2.23849014e-08, 2.23849014e-08, 2.23849014e-08, 2.23849014e-08,
       1.64507675e-09, 1.64507675e-09, 1.64507675e-09, 1.64507675e-09,
       1.20527942e-10, 1.20527942e-10, 1.20527942e-10, 1.20527942e-10,
       8.79167161e-12, 8.79167161e-12, 8.79167161e-12, 8.79167161e-12,
       6.36916518e-13, 6.36916518e-13, 6.36916518e-13, 6.36916518e-13,
       4.58094779e-14, 4.58094779e-14, 4.58094779e-14, 4.58094779e-14,
       3.28064473e-15, 3.28064473e-15, 3.28064473e-15, 3.28064473e-15,
       2.21511670e-16, 2.21511670e-16, 2.21511670e-16, 2.21511670e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.9999999 , 0.9999999 ,
       0.9999999 , 0.9999999 , 0.99999927, 0.99999927, 0.99999927,
       0.99999927, 0.99999494, 0.99999494, 0.99999494, 0.99999494,
       0.99996887, 0.99996887, 0.99996887, 0.99996887, 0.99983065,
       0.99983065, 0.99983065, 0.99983065, 0.99919747, 0.99919747,
       0.99919747, 0.99919747, 0.99674497, 0.99674497, 0.99674497,
       0.99674497, 0.98892685, 0.98892685, 0.98892685, 0.98892685,
       0.96898818, 0.96898818, 0.96898818, 0.96898818, 0.92909988,
       0.92909988, 0.92909988, 0.92909988, 0.86636274, 0.86636274,
       0.86636274, 0.86636274, 0.7861649 , 0.7861649 , 0.7861649 ,
       0.7861649 , 0.69970743, 0.69970743, 0.69970743, 0.69970743,
       0.62175522, 0.62175522, 0.62175522, 0.62175522, 0.55208192,
       0.55208192, 0.55208192, 0.55208192, 0.50351395, 0.50351395,
       0.50351395, 0.50351395, 0.47813801, 0.47813801, 0.47813801,
       0.47813801, 0.46954374, 0.46954374, 0.46954374, 0.46954374,
       0.46791496, 0.46791496, 0.46791496, 0.46791496, 0.46740496,
       0.46740496, 0.46740496, 0.46740496, 0.466675  , 0.466675  ,
       0.466675  , 0.466675  , 0.46544862, 0.46544862, 0.46544862,
       0.46544862, 0.46432762, 0.46432762, 0.46432762, 0.46432762,
       0.46372285, 0.46372285, 0.46372285, 0.46372285, 0.46365147,
       0.46365147, 0.46365147, 0.46365147, 0.46418465, 0.46418465,
       0.46418465, 0.46418465, 0.46505548, 0.46505548, 0.46505548,
       0.46505548, 0.46493934, 0.46493934, 0.46493934, 0.46493934,
       0.46223591, 0.46223591, 0.46223591, 0.46223591, 0.44656565,
       0.44656565, 0.44656565, 0.44656565, 0.38108891, 0.38108891,
       0.38108891, 0.38108891, 0.22238569, 0.22238569, 0.22238569,
       0.22238569, 0.11633052, 0.11633052, 0.11633052, 0.11633052,
       0.10132364, 0.10132364, 0.10132364, 0.10132364, 0.10009904,
       0.10009904, 0.10009904, 0.10009904, 0.10000735, 0.10000735,
       0.10000735, 0.10000735, 0.10000054, 0.10000054, 0.10000054,
       0.10000054, 0.10000004, 0.10000004, 0.10000004, 0.10000004,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999989, 0.99999989,
       0.99999989, 0.99999989, 0.99999918, 0.99999918, 0.99999918,
       0.99999918, 0.99999463, 0.99999463, 0.99999463, 0.99999463,
       0.99996845, 0.99996845, 0.99996845, 0.99996845, 0.99983612,
       0.99983612, 0.99983612, 0.99983612, 0.9992586 , 0.9992586 ,
       0.9992586 , 0.9992586 , 0.99712842, 0.99712842, 0.99712842,
       0.99712842, 0.99065816, 0.99065816, 0.99065816, 0.99065816,
       0.97487697, 0.97487697, 0.97487697, 0.97487697, 0.94441074,
       0.94441074, 0.94441074, 0.94441074, 0.89748102, 0.89748102,
       0.89748102, 0.89748102, 0.83763755, 0.83763755, 0.83763755,
       0.83763755, 0.77233781, 0.77233781, 0.77233781, 0.77233781,
       0.7132907 , 0.7132907 , 0.7132907 , 0.7132907 , 0.65963706,
       0.65963706, 0.65963706, 0.65963706, 0.612651  , 0.612651  ,
       0.612651  , 0.612651  , 0.5857125 , 0.5857125 , 0.5857125 ,
       0.5857125 , 0.58169792, 0.58169792, 0.58169792, 0.58169792,
       0.5836328 , 0.5836328 , 0.5836328 , 0.5836328 , 0.58674094,
       0.58674094, 0.58674094, 0.58674094, 0.58596439, 0.58596439,
       0.58596439, 0.58596439, 0.57862616, 0.57862616, 0.57862616,
       0.57862616, 0.55885909, 0.55885909, 0.55885909, 0.55885909,
       0.52235302, 0.52235302, 0.52235302, 0.52235302, 0.46790255,
       0.46790255, 0.46790255, 0.46790255, 0.40461805, 0.40461805,
       0.40461805, 0.40461805, 0.36237207, 0.36237207, 0.36237207,
       0.36237207, 0.33984239, 0.33984239, 0.33984239, 0.33984239,
       0.32970398, 0.32970398, 0.32970398, 0.32970398, 0.32449566,
       0.32449566, 0.32449566, 0.32449566, 0.31491343, 0.31491343,
       0.31491343, 0.31491343, 0.2715366 , 0.2715366 , 0.2715366 ,
       0.2715366 , 0.17519676, 0.17519676, 0.17519676, 0.17519676,
       0.13110272, 0.13110272, 0.13110272, 0.13110272, 0.12551958,
       0.12551958, 0.12551958, 0.12551958, 0.12503987, 0.12503987,
       0.12503987, 0.12503987, 0.12500298, 0.12500298, 0.12500298,
       0.12500298, 0.12500022, 0.12500022, 0.12500022, 0.12500022,
       0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
       7.50000132e-01, 7.50000132e-01, 7.50000132e-01, 7.50000132e-01,
       7.50000966e-01, 7.50000966e-01, 7.50000966e-01, 7.50000966e-01,
       7.50006351e-01, 7.50006351e-01, 7.50006351e-01, 7.50006351e-01,
       7.50037333e-01, 7.50037333e-01, 7.50037333e-01, 7.50037333e-01,
       7.50193899e-01, 7.50193899e-01, 7.50193899e-01, 7.50193899e-01,
       7.50877324e-01, 7.50877324e-01, 7.50877324e-01, 7.50877324e-01,
       7.53400222e-01, 7.53400222e-01, 7.53400222e-01, 7.53400222e-01,
       7.61089231e-01, 7.61089231e-01, 7.61089231e-01, 7.61089231e-01,
       7.80026437e-01, 7.80026437e-01, 7.80026437e-01, 7.80026437e-01,
       8.17367158e-01, 8.17367158e-01, 8.17367158e-01, 8.17367158e-01,
       8.76981911e-01, 8.76981911e-01, 8.76981911e-01, 8.76981911e-01,
       9.56868187e-01, 9.56868187e-01, 9.56868187e-01, 9.56868187e-01,
       1.04646915e+00, 1.04646915e+00, 1.04646915e+00, 1.04646915e+00,
       1.13664890e+00, 1.13664890e+00, 1.13664890e+00, 1.13664890e+00,
       1.22747197e+00, 1.22747197e+00, 1.22747197e+00, 1.22747197e+00,
       1.29906860e+00, 1.29906860e+00, 1.29906860e+00, 1.29906860e+00,
       1.33980440e+00, 1.33980440e+00, 1.33980440e+00, 1.33980440e+00,
       1.35473761e+00, 1.35473761e+00, 1.35473761e+00, 1.35473761e+00,
       1.35912884e+00, 1.35912884e+00, 1.35912884e+00, 1.35912884e+00,
       1.36103279e+00, 1.36103279e+00, 1.36103279e+00, 1.36103279e+00,
       1.36224006e+00, 1.36224006e+00, 1.36224006e+00, 1.36224006e+00,
       1.36307271e+00, 1.36307271e+00, 1.36307271e+00, 1.36307271e+00,
       1.36277930e+00, 1.36277930e+00, 1.36277930e+00, 1.36277930e+00,
       1.36186954e+00, 1.36186954e+00, 1.36186954e+00, 1.36186954e+00,
       1.36140807e+00, 1.36140807e+00, 1.36140807e+00, 1.36140807e+00,
       1.36104332e+00, 1.36104332e+00, 1.36104332e+00, 1.36104332e+00,
       1.36139643e+00, 1.36139643e+00, 1.36139643e+00, 1.36139643e+00,
       1.36210857e+00, 1.36210857e+00, 1.36210857e+00, 1.36210857e+00,
       1.36065559e+00, 1.36065559e+00, 1.36065559e+00, 1.36065559e+00,
       1.34903815e+00, 1.34903815e+00, 1.34903815e+00, 1.34903815e+00,
       1.29211103e+00, 1.29211103e+00, 1.29211103e+00, 1.29211103e+00,
       1.05539569e+00, 1.05539569e+00, 1.05539569e+00, 1.05539569e+00,
       4.48123192e-01, 4.48123192e-01, 4.48123192e-01, 4.48123192e-01,
       5.68576756e-02, 5.68576756e-02, 5.68576756e-02, 5.68576756e-02,
       4.54568441e-03, 4.54568441e-03, 4.54568441e-03, 4.54568441e-03,
       3.40320288e-04, 3.40320288e-04, 3.40320288e-04, 3.40320288e-04,
       2.52658640e-05, 2.52658640e-05, 2.52658640e-05, 2.52658640e-05,
       1.87162703e-06, 1.87162703e-06, 1.87162703e-06, 1.87162703e-06,
       1.38344702e-07, 1.38344702e-07, 1.38344702e-07, 1.38344702e-07,
       1.02018842e-08, 1.02018842e-08, 1.02018842e-08, 1.02018842e-08,
       7.50419983e-10, 7.50419983e-10, 7.50419983e-10, 7.50419983e-10,
       5.50338981e-11, 5.50338981e-11, 5.50338981e-11, 5.50338981e-11,
       4.01951569e-12, 4.01951569e-12, 4.01951569e-12, 4.01951569e-12,
       2.91936804e-13, 2.91936804e-13, 2.91936804e-13, 2.91936804e-13,
       2.11199253e-14, 2.11199253e-14, 2.11199253e-14, 2.11199253e-14,
       1.47398293e-15, 1.47398293e-15, 1.47398293e-15, 1.47398293e-15,
       9.45362951e-17, 9.45362951e-17, 9.45362951e-17, 9.45362951e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999984, 0.99999984,
       0.99999984, 0.99999984, 0.99999886, 0.99999886, 0.99999886,
       0.99999886, 0.99999249, 0.99999249, 0.99999249, 0.99999249,
       0.99995583, 0.99995583, 0.99995583, 0.99995583, 0.9997706 ,
       0.9997706 , 0.9997706 , 0.9997706 , 0.99896245, 0.99896245,
       0.99896245, 0.99896245, 0.9959846 , 0.9959846 , 0.9959846 ,
       0.9959846 , 0.98696264, 0.98696264, 0.98696264, 0.98696264,
       0.96508085, 0.96508085, 0.96508085, 0.96508085, 0.92328027,
       0.92328027, 0.92328027, 0.92328027, 0.85997549, 0.85997549,
       0.85997549, 0.85997549, 0.78115703, 0.78115703, 0.78115703,
       0.78115703, 0.69766029, 0.69766029, 0.69766029, 0.69766029,
       0.62252492, 0.62252492, 0.62252492, 0.62252492, 0.55444993,
       0.55444993, 0.55444993, 0.55444993, 0.50606466, 0.50606466,
       0.50606466, 0.50606466, 0.4797491 , 0.4797491 , 0.4797491 ,
       0.4797491 , 0.47000142, 0.47000142, 0.47000142, 0.47000142,
       0.46778259, 0.46778259, 0.46778259, 0.46778259, 0.46731388,
       0.46731388, 0.46731388, 0.46731388, 0.46681772, 0.46681772,
       0.46681772, 0.46681772, 0.46594134, 0.46594134, 0.46594134,
       0.46594134, 0.46489255, 0.46489255, 0.46489255, 0.46489255,
       0.46406793, 0.46406793, 0.46406793, 0.46406793, 0.46371733,
       0.46371733, 0.46371733, 0.46371733, 0.46392827, 0.46392827,
       0.46392827, 0.46392827, 0.46457704, 0.46457704, 0.46457704,
       0.46457704, 0.4649299 , 0.4649299 , 0.4649299 , 0.4649299 ,
       0.464449  , 0.464449  , 0.464449  , 0.464449  , 0.45965373,
       0.45965373, 0.45965373, 0.45965373, 0.43413396, 0.43413396,
       0.43413396, 0.43413396, 0.3417067 , 0.3417067 , 0.3417067 ,
       0.3417067 , 0.17380695, 0.17380695, 0.17380695, 0.17380695,
       0.10772404, 0.10772404, 0.10772404, 0.10772404, 0.10060218,
       0.10060218, 0.10060218, 0.10060218, 0.10004502, 0.10004502,
       0.10004502, 0.10004502, 0.10000334, 0.10000334, 0.10000334,
       0.10000334, 0.10000025, 0.10000025, 0.10000025, 0.10000025,
       0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
       0.99999982, 0.99999982, 0.99999875, 0.99999875, 0.99999875,
       0.99999875, 0.99999216, 0.99999216, 0.99999216, 0.99999216,
       0.99995594, 0.99995594, 0.99995594, 0.99995594, 0.99978118,
       0.99978118, 0.99978118, 0.99978118, 0.99905363, 0.99905363,
       0.99905363, 0.99905363, 0.99649673, 0.99649673, 0.99649673,
       0.99649673, 0.98910195, 0.98910195, 0.98910195, 0.98910195,
       0.97190917, 0.97190917, 0.97190917, 0.97190917, 0.94012653,
       0.94012653, 0.94012653, 0.94012653, 0.89285479, 0.89285479,
       0.89285479, 0.89285479, 0.83403394, 0.83403394, 0.83403394,
       0.83403394, 0.77099739, 0.77099739, 0.77099739, 0.77099739,
       0.71316881, 0.71316881, 0.71316881, 0.71316881, 0.66167639,
       0.66167639, 0.66167639, 0.66167639, 0.61669901, 0.61669901,
       0.61669901, 0.61669901, 0.58751731, 0.58751731, 0.58751731,
       0.58751731, 0.58088401, 0.58088401, 0.58088401, 0.58088401,
       0.58197653, 0.58197653, 0.58197653, 0.58197653, 0.58530083,
       0.58530083, 0.58530083, 0.58530083, 0.58593749, 0.58593749,
       0.58593749, 0.58593749, 0.58219521, 0.58219521, 0.58219521,
       0.58219521, 0.56871482, 0.56871482, 0.56871482, 0.56871482,
       0.54028566, 0.54028566, 0.54028566, 0.54028566, 0.49391932,
       0.49391932, 0.49391932, 0.49391932, 0.43125951, 0.43125951,
       0.43125951, 0.43125951, 0.37842572, 0.37842572, 0.37842572,
       0.37842572, 0.34810948, 0.34810948, 0.34810948, 0.34810948,
       0.33368361, 0.33368361, 0.33368361, 0.33368361, 0.32786563,
       0.32786563, 0.32786563, 0.32786563, 0.32355452, 0.32355452,
       0.32355452, 0.32355452, 0.30821032, 0.30821032, 0.30821032,
       0.30821032, 0.24538437, 0.24538437, 0.24538437, 0.24538437,
       0.15274327, 0.15274327, 0.15274327, 0.15274327, 0.12792757,
       0.12792757, 0.12792757, 0.12792757, 0.12523902, 0.12523902,
       0.12523902, 0.12523902, 0.12501814, 0.12501814, 0.12501814,
       0.12501814, 0.12500135, 0.12500135, 0.12500135, 0.12500135,
       0.1250001 , 0.1250001 , 0.1250001 , 0.1250001 , 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
       7.50000211e-01, 7.50000211e-01, 7.50000211e-01, 7.50000211e-01,
       7.50001474e-01, 7.50001474e-01, 7.50001474e-01, 7.50001474e-01,
       7.50009273e-01, 7.50009273e-01, 7.50009273e-01, 7.50009273e-01,
       7.50052129e-01, 7.50052129e-01, 7.50052129e-01, 7.50052129e-01,
       7.50258907e-01, 7.50258907e-01, 7.50258907e-01, 7.50258907e-01,
       7.51119944e-01, 7.51119944e-01, 7.51119944e-01, 7.51119944e-01,
       7.54149241e-01, 7.54149241e-01, 7.54149241e-01, 7.54149241e-01,
       7.62945461e-01, 7.62945461e-01, 7.62945461e-01, 7.62945461e-01,
       7.83619793e-01, 7.83619793e-01, 7.83619793e-01, 7.83619793e-01,
       8.22703779e-01, 8.22703779e-01, 8.22703779e-01, 8.22703779e-01,
       8.82990632e-01, 8.82990632e-01, 8.82990632e-01, 8.82990632e-01,
       9.61803322e-01, 9.61803322e-01, 9.61803322e-01, 9.61803322e-01,
       1.04857800e+00, 1.04857800e+00, 1.04857800e+00, 1.04857800e+00,
       1.13591034e+00, 1.13591034e+00, 1.13591034e+00, 1.13591034e+00,
       1.22389255e+00, 1.22389255e+00, 1.22389255e+00, 1.22389255e+00,
       1.29496803e+00, 1.29496803e+00, 1.29496803e+00, 1.29496803e+00,
       1.33747715e+00, 1.33747715e+00, 1.33747715e+00, 1.33747715e+00,
       1.35392574e+00, 1.35392574e+00, 1.35392574e+00, 1.35392574e+00,
       1.35857156e+00, 1.35857156e+00, 1.35857156e+00, 1.35857156e+00,
       1.36055928e+00, 1.36055928e+00, 1.36055928e+00, 1.36055928e+00,
       1.36197585e+00, 1.36197585e+00, 1.36197585e+00, 1.36197585e+00,
       1.36328541e+00, 1.36328541e+00, 1.36328541e+00, 1.36328541e+00,
       1.36343618e+00, 1.36343618e+00, 1.36343618e+00, 1.36343618e+00,
       1.36275200e+00, 1.36275200e+00, 1.36275200e+00, 1.36275200e+00,
       1.36185315e+00, 1.36185315e+00, 1.36185315e+00, 1.36185315e+00,
       1.36106906e+00, 1.36106906e+00, 1.36106906e+00, 1.36106906e+00,
       1.36076174e+00, 1.36076174e+00, 1.36076174e+00, 1.36076174e+00,
       1.36153615e+00, 1.36153615e+00, 1.36153615e+00, 1.36153615e+00,
       1.36145251e+00, 1.36145251e+00, 1.36145251e+00, 1.36145251e+00,
       1.35798352e+00, 1.35798352e+00, 1.35798352e+00, 1.35798352e+00,
       1.33896458e+00, 1.33896458e+00, 1.33896458e+00, 1.33896458e+00,
       1.24901222e+00, 1.24901222e+00, 1.24901222e+00, 1.24901222e+00,
       9.05845095e-01, 9.05845095e-01, 9.05845095e-01, 9.05845095e-01,
       2.60939488e-01, 2.60939488e-01, 2.60939488e-01, 2.60939488e-01,
       2.66949863e-02, 2.66949863e-02, 2.66949863e-02, 2.66949863e-02,
       2.06759900e-03, 2.06759900e-03, 2.06759900e-03, 2.06759900e-03,
       1.54404335e-04, 1.54404335e-04, 1.54404335e-04, 1.54404335e-04,
       1.14811015e-05, 1.14811015e-05, 1.14811015e-05, 1.14811015e-05,
       8.51232178e-07, 8.51232178e-07, 8.51232178e-07, 8.51232178e-07,
       6.29700498e-08, 6.29700498e-08, 6.29700498e-08, 6.29700498e-08,
       4.64771793e-09, 4.64771793e-09, 4.64771793e-09, 4.64771793e-09,
       3.42187413e-10, 3.42187413e-10, 3.42187413e-10, 3.42187413e-10,
       2.51200466e-11, 2.51200466e-11, 2.51200466e-11, 2.51200466e-11,
       1.83703667e-12, 1.83703667e-12, 1.83703667e-12, 1.83703667e-12,
       1.33855888e-13, 1.33855888e-13, 1.33855888e-13, 1.33855888e-13,
       9.58591565e-15, 9.58591565e-15, 9.58591565e-15, 9.58591565e-15,
       6.58015436e-16, 6.58015436e-16, 6.58015436e-16, 6.58015436e-16,
       4.63362200e-17, 4.63362200e-17, 4.63362200e-17, 4.63362200e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.99999975, 0.99999975,
       0.99999975, 0.99999975, 0.99999826, 0.99999826, 0.99999826,
       0.99999826, 0.99998903, 0.99998903, 0.99998903, 0.99998903,
       0.99993832, 0.99993832, 0.99993832, 0.99993832, 0.9996937 ,
       0.9996937 , 0.9996937 , 0.9996937 , 0.9986757 , 0.9986757 ,
       0.9986757 , 0.9986757 , 0.99510219, 0.99510219, 0.99510219,
       0.99510219, 0.98479658, 0.98479658, 0.98479658, 0.98479658,
       0.96098067, 0.96098067, 0.96098067, 0.96098067, 0.91743778,
       0.91743778, 0.91743778, 0.91743778, 0.85378402, 0.85378402,
       0.85378402, 0.85378402, 0.7764234 , 0.7764234 , 0.7764234 ,
       0.7764234 , 0.69575388, 0.69575388, 0.69575388, 0.69575388,
       0.62328396, 0.62328396, 0.62328396, 0.62328396, 0.55678008,
       0.55678008, 0.55678008, 0.55678008, 0.50850264, 0.50850264,
       0.50850264, 0.50850264, 0.48137473, 0.48137473, 0.48137473,
       0.48137473, 0.47065375, 0.47065375, 0.47065375, 0.47065375,
       0.46777062, 0.46777062, 0.46777062, 0.46777062, 0.46716399,
       0.46716399, 0.46716399, 0.46716399, 0.46676886, 0.46676886,
       0.46676886, 0.46676886, 0.46619345, 0.46619345, 0.46619345,
       0.46619345, 0.46537137, 0.46537137, 0.46537137, 0.46537137,
       0.46458172, 0.46458172, 0.46458172, 0.46458172, 0.46395933,
       0.46395933, 0.46395933, 0.46395933, 0.46392493, 0.46392493,
       0.46392493, 0.46392493, 0.46425901, 0.46425901, 0.46425901,
       0.46425901, 0.46466477, 0.46466477, 0.46466477, 0.46466477,
       0.46482226, 0.46482226, 0.46482226, 0.46482226, 0.46376334,
       0.46376334, 0.46376334, 0.46376334, 0.45509168, 0.45509168,
       0.45509168, 0.45509168, 0.41543057, 0.41543057, 0.41543057,
       0.41543057, 0.29185634, 0.29185634, 0.29185634, 0.29185634,
       0.13928365, 0.13928365, 0.13928365, 0.13928365, 0.10357133,
       0.10357133, 0.10357133, 0.10357133, 0.10027368, 0.10027368,
       0.10027368, 0.10027368, 0.10002043, 0.10002043, 0.10002043,
       0.10002043, 0.10000152, 0.10000152, 0.10000152, 0.10000152,
       0.10000011, 0.10000011, 0.10000011, 0.10000011, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999996,
       0.99999996, 0.99999996, 0.99999996, 0.99999972, 0.99999972,
       0.99999972, 0.99999972, 0.99999813, 0.99999813, 0.99999813,
       0.99999813, 0.99998874, 0.99998874, 0.99998874, 0.99998874,
       0.99993939, 0.99993939, 0.99993939, 0.99993939, 0.99971172,
       0.99971172, 0.99971172, 0.99971172, 0.99880638, 0.99880638,
       0.99880638, 0.99880638, 0.99577085, 0.99577085, 0.99577085,
       0.99577085, 0.98739937, 0.98739937, 0.98739937, 0.98739937,
       0.96881177, 0.96881177, 0.96881177, 0.96881177, 0.93583686,
       0.93583686, 0.93583686, 0.93583686, 0.88837163, 0.88837163,
       0.88837163, 0.88837163, 0.83062885, 0.83062885, 0.83062885,
       0.83062885, 0.76981937, 0.76981937, 0.76981937, 0.76981937,
       0.71310496, 0.71310496, 0.71310496, 0.71310496, 0.66323748,
       0.66323748, 0.66323748, 0.66323748, 0.62045416, 0.62045416,
       0.62045416, 0.62045416, 0.58992516, 0.58992516, 0.58992516,
       0.58992516, 0.58052011, 0.58052011, 0.58052011, 0.58052011,
       0.58080503, 0.58080503, 0.58080503, 0.58080503, 0.58354665,
       0.58354665, 0.58354665, 0.58354665, 0.58540693, 0.58540693,
       0.58540693, 0.58540693, 0.58382526, 0.58382526, 0.58382526,
       0.58382526, 0.57540774, 0.57540774, 0.57540774, 0.57540774,
       0.55436649, 0.55436649, 0.55436649, 0.55436649, 0.51638779,
       0.51638779, 0.51638779, 0.51638779, 0.46017314, 0.46017314,
       0.46017314, 0.46017314, 0.39863657, 0.39863657, 0.39863657,
       0.39863657, 0.3593355 , 0.3593355 , 0.3593355 , 0.3593355 ,
       0.33897034, 0.33897034, 0.33897034, 0.33897034, 0.33057608,
       0.33057608, 0.33057608, 0.33057608, 0.32697565, 0.32697565,
       0.32697565, 0.32697565, 0.32222492, 0.32222492, 0.32222492,
       0.32222492, 0.29663114, 0.29663114, 0.29663114, 0.29663114,
       0.21326785, 0.21326785, 0.21326785, 0.21326785, 0.13963631,
       0.13963631, 0.13963631, 0.13963631, 0.12638405, 0.12638405,
       0.12638405, 0.12638405, 0.12510904, 0.12510904, 0.12510904,
       0.12510904, 0.12500824, 0.12500824, 0.12500824, 0.12500824,
       0.12500062, 0.12500062, 0.12500062, 0.12500062, 0.12500005,
       0.12500005, 0.12500005, 0.12500005, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
       7.50000045e-01, 7.50000045e-01, 7.50000045e-01, 7.50000045e-01,
       7.50000331e-01, 7.50000331e-01, 7.50000331e-01, 7.50000331e-01,
       7.50002210e-01, 7.50002210e-01, 7.50002210e-01, 7.50002210e-01,
       7.50013317e-01, 7.50013317e-01, 7.50013317e-01, 7.50013317e-01,
       7.50071715e-01, 7.50071715e-01, 7.50071715e-01, 7.50071715e-01,
       7.50341105e-01, 7.50341105e-01, 7.50341105e-01, 7.50341105e-01,
       7.51412648e-01, 7.51412648e-01, 7.51412648e-01, 7.51412648e-01,
       7.55010444e-01, 7.55010444e-01, 7.55010444e-01, 7.55010444e-01,
       7.64979298e-01, 7.64979298e-01, 7.64979298e-01, 7.64979298e-01,
       7.87380429e-01, 7.87380429e-01, 7.87380429e-01, 7.87380429e-01,
       8.28067152e-01, 8.28067152e-01, 8.28067152e-01, 8.28067152e-01,
       8.88835090e-01, 8.88835090e-01, 8.88835090e-01, 8.88835090e-01,
       9.66485823e-01, 9.66485823e-01, 9.66485823e-01, 9.66485823e-01,
       1.05055852e+00, 1.05055852e+00, 1.05055852e+00, 1.05055852e+00,
       1.13522481e+00, 1.13522481e+00, 1.13522481e+00, 1.13522481e+00,
       1.22058953e+00, 1.22058953e+00, 1.22058953e+00, 1.22058953e+00,
       1.29086599e+00, 1.29086599e+00, 1.29086599e+00, 1.29086599e+00,
       1.33487117e+00, 1.33487117e+00, 1.33487117e+00, 1.33487117e+00,
       1.35308250e+00, 1.35308250e+00, 1.35308250e+00, 1.35308250e+00,
       1.35819700e+00, 1.35819700e+00, 1.35819700e+00, 1.35819700e+00,
       1.36011186e+00, 1.36011186e+00, 1.36011186e+00, 1.36011186e+00,
       1.36156806e+00, 1.36156806e+00, 1.36156806e+00, 1.36156806e+00,
       1.36315058e+00, 1.36315058e+00, 1.36315058e+00, 1.36315058e+00,
       1.36379727e+00, 1.36379727e+00, 1.36379727e+00, 1.36379727e+00,
       1.36351067e+00, 1.36351067e+00, 1.36351067e+00, 1.36351067e+00,
       1.36261248e+00, 1.36261248e+00, 1.36261248e+00, 1.36261248e+00,
       1.36146436e+00, 1.36146436e+00, 1.36146436e+00, 1.36146436e+00,
       1.36063916e+00, 1.36063916e+00, 1.36063916e+00, 1.36063916e+00,
       1.36092008e+00, 1.36092008e+00, 1.36092008e+00, 1.36092008e+00,
       1.36127360e+00, 1.36127360e+00, 1.36127360e+00, 1.36127360e+00,
       1.36020110e+00, 1.36020110e+00, 1.36020110e+00, 1.36020110e+00,
       1.35450702e+00, 1.35450702e+00, 1.35450702e+00, 1.35450702e+00,
       1.32300030e+00, 1.32300030e+00, 1.32300030e+00, 1.32300030e+00,
       1.18237908e+00, 1.18237908e+00, 1.18237908e+00, 1.18237908e+00,
       7.15441717e-01, 7.15441717e-01, 7.15441717e-01, 7.15441717e-01,
       1.38769905e-01, 1.38769905e-01, 1.38769905e-01, 1.38769905e-01,
       1.23577720e-02, 1.23577720e-02, 1.23577720e-02, 1.23577720e-02,
       9.36224416e-04, 9.36224416e-04, 9.36224416e-04, 9.36224416e-04,
       7.00272710e-05, 7.00272710e-05, 7.00272710e-05, 7.00272710e-05,
       5.21364262e-06, 5.21364262e-06, 5.21364262e-06, 5.21364262e-06,
       3.86975587e-07, 3.86975587e-07, 3.86975587e-07, 3.86975587e-07,
       2.86533268e-08, 2.86533268e-08, 2.86533268e-08, 2.86533268e-08,
       2.11667470e-09, 2.11667470e-09, 2.11667470e-09, 2.11667470e-09,
       1.55981163e-10, 1.55981163e-10, 1.55981163e-10, 1.55981163e-10,
       1.14620004e-11, 1.14620004e-11, 1.14620004e-11, 1.14620004e-11,
       8.39464394e-13, 8.39464394e-13, 8.39464394e-13, 8.39464394e-13,
       6.10879150e-14, 6.10879150e-14, 6.10879150e-14, 6.10879150e-14,
       4.40544803e-15, 4.40544803e-15, 4.40544803e-15, 4.40544803e-15,
       3.15470277e-16, 3.15470277e-16, 3.15470277e-16, 3.15470277e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
       0.99999995, 0.99999995, 0.99999995, 0.99999961, 0.99999961,
       0.99999961, 0.99999961, 0.99999739, 0.99999739, 0.99999739,
       0.99999739, 0.99998424, 0.99998424, 0.99998424, 0.99998424,
       0.99991515, 0.99991515, 0.99991515, 0.99991515, 0.99959648,
       0.99959648, 0.99959648, 0.99959648, 0.99832987, 0.99832987,
       0.99832987, 0.99832987, 0.99408857, 0.99408857, 0.99408857,
       0.99408857, 0.98242851, 0.98242851, 0.98242851, 0.98242851,
       0.95670672, 0.95670672, 0.95670672, 0.95670672, 0.91159757,
       0.91159757, 0.91159757, 0.91159757, 0.8477941 , 0.8477941 ,
       0.8477941 , 0.8477941 , 0.77194869, 0.77194869, 0.77194869,
       0.77194869, 0.69397675, 0.69397675, 0.69397675, 0.69397675,
       0.62399737, 0.62399737, 0.62399737, 0.62399737, 0.55909955,
       0.55909955, 0.55909955, 0.55909955, 0.51089525, 0.51089525,
       0.51089525, 0.51089525, 0.48295725, 0.48295725, 0.48295725,
       0.48295725, 0.47140761, 0.47140761, 0.47140761, 0.47140761,
       0.46792021, 0.46792021, 0.46792021, 0.46792021, 0.46704157,
       0.46704157, 0.46704157, 0.46704157, 0.46664044, 0.46664044,
       0.46664044, 0.46664044, 0.46622055, 0.46622055, 0.46622055,
       0.46622055, 0.46568048, 0.46568048, 0.46568048, 0.46568048,
       0.46505167, 0.46505167, 0.46505167, 0.46505167, 0.46437416,
       0.46437416, 0.46437416, 0.46437416, 0.46411629, 0.46411629,
       0.46411629, 0.46411629, 0.46418296, 0.46418296, 0.46418296,
       0.46418296, 0.46437517, 0.46437517, 0.46437517, 0.46437517,
       0.46474262, 0.46474262, 0.46474262, 0.46474262, 0.4647905 ,
       0.4647905 , 0.4647905 , 0.4647905 , 0.46219808, 0.46219808,
       0.46219808, 0.46219808, 0.44788536, 0.44788536, 0.44788536,
       0.44788536, 0.38869085, 0.38869085, 0.38869085, 0.38869085,
       0.23647903, 0.23647903, 0.23647903, 0.23647903, 0.11972131,
       0.11972131, 0.11972131, 0.11972131, 0.10164215, 0.10164215,
       0.10164215, 0.10164215, 0.10012388, 0.10012388, 0.10012388,
       0.10012388, 0.10000926, 0.10000926, 0.10000926, 0.10000926,
       0.10000069, 0.10000069, 0.10000069, 0.10000069, 0.10000005,
       0.10000005, 0.10000005, 0.10000005, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
       0.99999994, 0.99999994, 0.99999994, 0.99999957, 0.99999957,
       0.99999957, 0.99999957, 0.99999725, 0.99999725, 0.99999725,
       0.99999725, 0.99998408, 0.99998408, 0.99998408, 0.99998408,
       0.99991777, 0.99991777, 0.99991777, 0.99991777, 0.99962494,
       0.99962494, 0.99962494, 0.99962494, 0.99851137, 0.99851137,
       0.99851137, 0.99851137, 0.99494469, 0.99494469, 0.99494469,
       0.99494469, 0.98555163, 0.98555163, 0.98555163, 0.98555163,
       0.96559893, 0.96559893, 0.96559893, 0.96559893, 0.93155858,
       0.93155858, 0.93155858, 0.93155858, 0.88403476, 0.88403476,
       0.88403476, 0.88403476, 0.8274092 , 0.8274092 , 0.8274092 ,
       0.8274092 , 0.76877221, 0.76877221, 0.76877221, 0.76877221,
       0.71316056, 0.71316056, 0.71316056, 0.71316056, 0.66441163,
       0.66441163, 0.66441163, 0.66441163, 0.62379118, 0.62379118,
       0.62379118, 0.62379118, 0.59276036, 0.59276036, 0.59276036,
       0.59276036, 0.58060214, 0.58060214, 0.58060214, 0.58060214,
       0.58004359, 0.58004359, 0.58004359, 0.58004359, 0.58181969,
       0.58181969, 0.58181969, 0.58181969, 0.58456085, 0.58456085,
       0.58456085, 0.58456085, 0.58426133, 0.58426133, 0.58426133,
       0.58426133, 0.57952111, 0.57952111, 0.57952111, 0.57952111,
       0.56481381, 0.56481381, 0.56481381, 0.56481381, 0.53498407,
       0.53498407, 0.53498407, 0.53498407, 0.48707968, 0.48707968,
       0.48707968, 0.48707968, 0.4240172 , 0.4240172 , 0.4240172 ,
       0.4240172 , 0.37419742, 0.37419742, 0.37419742, 0.37419742,
       0.34640254, 0.34640254, 0.34640254, 0.34640254, 0.33383188,
       0.33383188, 0.33383188, 0.33383188, 0.32905424, 0.32905424,
       0.32905424, 0.32905424, 0.32677563, 0.32677563, 0.32677563,
       0.32677563, 0.31923078, 0.31923078, 0.31923078, 0.31923078,
       0.27840167, 0.27840167, 0.27840167, 0.27840167, 0.1822785 ,
       0.1822785 , 0.1822785 , 0.1822785 , 0.13240005, 0.13240005,
       0.13240005, 0.13240005, 0.12564148, 0.12564148, 0.12564148,
       0.12564148, 0.12504969, 0.12504969, 0.12504969, 0.12504969,
       0.12500374, 0.12500374, 0.12500374, 0.12500374, 0.12500028,
       0.12500028, 0.12500028, 0.12500028, 0.12500002, 0.12500002,
       0.12500002, 0.12500002, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000072e-01, 7.50000072e-01, 7.50000072e-01, 7.50000072e-01,
       7.50000509e-01, 7.50000509e-01, 7.50000509e-01, 7.50000509e-01,
       7.50003258e-01, 7.50003258e-01, 7.50003258e-01, 7.50003258e-01,
       7.50018836e-01, 7.50018836e-01, 7.50018836e-01, 7.50018836e-01,
       7.50097297e-01, 7.50097297e-01, 7.50097297e-01, 7.50097297e-01,
       7.50443797e-01, 7.50443797e-01, 7.50443797e-01, 7.50443797e-01,
       7.51761984e-01, 7.51761984e-01, 7.51761984e-01, 7.51761984e-01,
       7.55991281e-01, 7.55991281e-01, 7.55991281e-01, 7.55991281e-01,
       7.67190124e-01, 7.67190124e-01, 7.67190124e-01, 7.67190124e-01,
       7.91292369e-01, 7.91292369e-01, 7.91292369e-01, 7.91292369e-01,
       8.33436036e-01, 8.33436036e-01, 8.33436036e-01, 8.33436036e-01,
       8.94508968e-01, 8.94508968e-01, 8.94508968e-01, 8.94508968e-01,
       9.70928324e-01, 9.70928324e-01, 9.70928324e-01, 9.70928324e-01,
       1.05242450e+00, 1.05242450e+00, 1.05242450e+00, 1.05242450e+00,
       1.13456684e+00, 1.13456684e+00, 1.13456684e+00, 1.13456684e+00,
       1.21752814e+00, 1.21752814e+00, 1.21752814e+00, 1.21752814e+00,
       1.28688080e+00, 1.28688080e+00, 1.28688080e+00, 1.28688080e+00,
       1.33202565e+00, 1.33202565e+00, 1.33202565e+00, 1.33202565e+00,
       1.35205511e+00, 1.35205511e+00, 1.35205511e+00, 1.35205511e+00,
       1.35794285e+00, 1.35794285e+00, 1.35794285e+00, 1.35794285e+00,
       1.35979765e+00, 1.35979765e+00, 1.35979765e+00, 1.35979765e+00,
       1.36117165e+00, 1.36117165e+00, 1.36117165e+00, 1.36117165e+00,
       1.36278081e+00, 1.36278081e+00, 1.36278081e+00, 1.36278081e+00,
       1.36384708e+00, 1.36384708e+00, 1.36384708e+00, 1.36384708e+00,
       1.36394428e+00, 1.36394428e+00, 1.36394428e+00, 1.36394428e+00,
       1.36340422e+00, 1.36340422e+00, 1.36340422e+00, 1.36340422e+00,
       1.36216954e+00, 1.36216954e+00, 1.36216954e+00, 1.36216954e+00,
       1.36091948e+00, 1.36091948e+00, 1.36091948e+00, 1.36091948e+00,
       1.36072488e+00, 1.36072488e+00, 1.36072488e+00, 1.36072488e+00,
       1.36080076e+00, 1.36080076e+00, 1.36080076e+00, 1.36080076e+00,
       1.36052967e+00, 1.36052967e+00, 1.36052967e+00, 1.36052967e+00,
       1.35904254e+00, 1.35904254e+00, 1.35904254e+00, 1.35904254e+00,
       1.34885124e+00, 1.34885124e+00, 1.34885124e+00, 1.34885124e+00,
       1.29744243e+00, 1.29744243e+00, 1.29744243e+00, 1.29744243e+00,
       1.08422445e+00, 1.08422445e+00, 1.08422445e+00, 1.08422445e+00,
       5.02990327e-01, 5.02990327e-01, 5.02990327e-01, 5.02990327e-01,
       6.93727442e-02, 6.93727442e-02, 6.93727442e-02, 6.93727442e-02,
       5.63191058e-03, 5.63191058e-03, 5.63191058e-03, 5.63191058e-03,
       4.24506091e-04, 4.24506091e-04, 4.24506091e-04, 4.24506091e-04,
       3.17404436e-05, 3.17404436e-05, 3.17404436e-05, 3.17404436e-05,
       2.36582375e-06, 2.36582375e-06, 2.36582375e-06, 2.36582375e-06,
       1.75833876e-07, 1.75833876e-07, 1.75833876e-07, 1.75833876e-07,
       1.30328080e-08, 1.30328080e-08, 1.30328080e-08, 1.30328080e-08,
       9.63639514e-10, 9.63639514e-10, 9.63639514e-10, 9.63639514e-10,
       7.10763736e-11, 7.10763736e-11, 7.10763736e-11, 7.10763736e-11,
       5.22825264e-12, 5.22825264e-12, 5.22825264e-12, 5.22825264e-12,
       3.83163730e-13, 3.83163730e-13, 3.83163730e-13, 3.83163730e-13,
       2.79726565e-14, 2.79726565e-14, 2.79726565e-14, 2.79726565e-14,
       2.02525897e-15, 2.02525897e-15, 2.02525897e-15, 2.02525897e-15,
       1.51631827e-16, 1.51631827e-16, 1.51631827e-16, 1.51631827e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999991,
       0.99999991, 0.99999991, 0.99999991, 0.9999994 , 0.9999994 ,
       0.9999994 , 0.9999994 , 0.99999614, 0.99999614, 0.99999614,
       0.99999614, 0.99997771, 0.99997771, 0.99997771, 0.99997771,
       0.99988488, 0.99988488, 0.99988488, 0.99988488, 0.99947502,
       0.99947502, 0.99947502, 0.99947502, 0.99791728, 0.99791728,
       0.99791728, 0.99791728, 0.99293536, 0.99293536, 0.99293536,
       0.99293536, 0.97986052, 0.97986052, 0.97986052, 0.97986052,
       0.95227911, 0.95227911, 0.95227911, 0.95227911, 0.90578254,
       0.90578254, 0.90578254, 0.90578254, 0.84200911, 0.84200911,
       0.84200911, 0.84200911, 0.76771824, 0.76771824, 0.76771824,
       0.76771824, 0.69232015, 0.69232015, 0.69232015, 0.69232015,
       0.62465064, 0.62465064, 0.62465064, 0.62465064, 0.56138795,
       0.56138795, 0.56138795, 0.56138795, 0.51330741, 0.51330741,
       0.51330741, 0.51330741, 0.4845093 , 0.4845093 , 0.4845093 ,
       0.4845093 , 0.47217185, 0.47217185, 0.47217185, 0.47217185,
       0.46819774, 0.46819774, 0.46819774, 0.46819774, 0.46701446,
       0.46701446, 0.46701446, 0.46701446, 0.46652199, 0.46652199,
       0.46652199, 0.46652199, 0.46611084, 0.46611084, 0.46611084,
       0.46611084, 0.46578348, 0.46578348, 0.46578348, 0.46578348,
       0.46535618, 0.46535618, 0.46535618, 0.46535618, 0.46482306,
       0.46482306, 0.46482306, 0.46482306, 0.46446841, 0.46446841,
       0.46446841, 0.46446841, 0.46430983, 0.46430983, 0.46430983,
       0.46430983, 0.46428048, 0.46428048, 0.46428048, 0.46428048,
       0.46452486, 0.46452486, 0.46452486, 0.46452486, 0.4649441 ,
       0.4649441 , 0.4649441 , 0.4649441 , 0.46428963, 0.46428963,
       0.46428963, 0.46428963, 0.45964556, 0.45964556, 0.45964556,
       0.45964556, 0.4368908 , 0.4368908 , 0.4368908 , 0.4368908 ,
       0.35200209, 0.35200209, 0.35200209, 0.35200209, 0.18536524,
       0.18536524, 0.18536524, 0.18536524, 0.10948877, 0.10948877,
       0.10948877, 0.10948877, 0.10074638, 0.10074638, 0.10074638,
       0.10074638, 0.10005616, 0.10005616, 0.10005616, 0.10005616,
       0.1000042 , 0.1000042 , 0.1000042 , 0.1000042 , 0.10000031,
       0.10000031, 0.10000031, 0.10000031, 0.10000002, 0.10000002,
       0.10000002, 0.10000002, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.9999999 ,
       0.9999999 , 0.9999999 , 0.9999999 , 0.99999935, 0.99999935,
       0.99999935, 0.99999935, 0.999996  , 0.999996  , 0.999996  ,
       0.999996  , 0.9999778 , 0.9999778 , 0.9999778 , 0.9999778 ,
       0.99988988, 0.99988988, 0.99988988, 0.99988988, 0.99951775,
       0.99951775, 0.99951775, 0.99951775, 0.99816293, 0.99816293,
       0.99816293, 0.99816293, 0.99401287, 0.99401287, 0.99401287,
       0.99401287, 0.98356146, 0.98356146, 0.98356146, 0.98356146,
       0.9622853 , 0.9622853 , 0.9622853 , 0.9622853 , 0.92730693,
       0.92730693, 0.92730693, 0.92730693, 0.87984577, 0.87984577,
       0.87984577, 0.87984577, 0.82436213, 0.82436213, 0.82436213,
       0.82436213, 0.76781991, 0.76781991, 0.76781991, 0.76781991,
       0.71338064, 0.71338064, 0.71338064, 0.71338064, 0.66530752,
       0.66530752, 0.66530752, 0.66530752, 0.62662899, 0.62662899,
       0.62662899, 0.62662899, 0.59584458, 0.59584458, 0.59584458,
       0.59584458, 0.58122522, 0.58122522, 0.58122522, 0.58122522,
       0.57945682, 0.57945682, 0.57945682, 0.57945682, 0.58056762,
       0.58056762, 0.58056762, 0.58056762, 0.58335259, 0.58335259,
       0.58335259, 0.58335259, 0.5840114 , 0.5840114 , 0.5840114 ,
       0.5840114 , 0.58173244, 0.58173244, 0.58173244, 0.58173244,
       0.57212127, 0.57212127, 0.57212127, 0.57212127, 0.54967525,
       0.54967525, 0.54967525, 0.54967525, 0.51027045, 0.51027045,
       0.51027045, 0.51027045, 0.45256286, 0.45256286, 0.45256286,
       0.45256286, 0.39319195, 0.39319195, 0.39319195, 0.39319195,
       0.35669662, 0.35669662, 0.35669662, 0.35669662, 0.33848333,
       0.33848333, 0.33848333, 0.33848333, 0.33098586, 0.33098586,
       0.33098586, 0.33098586, 0.32867169, 0.32867169, 0.32867169,
       0.32867169, 0.32673109, 0.32673109, 0.32673109, 0.32673109,
       0.31276146, 0.31276146, 0.31276146, 0.31276146, 0.25297057,
       0.25297057, 0.25297057, 0.25297057, 0.15774063, 0.15774063,
       0.15774063, 0.15774063, 0.12857133, 0.12857133, 0.12857133,
       0.12857133, 0.12529541, 0.12529541, 0.12529541, 0.12529541,
       0.12502259, 0.12502259, 0.12502259, 0.12502259, 0.1250017 ,
       0.1250017 , 0.1250017 , 0.1250017 , 0.12500013, 0.12500013,
       0.12500013, 0.12500013, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000015e-01, 7.50000015e-01, 7.50000015e-01, 7.50000015e-01,
       7.50000114e-01, 7.50000114e-01, 7.50000114e-01, 7.50000114e-01,
       7.50000768e-01, 7.50000768e-01, 7.50000768e-01, 7.50000768e-01,
       7.50004730e-01, 7.50004730e-01, 7.50004730e-01, 7.50004730e-01,
       7.50026264e-01, 7.50026264e-01, 7.50026264e-01, 7.50026264e-01,
       7.50130297e-01, 7.50130297e-01, 7.50130297e-01, 7.50130297e-01,
       7.50570647e-01, 7.50570647e-01, 7.50570647e-01, 7.50570647e-01,
       7.52174682e-01, 7.52174682e-01, 7.52174682e-01, 7.52174682e-01,
       7.57098423e-01, 7.57098423e-01, 7.57098423e-01, 7.57098423e-01,
       7.69575519e-01, 7.69575519e-01, 7.69575519e-01, 7.69575519e-01,
       7.95338848e-01, 7.95338848e-01, 7.95338848e-01, 7.95338848e-01,
       8.38790934e-01, 8.38790934e-01, 8.38790934e-01, 8.38790934e-01,
       9.00008072e-01, 9.00008072e-01, 9.00008072e-01, 9.00008072e-01,
       9.75143222e-01, 9.75143222e-01, 9.75143222e-01, 9.75143222e-01,
       1.05418743e+00, 1.05418743e+00, 1.05418743e+00, 1.05418743e+00,
       1.13392925e+00, 1.13392925e+00, 1.13392925e+00, 1.13392925e+00,
       1.21464803e+00, 1.21464803e+00, 1.21464803e+00, 1.21464803e+00,
       1.28307514e+00, 1.28307514e+00, 1.28307514e+00, 1.28307514e+00,
       1.32905104e+00, 1.32905104e+00, 1.32905104e+00, 1.32905104e+00,
       1.35077100e+00, 1.35077100e+00, 1.35077100e+00, 1.35077100e+00,
       1.35767915e+00, 1.35767915e+00, 1.35767915e+00, 1.35767915e+00,
       1.35963173e+00, 1.35963173e+00, 1.35963173e+00, 1.35963173e+00,
       1.36086885e+00, 1.36086885e+00, 1.36086885e+00, 1.36086885e+00,
       1.36233245e+00, 1.36233245e+00, 1.36233245e+00, 1.36233245e+00,
       1.36365306e+00, 1.36365306e+00, 1.36365306e+00, 1.36365306e+00,
       1.36410375e+00, 1.36410375e+00, 1.36410375e+00, 1.36410375e+00,
       1.36392708e+00, 1.36392708e+00, 1.36392708e+00, 1.36392708e+00,
       1.36298853e+00, 1.36298853e+00, 1.36298853e+00, 1.36298853e+00,
       1.36152724e+00, 1.36152724e+00, 1.36152724e+00, 1.36152724e+00,
       1.36088739e+00, 1.36088739e+00, 1.36088739e+00, 1.36088739e+00,
       1.36059622e+00, 1.36059622e+00, 1.36059622e+00, 1.36059622e+00,
       1.36030814e+00, 1.36030814e+00, 1.36030814e+00, 1.36030814e+00,
       1.36008913e+00, 1.36008913e+00, 1.36008913e+00, 1.36008913e+00,
       1.35711729e+00, 1.35711729e+00, 1.35711729e+00, 1.35711729e+00,
       1.33931866e+00, 1.33931866e+00, 1.33931866e+00, 1.33931866e+00,
       1.25869909e+00, 1.25869909e+00, 1.25869909e+00, 1.25869909e+00,
       9.47391457e-01, 9.47391457e-01, 9.47391457e-01, 9.47391457e-01,
       3.03306502e-01, 3.03306502e-01, 3.03306502e-01, 3.03306502e-01,
       3.27779884e-02, 3.27779884e-02, 3.27779884e-02, 3.27779884e-02,
       2.56194868e-03, 2.56194868e-03, 2.56194868e-03, 2.56194868e-03,
       1.92341225e-04, 1.92341225e-04, 1.92341225e-04, 1.92341225e-04,
       1.43841206e-05, 1.43841206e-05, 1.43841206e-05, 1.43841206e-05,
       1.07319292e-06, 1.07319292e-06, 1.07319292e-06, 1.07319292e-06,
       7.98515072e-08, 7.98515072e-08, 7.98515072e-08, 7.98515072e-08,
       5.92527078e-09, 5.92527078e-09, 5.92527078e-09, 5.92527078e-09,
       4.38545776e-10, 4.38545776e-10, 4.38545776e-10, 4.38545776e-10,
       3.23766591e-11, 3.23766591e-11, 3.23766591e-11, 3.23766591e-11,
       2.38365625e-12, 2.38365625e-12, 2.38365625e-12, 2.38365625e-12,
       1.74984281e-13, 1.74984281e-13, 1.74984281e-13, 1.74984281e-13,
       1.27988486e-14, 1.27988486e-14, 1.27988486e-14, 1.27988486e-14,
       9.36619527e-16, 9.36619527e-16, 9.36619527e-16, 9.36619527e-16,
       5.90078683e-17, 5.90078683e-17, 5.90078683e-17, 5.90078683e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999987,
       0.99999987, 0.99999987, 0.99999987, 0.99999909, 0.99999909,
       0.99999909, 0.99999909, 0.9999944 , 0.9999944 , 0.9999944 ,
       0.9999944 , 0.99996892, 0.99996892, 0.99996892, 0.99996892,
       0.99984584, 0.99984584, 0.99984584, 0.99984584, 0.99932502,
       0.99932502, 0.99932502, 0.99932502, 0.99743007, 0.99743007,
       0.99743007, 0.99743007, 0.99163522, 0.99163522, 0.99163522,
       0.99163522, 0.97709688, 0.97709688, 0.97709688, 0.97709688,
       0.94771858, 0.94771858, 0.94771858, 0.94771858, 0.90001323,
       0.90001323, 0.90001323, 0.90001323, 0.83643028, 0.83643028,
       0.83643028, 0.83643028, 0.76371797, 0.76371797, 0.76371797,
       0.76371797, 0.69077552, 0.69077552, 0.69077552, 0.69077552,
       0.62524441, 0.62524441, 0.62524441, 0.62524441, 0.56360708,
       0.56360708, 0.56360708, 0.56360708, 0.51576884, 0.51576884,
       0.51576884, 0.51576884, 0.48608775, 0.48608775, 0.48608775,
       0.48608775, 0.47290348, 0.47290348, 0.47290348, 0.47290348,
       0.46852795, 0.46852795, 0.46852795, 0.46852795, 0.46709417,
       0.46709417, 0.46709417, 0.46709417, 0.4664615 , 0.4664615 ,
       0.4664615 , 0.4664615 , 0.46595946, 0.46595946, 0.46595946,
       0.46595946, 0.46573483, 0.46573483, 0.46573483, 0.46573483,
       0.46549762, 0.46549762, 0.46549762, 0.46549762, 0.4651401 ,
       0.4651401 , 0.4651401 , 0.4651401 , 0.4648877 , 0.4648877 ,
       0.4648877 , 0.4648877 , 0.46460628, 0.46460628, 0.46460628,
       0.46460628, 0.46435859, 0.46435859, 0.46435859, 0.46435859,
       0.46443008, 0.46443008, 0.46443008, 0.46443008, 0.46484084,
       0.46484084, 0.46484084, 0.46484084, 0.46477421, 0.46477421,
       0.46477421, 0.46477421, 0.46345495, 0.46345495, 0.46345495,
       0.46345495, 0.45575261, 0.45575261, 0.45575261, 0.45575261,
       0.41991969, 0.41991969, 0.41991969, 0.41991969, 0.30495101,
       0.30495101, 0.30495101, 0.30495101, 0.14641294, 0.14641294,
       0.14641294, 0.14641294, 0.10439859, 0.10439859, 0.10439859,
       0.10439859, 0.10033916, 0.10033916, 0.10033916, 0.10033916,
       0.10002545, 0.10002545, 0.10002545, 0.10002545, 0.1000019 ,
       0.1000019 , 0.1000019 , 0.1000019 , 0.10000014, 0.10000014,
       0.10000014, 0.10000014, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999985,
       0.99999985, 0.99999985, 0.99999985, 0.99999903, 0.99999903,
       0.99999903, 0.99999903, 0.99999428, 0.99999428, 0.99999428,
       0.99999428, 0.99996946, 0.99996946, 0.99996946, 0.99996946,
       0.99985432, 0.99985432, 0.99985432, 0.99985432, 0.99938676,
       0.99938676, 0.99938676, 0.99938676, 0.99775536, 0.99775536,
       0.99775536, 0.99775536, 0.99297081, 0.99297081, 0.99297081,
       0.99297081, 0.98143309, 0.98143309, 0.98143309, 0.98143309,
       0.95888578, 0.95888578, 0.95888578, 0.95888578, 0.9230955 ,
       0.9230955 , 0.9230955 , 0.9230955 , 0.87580507, 0.87580507,
       0.87580507, 0.87580507, 0.82147709, 0.82147709, 0.82147709,
       0.82147709, 0.76692374, 0.76692374, 0.76692374, 0.76692374,
       0.71378615, 0.71378615, 0.71378615, 0.71378615, 0.66604952,
       0.66604952, 0.66604952, 0.66604952, 0.62893204, 0.62893204,
       0.62893204, 0.62893204, 0.59898326, 0.59898326, 0.59898326,
       0.59898326, 0.58239235, 0.58239235, 0.58239235, 0.58239235,
       0.57906513, 0.57906513, 0.57906513, 0.57906513, 0.5796752 ,
       0.5796752 , 0.5796752 , 0.5796752 , 0.58197407, 0.58197407,
       0.58197407, 0.58197407, 0.58350893, 0.58350893, 0.58350893,
       0.58350893, 0.58262487, 0.58262487, 0.58262487, 0.58262487,
       0.5768568 , 0.5768568 , 0.5768568 , 0.5768568 , 0.56077107,
       0.56077107, 0.56077107, 0.56077107, 0.52949915, 0.52949915,
       0.52949915, 0.52949915, 0.48013846, 0.48013846, 0.48013846,
       0.48013846, 0.41713955, 0.41713955, 0.41713955, 0.41713955,
       0.37044721, 0.37044721, 0.37044721, 0.37044721, 0.34523075,
       0.34523075, 0.34523075, 0.34523075, 0.33369594, 0.33369594,
       0.33369594, 0.33369594, 0.32989191, 0.32989191, 0.32989191,
       0.32989191, 0.32903442, 0.32903442, 0.32903442, 0.32903442,
       0.32566179, 0.32566179, 0.32566179, 0.32566179, 0.30140914,
       0.30140914, 0.30140914, 0.30140914, 0.22161536, 0.22161536,
       0.22161536, 0.22161536, 0.142229  , 0.142229  , 0.142229  ,
       0.142229  , 0.12669189, 0.12669189, 0.12669189, 0.12669189,
       0.12513485, 0.12513485, 0.12513485, 0.12513485, 0.12501025,
       0.12501025, 0.12501025, 0.12501025, 0.12500077, 0.12500077,
       0.12500077, 0.12500077, 0.12500006, 0.12500006, 0.12500006,
       0.12500006, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000176e-01, 7.50000176e-01, 7.50000176e-01, 7.50000176e-01,
       7.50001143e-01, 7.50001143e-01, 7.50001143e-01, 7.50001143e-01,
       7.50006765e-01, 7.50006765e-01, 7.50006765e-01, 7.50006765e-01,
       7.50036132e-01, 7.50036132e-01, 7.50036132e-01, 7.50036132e-01,
       7.50172369e-01, 7.50172369e-01, 7.50172369e-01, 7.50172369e-01,
       7.50725674e-01, 7.50725674e-01, 7.50725674e-01, 7.50725674e-01,
       7.52657561e-01, 7.52657561e-01, 7.52657561e-01, 7.52657561e-01,
       7.58337621e-01, 7.58337621e-01, 7.58337621e-01, 7.58337621e-01,
       7.72131336e-01, 7.72131336e-01, 7.72131336e-01, 7.72131336e-01,
       7.99502632e-01, 7.99502632e-01, 7.99502632e-01, 7.99502632e-01,
       8.44114177e-01, 8.44114177e-01, 8.44114177e-01, 8.44114177e-01,
       9.05331881e-01, 9.05331881e-01, 9.05331881e-01, 9.05331881e-01,
       9.79125457e-01, 9.79125457e-01, 9.79125457e-01, 9.79125457e-01,
       1.05587185e+00, 1.05587185e+00, 1.05587185e+00, 1.05587185e+00,
       1.13331506e+00, 1.13331506e+00, 1.13331506e+00, 1.13331506e+00,
       1.21189543e+00, 1.21189543e+00, 1.21189543e+00, 1.21189543e+00,
       1.27944869e+00, 1.27944869e+00, 1.27944869e+00, 1.27944869e+00,
       1.32606311e+00, 1.32606311e+00, 1.32606311e+00, 1.32606311e+00,
       1.34925512e+00, 1.34925512e+00, 1.34925512e+00, 1.34925512e+00,
       1.35728578e+00, 1.35728578e+00, 1.35728578e+00, 1.35728578e+00,
       1.35954920e+00, 1.35954920e+00, 1.35954920e+00, 1.35954920e+00,
       1.36069411e+00, 1.36069411e+00, 1.36069411e+00, 1.36069411e+00,
       1.36194086e+00, 1.36194086e+00, 1.36194086e+00, 1.36194086e+00,
       1.36330593e+00, 1.36330593e+00, 1.36330593e+00, 1.36330593e+00,
       1.36405650e+00, 1.36405650e+00, 1.36405650e+00, 1.36405650e+00,
       1.36415497e+00, 1.36415497e+00, 1.36415497e+00, 1.36415497e+00,
       1.36359348e+00, 1.36359348e+00, 1.36359348e+00, 1.36359348e+00,
       1.36234614e+00, 1.36234614e+00, 1.36234614e+00, 1.36234614e+00,
       1.36135889e+00, 1.36135889e+00, 1.36135889e+00, 1.36135889e+00,
       1.36073912e+00, 1.36073912e+00, 1.36073912e+00, 1.36073912e+00,
       1.36010502e+00, 1.36010502e+00, 1.36010502e+00, 1.36010502e+00,
       1.36015262e+00, 1.36015262e+00, 1.36015262e+00, 1.36015262e+00,
       1.35942760e+00, 1.35942760e+00, 1.35942760e+00, 1.35942760e+00,
       1.35349451e+00, 1.35349451e+00, 1.35349451e+00, 1.35349451e+00,
       1.32499316e+00, 1.32499316e+00, 1.32499316e+00, 1.32499316e+00,
       1.19968030e+00, 1.19968030e+00, 1.19968030e+00, 1.19968030e+00,
       7.65654632e-01, 7.65654632e-01, 7.65654632e-01, 7.65654632e-01,
       1.63013744e-01, 1.63013744e-01, 1.63013744e-01, 1.63013744e-01,
       1.51766301e-02, 1.51766301e-02, 1.51766301e-02, 1.51766301e-02,
       1.15961586e-03, 1.15961586e-03, 1.15961586e-03, 1.15961586e-03,
       8.71092067e-05, 8.71092067e-05, 8.71092067e-05, 8.71092067e-05,
       6.51852874e-06, 6.51852874e-06, 6.51852874e-06, 6.51852874e-06,
       4.86666078e-07, 4.86666078e-07, 4.86666078e-07, 4.86666078e-07,
       3.62471947e-08, 3.62471947e-08, 3.62471947e-08, 3.62471947e-08,
       2.69260253e-09, 2.69260253e-09, 2.69260253e-09, 2.69260253e-09,
       1.99494358e-10, 1.99494358e-10, 1.99494358e-10, 1.99494358e-10,
       1.47423360e-11, 1.47423360e-11, 1.47423360e-11, 1.47423360e-11,
       1.08650415e-12, 1.08650415e-12, 1.08650415e-12, 1.08650415e-12,
       7.98526879e-14, 7.98526879e-14, 7.98526879e-14, 7.98526879e-14,
       5.91227187e-15, 5.91227187e-15, 5.91227187e-15, 5.91227187e-15,
       3.97725372e-16, 3.97725372e-16, 3.97725372e-16, 3.97725372e-16,
       1.14152033e-17, 1.14152033e-17, 1.14152033e-17, 1.14152033e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999979,
       0.99999979, 0.99999979, 0.99999979, 0.99999865, 0.99999865,
       0.99999865, 0.99999865, 0.999992  , 0.999992  , 0.999992  ,
       0.999992  , 0.99995725, 0.99995725, 0.99995725, 0.99995725,
       0.99979607, 0.99979607, 0.99979607, 0.99979607, 0.99914172,
       0.99914172, 0.99914172, 0.99914172, 0.9968603 , 0.9968603 ,
       0.9968603 , 0.9968603 , 0.99018195, 0.99018195, 0.99018195,
       0.99018195, 0.97414391, 0.97414391, 0.97414391, 0.97414391,
       0.94304609, 0.94304609, 0.94304609, 0.94304609, 0.89430785,
       0.89430785, 0.89430785, 0.89430785, 0.83105531, 0.83105531,
       0.83105531, 0.83105531, 0.75992159, 0.75992159, 0.75992159,
       0.75992159, 0.68934729, 0.68934729, 0.68934729, 0.68934729,
       0.62578832, 0.62578832, 0.62578832, 0.62578832, 0.56572412,
       0.56572412, 0.56572412, 0.56572412, 0.51826812, 0.51826812,
       0.51826812, 0.51826812, 0.48775305, 0.48775305, 0.48775305,
       0.48775305, 0.47361881, 0.47361881, 0.47361881, 0.47361881,
       0.46884188, 0.46884188, 0.46884188, 0.46884188, 0.46724329,
       0.46724329, 0.46724329, 0.46724329, 0.46648424, 0.46648424,
       0.46648424, 0.46648424, 0.46584328, 0.46584328, 0.46584328,
       0.46584328, 0.46559981, 0.46559981, 0.46559981, 0.46559981,
       0.46550449, 0.46550449, 0.46550449, 0.46550449, 0.46529836,
       0.46529836, 0.46529836, 0.46529836, 0.46519784, 0.46519784,
       0.46519784, 0.46519784, 0.46501854, 0.46501854, 0.46501854,
       0.46501854, 0.4645934 , 0.4645934 , 0.4645934 , 0.4645934 ,
       0.4644984 , 0.4644984 , 0.4644984 , 0.4644984 , 0.4647448 ,
       0.4647448 , 0.4647448 , 0.4647448 , 0.46480417, 0.46480417,
       0.46480417, 0.46480417, 0.46452695, 0.46452695, 0.46452695,
       0.46452695, 0.46226705, 0.46226705, 0.46226705, 0.46226705,
       0.44923987, 0.44923987, 0.44923987, 0.44923987, 0.39520123,
       0.39520123, 0.39520123, 0.39520123, 0.25019732, 0.25019732,
       0.25019732, 0.25019732, 0.12347913, 0.12347913, 0.12347913,
       0.12347913, 0.10201923, 0.10201923, 0.10201923, 0.10201923,
       0.10015345, 0.10015345, 0.10015345, 0.10015345, 0.10001152,
       0.10001152, 0.10001152, 0.10001152, 0.10000086, 0.10000086,
       0.10000086, 0.10000086, 0.10000006, 0.10000006, 0.10000006,
       0.10000006, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999977,
       0.99999977, 0.99999977, 0.99999977, 0.99999859, 0.99999859,
       0.99999859, 0.99999859, 0.99999193, 0.99999193, 0.99999193,
       0.99999193, 0.99995852, 0.99995852, 0.99995852, 0.99995852,
       0.99980949, 0.99980949, 0.99980949, 0.99980949, 0.99922831,
       0.99922831, 0.99922831, 0.99922831, 0.99728299, 0.99728299,
       0.99728299, 0.99728299, 0.99181486, 0.99181486, 0.99181486,
       0.99181486, 0.97917208, 0.97917208, 0.97917208, 0.97917208,
       0.95541523, 0.95541523, 0.95541523, 0.95541523, 0.91893615,
       0.91893615, 0.91893615, 0.91893615, 0.87190997, 0.87190997,
       0.87190997, 0.87190997, 0.8187528 , 0.8187528 , 0.8187528 ,
       0.8187528 , 0.76602872, 0.76602872, 0.76602872, 0.76602872,
       0.7143833 , 0.7143833 , 0.7143833 , 0.7143833 , 0.66676801,
       0.66676801, 0.66676801, 0.66676801, 0.6307179 , 0.6307179 ,
       0.6307179 , 0.6307179 , 0.60198349, 0.60198349, 0.60198349,
       0.60198349, 0.58404794, 0.58404794, 0.58404794, 0.58404794,
       0.57892756, 0.57892756, 0.57892756, 0.57892756, 0.57904741,
       0.57904741, 0.57904741, 0.57904741, 0.58062787, 0.58062787,
       0.58062787, 0.58062787, 0.58283322, 0.58283322, 0.58283322,
       0.58283322, 0.58277091, 0.58277091, 0.58277091, 0.58277091,
       0.57963328, 0.57963328, 0.57963328, 0.57963328, 0.56873886,
       0.56873886, 0.56873886, 0.56873886, 0.54485283, 0.54485283,
       0.54485283, 0.54485283, 0.50395357, 0.50395357, 0.50395357,
       0.50395357, 0.44501153, 0.44501153, 0.44501153, 0.44501153,
       0.38825268, 0.38825268, 0.38825268, 0.38825268, 0.35468169,
       0.35468169, 0.35468169, 0.35468169, 0.33785192, 0.33785192,
       0.33785192, 0.33785192, 0.331301  , 0.331301  , 0.331301  ,
       0.331301  , 0.33001344, 0.33001344, 0.33001344, 0.33001344,
       0.32943388, 0.32943388, 0.32943388, 0.32943388, 0.32258242,
       0.32258242, 0.32258242, 0.32258242, 0.28431554, 0.28431554,
       0.28431554, 0.28431554, 0.1892955 , 0.1892955 , 0.1892955 ,
       0.1892955 , 0.1338258 , 0.1338258 , 0.1338258 , 0.1338258 ,
       0.12578276, 0.12578276, 0.12578276, 0.12578276, 0.1250613 ,
       0.1250613 , 0.1250613 , 0.1250613 , 0.12500465, 0.12500465,
       0.12500465, 0.12500465, 0.12500035, 0.12500035, 0.12500035,
       0.12500035, 0.12500003, 0.12500003, 0.12500003, 0.12500003,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000039e-01, 7.50000039e-01, 7.50000039e-01, 7.50000039e-01,
       7.50000267e-01, 7.50000267e-01, 7.50000267e-01, 7.50000267e-01,
       7.50001674e-01, 7.50001674e-01, 7.50001674e-01, 7.50001674e-01,
       7.50009545e-01, 7.50009545e-01, 7.50009545e-01, 7.50009545e-01,
       7.50049084e-01, 7.50049084e-01, 7.50049084e-01, 7.50049084e-01,
       7.50225416e-01, 7.50225416e-01, 7.50225416e-01, 7.50225416e-01,
       7.50913227e-01, 7.50913227e-01, 7.50913227e-01, 7.50913227e-01,
       7.53217421e-01, 7.53217421e-01, 7.53217421e-01, 7.53217421e-01,
       7.59713585e-01, 7.59713585e-01, 7.59713585e-01, 7.59713585e-01,
       7.74851816e-01, 7.74851816e-01, 7.74851816e-01, 7.74851816e-01,
       8.03766307e-01, 8.03766307e-01, 8.03766307e-01, 8.03766307e-01,
       8.49390171e-01, 8.49390171e-01, 8.49390171e-01, 8.49390171e-01,
       9.10489184e-01, 9.10489184e-01, 9.10489184e-01, 9.10489184e-01,
       9.82823141e-01, 9.82823141e-01, 9.82823141e-01, 9.82823141e-01,
       1.05751085e+00, 1.05751085e+00, 1.05751085e+00, 1.05751085e+00,
       1.13275935e+00, 1.13275935e+00, 1.13275935e+00, 1.13275935e+00,
       1.20924075e+00, 1.20924075e+00, 1.20924075e+00, 1.20924075e+00,
       1.27595955e+00, 1.27595955e+00, 1.27595955e+00, 1.27595955e+00,
       1.32313321e+00, 1.32313321e+00, 1.32313321e+00, 1.32313321e+00,
       1.34759687e+00, 1.34759687e+00, 1.34759687e+00, 1.34759687e+00,
       1.35670899e+00, 1.35670899e+00, 1.35670899e+00, 1.35670899e+00,
       1.35944955e+00, 1.35944955e+00, 1.35944955e+00, 1.35944955e+00,
       1.36061079e+00, 1.36061079e+00, 1.36061079e+00, 1.36061079e+00,
       1.36171079e+00, 1.36171079e+00, 1.36171079e+00, 1.36171079e+00,
       1.36290556e+00, 1.36290556e+00, 1.36290556e+00, 1.36290556e+00,
       1.36383904e+00, 1.36383904e+00, 1.36383904e+00, 1.36383904e+00,
       1.36419289e+00, 1.36419289e+00, 1.36419289e+00, 1.36419289e+00,
       1.36391125e+00, 1.36391125e+00, 1.36391125e+00, 1.36391125e+00,
       1.36302760e+00, 1.36302760e+00, 1.36302760e+00, 1.36302760e+00,
       1.36208548e+00, 1.36208548e+00, 1.36208548e+00, 1.36208548e+00,
       1.36114875e+00, 1.36114875e+00, 1.36114875e+00, 1.36114875e+00,
       1.36014308e+00, 1.36014308e+00, 1.36014308e+00, 1.36014308e+00,
       1.36010184e+00, 1.36010184e+00, 1.36010184e+00, 1.36010184e+00,
       1.35992178e+00, 1.35992178e+00, 1.35992178e+00, 1.35992178e+00,
       1.35788212e+00, 1.35788212e+00, 1.35788212e+00, 1.35788212e+00,
       1.34841935e+00, 1.34841935e+00, 1.34841935e+00, 1.34841935e+00,
       1.30264541e+00, 1.30264541e+00, 1.30264541e+00, 1.30264541e+00,
       1.10947676e+00, 1.10947676e+00, 1.10947676e+00, 1.10947676e+00,
       5.55338397e-01, 5.55338397e-01, 5.55338397e-01, 5.55338397e-01,
       8.31514874e-02, 8.31514874e-02, 8.31514874e-02, 8.31514874e-02,
       6.89643013e-03, 6.89643013e-03, 6.89643013e-03, 6.89643013e-03,
       5.24246789e-04, 5.24246789e-04, 5.24246789e-04, 5.24246789e-04,
       3.94230246e-05, 3.94230246e-05, 3.94230246e-05, 3.94230246e-05,
       2.95275452e-06, 2.95275452e-06, 2.95275452e-06, 2.95275452e-06,
       2.20643830e-07, 2.20643830e-07, 2.20643830e-07, 2.20643830e-07,
       1.64480940e-08, 1.64480940e-08, 1.64480940e-08, 1.64480940e-08,
       1.22307279e-09, 1.22307279e-09, 1.22307279e-09, 1.22307279e-09,
       9.07116089e-11, 9.07116089e-11, 9.07116089e-11, 9.07116089e-11,
       6.71020267e-12, 6.71020267e-12, 6.71020267e-12, 6.71020267e-12,
       4.95019676e-13, 4.95019676e-13, 4.95019676e-13, 4.95019676e-13,
       3.65542843e-14, 3.65542843e-14, 3.65542843e-14, 3.65542843e-14,
       2.62269446e-15, 2.62269446e-15, 2.62269446e-15, 2.62269446e-15,
       1.74466545e-16, 1.74466545e-16, 1.74466545e-16, 1.74466545e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999968,
       0.99999968, 0.99999968, 0.99999968, 0.99999802, 0.99999802,
       0.99999802, 0.99999802, 0.99998871, 0.99998871, 0.99998871,
       0.99998871, 0.99994192, 0.99994192, 0.99994192, 0.99994192,
       0.99973332, 0.99973332, 0.99973332, 0.99973332, 0.99892001,
       0.99892001, 0.99892001, 0.99892001, 0.99620009, 0.99620009,
       0.99620009, 0.99620009, 0.98857069, 0.98857069, 0.98857069,
       0.98857069, 0.97100982, 0.97100982, 0.97100982, 0.97100982,
       0.93828248, 0.93828248, 0.93828248, 0.93828248, 0.88868204,
       0.88868204, 0.88868204, 0.88868204, 0.82587279, 0.82587279,
       0.82587279, 0.82587279, 0.75627712, 0.75627712, 0.75627712,
       0.75627712, 0.68804743, 0.68804743, 0.68804743, 0.68804743,
       0.62631819, 0.62631819, 0.62631819, 0.62631819, 0.56772481,
       0.56772481, 0.56772481, 0.56772481, 0.52076656, 0.52076656,
       0.52076656, 0.52076656, 0.48953753, 0.48953753, 0.48953753,
       0.48953753, 0.47437293, 0.47437293, 0.47437293, 0.47437293,
       0.46911158, 0.46911158, 0.46911158, 0.46911158, 0.46740275,
       0.46740275, 0.46740275, 0.46740275, 0.46657107, 0.46657107,
       0.46657107, 0.46657107, 0.46582165, 0.46582165, 0.46582165,
       0.46582165, 0.46543932, 0.46543932, 0.46543932, 0.46543932,
       0.4654086 , 0.4654086 , 0.4654086 , 0.4654086 , 0.46534166,
       0.46534166, 0.46534166, 0.46534166, 0.46535445, 0.46535445,
       0.46535445, 0.46535445, 0.4653544 , 0.4653544 , 0.4653544 ,
       0.4653544 , 0.46497431, 0.46497431, 0.46497431, 0.46497431,
       0.46469511, 0.46469511, 0.46469511, 0.46469511, 0.46475993,
       0.46475993, 0.46475993, 0.46475993, 0.464781  , 0.464781  ,
       0.464781  , 0.464781  , 0.46475951, 0.46475951, 0.46475951,
       0.46475951, 0.46429906, 0.46429906, 0.46429906, 0.46429906,
       0.45994624, 0.45994624, 0.45994624, 0.45994624, 0.43907961,
       0.43907961, 0.43907961, 0.43907961, 0.36134325, 0.36134325,
       0.36134325, 0.36134325, 0.19702827, 0.19702827, 0.19702827,
       0.19702827, 0.11146119, 0.11146119, 0.11146119, 0.11146119,
       0.1009144 , 0.1009144 , 0.1009144 , 0.1009144 , 0.10006936,
       0.10006936, 0.10006936, 0.10006936, 0.10000522, 0.10000522,
       0.10000522, 0.10000522, 0.10000039, 0.10000039, 0.10000039,
       0.10000039, 0.10000003, 0.10000003, 0.10000003, 0.10000003,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999966,
       0.99999966, 0.99999966, 0.99999966, 0.99999796, 0.99999796,
       0.99999796, 0.99999796, 0.99998877, 0.99998877, 0.99998877,
       0.99998877, 0.99994431, 0.99994431, 0.99994431, 0.99994431,
       0.99975356, 0.99975356, 0.99975356, 0.99975356, 0.99903846,
       0.99903846, 0.99903846, 0.99903846, 0.99674028, 0.99674028,
       0.99674028, 0.99674028, 0.9905424 , 0.9905424 , 0.9905424 ,
       0.9905424 , 0.97678524, 0.97678524, 0.97678524, 0.97678524,
       0.95188827, 0.95188827, 0.95188827, 0.95188827, 0.91483889,
       0.91483889, 0.91483889, 0.91483889, 0.86814947, 0.86814947,
       0.86814947, 0.86814947, 0.81614043, 0.81614043, 0.81614043,
       0.81614043, 0.76514638, 0.76514638, 0.76514638, 0.76514638,
       0.71513541, 0.71513541, 0.71513541, 0.71513541, 0.66759433,
       0.66759433, 0.66759433, 0.66759433, 0.63206294, 0.63206294,
       0.63206294, 0.63206294, 0.60467247, 0.60467247, 0.60467247,
       0.60467247, 0.58608604, 0.58608604, 0.58608604, 0.58608604,
       0.57910917, 0.57910917, 0.57910917, 0.57910917, 0.57863491,
       0.57863491, 0.57863491, 0.57863491, 0.57958226, 0.57958226,
       0.57958226, 0.57958226, 0.58186037, 0.58186037, 0.58186037,
       0.58186037, 0.58254066, 0.58254066, 0.58254066, 0.58254066,
       0.58105548, 0.58105548, 0.58105548, 0.58105548, 0.5741289 ,
       0.5741289 , 0.5741289 , 0.5741289 , 0.55663703, 0.55663703,
       0.55663703, 0.55663703, 0.52383547, 0.52383547, 0.52383547,
       0.52383547, 0.47295059, 0.47295059, 0.47295059, 0.47295059,
       0.41066789, 0.41066789, 0.41066789, 0.41066789, 0.36741736,
       0.36741736, 0.36741736, 0.36741736, 0.34401862, 0.34401862,
       0.34401862, 0.34401862, 0.33359114, 0.33359114, 0.33359114,
       0.33359114, 0.33073618, 0.33073618, 0.33073618, 0.33073618,
       0.33046507, 0.33046507, 0.33046507, 0.33046507, 0.32945985,
       0.32945985, 0.32945985, 0.32945985, 0.31646094, 0.31646094,
       0.31646094, 0.31646094, 0.25979697, 0.25979697, 0.25979697,
       0.25979697, 0.16286529, 0.16286529, 0.16286529, 0.16286529,
       0.12929032, 0.12929032, 0.12929032, 0.12929032, 0.12536025,
       0.12536025, 0.12536025, 0.12536025, 0.1250278 , 0.1250278 ,
       0.1250278 , 0.1250278 , 0.1250021 , 0.1250021 , 0.1250021 ,
       0.1250021 , 0.12500016, 0.12500016, 0.12500016, 0.12500016,
       0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000008e-01, 7.50000008e-01, 7.50000008e-01, 7.50000008e-01,
       7.50000061e-01, 7.50000061e-01, 7.50000061e-01, 7.50000061e-01,
       7.50000400e-01, 7.50000400e-01, 7.50000400e-01, 7.50000400e-01,
       7.50002418e-01, 7.50002418e-01, 7.50002418e-01, 7.50002418e-01,
       7.50013293e-01, 7.50013293e-01, 7.50013293e-01, 7.50013293e-01,
       7.50065892e-01, 7.50065892e-01, 7.50065892e-01, 7.50065892e-01,
       7.50291602e-01, 7.50291602e-01, 7.50291602e-01, 7.50291602e-01,
       7.51137963e-01, 7.51137963e-01, 7.51137963e-01, 7.51137963e-01,
       7.53860931e-01, 7.53860931e-01, 7.53860931e-01, 7.53860931e-01,
       7.61229895e-01, 7.61229895e-01, 7.61229895e-01, 7.61229895e-01,
       7.77729726e-01, 7.77729726e-01, 7.77729726e-01, 7.77729726e-01,
       8.08112566e-01, 8.08112566e-01, 8.08112566e-01, 8.08112566e-01,
       8.54605431e-01, 8.54605431e-01, 8.54605431e-01, 8.54605431e-01,
       9.15480064e-01, 9.15480064e-01, 9.15480064e-01, 9.15480064e-01,
       9.86288872e-01, 9.86288872e-01, 9.86288872e-01, 9.86288872e-01,
       1.05903455e+00, 1.05903455e+00, 1.05903455e+00, 1.05903455e+00,
       1.13226352e+00, 1.13226352e+00, 1.13226352e+00, 1.13226352e+00,
       1.20670021e+00, 1.20670021e+00, 1.20670021e+00, 1.20670021e+00,
       1.27256005e+00, 1.27256005e+00, 1.27256005e+00, 1.27256005e+00,
       1.32027206e+00, 1.32027206e+00, 1.32027206e+00, 1.32027206e+00,
       1.34589382e+00, 1.34589382e+00, 1.34589382e+00, 1.34589382e+00,
       1.35597341e+00, 1.35597341e+00, 1.35597341e+00, 1.35597341e+00,
       1.35925362e+00, 1.35925362e+00, 1.35925362e+00, 1.35925362e+00,
       1.36055940e+00, 1.36055940e+00, 1.36055940e+00, 1.36055940e+00,
       1.36160216e+00, 1.36160216e+00, 1.36160216e+00, 1.36160216e+00,
       1.36259868e+00, 1.36259868e+00, 1.36259868e+00, 1.36259868e+00,
       1.36352978e+00, 1.36352978e+00, 1.36352978e+00, 1.36352978e+00,
       1.36408956e+00, 1.36408956e+00, 1.36408956e+00, 1.36408956e+00,
       1.36400563e+00, 1.36400563e+00, 1.36400563e+00, 1.36400563e+00,
       1.36344216e+00, 1.36344216e+00, 1.36344216e+00, 1.36344216e+00,
       1.36276431e+00, 1.36276431e+00, 1.36276431e+00, 1.36276431e+00,
       1.36178307e+00, 1.36178307e+00, 1.36178307e+00, 1.36178307e+00,
       1.36049076e+00, 1.36049076e+00, 1.36049076e+00, 1.36049076e+00,
       1.36016799e+00, 1.36016799e+00, 1.36016799e+00, 1.36016799e+00,
       1.36000464e+00, 1.36000464e+00, 1.36000464e+00, 1.36000464e+00,
       1.35908609e+00, 1.35908609e+00, 1.35908609e+00, 1.35908609e+00,
       1.35614599e+00, 1.35614599e+00, 1.35614599e+00, 1.35614599e+00,
       1.34038610e+00, 1.34038610e+00, 1.34038610e+00, 1.34038610e+00,
       1.26724046e+00, 1.26724046e+00, 1.26724046e+00, 1.26724046e+00,
       9.82640800e-01, 9.82640800e-01, 9.82640800e-01, 9.82640800e-01,
       3.48788395e-01, 3.48788395e-01, 3.48788395e-01, 3.48788395e-01,
       3.96209590e-02, 3.96209590e-02, 3.96209590e-02, 3.96209590e-02,
       3.13229418e-03, 3.13229418e-03, 3.13229418e-03, 3.13229418e-03,
       2.36909021e-04, 2.36909021e-04, 2.36909021e-04, 2.36909021e-04,
       1.78221789e-05, 1.78221789e-05, 1.78221789e-05, 1.78221789e-05,
       1.33690626e-06, 1.33690626e-06, 1.33690626e-06, 1.33690626e-06,
       9.99987457e-08, 9.99987457e-08, 9.99987457e-08, 9.99987457e-08,
       7.46125178e-09, 7.46125178e-09, 7.46125178e-09, 7.46125178e-09,
       5.55345318e-10, 5.55345318e-10, 5.55345318e-10, 5.55345318e-10,
       4.12297396e-11, 4.12297396e-11, 4.12297396e-11, 4.12297396e-11,
       3.05298490e-12, 3.05298490e-12, 3.05298490e-12, 3.05298490e-12,
       2.25630808e-13, 2.25630808e-13, 2.25630808e-13, 2.25630808e-13,
       1.65496825e-14, 1.65496825e-14, 1.65496825e-14, 1.65496825e-14,
       1.18089382e-15, 1.18089382e-15, 1.18089382e-15, 1.18089382e-15,
       7.03960128e-17, 7.03960128e-17, 7.03960128e-17, 7.03960128e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999953,
       0.99999953, 0.99999953, 0.99999953, 0.99999714, 0.99999714,
       0.99999714, 0.99999714, 0.99998427, 0.99998427, 0.99998427,
       0.99998427, 0.99992204, 0.99992204, 0.99992204, 0.99992204,
       0.99965503, 0.99965503, 0.99965503, 0.99965503, 0.99865441,
       0.99865441, 0.99865441, 0.99865441, 0.99544177, 0.99544177,
       0.99544177, 0.99544177, 0.98679799, 0.98679799, 0.98679799,
       0.98679799, 0.96770449, 0.96770449, 0.96770449, 0.96770449,
       0.93344814, 0.93344814, 0.93344814, 0.93344814, 0.88314892,
       0.88314892, 0.88314892, 0.88314892, 0.82088008, 0.82088008,
       0.82088008, 0.82088008, 0.75281451, 0.75281451, 0.75281451,
       0.75281451, 0.68680422, 0.68680422, 0.68680422, 0.68680422,
       0.62684396, 0.62684396, 0.62684396, 0.62684396, 0.56962935,
       0.56962935, 0.56962935, 0.56962935, 0.5232226 , 0.5232226 ,
       0.5232226 , 0.5232226 , 0.49143435, 0.49143435, 0.49143435,
       0.49143435, 0.47522501, 0.47522501, 0.47522501, 0.47522501,
       0.46935729, 0.46935729, 0.46935729, 0.46935729, 0.46752687,
       0.46752687, 0.46752687, 0.46752687, 0.46668373, 0.46668373,
       0.46668373, 0.46668373, 0.46587781, 0.46587781, 0.46587781,
       0.46587781, 0.46533792, 0.46533792, 0.46533792, 0.46533792,
       0.46526321, 0.46526321, 0.46526321, 0.46526321, 0.46529401,
       0.46529401, 0.46529401, 0.46529401, 0.46538814, 0.46538814,
       0.46538814, 0.46538814, 0.46554165, 0.46554165, 0.46554165,
       0.46554165, 0.4653427 , 0.4653427 , 0.4653427 , 0.4653427 ,
       0.46500494, 0.46500494, 0.46500494, 0.46500494, 0.4649203 ,
       0.4649203 , 0.4649203 , 0.4649203 , 0.46481236, 0.46481236,
       0.46481236, 0.46481236, 0.4648016 , 0.4648016 , 0.4648016 ,
       0.4648016 , 0.46486006, 0.46486006, 0.46486006, 0.46486006,
       0.46351591, 0.46351591, 0.46351591, 0.46351591, 0.45617693,
       0.45617693, 0.45617693, 0.45617693, 0.42387417, 0.42387417,
       0.42387417, 0.42387417, 0.31662409, 0.31662409, 0.31662409,
       0.31662409, 0.15467947, 0.15467947, 0.15467947, 0.15467947,
       0.10533579, 0.10533579, 0.10533579, 0.10533579, 0.10041475,
       0.10041475, 0.10041475, 0.10041475, 0.10003134, 0.10003134,
       0.10003134, 0.10003134, 0.10000236, 0.10000236, 0.10000236,
       0.10000236, 0.10000018, 0.10000018, 0.10000018, 0.10000018,
       0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.9999995 ,
       0.9999995 , 0.9999995 , 0.9999995 , 0.99999709, 0.99999709,
       0.99999709, 0.99999709, 0.99998454, 0.99998454, 0.99998454,
       0.99998454, 0.99992608, 0.99992608, 0.99992608, 0.99992608,
       0.99968447, 0.99968447, 0.99968447, 0.99968447, 0.99881309,
       0.99881309, 0.99881309, 0.99881309, 0.9961219 , 0.9961219 ,
       0.9961219 , 0.9961219 , 0.98915182, 0.98915182, 0.98915182,
       0.98915182, 0.9742804 , 0.9742804 , 0.9742804 , 0.9742804 ,
       0.94831908, 0.94831908, 0.94831908, 0.94831908, 0.91081218,
       0.91081218, 0.91081218, 0.91081218, 0.86452304, 0.86452304,
       0.86452304, 0.86452304, 0.81364869, 0.81364869, 0.81364869,
       0.81364869, 0.76425007, 0.76425007, 0.76425007, 0.76425007,
       0.71596964, 0.71596964, 0.71596964, 0.71596964, 0.66862165,
       0.66862165, 0.66862165, 0.66862165, 0.63309882, 0.63309882,
       0.63309882, 0.63309882, 0.60692411, 0.60692411, 0.60692411,
       0.60692411, 0.58834503, 0.58834503, 0.58834503, 0.58834503,
       0.5797179 , 0.5797179 , 0.5797179 , 0.5797179 , 0.57833736,
       0.57833736, 0.57833736, 0.57833736, 0.57885427, 0.57885427,
       0.57885427, 0.57885427, 0.58070829, 0.58070829, 0.58070829,
       0.58070829, 0.5821418 , 0.5821418 , 0.5821418 , 0.5821418 ,
       0.58161437, 0.58161437, 0.58161437, 0.58161437, 0.57752342,
       0.57752342, 0.57752342, 0.57752342, 0.56529572, 0.56529572,
       0.56529572, 0.56529572, 0.53988046, 0.53988046, 0.53988046,
       0.53988046, 0.49734652, 0.49734652, 0.49734652, 0.49734652,
       0.43756408, 0.43756408, 0.43756408, 0.43756408, 0.38405097,
       0.38405097, 0.38405097, 0.38405097, 0.35274026, 0.35274026,
       0.35274026, 0.35274026, 0.33729664, 0.33729664, 0.33729664,
       0.33729664, 0.33184586, 0.33184586, 0.33184586, 0.33184586,
       0.3308689 , 0.3308689 , 0.3308689 , 0.3308689 , 0.33116014,
       0.33116014, 0.33116014, 0.33116014, 0.3284959 , 0.3284959 ,
       0.3284959 , 0.3284959 , 0.305514  , 0.305514  , 0.305514  ,
       0.305514  , 0.22909354, 0.22909354, 0.22909354, 0.22909354,
       0.14525793, 0.14525793, 0.14525793, 0.14525793, 0.12704227,
       0.12704227, 0.12704227, 0.12704227, 0.12516466, 0.12516466,
       0.12516466, 0.12516466, 0.12501259, 0.12501259, 0.12501259,
       0.12501259, 0.12500095, 0.12500095, 0.12500095, 0.12500095,
       0.12500007, 0.12500007, 0.12500007, 0.12500007, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
       7.50000093e-01, 7.50000093e-01, 7.50000093e-01, 7.50000093e-01,
       7.50000591e-01, 7.50000591e-01, 7.50000591e-01, 7.50000591e-01,
       7.50003448e-01, 7.50003448e-01, 7.50003448e-01, 7.50003448e-01,
       7.50018287e-01, 7.50018287e-01, 7.50018287e-01, 7.50018287e-01,
       7.50087467e-01, 7.50087467e-01, 7.50087467e-01, 7.50087467e-01,
       7.50373360e-01, 7.50373360e-01, 7.50373360e-01, 7.50373360e-01,
       7.51404804e-01, 7.51404804e-01, 7.51404804e-01, 7.51404804e-01,
       7.54594512e-01, 7.54594512e-01, 7.54594512e-01, 7.54594512e-01,
       7.62888923e-01, 7.62888923e-01, 7.62888923e-01, 7.62888923e-01,
       7.80756528e-01, 7.80756528e-01, 7.80756528e-01, 7.80756528e-01,
       8.12524446e-01, 8.12524446e-01, 8.12524446e-01, 8.12524446e-01,
       8.59748156e-01, 8.59748156e-01, 8.59748156e-01, 8.59748156e-01,
       9.20303317e-01, 9.20303317e-01, 9.20303317e-01, 9.20303317e-01,
       9.89569875e-01, 9.89569875e-01, 9.89569875e-01, 9.89569875e-01,
       1.06043656e+00, 1.06043656e+00, 1.06043656e+00, 1.06043656e+00,
       1.13178235e+00, 1.13178235e+00, 1.13178235e+00, 1.13178235e+00,
       1.20428722e+00, 1.20428722e+00, 1.20428722e+00, 1.20428722e+00,
       1.26922681e+00, 1.26922681e+00, 1.26922681e+00, 1.26922681e+00,
       1.31744793e+00, 1.31744793e+00, 1.31744793e+00, 1.31744793e+00,
       1.34420543e+00, 1.34420543e+00, 1.34420543e+00, 1.34420543e+00,
       1.35515354e+00, 1.35515354e+00, 1.35515354e+00, 1.35515354e+00,
       1.35893569e+00, 1.35893569e+00, 1.35893569e+00, 1.35893569e+00,
       1.36047087e+00, 1.36047087e+00, 1.36047087e+00, 1.36047087e+00,
       1.36156372e+00, 1.36156372e+00, 1.36156372e+00, 1.36156372e+00,
       1.36242402e+00, 1.36242402e+00, 1.36242402e+00, 1.36242402e+00,
       1.36322740e+00, 1.36322740e+00, 1.36322740e+00, 1.36322740e+00,
       1.36389115e+00, 1.36389115e+00, 1.36389115e+00, 1.36389115e+00,
       1.36394778e+00, 1.36394778e+00, 1.36394778e+00, 1.36394778e+00,
       1.36363338e+00, 1.36363338e+00, 1.36363338e+00, 1.36363338e+00,
       1.36317823e+00, 1.36317823e+00, 1.36317823e+00, 1.36317823e+00,
       1.36245466e+00, 1.36245466e+00, 1.36245466e+00, 1.36245466e+00,
       1.36111329e+00, 1.36111329e+00, 1.36111329e+00, 1.36111329e+00,
       1.36045029e+00, 1.36045029e+00, 1.36045029e+00, 1.36045029e+00,
       1.36011173e+00, 1.36011173e+00, 1.36011173e+00, 1.36011173e+00,
       1.35943008e+00, 1.35943008e+00, 1.35943008e+00, 1.35943008e+00,
       1.35849429e+00, 1.35849429e+00, 1.35849429e+00, 1.35849429e+00,
       1.35337432e+00, 1.35337432e+00, 1.35337432e+00, 1.35337432e+00,
       1.32699322e+00, 1.32699322e+00, 1.32699322e+00, 1.32699322e+00,
       1.21392814e+00, 1.21392814e+00, 1.21392814e+00, 1.21392814e+00,
       8.11305629e-01, 8.11305629e-01, 8.11305629e-01, 8.11305629e-01,
       1.91993018e-01, 1.91993018e-01, 1.91993018e-01, 1.91993018e-01,
       1.84260657e-02, 1.84260657e-02, 1.84260657e-02, 1.84260657e-02,
       1.41864065e-03, 1.41864065e-03, 1.41864065e-03, 1.41864065e-03,
       1.07039498e-04, 1.07039498e-04, 1.07039498e-04, 1.07039498e-04,
       8.05698302e-06, 8.05698302e-06, 8.05698302e-06, 8.05698302e-06,
       6.04942296e-07, 6.04942296e-07, 6.04942296e-07, 6.04942296e-07,
       4.53003318e-08, 4.53003318e-08, 4.53003318e-08, 4.53003318e-08,
       3.38340676e-09, 3.38340676e-09, 3.38340676e-09, 3.38340676e-09,
       2.52067618e-10, 2.52067618e-10, 2.52067618e-10, 2.52067618e-10,
       1.87321914e-11, 1.87321914e-11, 1.87321914e-11, 1.87321914e-11,
       1.38872868e-12, 1.38872868e-12, 1.38872868e-12, 1.38872868e-12,
       1.02623229e-13, 1.02623229e-13, 1.02623229e-13, 1.02623229e-13,
       7.45434898e-15, 7.45434898e-15, 7.45434898e-15, 7.45434898e-15,
       5.62547042e-16, 5.62547042e-16, 5.62547042e-16, 5.62547042e-16,
       3.42190912e-17, 3.42190912e-17, 3.42190912e-17, 3.42190912e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999989, 0.99999989, 0.99999989, 0.99999989, 0.9999993 ,
       0.9999993 , 0.9999993 , 0.9999993 , 0.99999592, 0.99999592,
       0.99999592, 0.99999592, 0.99997836, 0.99997836, 0.99997836,
       0.99997836, 0.99989651, 0.99989651, 0.99989651, 0.99989651,
       0.99955833, 0.99955833, 0.99955833, 0.99955833, 0.99833914,
       0.99833914, 0.99833914, 0.99833914, 0.994578  , 0.994578  ,
       0.994578  , 0.994578  , 0.98486191, 0.98486191, 0.98486191,
       0.98486191, 0.96423927, 0.96423927, 0.96423927, 0.96423927,
       0.92856276, 0.92856276, 0.92856276, 0.92856276, 0.87771963,
       0.87771963, 0.87771963, 0.87771963, 0.81607625, 0.81607625,
       0.81607625, 0.81607625, 0.74954761, 0.74954761, 0.74954761,
       0.74954761, 0.68560013, 0.68560013, 0.68560013, 0.68560013,
       0.62733728, 0.62733728, 0.62733728, 0.62733728, 0.57145736,
       0.57145736, 0.57145736, 0.57145736, 0.52561297, 0.52561297,
       0.52561297, 0.52561297, 0.4934087 , 0.4934087 , 0.4934087 ,
       0.4934087 , 0.4762095 , 0.4762095 , 0.4762095 , 0.4762095 ,
       0.46962957, 0.46962957, 0.46962957, 0.46962957, 0.46760322,
       0.46760322, 0.46760322, 0.46760322, 0.46677931, 0.46677931,
       0.46677931, 0.46677931, 0.46598101, 0.46598101, 0.46598101,
       0.46598101, 0.4653201 , 0.4653201 , 0.4653201 , 0.4653201 ,
       0.46512805, 0.46512805, 0.46512805, 0.46512805, 0.46518516,
       0.46518516, 0.46518516, 0.46518516, 0.46533628, 0.46533628,
       0.46533628, 0.46533628, 0.46560697, 0.46560697, 0.46560697,
       0.46560697, 0.46556363, 0.46556363, 0.46556363, 0.46556363,
       0.46534283, 0.46534283, 0.46534283, 0.46534283, 0.46521233,
       0.46521233, 0.46521233, 0.46521233, 0.46494555, 0.46494555,
       0.46494555, 0.46494555, 0.46485571, 0.46485571, 0.46485571,
       0.46485571, 0.46502167, 0.46502167, 0.46502167, 0.46502167,
       0.46460407, 0.46460407, 0.46460407, 0.46460407, 0.46217056,
       0.46217056, 0.46217056, 0.46217056, 0.4504888 , 0.4504888 ,
       0.4504888 , 0.4504888 , 0.40110266, 0.40110266, 0.40110266,
       0.40110266, 0.26313779, 0.26313779, 0.26313779, 0.26313779,
       0.12803042, 0.12803042, 0.12803042, 0.12803042, 0.1024553 ,
       0.1024553 , 0.1024553 , 0.1024553 , 0.10018774, 0.10018774,
       0.10018774, 0.10018774, 0.10001416, 0.10001416, 0.10001416,
       0.10001416, 0.10000107, 0.10000107, 0.10000107, 0.10000107,
       0.10000008, 0.10000008, 0.10000008, 0.10000008, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999988, 0.99999988, 0.99999988, 0.99999988, 0.99999927,
       0.99999927, 0.99999927, 0.99999927, 0.9999959 , 0.9999959 ,
       0.9999959 , 0.9999959 , 0.99997898, 0.99997898, 0.99997898,
       0.99997898, 0.99990291, 0.99990291, 0.99990291, 0.99990291,
       0.99959993, 0.99959993, 0.99959993, 0.99959993, 0.99854785,
       0.99854785, 0.99854785, 0.99854785, 0.99542289, 0.99542289,
       0.99542289, 0.99542289, 0.98764264, 0.98764264, 0.98764264,
       0.98764264, 0.97166631, 0.97166631, 0.97166631, 0.97166631,
       0.94472122, 0.94472122, 0.94472122, 0.94472122, 0.90686323,
       0.90686323, 0.90686323, 0.90686323, 0.86103104, 0.86103104,
       0.86103104, 0.86103104, 0.81128459, 0.81128459, 0.81128459,
       0.81128459, 0.76333114, 0.76333114, 0.76333114, 0.76333114,
       0.71681296, 0.71681296, 0.71681296, 0.71681296, 0.66988534,
       0.66988534, 0.66988534, 0.66988534, 0.63398635, 0.63398635,
       0.63398635, 0.63398635, 0.60868419, 0.60868419, 0.60868419,
       0.60868419, 0.59062344, 0.59062344, 0.59062344, 0.59062344,
       0.58075915, 0.58075915, 0.58075915, 0.58075915, 0.57821989,
       0.57821989, 0.57821989, 0.57821989, 0.57834671, 0.57834671,
       0.57834671, 0.57834671, 0.57958969, 0.57958969, 0.57958969,
       0.57958969, 0.58156325, 0.58156325, 0.58156325, 0.58156325,
       0.58167402, 0.58167402, 0.58167402, 0.58167402, 0.57949654,
       0.57949654, 0.57949654, 0.57949654, 0.57136665, 0.57136665,
       0.57136665, 0.57136665, 0.55237715, 0.55237715, 0.55237715,
       0.55237715, 0.5178861 , 0.5178861 , 0.5178861 , 0.5178861 ,
       0.46556784, 0.46556784, 0.46556784, 0.46556784, 0.40490108,
       0.40490108, 0.40490108, 0.40490108, 0.36456809, 0.36456809,
       0.36456809, 0.36456809, 0.34291316, 0.34291316, 0.34291316,
       0.34291316, 0.33384449, 0.33384449, 0.33384449, 0.33384449,
       0.33130867, 0.33130867, 0.33130867, 0.33130867, 0.33149943,
       0.33149943, 0.33149943, 0.33149943, 0.33184294, 0.33184294,
       0.33184294, 0.33184294, 0.32533092, 0.32533092, 0.32533092,
       0.32533092, 0.28902333, 0.28902333, 0.28902333, 0.28902333,
       0.1964541 , 0.1964541 , 0.1964541 , 0.1964541 , 0.13545621,
       0.13545621, 0.13545621, 0.13545621, 0.12594954, 0.12594954,
       0.12594954, 0.12594954, 0.12507487, 0.12507487, 0.12507487,
       0.12507487, 0.1250057 , 0.1250057 , 0.1250057 , 0.1250057 ,
       0.12500043, 0.12500043, 0.12500043, 0.12500043, 0.12500003,
       0.12500003, 0.12500003, 0.12500003, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000021e-01, 7.50000021e-01, 7.50000021e-01, 7.50000021e-01,
       7.50000140e-01, 7.50000140e-01, 7.50000140e-01, 7.50000140e-01,
       7.50000861e-01, 7.50000861e-01, 7.50000861e-01, 7.50000861e-01,
       7.50004854e-01, 7.50004854e-01, 7.50004854e-01, 7.50004854e-01,
       7.50024870e-01, 7.50024870e-01, 7.50024870e-01, 7.50024870e-01,
       7.50114879e-01, 7.50114879e-01, 7.50114879e-01, 7.50114879e-01,
       7.50473401e-01, 7.50473401e-01, 7.50473401e-01, 7.50473401e-01,
       7.51718892e-01, 7.51718892e-01, 7.51718892e-01, 7.51718892e-01,
       7.55424229e-01, 7.55424229e-01, 7.55424229e-01, 7.55424229e-01,
       7.64691790e-01, 7.64691790e-01, 7.64691790e-01, 7.64691790e-01,
       7.83922560e-01, 7.83922560e-01, 7.83922560e-01, 7.83922560e-01,
       8.16985524e-01, 8.16985524e-01, 8.16985524e-01, 8.16985524e-01,
       8.64808121e-01, 8.64808121e-01, 8.64808121e-01, 8.64808121e-01,
       9.24958686e-01, 9.24958686e-01, 9.24958686e-01, 9.24958686e-01,
       9.92693337e-01, 9.92693337e-01, 9.92693337e-01, 9.92693337e-01,
       1.06173967e+00, 1.06173967e+00, 1.06173967e+00, 1.06173967e+00,
       1.13129021e+00, 1.13129021e+00, 1.13129021e+00, 1.13129021e+00,
       1.20198744e+00, 1.20198744e+00, 1.20198744e+00, 1.20198744e+00,
       1.26595672e+00, 1.26595672e+00, 1.26595672e+00, 1.26595672e+00,
       1.31461852e+00, 1.31461852e+00, 1.31461852e+00, 1.31461852e+00,
       1.34253734e+00, 1.34253734e+00, 1.34253734e+00, 1.34253734e+00,
       1.35432704e+00, 1.35432704e+00, 1.35432704e+00, 1.35432704e+00,
       1.35852967e+00, 1.35852967e+00, 1.35852967e+00, 1.35852967e+00,
       1.36029446e+00, 1.36029446e+00, 1.36029446e+00, 1.36029446e+00,
       1.36153027e+00, 1.36153027e+00, 1.36153027e+00, 1.36153027e+00,
       1.36236269e+00, 1.36236269e+00, 1.36236269e+00, 1.36236269e+00,
       1.36299920e+00, 1.36299920e+00, 1.36299920e+00, 1.36299920e+00,
       1.36365952e+00, 1.36365952e+00, 1.36365952e+00, 1.36365952e+00,
       1.36380842e+00, 1.36380842e+00, 1.36380842e+00, 1.36380842e+00,
       1.36364674e+00, 1.36364674e+00, 1.36364674e+00, 1.36364674e+00,
       1.36337979e+00, 1.36337979e+00, 1.36337979e+00, 1.36337979e+00,
       1.36291780e+00, 1.36291780e+00, 1.36291780e+00, 1.36291780e+00,
       1.36179759e+00, 1.36179759e+00, 1.36179759e+00, 1.36179759e+00,
       1.36099880e+00, 1.36099880e+00, 1.36099880e+00, 1.36099880e+00,
       1.36037766e+00, 1.36037766e+00, 1.36037766e+00, 1.36037766e+00,
       1.35961227e+00, 1.35961227e+00, 1.35961227e+00, 1.35961227e+00,
       1.35921926e+00, 1.35921926e+00, 1.35921926e+00, 1.35921926e+00,
       1.35759675e+00, 1.35759675e+00, 1.35759675e+00, 1.35759675e+00,
       1.34828922e+00, 1.34828922e+00, 1.34828922e+00, 1.34828922e+00,
       1.30681890e+00, 1.30681890e+00, 1.30681890e+00, 1.30681890e+00,
       1.13247598e+00, 1.13247598e+00, 1.13247598e+00, 1.13247598e+00,
       6.05650926e-01, 6.05650926e-01, 6.05650926e-01, 6.05650926e-01,
       9.87277152e-02, 9.87277152e-02, 9.87277152e-02, 9.87277152e-02,
       8.39794778e-03, 8.39794778e-03, 8.39794778e-03, 8.39794778e-03,
       6.41036738e-04, 6.41036738e-04, 6.41036738e-04, 6.41036738e-04,
       4.83799215e-05, 4.83799215e-05, 4.83799215e-05, 4.83799215e-05,
       3.64189070e-06, 3.64189070e-06, 3.64189070e-06, 3.64189070e-06,
       2.73646970e-07, 2.73646970e-07, 2.73646970e-07, 2.73646970e-07,
       2.05122779e-08, 2.05122779e-08, 2.05122779e-08, 2.05122779e-08,
       1.53361037e-09, 1.53361037e-09, 1.53361037e-09, 1.53361037e-09,
       1.14368647e-10, 1.14368647e-10, 1.14368647e-10, 1.14368647e-10,
       8.50778657e-12, 8.50778657e-12, 8.50778657e-12, 8.50778657e-12,
       6.31241749e-13, 6.31241749e-13, 6.31241749e-13, 6.31241749e-13,
       4.65959457e-14, 4.65959457e-14, 4.65959457e-14, 4.65959457e-14,
       3.44111781e-15, 3.44111781e-15, 3.44111781e-15, 3.44111781e-15,
       2.44715227e-16, 2.44715227e-16, 2.44715227e-16, 2.44715227e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999983, 0.99999983, 0.99999983, 0.99999983, 0.99999898,
       0.99999898, 0.99999898, 0.99999898, 0.99999426, 0.99999426,
       0.99999426, 0.99999426, 0.99997057, 0.99997057, 0.99997057,
       0.99997057, 0.99986408, 0.99986408, 0.99986408, 0.99986408,
       0.99944001, 0.99944001, 0.99944001, 0.99944001, 0.99796817,
       0.99796817, 0.99796817, 0.99796817, 0.99360189, 0.99360189,
       0.99360189, 0.99360189, 0.98276203, 0.98276203, 0.98276203,
       0.98276203, 0.96062669, 0.96062669, 0.96062669, 0.96062669,
       0.92364506, 0.92364506, 0.92364506, 0.92364506, 0.87240348,
       0.87240348, 0.87240348, 0.87240348, 0.81145937, 0.81145937,
       0.81145937, 0.81145937, 0.74647243, 0.74647243, 0.74647243,
       0.74647243, 0.68444299, 0.68444299, 0.68444299, 0.68444299,
       0.62778294, 0.62778294, 0.62778294, 0.62778294, 0.5732094 ,
       0.5732094 , 0.5732094 , 0.5732094 , 0.52793038, 0.52793038,
       0.52793038, 0.52793038, 0.49541854, 0.49541854, 0.49541854,
       0.49541854, 0.47732601, 0.47732601, 0.47732601, 0.47732601,
       0.46998067, 0.46998067, 0.46998067, 0.46998067, 0.46765631,
       0.46765631, 0.46765631, 0.46765631, 0.46682798, 0.46682798,
       0.46682798, 0.46682798, 0.46608977, 0.46608977, 0.46608977,
       0.46608977, 0.4653755 , 0.4653755 , 0.4653755 , 0.4653755 ,
       0.46504229, 0.46504229, 0.46504229, 0.46504229, 0.46505976,
       0.46505976, 0.46505976, 0.46505976, 0.46523378, 0.46523378,
       0.46523378, 0.46523378, 0.46557421, 0.46557421, 0.46557421,
       0.46557421, 0.4656599 , 0.4656599 , 0.4656599 , 0.4656599 ,
       0.46558172, 0.46558172, 0.46558172, 0.46558172, 0.46553439,
       0.46553439, 0.46553439, 0.46553439, 0.46520836, 0.46520836,
       0.46520836, 0.46520836, 0.46498438, 0.46498438, 0.46498438,
       0.46498438, 0.46510742, 0.46510742, 0.46510742, 0.46510742,
       0.46494014, 0.46494014, 0.46494014, 0.46494014, 0.46413174,
       0.46413174, 0.46413174, 0.46413174, 0.46026772, 0.46026772,
       0.46026772, 0.46026772, 0.44125804, 0.44125804, 0.44125804,
       0.44125804, 0.36962649, 0.36962649, 0.36962649, 0.36962649,
       0.20878392, 0.20878392, 0.20878392, 0.20878392, 0.11372397,
       0.11372397, 0.11372397, 0.11372397, 0.10111414, 0.10111414,
       0.10111414, 0.10111414, 0.10008482, 0.10008482, 0.10008482,
       0.10008482, 0.1000064 , 0.1000064 , 0.1000064 , 0.1000064 ,
       0.10000048, 0.10000048, 0.10000048, 0.10000048, 0.10000004,
       0.10000004, 0.10000004, 0.10000004, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
       0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999895,
       0.99999895, 0.99999895, 0.99999895, 0.99999429, 0.99999429,
       0.99999429, 0.99999429, 0.99997173, 0.99997173, 0.99997173,
       0.99997173, 0.99987376, 0.99987376, 0.99987376, 0.99987376,
       0.99949743, 0.99949743, 0.99949743, 0.99949743, 0.99823832,
       0.99823832, 0.99823832, 0.99823832, 0.99463867, 0.99463867,
       0.99463867, 0.99463867, 0.98601545, 0.98601545, 0.98601545,
       0.98601545, 0.96895243, 0.96895243, 0.96895243, 0.96895243,
       0.94110753, 0.94110753, 0.94110753, 0.94110753, 0.90299803,
       0.90299803, 0.90299803, 0.90299803, 0.85767273, 0.85767273,
       0.85767273, 0.85767273, 0.80904917, 0.80904917, 0.80904917,
       0.80904917, 0.76239648, 0.76239648, 0.76239648, 0.76239648,
       0.71749093, 0.71749093, 0.71749093, 0.71749093, 0.67147851,
       0.67147851, 0.67147851, 0.67147851, 0.63489   , 0.63489   ,
       0.63489   , 0.63489   , 0.60997929, 0.60997929, 0.60997929,
       0.60997929, 0.59272294, 0.59272294, 0.59272294, 0.59272294,
       0.58215958, 0.58215958, 0.58215958, 0.58215958, 0.57835617,
       0.57835617, 0.57835617, 0.57835617, 0.57803304, 0.57803304,
       0.57803304, 0.57803304, 0.57873351, 0.57873351, 0.57873351,
       0.57873351, 0.58068604, 0.58068604, 0.58068604, 0.58068604,
       0.58148766, 0.58148766, 0.58148766, 0.58148766, 0.58048792,
       0.58048792, 0.58048792, 0.58048792, 0.57541107, 0.57541107,
       0.57541107, 0.57541107, 0.56176436, 0.56176436, 0.56176436,
       0.56176436, 0.53464163, 0.53464163, 0.53464163, 0.53464163,
       0.49054306, 0.49054306, 0.49054306, 0.49054306, 0.43056034,
       0.43056034, 0.43056034, 0.43056034, 0.38004005, 0.38004005,
       0.38004005, 0.38004005, 0.35093816, 0.35093816, 0.35093816,
       0.35093816, 0.33716902, 0.33716902, 0.33716902, 0.33716902,
       0.33218768, 0.33218768, 0.33218768, 0.33218768, 0.33163645,
       0.33163645, 0.33163645, 0.33163645, 0.33249535, 0.33249535,
       0.33249535, 0.33249535, 0.33172011, 0.33172011, 0.33172011,
       0.33172011, 0.3191431 , 0.3191431 , 0.3191431 , 0.3191431 ,
       0.2660949 , 0.2660949 , 0.2660949 , 0.2660949 , 0.16817172,
       0.16817172, 0.16817172, 0.16817172, 0.13009983, 0.13009983,
       0.13009983, 0.13009983, 0.12543611, 0.12543611, 0.12543611,
       0.12543611, 0.12503393, 0.12503393, 0.12503393, 0.12503393,
       0.12500258, 0.12500258, 0.12500258, 0.12500258, 0.12500019,
       0.12500019, 0.12500019, 0.12500019, 0.12500001, 0.12500001,
       0.12500001, 0.12500001, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000032e-01, 7.50000032e-01, 7.50000032e-01, 7.50000032e-01,
       7.50000208e-01, 7.50000208e-01, 7.50000208e-01, 7.50000208e-01,
       7.50001239e-01, 7.50001239e-01, 7.50001239e-01, 7.50001239e-01,
       7.50006753e-01, 7.50006753e-01, 7.50006753e-01, 7.50006753e-01,
       7.50033455e-01, 7.50033455e-01, 7.50033455e-01, 7.50033455e-01,
       7.50149366e-01, 7.50149366e-01, 7.50149366e-01, 7.50149366e-01,
       7.50594713e-01, 7.50594713e-01, 7.50594713e-01, 7.50594713e-01,
       7.52085532e-01, 7.52085532e-01, 7.52085532e-01, 7.52085532e-01,
       7.56355674e-01, 7.56355674e-01, 7.56355674e-01, 7.56355674e-01,
       7.66638355e-01, 7.66638355e-01, 7.66638355e-01, 7.66638355e-01,
       7.87217230e-01, 7.87217230e-01, 7.87217230e-01, 7.87217230e-01,
       8.21480083e-01, 8.21480083e-01, 8.21480083e-01, 8.21480083e-01,
       8.69776615e-01, 8.69776615e-01, 8.69776615e-01, 8.69776615e-01,
       9.29447294e-01, 9.29447294e-01, 9.29447294e-01, 9.29447294e-01,
       9.95674208e-01, 9.95674208e-01, 9.95674208e-01, 9.95674208e-01,
       1.06296792e+00, 1.06296792e+00, 1.06296792e+00, 1.06296792e+00,
       1.13078254e+00, 1.13078254e+00, 1.13078254e+00, 1.13078254e+00,
       1.19977119e+00, 1.19977119e+00, 1.19977119e+00, 1.19977119e+00,
       1.26275299e+00, 1.26275299e+00, 1.26275299e+00, 1.26275299e+00,
       1.31175348e+00, 1.31175348e+00, 1.31175348e+00, 1.31175348e+00,
       1.34085462e+00, 1.34085462e+00, 1.34085462e+00, 1.34085462e+00,
       1.35353646e+00, 1.35353646e+00, 1.35353646e+00, 1.35353646e+00,
       1.35810343e+00, 1.35810343e+00, 1.35810343e+00, 1.35810343e+00,
       1.36003123e+00, 1.36003123e+00, 1.36003123e+00, 1.36003123e+00,
       1.36143326e+00, 1.36143326e+00, 1.36143326e+00, 1.36143326e+00,
       1.36236200e+00, 1.36236200e+00, 1.36236200e+00, 1.36236200e+00,
       1.36287773e+00, 1.36287773e+00, 1.36287773e+00, 1.36287773e+00,
       1.36345264e+00, 1.36345264e+00, 1.36345264e+00, 1.36345264e+00,
       1.36363732e+00, 1.36363732e+00, 1.36363732e+00, 1.36363732e+00,
       1.36353697e+00, 1.36353697e+00, 1.36353697e+00, 1.36353697e+00,
       1.36343404e+00, 1.36343404e+00, 1.36343404e+00, 1.36343404e+00,
       1.36315760e+00, 1.36315760e+00, 1.36315760e+00, 1.36315760e+00,
       1.36232473e+00, 1.36232473e+00, 1.36232473e+00, 1.36232473e+00,
       1.36166019e+00, 1.36166019e+00, 1.36166019e+00, 1.36166019e+00,
       1.36084564e+00, 1.36084564e+00, 1.36084564e+00, 1.36084564e+00,
       1.35984618e+00, 1.35984618e+00, 1.35984618e+00, 1.35984618e+00,
       1.35955179e+00, 1.35955179e+00, 1.35955179e+00, 1.35955179e+00,
       1.35897144e+00, 1.35897144e+00, 1.35897144e+00, 1.35897144e+00,
       1.35552174e+00, 1.35552174e+00, 1.35552174e+00, 1.35552174e+00,
       1.34102919e+00, 1.34102919e+00, 1.34102919e+00, 1.34102919e+00,
       1.27545330e+00, 1.27545330e+00, 1.27545330e+00, 1.27545330e+00,
       1.01455011e+00, 1.01455011e+00, 1.01455011e+00, 1.01455011e+00,
       3.94082610e-01, 3.94082610e-01, 3.94082610e-01, 3.94082610e-01,
       4.73339439e-02, 4.73339439e-02, 4.73339439e-02, 4.73339439e-02,
       3.80163833e-03, 3.80163833e-03, 3.80163833e-03, 3.80163833e-03,
       2.89378256e-04, 2.89378256e-04, 2.89378256e-04, 2.89378256e-04,
       2.18495362e-05, 2.18495362e-05, 2.18495362e-05, 2.18495362e-05,
       1.64610353e-06, 1.64610353e-06, 1.64610353e-06, 1.64610353e-06,
       1.23761362e-07, 1.23761362e-07, 1.23761362e-07, 1.23761362e-07,
       9.28475911e-09, 9.28475911e-09, 9.28475911e-09, 9.28475911e-09,
       6.94864466e-10, 6.94864466e-10, 6.94864466e-10, 6.94864466e-10,
       5.18715247e-11, 5.18715247e-11, 5.18715247e-11, 5.18715247e-11,
       3.86232749e-12, 3.86232749e-12, 3.86232749e-12, 3.86232749e-12,
       2.86798402e-13, 2.86798402e-13, 2.86798402e-13, 2.86798402e-13,
       2.12511563e-14, 2.12511563e-14, 2.12511563e-14, 2.12511563e-14,
       1.51978465e-15, 1.51978465e-15, 1.51978465e-15, 1.51978465e-15,
       8.24527483e-17, 8.24527483e-17, 8.24527483e-17, 8.24527483e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999853,
       0.99999853, 0.99999853, 0.99999853, 0.99999201, 0.99999201,
       0.99999201, 0.99999201, 0.99996042, 0.99996042, 0.99996042,
       0.99996042, 0.99982328, 0.99982328, 0.99982328, 0.99982328,
       0.99929656, 0.99929656, 0.99929656, 0.99929656, 0.9975353 ,
       0.9975353 , 0.9975353 , 0.9975353 , 0.99250721, 0.99250721,
       0.99250721, 0.99250721, 0.98049952, 0.98049952, 0.98049952,
       0.98049952, 0.95688026, 0.95688026, 0.95688026, 0.95688026,
       0.91871272, 0.91871272, 0.91871272, 0.91871272, 0.86720806,
       0.86720806, 0.86720806, 0.86720806, 0.80702616, 0.80702616,
       0.80702616, 0.80702616, 0.74357673, 0.74357673, 0.74357673,
       0.74357673, 0.68334214, 0.68334214, 0.68334214, 0.68334214,
       0.62818486, 0.62818486, 0.62818486, 0.62818486, 0.57487936,
       0.57487936, 0.57487936, 0.57487936, 0.53017432, 0.53017432,
       0.53017432, 0.53017432, 0.49742975, 0.49742975, 0.49742975,
       0.49742975, 0.47854702, 0.47854702, 0.47854702, 0.47854702,
       0.47044075, 0.47044075, 0.47044075, 0.47044075, 0.46773171,
       0.46773171, 0.46773171, 0.46773171, 0.46683192, 0.46683192,
       0.46683192, 0.46683192, 0.46616185, 0.46616185, 0.46616185,
       0.46616185, 0.4654718 , 0.4654718 , 0.4654718 , 0.4654718 ,
       0.46502244, 0.46502244, 0.46502244, 0.46502244, 0.46495839,
       0.46495839, 0.46495839, 0.46495839, 0.46511062, 0.46511062,
       0.46511062, 0.46511062, 0.46546668, 0.46546668, 0.46546668,
       0.46546668, 0.46567427, 0.46567427, 0.46567427, 0.46567427,
       0.4656998 , 0.4656998 , 0.4656998 , 0.4656998 , 0.46577701,
       0.46577701, 0.46577701, 0.46577701, 0.46553312, 0.46553312,
       0.46553312, 0.46553312, 0.46520841, 0.46520841, 0.46520841,
       0.46520841, 0.46521622, 0.46521622, 0.46521622, 0.46521622,
       0.46509428, 0.46509428, 0.46509428, 0.46509428, 0.46477283,
       0.46477283, 0.46477283, 0.46477283, 0.46362484, 0.46362484,
       0.46362484, 0.46362484, 0.45682453, 0.45682453, 0.45682453,
       0.45682453, 0.42721627, 0.42721627, 0.42721627, 0.42721627,
       0.32761038, 0.32761038, 0.32761038, 0.32761038, 0.16329323,
       0.16329323, 0.16329323, 0.16329323, 0.1064006 , 0.1064006 ,
       0.1064006 , 0.1064006 , 0.10050349, 0.10050349, 0.10050349,
       0.10050349, 0.10003828, 0.10003828, 0.10003828, 0.10003828,
       0.10000289, 0.10000289, 0.10000289, 0.10000289, 0.10000022,
       0.10000022, 0.10000022, 0.10000022, 0.10000002, 0.10000002,
       0.10000002, 0.10000002, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999851,
       0.99999851, 0.99999851, 0.99999851, 0.99999215, 0.99999215,
       0.99999215, 0.99999215, 0.99996236, 0.99996236, 0.99996236,
       0.99996236, 0.99983743, 0.99983743, 0.99983743, 0.99983743,
       0.99937421, 0.99937421, 0.99937421, 0.99937421, 0.99787995,
       0.99787995, 0.99787995, 0.99787995, 0.99376522, 0.99376522,
       0.99376522, 0.99376522, 0.98427193, 0.98427193, 0.98427193,
       0.98427193, 0.96614873, 0.96614873, 0.96614873, 0.96614873,
       0.93749002, 0.93749002, 0.93749002, 0.93749002, 0.89922146,
       0.89922146, 0.89922146, 0.89922146, 0.85444615, 0.85444615,
       0.85444615, 0.85444615, 0.80694026, 0.80694026, 0.80694026,
       0.80694026, 0.76147336, 0.76147336, 0.76147336, 0.76147336,
       0.71798649, 0.71798649, 0.71798649, 0.71798649, 0.67328624,
       0.67328624, 0.67328624, 0.67328624, 0.63596237, 0.63596237,
       0.63596237, 0.63596237, 0.61090962, 0.61090962, 0.61090962,
       0.61090962, 0.59448665, 0.59448665, 0.59448665, 0.59448665,
       0.58377912, 0.58377912, 0.58377912, 0.58377912, 0.57884073,
       0.57884073, 0.57884073, 0.57884073, 0.57784159, 0.57784159,
       0.57784159, 0.57784159, 0.57814677, 0.57814677, 0.57814677,
       0.57814677, 0.57965393, 0.57965393, 0.57965393, 0.57965393,
       0.58114142, 0.58114142, 0.58114142, 0.58114142, 0.58086906,
       0.58086906, 0.58086906, 0.58086906, 0.57793383, 0.57793383,
       0.57793383, 0.57793383, 0.56855027, 0.56855027, 0.56855027,
       0.56855027, 0.54788997, 0.54788997, 0.54788997, 0.54788997,
       0.51173387, 0.51173387, 0.51173387, 0.51173387, 0.45826092,
       0.45826092, 0.45826092, 0.45826092, 0.39944332, 0.39944332,
       0.39944332, 0.39944332, 0.36188141, 0.36188141, 0.36188141,
       0.36188141, 0.34228638, 0.34228638, 0.34228638, 0.34228638,
       0.33391914, 0.33391914, 0.33391914, 0.33391914, 0.33194109,
       0.33194109, 0.33194109, 0.33194109, 0.33247925, 0.33247925,
       0.33247925, 0.33247925, 0.33319907, 0.33319907, 0.33319907,
       0.33319907, 0.33042192, 0.33042192, 0.33042192, 0.33042192,
       0.30893759, 0.30893759, 0.30893759, 0.30893759, 0.23627498,
       0.23627498, 0.23627498, 0.23627498, 0.14849035, 0.14849035,
       0.14849035, 0.14849035, 0.12743542, 0.12743542, 0.12743542,
       0.12743542, 0.12519919, 0.12519919, 0.12519919, 0.12519919,
       0.12501533, 0.12501533, 0.12501533, 0.12501533, 0.12500116,
       0.12500116, 0.12500116, 0.12500116, 0.12500009, 0.12500009,
       0.12500009, 0.12500009, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
       7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
       7.50000306e-01, 7.50000306e-01, 7.50000306e-01, 7.50000306e-01,
       7.50001762e-01, 7.50001762e-01, 7.50001762e-01, 7.50001762e-01,
       7.50009291e-01, 7.50009291e-01, 7.50009291e-01, 7.50009291e-01,
       7.50044538e-01, 7.50044538e-01, 7.50044538e-01, 7.50044538e-01,
       7.50192354e-01, 7.50192354e-01, 7.50192354e-01, 7.50192354e-01,
       7.50740552e-01, 7.50740552e-01, 7.50740552e-01, 7.50740552e-01,
       7.52510129e-01, 7.52510129e-01, 7.52510129e-01, 7.52510129e-01,
       7.57393863e-01, 7.57393863e-01, 7.57393863e-01, 7.57393863e-01,
       7.68727220e-01, 7.68727220e-01, 7.68727220e-01, 7.68727220e-01,
       7.90629207e-01, 7.90629207e-01, 7.90629207e-01, 7.90629207e-01,
       8.25993244e-01, 8.25993244e-01, 8.25993244e-01, 8.25993244e-01,
       8.74646375e-01, 8.74646375e-01, 8.74646375e-01, 8.74646375e-01,
       9.33771553e-01, 9.33771553e-01, 9.33771553e-01, 9.33771553e-01,
       9.98521665e-01, 9.98521665e-01, 9.98521665e-01, 9.98521665e-01,
       1.06413782e+00, 1.06413782e+00, 1.06413782e+00, 1.06413782e+00,
       1.13027656e+00, 1.13027656e+00, 1.13027656e+00, 1.13027656e+00,
       1.19762442e+00, 1.19762442e+00, 1.19762442e+00, 1.19762442e+00,
       1.25961704e+00, 1.25961704e+00, 1.25961704e+00, 1.25961704e+00,
       1.30884188e+00, 1.30884188e+00, 1.30884188e+00, 1.30884188e+00,
       1.33910827e+00, 1.33910827e+00, 1.33910827e+00, 1.33910827e+00,
       1.35277568e+00, 1.35277568e+00, 1.35277568e+00, 1.35277568e+00,
       1.35771893e+00, 1.35771893e+00, 1.35771893e+00, 1.35771893e+00,
       1.35973017e+00, 1.35973017e+00, 1.35973017e+00, 1.35973017e+00,
       1.36124410e+00, 1.36124410e+00, 1.36124410e+00, 1.36124410e+00,
       1.36234589e+00, 1.36234589e+00, 1.36234589e+00, 1.36234589e+00,
       1.36284576e+00, 1.36284576e+00, 1.36284576e+00, 1.36284576e+00,
       1.36330700e+00, 1.36330700e+00, 1.36330700e+00, 1.36330700e+00,
       1.36348314e+00, 1.36348314e+00, 1.36348314e+00, 1.36348314e+00,
       1.36337493e+00, 1.36337493e+00, 1.36337493e+00, 1.36337493e+00,
       1.36336149e+00, 1.36336149e+00, 1.36336149e+00, 1.36336149e+00,
       1.36324405e+00, 1.36324405e+00, 1.36324405e+00, 1.36324405e+00,
       1.36265870e+00, 1.36265870e+00, 1.36265870e+00, 1.36265870e+00,
       1.36215849e+00, 1.36215849e+00, 1.36215849e+00, 1.36215849e+00,
       1.36145357e+00, 1.36145357e+00, 1.36145357e+00, 1.36145357e+00,
       1.36027737e+00, 1.36027737e+00, 1.36027737e+00, 1.36027737e+00,
       1.35985957e+00, 1.35985957e+00, 1.35985957e+00, 1.35985957e+00,
       1.35950146e+00, 1.35950146e+00, 1.35950146e+00, 1.35950146e+00,
       1.35794105e+00, 1.35794105e+00, 1.35794105e+00, 1.35794105e+00,
       1.35302786e+00, 1.35302786e+00, 1.35302786e+00, 1.35302786e+00,
       1.32948395e+00, 1.32948395e+00, 1.32948395e+00, 1.32948395e+00,
       1.22656804e+00, 1.22656804e+00, 1.22656804e+00, 1.22656804e+00,
       8.53469650e-01, 8.53469650e-01, 8.53469650e-01, 8.53469650e-01,
       2.22591142e-01, 2.22591142e-01, 2.22591142e-01, 2.22591142e-01,
       2.20888528e-02, 2.20888528e-02, 2.20888528e-02, 2.20888528e-02,
       1.71922272e-03, 1.71922272e-03, 1.71922272e-03, 1.71922272e-03,
       1.30417470e-04, 1.30417470e-04, 1.30417470e-04, 1.30417470e-04,
       9.86300289e-06, 9.86300289e-06, 9.86300289e-06, 9.86300289e-06,
       7.43754125e-07, 7.43754125e-07, 7.43754125e-07, 7.43754125e-07,
       5.59602796e-08, 5.59602796e-08, 5.59602796e-08, 5.59602796e-08,
       4.20149858e-09, 4.20149858e-09, 4.20149858e-09, 4.20149858e-09,
       3.14719729e-10, 3.14719729e-10, 3.14719729e-10, 3.14719729e-10,
       2.35165721e-11, 2.35165721e-11, 2.35165721e-11, 2.35165721e-11,
       1.75282978e-12, 1.75282978e-12, 1.75282978e-12, 1.75282978e-12,
       1.30293969e-13, 1.30293969e-13, 1.30293969e-13, 1.30293969e-13,
       9.55439487e-15, 9.55439487e-15, 9.55439487e-15, 9.55439487e-15,
       6.56847280e-16, 6.56847280e-16, 6.56847280e-16, 6.56847280e-16,
       3.41706842e-17, 3.41706842e-17, 3.41706842e-17, 3.41706842e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999964, 0.99999964, 0.99999964, 0.99999964, 0.99999792,
       0.99999792, 0.99999792, 0.99999792, 0.99998901, 0.99998901,
       0.99998901, 0.99998901, 0.9999473 , 0.9999473 , 0.9999473 ,
       0.9999473 , 0.99977243, 0.99977243, 0.99977243, 0.99977243,
       0.99912413, 0.99912413, 0.99912413, 0.99912413, 0.99703423,
       0.99703423, 0.99703423, 0.99703423, 0.99128845, 0.99128845,
       0.99128845, 0.99128845, 0.97807702, 0.97807702, 0.97807702,
       0.97807702, 0.95301417, 0.95301417, 0.95301417, 0.95301417,
       0.91378216, 0.91378216, 0.91378216, 0.91378216, 0.86213936,
       0.86213936, 0.86213936, 0.86213936, 0.80277216, 0.80277216,
       0.80277216, 0.80277216, 0.7408459 , 0.7408459 , 0.7408459 ,
       0.7408459 , 0.68230078, 0.68230078, 0.68230078, 0.68230078,
       0.62855672, 0.62855672, 0.62855672, 0.62855672, 0.5764662 ,
       0.5764662 , 0.5764662 , 0.5764662 , 0.53234585, 0.53234585,
       0.53234585, 0.53234585, 0.49942183, 0.49942183, 0.49942183,
       0.49942183, 0.47983443, 0.47983443, 0.47983443, 0.47983443,
       0.47100923, 0.47100923, 0.47100923, 0.47100923, 0.46787142,
       0.46787142, 0.46787142, 0.46787142, 0.46682295, 0.46682295,
       0.46682295, 0.46682295, 0.46618014, 0.46618014, 0.46618014,
       0.46618014, 0.46556219, 0.46556219, 0.46556219, 0.46556219,
       0.46506118, 0.46506118, 0.46506118, 0.46506118, 0.46489673,
       0.46489673, 0.46489673, 0.46489673, 0.46500213, 0.46500213,
       0.46500213, 0.46500213, 0.46532374, 0.46532374, 0.46532374,
       0.46532374, 0.46561466, 0.46561466, 0.46561466, 0.46561466,
       0.46573189, 0.46573189, 0.46573189, 0.46573189, 0.46592128,
       0.46592128, 0.46592128, 0.46592128, 0.46578294, 0.46578294,
       0.46578294, 0.46578294, 0.46549998, 0.46549998, 0.46549998,
       0.46549998, 0.46541691, 0.46541691, 0.46541691, 0.46541691,
       0.46523714, 0.46523714, 0.46523714, 0.46523714, 0.46502176,
       0.46502176, 0.46502176, 0.46502176, 0.46475263, 0.46475263,
       0.46475263, 0.46475263, 0.46237713, 0.46237713, 0.46237713,
       0.46237713, 0.45142205, 0.45142205, 0.45142205, 0.45142205,
       0.40654284, 0.40654284, 0.40654284, 0.40654284, 0.27563326,
       0.27563326, 0.27563326, 0.27563326, 0.13295938, 0.13295938,
       0.13295938, 0.13295938, 0.1029486 , 0.1029486 , 0.1029486 ,
       0.1029486 , 0.10022754, 0.10022754, 0.10022754, 0.10022754,
       0.10001725, 0.10001725, 0.10001725, 0.10001725, 0.1000013 ,
       0.1000013 , 0.1000013 , 0.1000013 , 0.1000001 , 0.1000001 ,
       0.1000001 , 0.1000001 , 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999962, 0.99999962, 0.99999962, 0.99999962, 0.99999791,
       0.99999791, 0.99999791, 0.99999791, 0.99998931, 0.99998931,
       0.99998931, 0.99998931, 0.99995038, 0.99995038, 0.99995038,
       0.99995038, 0.99979255, 0.99979255, 0.99979255, 0.99979255,
       0.99922731, 0.99922731, 0.99922731, 0.99922731, 0.99746821,
       0.99746821, 0.99746821, 0.99746821, 0.99279908, 0.99279908,
       0.99279908, 0.99279908, 0.98241481, 0.98241481, 0.98241481,
       0.98241481, 0.96326558, 0.96326558, 0.96326558, 0.96326558,
       0.93387982, 0.93387982, 0.93387982, 0.93387982, 0.89553728,
       0.89553728, 0.89553728, 0.89553728, 0.85134817, 0.85134817,
       0.85134817, 0.85134817, 0.80495162, 0.80495162, 0.80495162,
       0.80495162, 0.76058273, 0.76058273, 0.76058273, 0.76058273,
       0.71835604, 0.71835604, 0.71835604, 0.71835604, 0.67514463,
       0.67514463, 0.67514463, 0.67514463, 0.63729119, 0.63729119,
       0.63729119, 0.63729119, 0.61162641, 0.61162641, 0.61162641,
       0.61162641, 0.59582875, 0.59582875, 0.59582875, 0.59582875,
       0.58543448, 0.58543448, 0.58543448, 0.58543448, 0.57967261,
       0.57967261, 0.57967261, 0.57967261, 0.57782428, 0.57782428,
       0.57782428, 0.57782428, 0.57777383, 0.57777383, 0.57777383,
       0.57777383, 0.57870314, 0.57870314, 0.57870314, 0.57870314,
       0.58056833, 0.58056833, 0.58056833, 0.58056833, 0.58087553,
       0.58087553, 0.58087553, 0.58087553, 0.57939156, 0.57939156,
       0.57939156, 0.57939156, 0.57325442, 0.57325442, 0.57325442,
       0.57325442, 0.55803941, 0.55803941, 0.55803941, 0.55803941,
       0.52921033, 0.52921033, 0.52921033, 0.52921033, 0.4837152 ,
       0.4837152 , 0.4837152 , 0.4837152 , 0.42371397, 0.42371397,
       0.42371397, 0.42371397, 0.376212  , 0.376212  , 0.376212  ,
       0.376212  , 0.34965307, 0.34965307, 0.34965307, 0.34965307,
       0.33690123, 0.33690123, 0.33690123, 0.33690123, 0.33265682,
       0.33265682, 0.33265682, 0.33265682, 0.33246875, 0.33246875,
       0.33246875, 0.33246875, 0.33332651, 0.33332651, 0.33332651,
       0.33332651, 0.33357826, 0.33357826, 0.33357826, 0.33357826,
       0.32736337, 0.32736337, 0.32736337, 0.32736337, 0.29324759,
       0.29324759, 0.29324759, 0.29324759, 0.20348887, 0.20348887,
       0.20348887, 0.20348887, 0.13723772, 0.13723772, 0.13723772,
       0.13723772, 0.12613944, 0.12613944, 0.12613944, 0.12613944,
       0.12509047, 0.12509047, 0.12509047, 0.12509047, 0.12500693,
       0.12500693, 0.12500693, 0.12500693, 0.12500053, 0.12500053,
       0.12500053, 0.12500053, 0.12500004, 0.12500004, 0.12500004,
       0.12500004, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
       7.50000073e-01, 7.50000073e-01, 7.50000073e-01, 7.50000073e-01,
       7.50000444e-01, 7.50000444e-01, 7.50000444e-01, 7.50000444e-01,
       7.50002476e-01, 7.50002476e-01, 7.50002476e-01, 7.50002476e-01,
       7.50012648e-01, 7.50012648e-01, 7.50012648e-01, 7.50012648e-01,
       7.50058710e-01, 7.50058710e-01, 7.50058710e-01, 7.50058710e-01,
       7.50245463e-01, 7.50245463e-01, 7.50245463e-01, 7.50245463e-01,
       7.50914434e-01, 7.50914434e-01, 7.50914434e-01, 7.50914434e-01,
       7.52998113e-01, 7.52998113e-01, 7.52998113e-01, 7.52998113e-01,
       7.58543146e-01, 7.58543146e-01, 7.58543146e-01, 7.58543146e-01,
       7.70955766e-01, 7.70955766e-01, 7.70955766e-01, 7.70955766e-01,
       7.94146625e-01, 7.94146625e-01, 7.94146625e-01, 7.94146625e-01,
       8.30511067e-01, 8.30511067e-01, 8.30511067e-01, 8.30511067e-01,
       8.79411509e-01, 8.79411509e-01, 8.79411509e-01, 8.79411509e-01,
       9.37934877e-01, 9.37934877e-01, 9.37934877e-01, 9.37934877e-01,
       1.00124282e+00, 1.00124282e+00, 1.00124282e+00, 1.00124282e+00,
       1.06525741e+00, 1.06525741e+00, 1.06525741e+00, 1.06525741e+00,
       1.12978836e+00, 1.12978836e+00, 1.12978836e+00, 1.12978836e+00,
       1.19554873e+00, 1.19554873e+00, 1.19554873e+00, 1.19554873e+00,
       1.25655219e+00, 1.25655219e+00, 1.25655219e+00, 1.25655219e+00,
       1.30588997e+00, 1.30588997e+00, 1.30588997e+00, 1.30588997e+00,
       1.33725902e+00, 1.33725902e+00, 1.33725902e+00, 1.33725902e+00,
       1.35200167e+00, 1.35200167e+00, 1.35200167e+00, 1.35200167e+00,
       1.35740137e+00, 1.35740137e+00, 1.35740137e+00, 1.35740137e+00,
       1.35945680e+00, 1.35945680e+00, 1.35945680e+00, 1.35945680e+00,
       1.36098916e+00, 1.36098916e+00, 1.36098916e+00, 1.36098916e+00,
       1.36225665e+00, 1.36225665e+00, 1.36225665e+00, 1.36225665e+00,
       1.36284870e+00, 1.36284870e+00, 1.36284870e+00, 1.36284870e+00,
       1.36323230e+00, 1.36323230e+00, 1.36323230e+00, 1.36323230e+00,
       1.36337379e+00, 1.36337379e+00, 1.36337379e+00, 1.36337379e+00,
       1.36322082e+00, 1.36322082e+00, 1.36322082e+00, 1.36322082e+00,
       1.36321667e+00, 1.36321667e+00, 1.36321667e+00, 1.36321667e+00,
       1.36320442e+00, 1.36320442e+00, 1.36320442e+00, 1.36320442e+00,
       1.36283306e+00, 1.36283306e+00, 1.36283306e+00, 1.36283306e+00,
       1.36246959e+00, 1.36246959e+00, 1.36246959e+00, 1.36246959e+00,
       1.36197500e+00, 1.36197500e+00, 1.36197500e+00, 1.36197500e+00,
       1.36085259e+00, 1.36085259e+00, 1.36085259e+00, 1.36085259e+00,
       1.36028892e+00, 1.36028892e+00, 1.36028892e+00, 1.36028892e+00,
       1.35984919e+00, 1.35984919e+00, 1.35984919e+00, 1.35984919e+00,
       1.35883540e+00, 1.35883540e+00, 1.35883540e+00, 1.35883540e+00,
       1.35714143e+00, 1.35714143e+00, 1.35714143e+00, 1.35714143e+00,
       1.34894991e+00, 1.34894991e+00, 1.34894991e+00, 1.34894991e+00,
       1.31073945e+00, 1.31073945e+00, 1.31073945e+00, 1.31073945e+00,
       1.15250494e+00, 1.15250494e+00, 1.15250494e+00, 1.15250494e+00,
       6.53937892e-01, 6.53937892e-01, 6.53937892e-01, 6.53937892e-01,
       1.15935794e-01, 1.15935794e-01, 1.15935794e-01, 1.15935794e-01,
       1.01224064e-02, 1.01224064e-02, 1.01224064e-02, 1.01224064e-02,
       7.75605173e-04, 7.75605173e-04, 7.75605173e-04, 7.75605173e-04,
       5.88223629e-05, 5.88223629e-05, 5.88223629e-05, 5.88223629e-05,
       4.44985365e-06, 4.44985365e-06, 4.44985365e-06, 4.44985365e-06,
       3.35889504e-07, 3.35889504e-07, 3.35889504e-07, 3.35889504e-07,
       2.52955860e-08, 2.52955860e-08, 2.52955860e-08, 2.52955860e-08,
       1.90071378e-09, 1.90071378e-09, 1.90071378e-09, 1.90071378e-09,
       1.42497338e-10, 1.42497338e-10, 1.42497338e-10, 1.42497338e-10,
       1.06576856e-11, 1.06576856e-11, 1.06576856e-11, 1.06576856e-11,
       7.95109096e-13, 7.95109096e-13, 7.95109096e-13, 7.95109096e-13,
       5.90704393e-14, 5.90704393e-14, 5.90704393e-14, 5.90704393e-14,
       4.31701064e-15, 4.31701064e-15, 4.31701064e-15, 4.31701064e-15,
       3.15002440e-16, 3.15002440e-16, 3.15002440e-16, 3.15002440e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999947, 0.99999947, 0.99999947, 0.99999947, 0.99999707,
       0.99999707, 0.99999707, 0.99999707, 0.99998504, 0.99998504,
       0.99998504, 0.99998504, 0.99993054, 0.99993054, 0.99993054,
       0.99993054, 0.9997096 , 0.9997096 , 0.9997096 , 0.9997096 ,
       0.99891859, 0.99891859, 0.99891859, 0.99891859, 0.99645866,
       0.99645866, 0.99645866, 0.99645866, 0.98994093, 0.98994093,
       0.98994093, 0.98994093, 0.97549864, 0.97549864, 0.97549864,
       0.97549864, 0.94904306, 0.94904306, 0.94904306, 0.94904306,
       0.90886853, 0.90886853, 0.90886853, 0.90886853, 0.85720188,
       0.85720188, 0.85720188, 0.85720188, 0.79869209, 0.79869209,
       0.79869209, 0.79869209, 0.73826586, 0.73826586, 0.73826586,
       0.73826586, 0.68131655, 0.68131655, 0.68131655, 0.68131655,
       0.62890962, 0.62890962, 0.62890962, 0.62890962, 0.57797733,
       0.57797733, 0.57797733, 0.57797733, 0.53444855, 0.53444855,
       0.53444855, 0.53444855, 0.5013871 , 0.5013871 , 0.5013871 ,
       0.5013871 , 0.48115492, 0.48115492, 0.48115492, 0.48115492,
       0.47166155, 0.47166155, 0.47166155, 0.47166155, 0.468095  ,
       0.468095  , 0.468095  , 0.468095  , 0.46684318, 0.46684318,
       0.46684318, 0.46684318, 0.46616211, 0.46616211, 0.46616211,
       0.46616211, 0.46561043, 0.46561043, 0.46561043, 0.46561043,
       0.46512576, 0.46512576, 0.46512576, 0.46512576, 0.46487872,
       0.46487872, 0.46487872, 0.46487872, 0.46492772, 0.46492772,
       0.46492772, 0.46492772, 0.4651844 , 0.4651844 , 0.4651844 ,
       0.4651844 , 0.4655066 , 0.4655066 , 0.4655066 , 0.4655066 ,
       0.46569201, 0.46569201, 0.46569201, 0.46569201, 0.46598138,
       0.46598138, 0.46598138, 0.46598138, 0.46594011, 0.46594011,
       0.46594011, 0.46594011, 0.4657527 , 0.4657527 , 0.4657527 ,
       0.4657527 , 0.4656862 , 0.4656862 , 0.4656862 , 0.4656862 ,
       0.46543641, 0.46543641, 0.46543641, 0.46543641, 0.46518651,
       0.46518651, 0.46518651, 0.46518651, 0.46517111, 0.46517111,
       0.46517111, 0.46517111, 0.46429022, 0.46429022, 0.46429022,
       0.46429022, 0.46039234, 0.46039234, 0.46039234, 0.46039234,
       0.44325735, 0.44325735, 0.44325735, 0.44325735, 0.37715612,
       0.37715612, 0.37715612, 0.37715612, 0.22068217, 0.22068217,
       0.22068217, 0.22068217, 0.11627314, 0.11627314, 0.11627314,
       0.11627314, 0.10134388, 0.10134388, 0.10134388, 0.10134388,
       0.10010262, 0.10010262, 0.10010262, 0.10010262, 0.10000778,
       0.10000778, 0.10000778, 0.10000778, 0.10000059, 0.10000059,
       0.10000059, 0.10000059, 0.10000004, 0.10000004, 0.10000004,
       0.10000004, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999946, 0.99999946, 0.99999946, 0.99999946, 0.99999709,
       0.99999709, 0.99999709, 0.99999709, 0.9999856 , 0.9999856 ,
       0.9999856 , 0.9999856 , 0.9999352 , 0.9999352 , 0.9999352 ,
       0.9999352 , 0.99973758, 0.99973758, 0.99973758, 0.99973758,
       0.99905358, 0.99905358, 0.99905358, 0.99905358, 0.99699862,
       0.99699862, 0.99699862, 0.99699862, 0.99173748, 0.99173748,
       0.99173748, 0.99173748, 0.98044778, 0.98044778, 0.98044778,
       0.98044778, 0.96031352, 0.96031352, 0.96031352, 0.96031352,
       0.93028712, 0.93028712, 0.93028712, 0.93028712, 0.89194825,
       0.89194825, 0.89194825, 0.89194825, 0.84837482, 0.84837482,
       0.84837482, 0.84837482, 0.80307475, 0.80307475, 0.80307475,
       0.80307475, 0.75973657, 0.75973657, 0.75973657, 0.75973657,
       0.71864049, 0.71864049, 0.71864049, 0.71864049, 0.6769383 ,
       0.6769383 , 0.6769383 , 0.6769383 , 0.63889909, 0.63889909,
       0.63889909, 0.63889909, 0.61229773, 0.61229773, 0.61229773,
       0.61229773, 0.59674677, 0.59674677, 0.59674677, 0.59674677,
       0.58694413, 0.58694413, 0.58694413, 0.58694413, 0.58077655,
       0.58077655, 0.58077655, 0.58077655, 0.57805601, 0.57805601,
       0.57805601, 0.57805601, 0.57755678, 0.57755678, 0.57755678,
       0.57755678, 0.57803073, 0.57803073, 0.57803073, 0.57803073,
       0.57971225, 0.57971225, 0.57971225, 0.57971225, 0.5806943 ,
       0.5806943 , 0.5806943 , 0.5806943 , 0.58009671, 0.58009671,
       0.58009671, 0.58009671, 0.57636073, 0.57636073, 0.57636073,
       0.57636073, 0.5655678 , 0.5655678 , 0.5655678 , 0.5655678 ,
       0.54322304, 0.54322304, 0.54322304, 0.54322304, 0.50551025,
       0.50551025, 0.50551025, 0.50551025, 0.45076947, 0.45076947,
       0.45076947, 0.45076947, 0.39435096, 0.39435096, 0.39435096,
       0.39435096, 0.3597402 , 0.3597402 , 0.3597402 , 0.3597402 ,
       0.34154439, 0.34154439, 0.34154439, 0.34154439, 0.33413329,
       0.33413329, 0.33413329, 0.33413329, 0.33272707, 0.33272707,
       0.33272707, 0.33272707, 0.33306897, 0.33306897, 0.33306897,
       0.33306897, 0.33417837, 0.33417837, 0.33417837, 0.33417837,
       0.33342156, 0.33342156, 0.33342156, 0.33342156, 0.32134726,
       0.32134726, 0.32134726, 0.32134726, 0.27151457, 0.27151457,
       0.27151457, 0.27151457, 0.17391339, 0.17391339, 0.17391339,
       0.17391339, 0.131043  , 0.131043  , 0.131043  , 0.131043  ,
       0.12552415, 0.12552415, 0.12552415, 0.12552415, 0.12504101,
       0.12504101, 0.12504101, 0.12504101, 0.12500313, 0.12500313,
       0.12500313, 0.12500313, 0.12500024, 0.12500024, 0.12500024,
       0.12500024, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000017e-01, 7.50000017e-01, 7.50000017e-01, 7.50000017e-01,
       7.50000108e-01, 7.50000108e-01, 7.50000108e-01, 7.50000108e-01,
       7.50000636e-01, 7.50000636e-01, 7.50000636e-01, 7.50000636e-01,
       7.50003442e-01, 7.50003442e-01, 7.50003442e-01, 7.50003442e-01,
       7.50017043e-01, 7.50017043e-01, 7.50017043e-01, 7.50017043e-01,
       7.50076668e-01, 7.50076668e-01, 7.50076668e-01, 7.50076668e-01,
       7.50310517e-01, 7.50310517e-01, 7.50310517e-01, 7.50310517e-01,
       7.51120114e-01, 7.51120114e-01, 7.51120114e-01, 7.51120114e-01,
       7.53554867e-01, 7.53554867e-01, 7.53554867e-01, 7.53554867e-01,
       7.59807118e-01, 7.59807118e-01, 7.59807118e-01, 7.59807118e-01,
       7.73320214e-01, 7.73320214e-01, 7.73320214e-01, 7.73320214e-01,
       7.97757265e-01, 7.97757265e-01, 7.97757265e-01, 7.97757265e-01,
       8.35020634e-01, 8.35020634e-01, 8.35020634e-01, 8.35020634e-01,
       8.84067394e-01, 8.84067394e-01, 8.84067394e-01, 8.84067394e-01,
       9.41941415e-01, 9.41941415e-01, 9.41941415e-01, 9.41941415e-01,
       1.00384428e+00, 1.00384428e+00, 1.00384428e+00, 1.00384428e+00,
       1.06633018e+00, 1.06633018e+00, 1.06633018e+00, 1.06633018e+00,
       1.12932515e+00, 1.12932515e+00, 1.12932515e+00, 1.12932515e+00,
       1.19354968e+00, 1.19354968e+00, 1.19354968e+00, 1.19354968e+00,
       1.25356360e+00, 1.25356360e+00, 1.25356360e+00, 1.25356360e+00,
       1.30291531e+00, 1.30291531e+00, 1.30291531e+00, 1.30291531e+00,
       1.33529031e+00, 1.33529031e+00, 1.33529031e+00, 1.33529031e+00,
       1.35115947e+00, 1.35115947e+00, 1.35115947e+00, 1.35115947e+00,
       1.35713174e+00, 1.35713174e+00, 1.35713174e+00, 1.35713174e+00,
       1.35925965e+00, 1.35925965e+00, 1.35925965e+00, 1.35925965e+00,
       1.36072477e+00, 1.36072477e+00, 1.36072477e+00, 1.36072477e+00,
       1.36208351e+00, 1.36208351e+00, 1.36208351e+00, 1.36208351e+00,
       1.36283213e+00, 1.36283213e+00, 1.36283213e+00, 1.36283213e+00,
       1.36320426e+00, 1.36320426e+00, 1.36320426e+00, 1.36320426e+00,
       1.36331504e+00, 1.36331504e+00, 1.36331504e+00, 1.36331504e+00,
       1.36312690e+00, 1.36312690e+00, 1.36312690e+00, 1.36312690e+00,
       1.36305072e+00, 1.36305072e+00, 1.36305072e+00, 1.36305072e+00,
       1.36308238e+00, 1.36308238e+00, 1.36308238e+00, 1.36308238e+00,
       1.36286521e+00, 1.36286521e+00, 1.36286521e+00, 1.36286521e+00,
       1.36262787e+00, 1.36262787e+00, 1.36262787e+00, 1.36262787e+00,
       1.36231759e+00, 1.36231759e+00, 1.36231759e+00, 1.36231759e+00,
       1.36138818e+00, 1.36138818e+00, 1.36138818e+00, 1.36138818e+00,
       1.36084001e+00, 1.36084001e+00, 1.36084001e+00, 1.36084001e+00,
       1.36024205e+00, 1.36024205e+00, 1.36024205e+00, 1.36024205e+00,
       1.35931961e+00, 1.35931961e+00, 1.35931961e+00, 1.35931961e+00,
       1.35862778e+00, 1.35862778e+00, 1.35862778e+00, 1.35862778e+00,
       1.35576681e+00, 1.35576681e+00, 1.35576681e+00, 1.35576681e+00,
       1.34188087e+00, 1.34188087e+00, 1.34188087e+00, 1.34188087e+00,
       1.28237194e+00, 1.28237194e+00, 1.28237194e+00, 1.28237194e+00,
       1.04403836e+00, 1.04403836e+00, 1.04403836e+00, 1.04403836e+00,
       4.40023066e-01, 4.40023066e-01, 4.40023066e-01, 4.40023066e-01,
       5.63022869e-02, 5.63022869e-02, 5.63022869e-02, 5.63022869e-02,
       4.58333546e-03, 4.58333546e-03, 4.58333546e-03, 4.58333546e-03,
       3.49968099e-04, 3.49968099e-04, 3.49968099e-04, 3.49968099e-04,
       2.65258651e-05, 2.65258651e-05, 2.65258651e-05, 2.65258651e-05,
       2.00742922e-06, 2.00742922e-06, 2.00742922e-06, 2.00742922e-06,
       1.51640690e-07, 1.51640690e-07, 1.51640690e-07, 1.51640690e-07,
       1.14299111e-08, 1.14299111e-08, 1.14299111e-08, 1.14299111e-08,
       8.59588993e-10, 8.59588993e-10, 8.59588993e-10, 8.59588993e-10,
       6.44987274e-11, 6.44987274e-11, 6.44987274e-11, 6.44987274e-11,
       4.82824703e-12, 4.82824703e-12, 4.82824703e-12, 4.82824703e-12,
       3.60377106e-13, 3.60377106e-13, 3.60377106e-13, 3.60377106e-13,
       2.67995136e-14, 2.67995136e-14, 2.67995136e-14, 2.67995136e-14,
       1.97682800e-15, 1.97682800e-15, 1.97682800e-15, 1.97682800e-15,
       1.51415324e-16, 1.51415324e-16, 1.51415324e-16, 1.51415324e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
       0.99999925, 0.99999925, 0.99999925, 0.99999925, 0.99999593,
       0.99999593, 0.99999593, 0.99999593, 0.99997983, 0.99997983,
       0.99997983, 0.99997983, 0.99990929, 0.99990929, 0.99990929,
       0.99990929, 0.99963266, 0.99963266, 0.99963266, 0.99963266,
       0.99867551, 0.99867551, 0.99867551, 0.99867551, 0.99580237,
       0.99580237, 0.99580237, 0.99580237, 0.98846096, 0.98846096,
       0.98846096, 0.98846096, 0.97276987, 0.97276987, 0.97276987,
       0.97276987, 0.94498179, 0.94498179, 0.94498179, 0.94498179,
       0.90398561, 0.90398561, 0.90398561, 0.90398561, 0.85239877,
       0.85239877, 0.85239877, 0.85239877, 0.79478009, 0.79478009,
       0.79478009, 0.79478009, 0.73582397, 0.73582397, 0.73582397,
       0.73582397, 0.68038471, 0.68038471, 0.68038471, 0.68038471,
       0.62924921, 0.62924921, 0.62924921, 0.62924921, 0.57942336,
       0.57942336, 0.57942336, 0.57942336, 0.53648813, 0.53648813,
       0.53648813, 0.53648813, 0.50332705, 0.50332705, 0.50332705,
       0.50332705, 0.48248881, 0.48248881, 0.48248881, 0.48248881,
       0.47236439, 0.47236439, 0.47236439, 0.47236439, 0.46839479,
       0.46839479, 0.46839479, 0.46839479, 0.46692446, 0.46692446,
       0.46692446, 0.46692446, 0.46614238, 0.46614238, 0.46614238,
       0.46614238, 0.46561056, 0.46561056, 0.46561056, 0.46561056,
       0.4651818 , 0.4651818 , 0.4651818 , 0.4651818 , 0.46489012,
       0.46489012, 0.46489012, 0.46489012, 0.46489108, 0.46489108,
       0.46489108, 0.46489108, 0.4650843 , 0.4650843 , 0.4650843 ,
       0.4650843 , 0.46537787, 0.46537787, 0.46537787, 0.46537787,
       0.46560331, 0.46560331, 0.46560331, 0.46560331, 0.46596369,
       0.46596369, 0.46596369, 0.46596369, 0.46601669, 0.46601669,
       0.46601669, 0.46601669, 0.46592137, 0.46592137, 0.46592137,
       0.46592137, 0.46593666, 0.46593666, 0.46593666, 0.46593666,
       0.46569284, 0.46569284, 0.46569284, 0.46569284, 0.46537354,
       0.46537354, 0.46537354, 0.46537354, 0.46539853, 0.46539853,
       0.46539853, 0.46539853, 0.46498145, 0.46498145, 0.46498145,
       0.46498145, 0.46356472, 0.46356472, 0.46356472, 0.46356472,
       0.45748027, 0.45748027, 0.45748027, 0.45748027, 0.43042442,
       0.43042442, 0.43042442, 0.43042442, 0.33773594, 0.33773594,
       0.33773594, 0.33773594, 0.1723474 , 0.1723474 , 0.1723474 ,
       0.1723474 , 0.10764844, 0.10764844, 0.10764844, 0.10764844,
       0.10060719, 0.10060719, 0.10060719, 0.10060719, 0.1000463 ,
       0.1000463 , 0.1000463 , 0.1000463 , 0.10000351, 0.10000351,
       0.10000351, 0.10000351, 0.10000027, 0.10000027, 0.10000027,
       0.10000027, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_hllc': [{'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999993, 0.99999993, 0.99999993, 0.99999993,
       0.99999956, 0.99999956, 0.99999956, 0.99999956, 0.99999758,
       0.99999758, 0.99999758, 0.99999758, 0.99998782, 0.99998782,
       0.99998782, 0.99998782, 0.99994422, 0.99994422, 0.99994422,
       0.99994422, 0.99977003, 0.99977003, 0.99977003, 0.99977003,
       0.99915542, 0.99915542, 0.99915542, 0.99915542, 0.99727188,
       0.99727188, 0.99727188, 0.99727188, 0.99234954, 0.99234954,
       0.99234954, 0.99234954, 0.98156538, 0.98156538, 0.98156538,
       0.98156538, 0.96194746, 0.96194746, 0.96194746, 0.96194746,
       0.93218276, 0.93218276, 0.93218276, 0.93218276, 0.8936786 ,
       0.8936786 , 0.8936786 , 0.8936786 , 0.84954127, 0.84954127,
       0.84954127, 0.84954127, 0.80317128, 0.80317128, 0.80317128,
       0.80317128, 0.75830147, 0.75830147, 0.75830147, 0.75830147,
       0.71601042, 0.71601042, 0.71601042, 0.71601042, 0.67327991,
       0.67327991, 0.67327991, 0.67327991, 0.63607874, 0.63607874,
       0.63607874, 0.63607874, 0.61091745, 0.61091745, 0.61091745,
       0.61091745, 0.59673414, 0.59673414, 0.59673414, 0.59673414,
       0.58738935, 0.58738935, 0.58738935, 0.58738935, 0.58067077,
       0.58067077, 0.58067077, 0.58067077, 0.57738951, 0.57738951,
       0.57738951, 0.57738951, 0.57684123, 0.57684123, 0.57684123,
       0.57684123, 0.57741731, 0.57741731, 0.57741731, 0.57741731,
       0.57933199, 0.57933199, 0.57933199, 0.57933199, 0.5807667 ,
       0.5807667 , 0.5807667 , 0.5807667 , 0.58038131, 0.58038131,
       0.58038131, 0.58038131, 0.57694171, 0.57694171, 0.57694171,
       0.57694171, 0.56652927, 0.56652927, 0.56652927, 0.56652927,
       0.54427792, 0.54427792, 0.54427792, 0.54427792, 0.50574245,
       0.50574245, 0.50574245, 0.50574245, 0.44917162, 0.44917162,
       0.44917162, 0.44917162, 0.39267489, 0.39267489, 0.39267489,
       0.39267489, 0.35904482, 0.35904482, 0.35904482, 0.35904482,
       0.34183176, 0.34183176, 0.34183176, 0.34183176, 0.33519947,
       0.33519947, 0.33519947, 0.33519947, 0.33392488, 0.33392488,
       0.33392488, 0.33392488, 0.33443666, 0.33443666, 0.33443666,
       0.33443666, 0.33522049, 0.33522049, 0.33522049, 0.33522049,
       0.33404885, 0.33404885, 0.33404885, 0.33404885, 0.32180389,
       0.32180389, 0.32180389, 0.32180389, 0.27211543, 0.27211543,
       0.27211543, 0.27211543, 0.17353096, 0.17353096, 0.17353096,
       0.17353096, 0.13090219, 0.13090219, 0.13090219, 0.13090219,
       0.12548944, 0.12548944, 0.12548944, 0.12548944, 0.12503725,
       0.12503725, 0.12503725, 0.12503725, 0.12500281, 0.12500281,
       0.12500281, 0.12500281, 0.12500021, 0.12500021, 0.12500021,
       0.12500021, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
       7.50000087e-01, 7.50000087e-01, 7.50000087e-01, 7.50000087e-01,
       7.50000519e-01, 7.50000519e-01, 7.50000519e-01, 7.50000519e-01,
       7.50002860e-01, 7.50002860e-01, 7.50002860e-01, 7.50002860e-01,
       7.50014413e-01, 7.50014413e-01, 7.50014413e-01, 7.50014413e-01,
       7.50065997e-01, 7.50065997e-01, 7.50065997e-01, 7.50065997e-01,
       7.50272133e-01, 7.50272133e-01, 7.50272133e-01, 7.50272133e-01,
       7.50999658e-01, 7.50999658e-01, 7.50999658e-01, 7.50999658e-01,
       7.53231583e-01, 7.53231583e-01, 7.53231583e-01, 7.53231583e-01,
       7.59081507e-01, 7.59081507e-01, 7.59081507e-01, 7.59081507e-01,
       7.71986731e-01, 7.71986731e-01, 7.71986731e-01, 7.71986731e-01,
       7.95781524e-01, 7.95781524e-01, 7.95781524e-01, 7.95781524e-01,
       8.32680719e-01, 8.32680719e-01, 8.32680719e-01, 8.32680719e-01,
       8.81876321e-01, 8.81876321e-01, 8.81876321e-01, 8.81876321e-01,
       9.40397529e-01, 9.40397529e-01, 9.40397529e-01, 9.40397529e-01,
       1.00383705e+00, 1.00383705e+00, 1.00383705e+00, 1.00383705e+00,
       1.06846436e+00, 1.06846436e+00, 1.06846436e+00, 1.06846436e+00,
       1.13364194e+00, 1.13364194e+00, 1.13364194e+00, 1.13364194e+00,
       1.19966388e+00, 1.19966388e+00, 1.19966388e+00, 1.19966388e+00,
       1.25823577e+00, 1.25823577e+00, 1.25823577e+00, 1.25823577e+00,
       1.30460285e+00, 1.30460285e+00, 1.30460285e+00, 1.30460285e+00,
       1.33510884e+00, 1.33510884e+00, 1.33510884e+00, 1.33510884e+00,
       1.35096608e+00, 1.35096608e+00, 1.35096608e+00, 1.35096608e+00,
       1.35752911e+00, 1.35752911e+00, 1.35752911e+00, 1.35752911e+00,
       1.36008887e+00, 1.36008887e+00, 1.36008887e+00, 1.36008887e+00,
       1.36168158e+00, 1.36168158e+00, 1.36168158e+00, 1.36168158e+00,
       1.36273536e+00, 1.36273536e+00, 1.36273536e+00, 1.36273536e+00,
       1.36310325e+00, 1.36310325e+00, 1.36310325e+00, 1.36310325e+00,
       1.36308266e+00, 1.36308266e+00, 1.36308266e+00, 1.36308266e+00,
       1.36292459e+00, 1.36292459e+00, 1.36292459e+00, 1.36292459e+00,
       1.36276796e+00, 1.36276796e+00, 1.36276796e+00, 1.36276796e+00,
       1.36261137e+00, 1.36261137e+00, 1.36261137e+00, 1.36261137e+00,
       1.36242480e+00, 1.36242480e+00, 1.36242480e+00, 1.36242480e+00,
       1.36240105e+00, 1.36240105e+00, 1.36240105e+00, 1.36240105e+00,
       1.36236978e+00, 1.36236978e+00, 1.36236978e+00, 1.36236978e+00,
       1.36206049e+00, 1.36206049e+00, 1.36206049e+00, 1.36206049e+00,
       1.36120137e+00, 1.36120137e+00, 1.36120137e+00, 1.36120137e+00,
       1.36080070e+00, 1.36080070e+00, 1.36080070e+00, 1.36080070e+00,
       1.36024607e+00, 1.36024607e+00, 1.36024607e+00, 1.36024607e+00,
       1.35960979e+00, 1.35960979e+00, 1.35960979e+00, 1.35960979e+00,
       1.35845878e+00, 1.35845878e+00, 1.35845878e+00, 1.35845878e+00,
       1.35582525e+00, 1.35582525e+00, 1.35582525e+00, 1.35582525e+00,
       1.34268743e+00, 1.34268743e+00, 1.34268743e+00, 1.34268743e+00,
       1.28409176e+00, 1.28409176e+00, 1.28409176e+00, 1.28409176e+00,
       1.04736551e+00, 1.04736551e+00, 1.04736551e+00, 1.04736551e+00,
       4.29328817e-01, 4.29328817e-01, 4.29328817e-01, 4.29328817e-01,
       5.19371545e-02, 5.19371545e-02, 5.19371545e-02, 5.19371545e-02,
       4.15794051e-03, 4.15794051e-03, 4.15794051e-03, 4.15794051e-03,
       3.15435852e-04, 3.15435852e-04, 3.15435852e-04, 3.15435852e-04,
       2.37540443e-05, 2.37540443e-05, 2.37540443e-05, 2.37540443e-05,
       1.78468394e-06, 1.78468394e-06, 1.78468394e-06, 1.78468394e-06,
       1.33840550e-07, 1.33840550e-07, 1.33840550e-07, 1.33840550e-07,
       1.00204015e-08, 1.00204015e-08, 1.00204015e-08, 1.00204015e-08,
       7.48783638e-10, 7.48783638e-10, 7.48783638e-10, 7.48783638e-10,
       5.58269795e-11, 5.58269795e-11, 5.58269795e-11, 5.58269795e-11,
       4.15162222e-12, 4.15162222e-12, 4.15162222e-12, 4.15162222e-12,
       3.07872093e-13, 3.07872093e-13, 3.07872093e-13, 3.07872093e-13,
       2.27463383e-14, 2.27463383e-14, 2.27463383e-14, 2.27463383e-14,
       1.62261633e-15, 1.62261633e-15, 1.62261633e-15, 1.62261633e-15,
       1.00069544e-16, 1.00069544e-16, 1.00069544e-16, 1.00069544e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 ,
       0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999662,
       0.99999662, 0.99999662, 0.99999662, 0.99998295, 0.99998295,
       0.99998295, 0.99998295, 0.99992191, 0.99992191, 0.99992191,
       0.99992191, 0.99967806, 0.99967806, 0.99967806, 0.99967806,
       0.9988179 , 0.9988179 , 0.9988179 , 0.9988179 , 0.99618367,
       0.99618367, 0.99618367, 0.99618367, 0.9893114 , 0.9893114 ,
       0.9893114 , 0.9893114 , 0.97431068, 0.97431068, 0.97431068,
       0.97431068, 0.94720653, 0.94720653, 0.94720653, 0.94720653,
       0.90652171, 0.90652171, 0.90652171, 0.90652171, 0.85466372,
       0.85466372, 0.85466372, 0.85466372, 0.79629842, 0.79629842,
       0.79629842, 0.79629842, 0.73604968, 0.73604968, 0.73604968,
       0.73604968, 0.67878231, 0.67878231, 0.67878231, 0.67878231,
       0.6256561 , 0.6256561 , 0.6256561 , 0.6256561 , 0.57494258,
       0.57494258, 0.57494258, 0.57494258, 0.533212  , 0.533212  ,
       0.533212  , 0.533212  , 0.50207587, 0.50207587, 0.50207587,
       0.50207587, 0.48250309, 0.48250309, 0.48250309, 0.48250309,
       0.47250947, 0.47250947, 0.47250947, 0.47250947, 0.46817049,
       0.46817049, 0.46817049, 0.46817049, 0.46640112, 0.46640112,
       0.46640112, 0.46640112, 0.46567017, 0.46567017, 0.46567017,
       0.46567017, 0.46537494, 0.46537494, 0.46537494, 0.46537494,
       0.4652207 , 0.4652207 , 0.4652207 , 0.4652207 , 0.46520697,
       0.46520697, 0.46520697, 0.46520697, 0.46526117, 0.46526117,
       0.46526117, 0.46526117, 0.46535935, 0.46535935, 0.46535935,
       0.46535935, 0.46554981, 0.46554981, 0.46554981, 0.46554981,
       0.46588653, 0.46588653, 0.46588653, 0.46588653, 0.46609435,
       0.46609435, 0.46609435, 0.46609435, 0.46609123, 0.46609123,
       0.46609123, 0.46609123, 0.46609313, 0.46609313, 0.46609313,
       0.46609313, 0.4660888 , 0.4660888 , 0.4660888 , 0.4660888 ,
       0.46579135, 0.46579135, 0.46579135, 0.46579135, 0.46552363,
       0.46552363, 0.46552363, 0.46552363, 0.46536737, 0.46536737,
       0.46536737, 0.46536737, 0.46516396, 0.46516396, 0.46516396,
       0.46516396, 0.46370822, 0.46370822, 0.46370822, 0.46370822,
       0.45758086, 0.45758086, 0.45758086, 0.45758086, 0.43124529,
       0.43124529, 0.43124529, 0.43124529, 0.33859453, 0.33859453,
       0.33859453, 0.33859453, 0.17013955, 0.17013955, 0.17013955,
       0.17013955, 0.10699674, 0.10699674, 0.10699674, 0.10699674,
       0.10055056, 0.10055056, 0.10055056, 0.10055056, 0.10004173,
       0.10004173, 0.10004173, 0.10004173, 0.10000314, 0.10000314,
       0.10000314, 0.10000314, 0.10000024, 0.10000024, 0.10000024,
       0.10000024, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}]}
minmod_hll
{'none_hll': [{'rho': array([0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999942,
       0.99999942, 0.99999942, 0.99999942, 0.99999778, 0.99999778,
       0.99999778, 0.99999778, 0.99999202, 0.99999202, 0.99999202,
       0.99999202, 0.99997316, 0.99997316, 0.99997316, 0.99997316,
       0.99991602, 0.99991602, 0.99991602, 0.99991602, 0.9997563 ,
       0.9997563 , 0.9997563 , 0.9997563 , 0.9993467 , 0.9993467 ,
       0.9993467 , 0.9993467 , 0.99838817, 0.99838817, 0.99838817,
       0.99838817, 0.99635204, 0.99635204, 0.99635204, 0.99635204,
       0.99244104, 0.99244104, 0.99244104, 0.99244104, 0.9856563 ,
       0.9856563 , 0.9856563 , 0.9856563 , 0.97499773, 0.97499773,
       0.97499773, 0.97499773, 0.95972818, 0.95972818, 0.95972818,
       0.95972818, 0.93956535, 0.93956535, 0.93956535, 0.93956535,
       0.91470956, 0.91470956, 0.91470956, 0.91470956, 0.88572617,
       0.88572617, 0.88572617, 0.88572617, 0.85336749, 0.85336749,
       0.85336749, 0.85336749, 0.8183986 , 0.8183986 , 0.8183986 ,
       0.8183986 , 0.78138933, 0.78138933, 0.78138933, 0.78138933,
       0.74190427, 0.74190427, 0.74190427, 0.74190427, 0.68069561,
       0.68069561, 0.68069561, 0.68069561, 0.64567578, 0.64567578,
       0.64567578, 0.64567578, 0.62072799, 0.62072799, 0.62072799,
       0.62072799, 0.60234245, 0.60234245, 0.60234245, 0.60234245,
       0.58959115, 0.58959115, 0.58959115, 0.58959115, 0.58159638,
       0.58159638, 0.58159638, 0.58159638, 0.57703206, 0.57703206,
       0.57703206, 0.57703206, 0.5742342 , 0.5742342 , 0.5742342 ,
       0.5742342 , 0.57154338, 0.57154338, 0.57154338, 0.57154338,
       0.56752869, 0.56752869, 0.56752869, 0.56752869, 0.56100982,
       0.56100982, 0.56100982, 0.56100982, 0.55104138, 0.55104138,
       0.55104138, 0.55104138, 0.5369988 , 0.5369988 , 0.5369988 ,
       0.5369988 , 0.51874878, 0.51874878, 0.51874878, 0.51874878,
       0.49679082, 0.49679082, 0.49679082, 0.49679082, 0.4722612 ,
       0.4722612 , 0.4722612 , 0.4722612 , 0.44675753, 0.44675753,
       0.44675753, 0.44675753, 0.42202434, 0.42202434, 0.42202434,
       0.42202434, 0.39959589, 0.39959589, 0.39959589, 0.39959589,
       0.38049936, 0.38049936, 0.38049936, 0.38049936, 0.36508019,
       0.36508019, 0.36508019, 0.36508019, 0.35299013, 0.35299013,
       0.35299013, 0.35299013, 0.34303431, 0.34303431, 0.34303431,
       0.34303431, 0.33311509, 0.33311509, 0.33311509, 0.33311509,
       0.32011436, 0.32011436, 0.32011436, 0.32011436, 0.29976301,
       0.29976301, 0.29976301, 0.29976301, 0.2678043 , 0.2678043 ,
       0.2678043 , 0.2678043 , 0.22419984, 0.22419984, 0.22419984,
       0.22419984, 0.17832614, 0.17832614, 0.17832614, 0.17832614,
       0.14528472, 0.14528472, 0.14528472, 0.14528472, 0.13048361,
       0.13048361, 0.13048361, 0.13048361, 0.12620226, 0.12620226,
       0.12620226, 0.12620226, 0.12524229, 0.12524229, 0.12524229,
       0.12524229, 0.12504738, 0.12504738, 0.12504738, 0.12504738,
       0.12500914, 0.12500914, 0.12500914, 0.12500914, 0.12500174,
       0.12500174, 0.12500174, 0.12500174, 0.12500033, 0.12500033,
       0.12500033, 0.12500033, 0.12500006, 0.12500006, 0.12500006,
       0.12500006, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000167e-01, 7.50000167e-01, 7.50000167e-01, 7.50000167e-01,
       7.50000683e-01, 7.50000683e-01, 7.50000683e-01, 7.50000683e-01,
       7.50002625e-01, 7.50002625e-01, 7.50002625e-01, 7.50002625e-01,
       7.50009447e-01, 7.50009447e-01, 7.50009447e-01, 7.50009447e-01,
       7.50031758e-01, 7.50031758e-01, 7.50031758e-01, 7.50031758e-01,
       7.50099366e-01, 7.50099366e-01, 7.50099366e-01, 7.50099366e-01,
       7.50288337e-01, 7.50288337e-01, 7.50288337e-01, 7.50288337e-01,
       7.50772988e-01, 7.50772988e-01, 7.50772988e-01, 7.50772988e-01,
       7.51907376e-01, 7.51907376e-01, 7.51907376e-01, 7.51907376e-01,
       7.54318699e-01, 7.54318699e-01, 7.54318699e-01, 7.54318699e-01,
       7.58958083e-01, 7.58958083e-01, 7.58958083e-01, 7.58958083e-01,
       7.67034111e-01, 7.67034111e-01, 7.67034111e-01, 7.67034111e-01,
       7.79799756e-01, 7.79799756e-01, 7.79799756e-01, 7.79799756e-01,
       7.98268450e-01, 7.98268450e-01, 7.98268450e-01, 7.98268450e-01,
       8.23003448e-01, 8.23003448e-01, 8.23003448e-01, 8.23003448e-01,
       8.54075522e-01, 8.54075522e-01, 8.54075522e-01, 8.54075522e-01,
       8.91170219e-01, 8.91170219e-01, 8.91170219e-01, 8.91170219e-01,
       9.33761223e-01, 9.33761223e-01, 9.33761223e-01, 9.33761223e-01,
       9.81292612e-01, 9.81292612e-01, 9.81292612e-01, 9.81292612e-01,
       1.03344347e+00, 1.03344347e+00, 1.03344347e+00, 1.03344347e+00,
       1.09134872e+00, 1.09134872e+00, 1.09134872e+00, 1.09134872e+00,
       1.18628677e+00, 1.18628677e+00, 1.18628677e+00, 1.18628677e+00,
       1.24355729e+00, 1.24355729e+00, 1.24355729e+00, 1.24355729e+00,
       1.28577631e+00, 1.28577631e+00, 1.28577631e+00, 1.28577631e+00,
       1.31763060e+00, 1.31763060e+00, 1.31763060e+00, 1.31763060e+00,
       1.33994607e+00, 1.33994607e+00, 1.33994607e+00, 1.33994607e+00,
       1.35366900e+00, 1.35366900e+00, 1.35366900e+00, 1.35366900e+00,
       1.36065228e+00, 1.36065228e+00, 1.36065228e+00, 1.36065228e+00,
       1.36330406e+00, 1.36330406e+00, 1.36330406e+00, 1.36330406e+00,
       1.36377802e+00, 1.36377802e+00, 1.36377802e+00, 1.36377802e+00,
       1.36346214e+00, 1.36346214e+00, 1.36346214e+00, 1.36346214e+00,
       1.36300839e+00, 1.36300839e+00, 1.36300839e+00, 1.36300839e+00,
       1.36262613e+00, 1.36262613e+00, 1.36262613e+00, 1.36262613e+00,
       1.36234022e+00, 1.36234022e+00, 1.36234022e+00, 1.36234022e+00,
       1.36212440e+00, 1.36212440e+00, 1.36212440e+00, 1.36212440e+00,
       1.36194570e+00, 1.36194570e+00, 1.36194570e+00, 1.36194570e+00,
       1.36176870e+00, 1.36176870e+00, 1.36176870e+00, 1.36176870e+00,
       1.36154433e+00, 1.36154433e+00, 1.36154433e+00, 1.36154433e+00,
       1.36118699e+00, 1.36118699e+00, 1.36118699e+00, 1.36118699e+00,
       1.36053007e+00, 1.36053007e+00, 1.36053007e+00, 1.36053007e+00,
       1.35923531e+00, 1.35923531e+00, 1.35923531e+00, 1.35923531e+00,
       1.35660636e+00, 1.35660636e+00, 1.35660636e+00, 1.35660636e+00,
       1.35121276e+00, 1.35121276e+00, 1.35121276e+00, 1.35121276e+00,
       1.34015167e+00, 1.34015167e+00, 1.34015167e+00, 1.34015167e+00,
       1.31767491e+00, 1.31767491e+00, 1.31767491e+00, 1.31767491e+00,
       1.27285288e+00, 1.27285288e+00, 1.27285288e+00, 1.27285288e+00,
       1.18653029e+00, 1.18653029e+00, 1.18653029e+00, 1.18653029e+00,
       1.03082789e+00, 1.03082789e+00, 1.03082789e+00, 1.03082789e+00,
       7.82059657e-01, 7.82059657e-01, 7.82059657e-01, 7.82059657e-01,
       4.62795165e-01, 4.62795165e-01, 4.62795165e-01, 4.62795165e-01,
       1.85035678e-01, 1.85035678e-01, 1.85035678e-01, 1.85035678e-01,
       4.91064989e-02, 4.91064989e-02, 4.91064989e-02, 4.91064989e-02,
       1.04300500e-02, 1.04300500e-02, 1.04300500e-02, 1.04300500e-02,
       2.06834747e-03, 2.06834747e-03, 2.06834747e-03, 2.06834747e-03,
       4.02159204e-04, 4.02159204e-04, 4.02159204e-04, 4.02159204e-04,
       7.74241901e-05, 7.74241901e-05, 7.74241901e-05, 7.74241901e-05,
       1.47732907e-05, 1.47732907e-05, 1.47732907e-05, 1.47732907e-05,
       2.79133251e-06, 2.79133251e-06, 2.79133251e-06, 2.79133251e-06,
       5.21558611e-07, 5.21558611e-07, 5.21558611e-07, 5.21558611e-07,
       9.62314180e-08, 9.62314180e-08, 9.62314180e-08, 9.62314180e-08,
       1.75063215e-08, 1.75063215e-08, 1.75063215e-08, 1.75063215e-08,
       3.13525934e-09, 3.13525934e-09, 3.13525934e-09, 3.13525934e-09,
       5.51945459e-10, 5.51945459e-10, 5.51945459e-10, 5.51945459e-10,
       9.53728523e-11, 9.53728523e-11, 9.53728523e-11]), 'P': array([0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999919,
       0.99999919, 0.99999919, 0.99999919, 0.99999689, 0.99999689,
       0.99999689, 0.99999689, 0.99998882, 0.99998882, 0.99998882,
       0.99998882, 0.99996242, 0.99996242, 0.99996242, 0.99996242,
       0.99988243, 0.99988243, 0.99988243, 0.99988243, 0.99965888,
       0.99965888, 0.99965888, 0.99965888, 0.99908571, 0.99908571,
       0.99908571, 0.99908571, 0.99774515, 0.99774515, 0.99774515,
       0.99774515, 0.99490042, 0.99490042, 0.99490042, 0.99490042,
       0.98944596, 0.98944596, 0.98944596, 0.98944596, 0.98001064,
       0.98001064, 0.98001064, 0.98001064, 0.96525111, 0.96525111,
       0.96525111, 0.96525111, 0.94423203, 0.94423203, 0.94423203,
       0.94423203, 0.91669404, 0.91669404, 0.91669404, 0.91669404,
       0.88307786, 0.88307786, 0.88307786, 0.88307786, 0.84433672,
       0.84433672, 0.84433672, 0.84433672, 0.80166635, 0.80166635,
       0.80166635, 0.80166635, 0.75625152, 0.75625152, 0.75625152,
       0.75625152, 0.70899078, 0.70899078, 0.70899078, 0.70899078,
       0.65951543, 0.65951543, 0.65951543, 0.65951543, 0.58481452,
       0.58481452, 0.58481452, 0.58481452, 0.5433517 , 0.5433517 ,
       0.5433517 , 0.5433517 , 0.51442502, 0.51442502, 0.51442502,
       0.51442502, 0.49348741, 0.49348741, 0.49348741, 0.49348741,
       0.47926376, 0.47926376, 0.47926376, 0.47926376, 0.4706976 ,
       0.4706976 , 0.4706976 , 0.4706976 , 0.46639387, 0.46639387,
       0.46639387, 0.46639387, 0.46477369, 0.46477369, 0.46477369,
       0.46477369, 0.46449143, 0.46449143, 0.46449143, 0.46449143,
       0.46469357, 0.46469357, 0.46469357, 0.46469357, 0.46498071,
       0.46498071, 0.46498071, 0.46498071, 0.46522404, 0.46522404,
       0.46522404, 0.46522404, 0.46540634, 0.46540634, 0.46540634,
       0.46540634, 0.46553884, 0.46553884, 0.46553884, 0.46553884,
       0.46563123, 0.46563123, 0.46563123, 0.46563123, 0.46568376,
       0.46568376, 0.46568376, 0.46568376, 0.46568347, 0.46568347,
       0.46568347, 0.46568347, 0.46559619, 0.46559619, 0.46559619,
       0.46559619, 0.46534764, 0.46534764, 0.46534764, 0.46534764,
       0.46478249, 0.46478249, 0.46478249, 0.46478249, 0.46357931,
       0.46357931, 0.46357931, 0.46357931, 0.46108012, 0.46108012,
       0.46108012, 0.46108012, 0.4559703 , 0.4559703 , 0.4559703 ,
       0.4559703 , 0.44573327, 0.44573327, 0.44573327, 0.44573327,
       0.42592481, 0.42592481, 0.42592481, 0.42592481, 0.38995176,
       0.38995176, 0.38995176, 0.38995176, 0.33171722, 0.33171722,
       0.33171722, 0.33171722, 0.25409808, 0.25409808, 0.25409808,
       0.25409808, 0.1771826 , 0.1771826 , 0.1771826 , 0.1771826 ,
       0.126735  , 0.126735  , 0.126735  , 0.126735  , 0.10663112,
       0.10663112, 0.10663112, 0.10663112, 0.10138491, 0.10138491,
       0.10138491, 0.10138491, 0.1002738 , 0.1002738 , 0.1002738 ,
       0.1002738 , 0.10005321, 0.10005321, 0.10005321, 0.10005321,
       0.10001024, 0.10001024, 0.10001024, 0.10001024, 0.10000195,
       0.10000195, 0.10000195, 0.10000195, 0.10000037, 0.10000037,
       0.10000037, 0.10000037, 0.10000007, 0.10000007, 0.10000007,
       0.10000007, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_rusanov': [{'rho': array([0.99999871, 0.99999871, 0.99999871, 0.99999871, 0.99999661,
       0.99999661, 0.99999661, 0.99999661, 0.99998966, 0.99998966,
       0.99998966, 0.99998966, 0.99997049, 0.99997049, 0.99997049,
       0.99997049, 0.99992058, 0.99992058, 0.99992058, 0.99992058,
       0.99979749, 0.99979749, 0.99979749, 0.99979749, 0.99951129,
       0.99951129, 0.99951129, 0.99951129, 0.99888599, 0.99888599,
       0.99888599, 0.99888599, 0.9976064 , 0.9976064 , 0.9976064 ,
       0.9976064 , 0.99516153, 0.99516153, 0.99516153, 0.99516153,
       0.99081297, 0.99081297, 0.99081297, 0.99081297, 0.98362904,
       0.98362904, 0.98362904, 0.98362904, 0.9726153 , 0.9726153 ,
       0.9726153 , 0.9726153 , 0.95692666, 0.95692666, 0.95692666,
       0.95692666, 0.93608458, 0.93608458, 0.93608458, 0.93608458,
       0.91009674, 0.91009674, 0.91009674, 0.91009674, 0.87942017,
       0.87942017, 0.87942017, 0.87942017, 0.84480243, 0.84480243,
       0.84480243, 0.84480243, 0.80717174, 0.80717174, 0.80717174,
       0.80717174, 0.76833323, 0.76833323, 0.76833323, 0.76833323,
       0.7317958 , 0.7317958 , 0.7317958 , 0.7317958 , 0.69866292,
       0.69866292, 0.69866292, 0.69866292, 0.66877266, 0.66877266,
       0.66877266, 0.66877266, 0.64250712, 0.64250712, 0.64250712,
       0.64250712, 0.62085534, 0.62085534, 0.62085534, 0.62085534,
       0.60473075, 0.60473075, 0.60473075, 0.60473075, 0.59427383,
       0.59427383, 0.59427383, 0.59427383, 0.58874167, 0.58874167,
       0.58874167, 0.58874167, 0.58661231, 0.58661231, 0.58661231,
       0.58661231, 0.58586097, 0.58586097, 0.58586097, 0.58586097,
       0.58476947, 0.58476947, 0.58476947, 0.58476947, 0.58158321,
       0.58158321, 0.58158321, 0.58158321, 0.57471343, 0.57471343,
       0.57471343, 0.57471343, 0.56327381, 0.56327381, 0.56327381,
       0.56327381, 0.54639053, 0.54639053, 0.54639053, 0.54639053,
       0.52240684, 0.52240684, 0.52240684, 0.52240684, 0.48899281,
       0.48899281, 0.48899281, 0.48899281, 0.4463966 , 0.4463966 ,
       0.4463966 , 0.4463966 , 0.40411539, 0.40411539, 0.40411539,
       0.40411539, 0.37294067, 0.37294067, 0.37294067, 0.37294067,
       0.35182753, 0.35182753, 0.35182753, 0.35182753, 0.33895289,
       0.33895289, 0.33895289, 0.33895289, 0.33221897, 0.33221897,
       0.33221897, 0.33221897, 0.3294285 , 0.3294285 , 0.3294285 ,
       0.3294285 , 0.32860094, 0.32860094, 0.32860094, 0.32860094,
       0.32743466, 0.32743466, 0.32743466, 0.32743466, 0.31726988,
       0.31726988, 0.31726988, 0.31726988, 0.27001934, 0.27001934,
       0.27001934, 0.27001934, 0.17357126, 0.17357126, 0.17357126,
       0.17357126, 0.13098555, 0.13098555, 0.13098555, 0.13098555,
       0.12551968, 0.12551968, 0.12551968, 0.12551968, 0.12504027,
       0.12504027, 0.12504027, 0.12504027, 0.12500303, 0.12500303,
       0.12500303, 0.12500303, 0.12500023, 0.12500023, 0.12500023,
       0.12500023, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50001531e-01, 7.50001531e-01, 7.50001531e-01, 7.50001531e-01,
       7.50004007e-01, 7.50004007e-01, 7.50004007e-01, 7.50004007e-01,
       7.50012237e-01, 7.50012237e-01, 7.50012237e-01, 7.50012237e-01,
       7.50034917e-01, 7.50034917e-01, 7.50034917e-01, 7.50034917e-01,
       7.50093968e-01, 7.50093968e-01, 7.50093968e-01, 7.50093968e-01,
       7.50239615e-01, 7.50239615e-01, 7.50239615e-01, 7.50239615e-01,
       7.50578307e-01, 7.50578307e-01, 7.50578307e-01, 7.50578307e-01,
       7.51318450e-01, 7.51318450e-01, 7.51318450e-01, 7.51318450e-01,
       7.52833953e-01, 7.52833953e-01, 7.52833953e-01, 7.52833953e-01,
       7.55733191e-01, 7.55733191e-01, 7.55733191e-01, 7.55733191e-01,
       7.60902495e-01, 7.60902495e-01, 7.60902495e-01, 7.60902495e-01,
       7.69479672e-01, 7.69479672e-01, 7.69479672e-01, 7.69479672e-01,
       7.82724068e-01, 7.82724068e-01, 7.82724068e-01, 7.82724068e-01,
       8.01796569e-01, 8.01796569e-01, 8.01796569e-01, 8.01796569e-01,
       8.27525186e-01, 8.27525186e-01, 8.27525186e-01, 8.27525186e-01,
       8.60261011e-01, 8.60261011e-01, 8.60261011e-01, 8.60261011e-01,
       8.99894497e-01, 8.99894497e-01, 8.99894497e-01, 8.99894497e-01,
       9.46030525e-01, 9.46030525e-01, 9.46030525e-01, 9.46030525e-01,
       9.98277447e-01, 9.98277447e-01, 9.98277447e-01, 9.98277447e-01,
       1.05334834e+00, 1.05334834e+00, 1.05334834e+00, 1.05334834e+00,
       1.10804511e+00, 1.10804511e+00, 1.10804511e+00, 1.10804511e+00,
       1.15927234e+00, 1.15927234e+00, 1.15927234e+00, 1.15927234e+00,
       1.20602476e+00, 1.20602476e+00, 1.20602476e+00, 1.20602476e+00,
       1.24734222e+00, 1.24734222e+00, 1.24734222e+00, 1.24734222e+00,
       1.28248845e+00, 1.28248845e+00, 1.28248845e+00, 1.28248845e+00,
       1.31052537e+00, 1.31052537e+00, 1.31052537e+00, 1.31052537e+00,
       1.33076480e+00, 1.33076480e+00, 1.33076480e+00, 1.33076480e+00,
       1.34415463e+00, 1.34415463e+00, 1.34415463e+00, 1.34415463e+00,
       1.35305806e+00, 1.35305806e+00, 1.35305806e+00, 1.35305806e+00,
       1.35894065e+00, 1.35894065e+00, 1.35894065e+00, 1.35894065e+00,
       1.36185203e+00, 1.36185203e+00, 1.36185203e+00, 1.36185203e+00,
       1.36239557e+00, 1.36239557e+00, 1.36239557e+00, 1.36239557e+00,
       1.36215707e+00, 1.36215707e+00, 1.36215707e+00, 1.36215707e+00,
       1.36194266e+00, 1.36194266e+00, 1.36194266e+00, 1.36194266e+00,
       1.36206937e+00, 1.36206937e+00, 1.36206937e+00, 1.36206937e+00,
       1.36246607e+00, 1.36246607e+00, 1.36246607e+00, 1.36246607e+00,
       1.36297688e+00, 1.36297688e+00, 1.36297688e+00, 1.36297688e+00,
       1.36312897e+00, 1.36312897e+00, 1.36312897e+00, 1.36312897e+00,
       1.36298101e+00, 1.36298101e+00, 1.36298101e+00, 1.36298101e+00,
       1.36246641e+00, 1.36246641e+00, 1.36246641e+00, 1.36246641e+00,
       1.36157437e+00, 1.36157437e+00, 1.36157437e+00, 1.36157437e+00,
       1.36070130e+00, 1.36070130e+00, 1.36070130e+00, 1.36070130e+00,
       1.36003987e+00, 1.36003987e+00, 1.36003987e+00, 1.36003987e+00,
       1.35919056e+00, 1.35919056e+00, 1.35919056e+00, 1.35919056e+00,
       1.35638143e+00, 1.35638143e+00, 1.35638143e+00, 1.35638143e+00,
       1.34281703e+00, 1.34281703e+00, 1.34281703e+00, 1.34281703e+00,
       1.28083198e+00, 1.28083198e+00, 1.28083198e+00, 1.28083198e+00,
       1.03437248e+00, 1.03437248e+00, 1.03437248e+00, 1.03437248e+00,
       4.39845204e-01, 4.39845204e-01, 4.39845204e-01, 4.39845204e-01,
       5.63702448e-02, 5.63702448e-02, 5.63702448e-02, 5.63702448e-02,
       4.56728510e-03, 4.56728510e-03, 4.56728510e-03, 4.56728510e-03,
       3.44109702e-04, 3.44109702e-04, 3.44109702e-04, 3.44109702e-04,
       2.57117118e-05, 2.57117118e-05, 2.57117118e-05, 2.57117118e-05,
       1.91493931e-06, 1.91493931e-06, 1.91493931e-06, 1.91493931e-06,
       1.42183400e-07, 1.42183400e-07, 1.42183400e-07, 1.42183400e-07,
       1.05285748e-08, 1.05285748e-08, 1.05285748e-08, 1.05285748e-08,
       7.77701570e-10, 7.77701570e-10, 7.77701570e-10, 7.77701570e-10,
       5.73011541e-11, 5.73011541e-11, 5.73011541e-11, 5.73011541e-11,
       4.21117928e-12, 4.21117928e-12, 4.21117928e-12, 4.21117928e-12,
       3.08654210e-13, 3.08654210e-13, 3.08654210e-13, 3.08654210e-13,
       2.24724643e-14, 2.24724643e-14, 2.24724643e-14, 2.24724643e-14,
       1.61702291e-15, 1.61702291e-15, 1.61702291e-15, 1.61702291e-15,
       1.02454347e-16, 1.02454347e-16, 1.02454347e-16, 1.02454347e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([0.99999819, 0.99999819, 0.99999819, 0.99999819, 0.99999526,
       0.99999526, 0.99999526, 0.99999526, 0.99998552, 0.99998552,
       0.99998552, 0.99998552, 0.99995869, 0.99995869, 0.99995869,
       0.99995869, 0.99988882, 0.99988882, 0.99988882, 0.99988882,
       0.99971652, 0.99971652, 0.99971652, 0.99971652, 0.99931595,
       0.99931595, 0.99931595, 0.99931595, 0.9984411 , 0.9984411 ,
       0.9984411 , 0.9984411 , 0.99665195, 0.99665195, 0.99665195,
       0.99665195, 0.99323734, 0.99323734, 0.99323734, 0.99323734,
       0.98717551, 0.98717551, 0.98717551, 0.98717551, 0.97719106,
       0.97719106, 0.97719106, 0.97719106, 0.96195133, 0.96195133,
       0.96195133, 0.96195133, 0.94037646, 0.94037646, 0.94037646,
       0.94037646, 0.91194761, 0.91194761, 0.91194761, 0.91194761,
       0.87686269, 0.87686269, 0.87686269, 0.87686269, 0.83595614,
       0.83595614, 0.83595614, 0.83595614, 0.79042203, 0.79042203,
       0.79042203, 0.79042203, 0.74145147, 0.74145147, 0.74145147,
       0.74145147, 0.69147779, 0.69147779, 0.69147779, 0.69147779,
       0.64572403, 0.64572403, 0.64572403, 0.64572403, 0.60528213,
       0.60528213, 0.60528213, 0.60528213, 0.57010763, 0.57010763,
       0.57010763, 0.57010763, 0.5404967 , 0.5404967 , 0.5404967 ,
       0.5404967 , 0.51678706, 0.51678706, 0.51678706, 0.51678706,
       0.49867658, 0.49867658, 0.49867658, 0.49867658, 0.4853026 ,
       0.4853026 , 0.4853026 , 0.4853026 , 0.47607786, 0.47607786,
       0.47607786, 0.47607786, 0.47071083, 0.47071083, 0.47071083,
       0.47071083, 0.46816931, 0.46816931, 0.46816931, 0.46816931,
       0.46677659, 0.46677659, 0.46677659, 0.46677659, 0.46558153,
       0.46558153, 0.46558153, 0.46558153, 0.4647659 , 0.4647659 ,
       0.4647659 , 0.4647659 , 0.46441055, 0.46441055, 0.46441055,
       0.46441055, 0.46437878, 0.46437878, 0.46437878, 0.46437878,
       0.46459568, 0.46459568, 0.46459568, 0.46459568, 0.46499426,
       0.46499426, 0.46499426, 0.46499426, 0.46520033, 0.46520033,
       0.46520033, 0.46520033, 0.46528777, 0.46528777, 0.46528777,
       0.46528777, 0.46526662, 0.46526662, 0.46526662, 0.46526662,
       0.46508061, 0.46508061, 0.46508061, 0.46508061, 0.4649127 ,
       0.4649127 , 0.4649127 , 0.4649127 , 0.46486127, 0.46486127,
       0.46486127, 0.46486127, 0.4647071 , 0.4647071 , 0.4647071 ,
       0.4647071 , 0.46356721, 0.46356721, 0.46356721, 0.46356721,
       0.45731151, 0.45731151, 0.45731151, 0.45731151, 0.42928346,
       0.42928346, 0.42928346, 0.42928346, 0.33578024, 0.33578024,
       0.33578024, 0.33578024, 0.17249402, 0.17249402, 0.17249402,
       0.17249402, 0.10769716, 0.10769716, 0.10769716, 0.10769716,
       0.10060508, 0.10060508, 0.10060508, 0.10060508, 0.10004552,
       0.10004552, 0.10004552, 0.10004552, 0.1000034 , 0.1000034 ,
       0.1000034 , 0.1000034 , 0.10000025, 0.10000025, 0.10000025,
       0.10000025, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_hll': [{'rho': array([1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125]), 'vx': array([0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  ]), 'P': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999477, 0.99999477,
       0.99999477, 0.99999477, 0.99786485, 0.99786485, 0.99786485,
       0.99786485, 0.93485786, 0.93485786, 0.93485786, 0.93485786,
       0.40121931, 0.40121931, 0.40121931, 0.40121931, 0.15582104,
       0.15582104, 0.15582104, 0.15582104, 0.12524217, 0.12524217,
       0.12524217, 0.12524217, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75000582, 0.75000582,
       0.75000582, 0.75000582, 0.75222331, 0.75222331, 0.75222331,
       0.75222331, 0.81126632, 0.81126632, 0.81126632, 0.81126632,
       1.02140027, 1.02140027, 1.02140027, 1.02140027, 0.31355893,
       0.31355893, 0.31355893, 0.31355893, 0.0023764 , 0.0023764 ,
       0.0023764 , 0.0023764 , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999312, 0.99999312,
       0.99999312, 0.99999312, 0.99735755, 0.99735755, 0.99735755,
       0.99735755, 0.93228381, 0.93228381, 0.93228381, 0.93228381,
       0.39392227, 0.39392227, 0.39392227, 0.39392227, 0.14137148,
       0.14137148, 0.14137148, 0.14137148, 0.1003091 , 0.1003091 ,
       0.1003091 , 0.1003091 , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999593,
       0.99999593, 0.99999593, 0.99999593, 0.99976514, 0.99976514,
       0.99976514, 0.99976514, 0.99350557, 0.99350557, 0.99350557,
       0.99350557, 0.91229178, 0.91229178, 0.91229178, 0.91229178,
       0.5439655 , 0.5439655 , 0.5439655 , 0.5439655 , 0.26096859,
       0.26096859, 0.26096859, 0.26096859, 0.14372642, 0.14372642,
       0.14372642, 0.14372642, 0.12576866, 0.12576866, 0.12576866,
       0.12576866, 0.12501238, 0.12501238, 0.12501238, 0.12501238,
       0.12500005, 0.12500005, 0.12500005, 0.12500005, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000034e-01, 7.50000034e-01, 7.50000034e-01, 7.50000034e-01,
       7.50004712e-01, 7.50004712e-01, 7.50004712e-01, 7.50004712e-01,
       7.50264827e-01, 7.50264827e-01, 7.50264827e-01, 7.50264827e-01,
       7.56937682e-01, 7.56937682e-01, 7.56937682e-01, 7.56937682e-01,
       8.39140555e-01, 8.39140555e-01, 8.39140555e-01, 8.39140555e-01,
       1.20185078e+00, 1.20185078e+00, 1.20185078e+00, 1.20185078e+00,
       9.09724624e-01, 9.09724624e-01, 9.09724624e-01, 9.09724624e-01,
       1.82774882e-01, 1.82774882e-01, 1.82774882e-01, 1.82774882e-01,
       7.06720021e-03, 7.06720021e-03, 7.06720021e-03, 7.06720021e-03,
       1.07910808e-04, 1.07910808e-04, 1.07910808e-04, 1.07910808e-04,
       4.52081665e-07, 4.52081665e-07, 4.52081665e-07, 4.52081665e-07,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999442,
       0.99999442, 0.99999442, 0.99999442, 0.99968659, 0.99968659,
       0.99968659, 0.99968659, 0.99178136, 0.99178136, 0.99178136,
       0.99178136, 0.89903919, 0.89903919, 0.89903919, 0.89903919,
       0.51770741, 0.51770741, 0.51770741, 0.51770741, 0.2728004 ,
       0.2728004 , 0.2728004 , 0.2728004 , 0.12535917, 0.12535917,
       0.12535917, 0.12535917, 0.10093445, 0.10093445, 0.10093445,
       0.10093445, 0.10001427, 0.10001427, 0.10001427, 0.10001427,
       0.10000006, 0.10000006, 0.10000006, 0.10000006, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999923, 0.99999923, 0.99999923, 0.99999923, 0.99996861,
       0.99996861, 0.99996861, 0.99996861, 0.99921031, 0.99921031,
       0.99921031, 0.99921031, 0.98796713, 0.98796713, 0.98796713,
       0.98796713, 0.89633843, 0.89633843, 0.89633843, 0.89633843,
       0.62495402, 0.62495402, 0.62495402, 0.62495402, 0.36745601,
       0.36745601, 0.36745601, 0.36745601, 0.20859145, 0.20859145,
       0.20859145, 0.20859145, 0.13495091, 0.13495091, 0.13495091,
       0.13495091, 0.12554615, 0.12554615, 0.12554615, 0.12554615,
       0.12501743, 0.12501743, 0.12501743, 0.12501743, 0.12500034,
       0.12500034, 0.12500034, 0.12500034, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
       7.50000909e-01, 7.50000909e-01, 7.50000909e-01, 7.50000909e-01,
       7.50036531e-01, 7.50036531e-01, 7.50036531e-01, 7.50036531e-01,
       7.50902656e-01, 7.50902656e-01, 7.50902656e-01, 7.50902656e-01,
       7.63307867e-01, 7.63307867e-01, 7.63307867e-01, 7.63307867e-01,
       8.65269104e-01, 8.65269104e-01, 8.65269104e-01, 8.65269104e-01,
       1.24045354e+00, 1.24045354e+00, 1.24045354e+00, 1.24045354e+00,
       1.21114735e+00, 1.21114735e+00, 1.21114735e+00, 1.21114735e+00,
       6.72413161e-01, 6.72413161e-01, 6.72413161e-01, 6.72413161e-01,
       9.49710351e-02, 9.49710351e-02, 9.49710351e-02, 9.49710351e-02,
       4.89829591e-03, 4.89829591e-03, 4.89829591e-03, 4.89829591e-03,
       1.50276620e-04, 1.50276620e-04, 1.50276620e-04, 1.50276620e-04,
       2.85787671e-06, 2.85787671e-06, 2.85787671e-06, 2.85787671e-06,
       2.86001060e-08, 2.86001060e-08, 2.86001060e-08, 2.86001060e-08,
       9.82632001e-11, 9.82632001e-11, 9.82632001e-11, 9.82632001e-11,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99995678,
       0.99995678, 0.99995678, 0.99995678, 0.99893195, 0.99893195,
       0.99893195, 0.99893195, 0.98431021, 0.98431021, 0.98431021,
       0.98431021, 0.87225606, 0.87225606, 0.87225606, 0.87225606,
       0.57198082, 0.57198082, 0.57198082, 0.57198082, 0.38708981,
       0.38708981, 0.38708981, 0.38708981, 0.2169621 , 0.2169621 ,
       0.2169621 , 0.2169621 , 0.11307803, 0.11307803, 0.11307803,
       0.11307803, 0.10064828, 0.10064828, 0.10064828, 0.10064828,
       0.10001988, 0.10001988, 0.10001988, 0.10001988, 0.10000038,
       0.10000038, 0.10000038, 0.10000038, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999987, 0.99999987, 0.99999987, 0.99999987,
       0.99999553, 0.99999553, 0.99999553, 0.99999553, 0.99989298,
       0.99989298, 0.99989298, 0.99989298, 0.99825442, 0.99825442,
       0.99825442, 0.99825442, 0.98154523, 0.98154523, 0.98154523,
       0.98154523, 0.88346323, 0.88346323, 0.88346323, 0.88346323,
       0.66814286, 0.66814286, 0.66814286, 0.66814286, 0.450449  ,
       0.450449  , 0.450449  , 0.450449  , 0.30003012, 0.30003012,
       0.30003012, 0.30003012, 0.17291515, 0.17291515, 0.17291515,
       0.17291515, 0.12999501, 0.12999501, 0.12999501, 0.12999501,
       0.12530317, 0.12530317, 0.12530317, 0.12530317, 0.12501302,
       0.12501302, 0.12501302, 0.12501302, 0.1250004 , 0.1250004 ,
       0.1250004 , 0.1250004 , 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
       7.50005260e-01, 7.50005260e-01, 7.50005260e-01, 7.50005260e-01,
       7.50125177e-01, 7.50125177e-01, 7.50125177e-01, 7.50125177e-01,
       7.52016532e-01, 7.52016532e-01, 7.52016532e-01, 7.52016532e-01,
       7.70955544e-01, 7.70955544e-01, 7.70955544e-01, 7.70955544e-01,
       8.87963066e-01, 8.87963066e-01, 8.87963066e-01, 8.87963066e-01,
       1.23600978e+00, 1.23600978e+00, 1.23600978e+00, 1.23600978e+00,
       1.32985101e+00, 1.32985101e+00, 1.32985101e+00, 1.32985101e+00,
       1.08018999e+00, 1.08018999e+00, 1.08018999e+00, 1.08018999e+00,
       4.31751162e-01, 4.31751162e-01, 4.31751162e-01, 4.31751162e-01,
       4.67980493e-02, 4.67980493e-02, 4.67980493e-02, 4.67980493e-02,
       2.66505147e-03, 2.66505147e-03, 2.66505147e-03, 2.66505147e-03,
       1.11496365e-04, 1.11496365e-04, 1.11496365e-04, 1.11496365e-04,
       3.41260935e-06, 3.41260935e-06, 3.41260935e-06, 3.41260935e-06,
       7.27672658e-08, 7.27672658e-08, 7.27672658e-08, 7.27672658e-08,
       1.00397593e-09, 1.00397593e-09, 1.00397593e-09, 1.00397593e-09,
       7.70528135e-12, 7.70528135e-12, 7.70528135e-12, 7.70528135e-12,
       2.25884809e-14, 2.25884809e-14, 2.25884809e-14, 2.25884809e-14,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999982, 0.99999982, 0.99999982, 0.99999982,
       0.99999378, 0.99999378, 0.99999378, 0.99999378, 0.99985189,
       0.99985189, 0.99985189, 0.99985189, 0.99761523, 0.99761523,
       0.99761523, 0.99761523, 0.97543178, 0.97543178, 0.97543178,
       0.97543178, 0.85010187, 0.85010187, 0.85010187, 0.85010187,
       0.59115606, 0.59115606, 0.59115606, 0.59115606, 0.45201122,
       0.45201122, 0.45201122, 0.45201122, 0.33798169, 0.33798169,
       0.33798169, 0.33798169, 0.16975198, 0.16975198, 0.16975198,
       0.16975198, 0.10631224, 0.10631224, 0.10631224, 0.10631224,
       0.10035268, 0.10035268, 0.10035268, 0.10035268, 0.10001475,
       0.10001475, 0.10001475, 0.10001475, 0.10000045, 0.10000045,
       0.10000045, 0.10000045, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999934, 0.99999934, 0.99999934, 0.99999934,
       0.99998473, 0.99998473, 0.99998473, 0.99998473, 0.99973934,
       0.99973934, 0.99973934, 0.99973934, 0.99684694, 0.99684694,
       0.99684694, 0.99684694, 0.97449508, 0.97449508, 0.97449508,
       0.97449508, 0.87259818, 0.87259818, 0.87259818, 0.87259818,
       0.6864975 , 0.6864975 , 0.6864975 , 0.6864975 , 0.51289402,
       0.51289402, 0.51289402, 0.51289402, 0.38247596, 0.38247596,
       0.38247596, 0.38247596, 0.24627862, 0.24627862, 0.24627862,
       0.24627862, 0.1506058 , 0.1506058 , 0.1506058 , 0.1506058 ,
       0.12742094, 0.12742094, 0.12742094, 0.12742094, 0.12515547,
       0.12515547, 0.12515547, 0.12515547, 0.12500778, 0.12500778,
       0.12500778, 0.12500778, 0.12500031, 0.12500031, 0.12500031,
       0.12500031, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000776e-01, 7.50000776e-01, 7.50000776e-01, 7.50000776e-01,
       7.50017997e-01, 7.50017997e-01, 7.50017997e-01, 7.50017997e-01,
       7.50305930e-01, 7.50305930e-01, 7.50305930e-01, 7.50305930e-01,
       7.53669775e-01, 7.53669775e-01, 7.53669775e-01, 7.53669775e-01,
       7.79517872e-01, 7.79517872e-01, 7.79517872e-01, 7.79517872e-01,
       9.06676406e-01, 9.06676406e-01, 9.06676406e-01, 9.06676406e-01,
       1.21521648e+00, 1.21521648e+00, 1.21521648e+00, 1.21521648e+00,
       1.36901918e+00, 1.36901918e+00, 1.36901918e+00, 1.36901918e+00,
       1.27921096e+00, 1.27921096e+00, 1.27921096e+00, 1.27921096e+00,
       9.03289139e-01, 9.03289139e-01, 9.03289139e-01, 9.03289139e-01,
       2.43356441e-01, 2.43356441e-01, 2.43356441e-01, 2.43356441e-01,
       2.21897389e-02, 2.21897389e-02, 2.21897389e-02, 2.21897389e-02,
       1.34917711e-03, 1.34917711e-03, 1.34917711e-03, 1.34917711e-03,
       6.63347975e-05, 6.63347975e-05, 6.63347975e-05, 6.63347975e-05,
       2.61791335e-06, 2.61791335e-06, 2.61791335e-06, 2.61791335e-06,
       8.01915979e-08, 8.01915979e-08, 8.01915979e-08, 8.01915979e-08,
       1.84159266e-09, 1.84159266e-09, 1.84159266e-09, 1.84159266e-09,
       3.02840362e-11, 3.02840362e-11, 3.02840362e-11, 3.02840362e-11,
       3.31059514e-13, 3.31059514e-13, 3.31059514e-13, 3.31059514e-13,
       2.11159390e-15, 2.11159390e-15, 2.11159390e-15, 2.11159390e-15,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999908, 0.99999908, 0.99999908, 0.99999908,
       0.99997871, 0.99997871, 0.99997871, 0.99997871, 0.99963804,
       0.99963804, 0.99963804, 0.99963804, 0.99566401, 0.99566401,
       0.99566401, 0.99566401, 0.96560299, 0.96560299, 0.96560299,
       0.96560299, 0.8320416 , 0.8320416 , 0.8320416 , 0.8320416 ,
       0.59163041, 0.59163041, 0.59163041, 0.59163041, 0.48324232,
       0.48324232, 0.48324232, 0.48324232, 0.4189936 , 0.4189936 ,
       0.4189936 , 0.4189936 , 0.28887293, 0.28887293, 0.28887293,
       0.28887293, 0.13630773, 0.13630773, 0.13630773, 0.13630773,
       0.1029605 , 0.1029605 , 0.1029605 , 0.1029605 , 0.10017852,
       0.10017852, 0.10017852, 0.10017852, 0.10000878, 0.10000878,
       0.10000878, 0.10000878, 0.10000035, 0.10000035, 0.10000035,
       0.10000035, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.9999999 , 0.9999999 , 0.9999999 ,
       0.9999999 , 0.99999776, 0.99999776, 0.99999776, 0.99999776,
       0.99996053, 0.99996053, 0.99996053, 0.99996053, 0.99947569,
       0.99947569, 0.99947569, 0.99947569, 0.99496288, 0.99496288,
       0.99496288, 0.99496288, 0.96703059, 0.96703059, 0.96703059,
       0.96703059, 0.86276573, 0.86276573, 0.86276573, 0.86276573,
       0.69336478, 0.69336478, 0.69336478, 0.69336478, 0.55587482,
       0.55587482, 0.55587482, 0.55587482, 0.44582134, 0.44582134,
       0.44582134, 0.44582134, 0.32572207, 0.32572207, 0.32572207,
       0.32572207, 0.20563197, 0.20563197, 0.20563197, 0.20563197,
       0.13815838, 0.13815838, 0.13815838, 0.13815838, 0.12615318,
       0.12615318, 0.12615318, 0.12615318, 0.12507598, 0.12507598,
       0.12507598, 0.12507598, 0.1250042 , 0.1250042 , 0.1250042 ,
       0.1250042 , 0.12500019, 0.12500019, 0.12500019, 0.12500019,
       0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000116e-01, 7.50000116e-01, 7.50000116e-01, 7.50000116e-01,
       7.50002645e-01, 7.50002645e-01, 7.50002645e-01, 7.50002645e-01,
       7.50046576e-01, 7.50046576e-01, 7.50046576e-01, 7.50046576e-01,
       7.50616761e-01, 7.50616761e-01, 7.50616761e-01, 7.50616761e-01,
       7.55893760e-01, 7.55893760e-01, 7.55893760e-01, 7.55893760e-01,
       7.88691015e-01, 7.88691015e-01, 7.88691015e-01, 7.88691015e-01,
       9.22508524e-01, 9.22508524e-01, 9.22508524e-01, 9.22508524e-01,
       1.19424995e+00, 1.19424995e+00, 1.19424995e+00, 1.19424995e+00,
       1.37115296e+00, 1.37115296e+00, 1.37115296e+00, 1.37115296e+00,
       1.35656186e+00, 1.35656186e+00, 1.35656186e+00, 1.35656186e+00,
       1.19624538e+00, 1.19624538e+00, 1.19624538e+00, 1.19624538e+00,
       6.97637293e-01, 6.97637293e-01, 6.97637293e-01, 6.97637293e-01,
       1.27100170e-01, 1.27100170e-01, 1.27100170e-01, 1.27100170e-01,
       1.03412299e-02, 1.03412299e-02, 1.03412299e-02, 1.03412299e-02,
       6.53644299e-04, 6.53644299e-04, 6.53644299e-04, 6.53644299e-04,
       3.56971103e-05, 3.56971103e-05, 3.56971103e-05, 3.56971103e-05,
       1.64522459e-06, 1.64522459e-06, 1.64522459e-06, 1.64522459e-06,
       6.25358486e-08, 6.25358486e-08, 6.25358486e-08, 6.25358486e-08,
       1.91748504e-09, 1.91748504e-09, 1.91748504e-09, 1.91748504e-09,
       4.62606839e-11, 4.62606839e-11, 4.62606839e-11, 4.62606839e-11,
       8.51285413e-13, 8.51285413e-13, 8.51285413e-13, 8.51285413e-13,
       1.14285693e-14, 1.14285693e-14, 1.14285693e-14, 1.14285693e-14,
       9.19950648e-17, 9.19950648e-17, 9.19950648e-17, 9.19950648e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999687, 0.99999687, 0.99999687, 0.99999687,
       0.99994489, 0.99994489, 0.99994489, 0.99994489, 0.99927039,
       0.99927039, 0.99927039, 0.99927039, 0.99304531, 0.99304531,
       0.99304531, 0.99304531, 0.95519679, 0.95519679, 0.95519679,
       0.95519679, 0.8168341 , 0.8168341 , 0.8168341 , 0.8168341 ,
       0.58819152, 0.58819152, 0.58819152, 0.58819152, 0.49438551,
       0.49438551, 0.49438551, 0.49438551, 0.45793166, 0.45793166,
       0.45793166, 0.45793166, 0.39260514, 0.39260514, 0.39260514,
       0.39260514, 0.23309146, 0.23309146, 0.23309146, 0.23309146,
       0.11798708, 0.11798708, 0.11798708, 0.11798708, 0.1013727 ,
       0.1013727 , 0.1013727 , 0.1013727 , 0.10008648, 0.10008648,
       0.10008648, 0.10008648, 0.10000472, 0.10000472, 0.10000472,
       0.10000472, 0.10000022, 0.10000022, 0.10000022, 0.10000022,
       0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999967, 0.99999967, 0.99999967,
       0.99999967, 0.99999397, 0.99999397, 0.99999397, 0.99999397,
       0.99991437, 0.99991437, 0.99991437, 0.99991437, 0.99906962,
       0.99906962, 0.99906962, 0.99906962, 0.992598  , 0.992598  ,
       0.992598  , 0.992598  , 0.95931079, 0.95931079, 0.95931079,
       0.95931079, 0.85365694, 0.85365694, 0.85365694, 0.85365694,
       0.69548058, 0.69548058, 0.69548058, 0.69548058, 0.5842581 ,
       0.5842581 , 0.5842581 , 0.5842581 , 0.49197492, 0.49197492,
       0.49197492, 0.49197492, 0.39210102, 0.39210102, 0.39210102,
       0.39210102, 0.27877468, 0.27877468, 0.27877468, 0.27877468,
       0.17568186, 0.17568186, 0.17568186, 0.17568186, 0.1316077 ,
       0.1316077 , 0.1316077 , 0.1316077 , 0.12553921, 0.12553921,
       0.12553921, 0.12553921, 0.12503633, 0.12503633, 0.12503633,
       0.12503633, 0.12500214, 0.12500214, 0.12500214, 0.12500214,
       0.12500011, 0.12500011, 0.12500011, 0.12500011, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000018e-01, 7.50000018e-01, 7.50000018e-01, 7.50000018e-01,
       7.50000395e-01, 7.50000395e-01, 7.50000395e-01, 7.50000395e-01,
       7.50007125e-01, 7.50007125e-01, 7.50007125e-01, 7.50007125e-01,
       7.50101120e-01, 7.50101120e-01, 7.50101120e-01, 7.50101120e-01,
       7.51096094e-01, 7.51096094e-01, 7.51096094e-01, 7.51096094e-01,
       7.58695376e-01, 7.58695376e-01, 7.58695376e-01, 7.58695376e-01,
       7.98253123e-01, 7.98253123e-01, 7.98253123e-01, 7.98253123e-01,
       9.36217768e-01, 9.36217768e-01, 9.36217768e-01, 9.36217768e-01,
       1.17874930e+00, 1.17874930e+00, 1.17874930e+00, 1.17874930e+00,
       1.35926058e+00, 1.35926058e+00, 1.35926058e+00, 1.35926058e+00,
       1.37992227e+00, 1.37992227e+00, 1.37992227e+00, 1.37992227e+00,
       1.31852830e+00, 1.31852830e+00, 1.31852830e+00, 1.31852830e+00,
       1.09147080e+00, 1.09147080e+00, 1.09147080e+00, 1.09147080e+00,
       4.80823248e-01, 4.80823248e-01, 4.80823248e-01, 4.80823248e-01,
       6.29020815e-02, 6.29020815e-02, 6.29020815e-02, 6.29020815e-02,
       4.74941638e-03, 4.74941638e-03, 4.74941638e-03, 4.74941638e-03,
       3.10811782e-04, 3.10811782e-04, 3.10811782e-04, 3.10811782e-04,
       1.81866640e-05, 1.81866640e-05, 1.81866640e-05, 1.81866640e-05,
       9.31308580e-07, 9.31308580e-07, 9.31308580e-07, 9.31308580e-07,
       4.09103671e-08, 4.09103671e-08, 4.09103671e-08, 4.09103671e-08,
       1.51483229e-09, 1.51483229e-09, 1.51483229e-09, 1.51483229e-09,
       4.65132031e-11, 4.65132031e-11, 4.65132031e-11, 4.65132031e-11,
       1.16294442e-12, 1.16294442e-12, 1.16294442e-12, 1.16294442e-12,
       2.31530746e-14, 2.31530746e-14, 2.31530746e-14, 2.31530746e-14,
       3.45133688e-16, 3.45133688e-16, 3.45133688e-16, 3.45133688e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.99999953, 0.99999953, 0.99999953,
       0.99999953, 0.99999157, 0.99999157, 0.99999157, 0.99999157,
       0.99988036, 0.99988036, 0.99988036, 0.99988036, 0.99870367,
       0.99870367, 0.99870367, 0.99870367, 0.98975672, 0.98975672,
       0.98975672, 0.98975672, 0.94447806, 0.94447806, 0.94447806,
       0.94447806, 0.80372375, 0.80372375, 0.80372375, 0.80372375,
       0.58659611, 0.58659611, 0.58659611, 0.58659611, 0.49630691,
       0.49630691, 0.49630691, 0.49630691, 0.47256565, 0.47256565,
       0.47256565, 0.47256565, 0.44649608, 0.44649608, 0.44649608,
       0.44649608, 0.35475085, 0.35475085, 0.35475085, 0.35475085,
       0.18206373, 0.18206373, 0.18206373, 0.18206373, 0.10858619,
       0.10858619, 0.10858619, 0.10858619, 0.10062915, 0.10062915,
       0.10062915, 0.10062915, 0.10004112, 0.10004112, 0.10004112,
       0.10004112, 0.10000241, 0.10000241, 0.10000241, 0.10000241,
       0.10000012, 0.10000012, 0.10000012, 0.10000012, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.99999907, 0.99999907, 0.99999907,
       0.99999907, 0.99998617, 0.99998617, 0.99998617, 0.99998617,
       0.99983554, 0.99983554, 0.99983554, 0.99983554, 0.9984902 ,
       0.9984902 , 0.9984902 , 0.9984902 , 0.9897648 , 0.9897648 ,
       0.9897648 , 0.9897648 , 0.95146278, 0.95146278, 0.95146278,
       0.95146278, 0.84522655, 0.84522655, 0.84522655, 0.84522655,
       0.69592792, 0.69592792, 0.69592792, 0.69592792, 0.60160526,
       0.60160526, 0.60160526, 0.60160526, 0.52681117, 0.52681117,
       0.52681117, 0.52681117, 0.44280683, 0.44280683, 0.44280683,
       0.44280683, 0.3438762 , 0.3438762 , 0.3438762 , 0.3438762 ,
       0.24139758, 0.24139758, 0.24139758, 0.24139758, 0.15433653,
       0.15433653, 0.15433653, 0.15433653, 0.12820419, 0.12820419,
       0.12820419, 0.12820419, 0.12525101, 0.12525101, 0.12525101,
       0.12525101, 0.12501713, 0.12501713, 0.12501713, 0.12501713,
       0.12500106, 0.12500106, 0.12500106, 0.12500106, 0.12500006,
       0.12500006, 0.12500006, 0.12500006, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000060e-01, 7.50000060e-01, 7.50000060e-01, 7.50000060e-01,
       7.50001095e-01, 7.50001095e-01, 7.50001095e-01, 7.50001095e-01,
       7.50016352e-01, 7.50016352e-01, 7.50016352e-01, 7.50016352e-01,
       7.50194298e-01, 7.50194298e-01, 7.50194298e-01, 7.50194298e-01,
       7.51780598e-01, 7.51780598e-01, 7.51780598e-01, 7.51780598e-01,
       7.62062621e-01, 7.62062621e-01, 7.62062621e-01, 7.62062621e-01,
       8.08036385e-01, 8.08036385e-01, 8.08036385e-01, 8.08036385e-01,
       9.48280192e-01, 9.48280192e-01, 9.48280192e-01, 9.48280192e-01,
       1.16919832e+00, 1.16919832e+00, 1.16919832e+00, 1.16919832e+00,
       1.34151992e+00, 1.34151992e+00, 1.34151992e+00, 1.34151992e+00,
       1.38408905e+00, 1.38408905e+00, 1.38408905e+00, 1.38408905e+00,
       1.36212724e+00, 1.36212724e+00, 1.36212724e+00, 1.36212724e+00,
       1.27575638e+00, 1.27575638e+00, 1.27575638e+00, 1.27575638e+00,
       9.46706959e-01, 9.46706959e-01, 9.46706959e-01, 9.46706959e-01,
       2.86961496e-01, 2.86961496e-01, 2.86961496e-01, 2.86961496e-01,
       2.97471236e-02, 2.97471236e-02, 2.97471236e-02, 2.97471236e-02,
       2.18276389e-03, 2.18276389e-03, 2.18276389e-03, 2.18276389e-03,
       1.45981809e-04, 1.45981809e-04, 1.45981809e-04, 1.45981809e-04,
       8.97326097e-06, 8.97326097e-06, 8.97326097e-06, 8.97326097e-06,
       4.95542253e-07, 4.95542253e-07, 4.95542253e-07, 4.95542253e-07,
       2.41369077e-08, 2.41369077e-08, 2.41369077e-08, 2.41369077e-08,
       1.02173681e-09, 1.02173681e-09, 1.02173681e-09, 1.02173681e-09,
       3.71041963e-11, 3.71041963e-11, 3.71041963e-11, 3.71041963e-11,
       1.14134185e-12, 1.14134185e-12, 1.14134185e-12, 1.14134185e-12,
       2.93180081e-14, 2.93180081e-14, 2.93180081e-14, 2.93180081e-14,
       5.89861085e-16, 5.89861085e-16, 5.89861085e-16, 5.89861085e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999993, 0.99999993,
       0.99999993, 0.99999993, 0.9999987 , 0.9999987 , 0.9999987 ,
       0.9999987 , 0.99998065, 0.99998065, 0.99998065, 0.99998065,
       0.99977012, 0.99977012, 0.99977012, 0.99977012, 0.9978949 ,
       0.9978949 , 0.9978949 , 0.9978949 , 0.98581938, 0.98581938,
       0.98581938, 0.98581938, 0.93364034, 0.93364034, 0.93364034,
       0.93364034, 0.79223561, 0.79223561, 0.79223561, 0.79223561,
       0.58787464, 0.58787464, 0.58787464, 0.58787464, 0.49421357,
       0.49421357, 0.49421357, 0.49421357, 0.47736962, 0.47736962,
       0.47736962, 0.47736962, 0.46789435, 0.46789435, 0.46789435,
       0.46789435, 0.42797779, 0.42797779, 0.42797779, 0.42797779,
       0.30606771, 0.30606771, 0.30606771, 0.30606771, 0.14410239,
       0.14410239, 0.14410239, 0.14410239, 0.10398792, 0.10398792,
       0.10398792, 0.10398792, 0.10028892, 0.10028892, 0.10028892,
       0.10028892, 0.10001931, 0.10001931, 0.10001931, 0.10001931,
       0.10000119, 0.10000119, 0.10000119, 0.10000119, 0.10000007,
       0.10000007, 0.10000007, 0.10000007, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999986, 0.99999986,
       0.99999986, 0.99999986, 0.99999778, 0.99999778, 0.99999778,
       0.99999778, 0.99997175, 0.99997175, 0.99997175, 0.99997175,
       0.99971141, 0.99971141, 0.99971141, 0.99971141, 0.99770946,
       0.99770946, 0.99770946, 0.99770946, 0.98648851, 0.98648851,
       0.98648851, 0.98648851, 0.94358959, 0.94358959, 0.94358959,
       0.94358959, 0.83747957, 0.83747957, 0.83747957, 0.83747957,
       0.69607636, 0.69607636, 0.69607636, 0.69607636, 0.61195392,
       0.61195392, 0.61195392, 0.61195392, 0.5520745 , 0.5520745 ,
       0.5520745 , 0.5520745 , 0.48227586, 0.48227586, 0.48227586,
       0.48227586, 0.39628276, 0.39628276, 0.39628276, 0.39628276,
       0.30461516, 0.30461516, 0.30461516, 0.30461516, 0.20942901,
       0.20942901, 0.20942901, 0.20942901, 0.14069158, 0.14069158,
       0.14069158, 0.14069158, 0.12652847, 0.12652847, 0.12652847,
       0.12652847, 0.1251159 , 0.1251159 , 0.1251159 , 0.1251159 ,
       0.12500801, 0.12500801, 0.12500801, 0.12500801, 0.12500051,
       0.12500051, 0.12500051, 0.12500051, 0.12500003, 0.12500003,
       0.12500003, 0.12500003, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000169e-01, 7.50000169e-01, 7.50000169e-01, 7.50000169e-01,
       7.50002624e-01, 7.50002624e-01, 7.50002624e-01, 7.50002624e-01,
       7.50033404e-01, 7.50033404e-01, 7.50033404e-01, 7.50033404e-01,
       7.50341048e-01, 7.50341048e-01, 7.50341048e-01, 7.50341048e-01,
       7.52703614e-01, 7.52703614e-01, 7.52703614e-01, 7.52703614e-01,
       7.65969457e-01, 7.65969457e-01, 7.65969457e-01, 7.65969457e-01,
       8.17910409e-01, 8.17910409e-01, 8.17910409e-01, 8.17910409e-01,
       9.59019483e-01, 9.59019483e-01, 9.59019483e-01, 9.59019483e-01,
       1.16435988e+00, 1.16435988e+00, 1.16435988e+00, 1.16435988e+00,
       1.32431238e+00, 1.32431238e+00, 1.32431238e+00, 1.32431238e+00,
       1.37819363e+00, 1.37819363e+00, 1.37819363e+00, 1.37819363e+00,
       1.37548447e+00, 1.37548447e+00, 1.37548447e+00, 1.37548447e+00,
       1.34495171e+00, 1.34495171e+00, 1.34495171e+00, 1.34495171e+00,
       1.21521933e+00, 1.21521933e+00, 1.21521933e+00, 1.21521933e+00,
       7.56439760e-01, 7.56439760e-01, 7.56439760e-01, 7.56439760e-01,
       1.54532788e-01, 1.54532788e-01, 1.54532788e-01, 1.54532788e-01,
       1.38332523e-02, 1.38332523e-02, 1.38332523e-02, 1.38332523e-02,
       9.98607774e-04, 9.98607774e-04, 9.98607774e-04, 9.98607774e-04,
       6.81041170e-05, 6.81041170e-05, 6.81041170e-05, 6.81041170e-05,
       4.33839800e-06, 4.33839800e-06, 4.33839800e-06, 4.33839800e-06,
       2.53281003e-07, 2.53281003e-07, 2.53281003e-07, 2.53281003e-07,
       1.33255506e-08, 1.33255506e-08, 1.33255506e-08, 1.33255506e-08,
       6.23193675e-10, 6.23193675e-10, 6.23193675e-10, 6.23193675e-10,
       2.56186446e-11, 2.56186446e-11, 2.56186446e-11, 2.56186446e-11,
       9.16383815e-13, 9.16383815e-13, 9.16383815e-13, 9.16383815e-13,
       2.82273423e-14, 2.82273423e-14, 2.82273423e-14, 2.82273423e-14,
       7.11936272e-16, 7.11936272e-16, 7.11936272e-16, 7.11936272e-16,
       9.95777976e-18, 9.95777976e-18, 9.95777976e-18, 9.95777976e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.9999998 , 0.9999998 ,
       0.9999998 , 0.9999998 , 0.9999969 , 0.9999969 , 0.9999969 ,
       0.9999969 , 0.99996048, 0.99996048, 0.99996048, 0.99996048,
       0.99959652, 0.99959652, 0.99959652, 0.99959652, 0.99680533,
       0.99680533, 0.99680533, 0.99680533, 0.98127177, 0.98127177,
       0.98127177, 0.98127177, 0.92282751, 0.92282751, 0.92282751,
       0.92282751, 0.78204719, 0.78204719, 0.78204719, 0.78204719,
       0.59144542, 0.59144542, 0.59144542, 0.59144542, 0.49225455,
       0.49225455, 0.49225455, 0.49225455, 0.47625652, 0.47625652,
       0.47625652, 0.47625652, 0.47479773, 0.47479773, 0.47479773,
       0.47479773, 0.46075469, 0.46075469, 0.46075469, 0.46075469,
       0.4019023 , 0.4019023 , 0.4019023 , 0.4019023 , 0.25005069,
       0.25005069, 0.25005069, 0.25005069, 0.1222868 , 0.1222868 ,
       0.1222868 , 0.1222868 , 0.10183971, 0.10183971, 0.10183971,
       0.10183971, 0.10013213, 0.10013213, 0.10013213, 0.10013213,
       0.10000901, 0.10000901, 0.10000901, 0.10000901, 0.10000057,
       0.10000057, 0.10000057, 0.10000057, 0.10000003, 0.10000003,
       0.10000003, 0.10000003, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999965, 0.99999965,
       0.99999965, 0.99999965, 0.99999524, 0.99999524, 0.99999524,
       0.99999524, 0.99994721, 0.99994721, 0.99994721, 0.99994721,
       0.99952776, 0.99952776, 0.99952776, 0.99952776, 0.99670338,
       0.99670338, 0.99670338, 0.99670338, 0.98280363, 0.98280363,
       0.98280363, 0.98280363, 0.93577386, 0.93577386, 0.93577386,
       0.93577386, 0.83041599, 0.83041599, 0.83041599, 0.83041599,
       0.69625631, 0.69625631, 0.69625631, 0.69625631, 0.61829217,
       0.61829217, 0.61829217, 0.61829217, 0.5699253 , 0.5699253 ,
       0.5699253 , 0.5699253 , 0.51291693, 0.51291693, 0.51291693,
       0.51291693, 0.43877311, 0.43877311, 0.43877311, 0.43877311,
       0.35520766, 0.35520766, 0.35520766, 0.35520766, 0.27305597,
       0.27305597, 0.27305597, 0.27305597, 0.18148452, 0.18148452,
       0.18148452, 0.18148452, 0.13315019, 0.13315019, 0.13315019,
       0.13315019, 0.12571382, 0.12571382, 0.12571382, 0.12571382,
       0.12505333, 0.12505333, 0.12505333, 0.12505333, 0.12500372,
       0.12500372, 0.12500372, 0.12500372, 0.12500024, 0.12500024,
       0.12500024, 0.12500024, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
       7.50000419e-01, 7.50000419e-01, 7.50000419e-01, 7.50000419e-01,
       7.50005630e-01, 7.50005630e-01, 7.50005630e-01, 7.50005630e-01,
       7.50062433e-01, 7.50062433e-01, 7.50062433e-01, 7.50062433e-01,
       7.50558196e-01, 7.50558196e-01, 7.50558196e-01, 7.50558196e-01,
       7.53894015e-01, 7.53894015e-01, 7.53894015e-01, 7.53894015e-01,
       7.70379540e-01, 7.70379540e-01, 7.70379540e-01, 7.70379540e-01,
       8.27772252e-01, 8.27772252e-01, 8.27772252e-01, 8.27772252e-01,
       9.68662085e-01, 9.68662085e-01, 9.68662085e-01, 9.68662085e-01,
       1.16220491e+00, 1.16220491e+00, 1.16220491e+00, 1.16220491e+00,
       1.31086380e+00, 1.31086380e+00, 1.31086380e+00, 1.31086380e+00,
       1.36872585e+00, 1.36872585e+00, 1.36872585e+00, 1.36872585e+00,
       1.37564389e+00, 1.37564389e+00, 1.37564389e+00, 1.37564389e+00,
       1.36763431e+00, 1.36763431e+00, 1.36763431e+00, 1.36763431e+00,
       1.32344547e+00, 1.32344547e+00, 1.32344547e+00, 1.32344547e+00,
       1.12324529e+00, 1.12324529e+00, 1.12324529e+00, 1.12324529e+00,
       5.43452950e-01, 5.43452950e-01, 5.43452950e-01, 5.43452950e-01,
       7.89030941e-02, 7.89030941e-02, 7.89030941e-02, 7.89030941e-02,
       6.32477098e-03, 6.32477098e-03, 6.32477098e-03, 6.32477098e-03,
       4.56774221e-04, 4.56774221e-04, 4.56774221e-04, 4.56774221e-04,
       3.16014322e-05, 3.16014322e-05, 3.16014322e-05, 3.16014322e-05,
       2.06840337e-06, 2.06840337e-06, 2.06840337e-06, 2.06840337e-06,
       1.25987808e-07, 1.25987808e-07, 1.25987808e-07, 1.25987808e-07,
       7.03125054e-09, 7.03125054e-09, 7.03125054e-09, 7.03125054e-09,
       3.55048102e-10, 3.55048102e-10, 3.55048102e-10, 3.55048102e-10,
       1.60552001e-11, 1.60552001e-11, 1.60552001e-11, 1.60552001e-11,
       6.44472443e-13, 6.44472443e-13, 6.44472443e-13, 6.44472443e-13,
       2.27342322e-14, 2.27342322e-14, 2.27342322e-14, 2.27342322e-14,
       6.57996181e-16, 6.57996181e-16, 6.57996181e-16, 6.57996181e-16,
       2.02110955e-17, 2.02110955e-17, 2.02110955e-17, 2.02110955e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.9999995 , 0.9999995 ,
       0.9999995 , 0.9999995 , 0.99999334, 0.99999334, 0.99999334,
       0.99999334, 0.99992613, 0.99992613, 0.99992613, 0.99992613,
       0.9993397 , 0.9993397 , 0.9993397 , 0.9993397 , 0.99540189,
       0.99540189, 0.99540189, 0.99540189, 0.97616471, 0.97616471,
       0.97616471, 0.97616471, 0.91214742, 0.91214742, 0.91214742,
       0.91214742, 0.77293438, 0.77293438, 0.77293438, 0.77293438,
       0.59602991, 0.59602991, 0.59602991, 0.59602991, 0.49258015,
       0.49258015, 0.49258015, 0.49258015, 0.47304087, 0.47304087,
       0.47304087, 0.47304087, 0.47487876, 0.47487876, 0.47487876,
       0.47487876, 0.47229223, 0.47229223, 0.47229223, 0.47229223,
       0.44924829, 0.44924829, 0.44924829, 0.44924829, 0.3670158 ,
       0.3670158 , 0.3670158 , 0.3670158 , 0.1964563 , 0.1964563 ,
       0.1964563 , 0.1964563 , 0.11088441, 0.11088441, 0.11088441,
       0.11088441, 0.10083843, 0.10083843, 0.10083843, 0.10083843,
       0.10006043, 0.10006043, 0.10006043, 0.10006043, 0.10000418,
       0.10000418, 0.10000418, 0.10000418, 0.10000027, 0.10000027,
       0.10000027, 0.10000027, 0.10000002, 0.10000002, 0.10000002,
       0.10000002, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999994,
       0.99999994, 0.99999994, 0.99999994, 0.99999921, 0.99999921,
       0.99999921, 0.99999921, 0.99999063, 0.99999063, 0.99999063,
       0.99999063, 0.99990804, 0.99990804, 0.99990804, 0.99990804,
       0.99926917, 0.99926917, 0.99926917, 0.99926917, 0.99545263,
       0.99545263, 0.99545263, 0.99545263, 0.97875109, 0.97875109,
       0.97875109, 0.97875109, 0.92808061, 0.92808061, 0.92808061,
       0.92808061, 0.82401271, 0.82401271, 0.82401271, 0.82401271,
       0.69646404, 0.69646404, 0.69646404, 0.69646404, 0.62232848,
       0.62232848, 0.62232848, 0.62232848, 0.58232539, 0.58232539,
       0.58232539, 0.58232539, 0.53664687, 0.53664687, 0.53664687,
       0.53664687, 0.47382656, 0.47382656, 0.47382656, 0.47382656,
       0.3966429 , 0.3966429 , 0.3966429 , 0.3966429 , 0.32215049,
       0.32215049, 0.32215049, 0.32215049, 0.24536837, 0.24536837,
       0.24536837, 0.24536837, 0.15939671, 0.15939671, 0.15939671,
       0.15939671, 0.1290282 , 0.1290282 , 0.1290282 , 0.1290282 ,
       0.12533162, 0.12533162, 0.12533162, 0.12533162, 0.12502449,
       0.12502449, 0.12502449, 0.12502449, 0.12500172, 0.12500172,
       0.12500172, 0.12500172, 0.12500012, 0.12500012, 0.12500012,
       0.12500012, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000067e-01, 7.50000067e-01, 7.50000067e-01, 7.50000067e-01,
       7.50000937e-01, 7.50000937e-01, 7.50000937e-01, 7.50000937e-01,
       7.50011082e-01, 7.50011082e-01, 7.50011082e-01, 7.50011082e-01,
       7.50108766e-01, 7.50108766e-01, 7.50108766e-01, 7.50108766e-01,
       7.50863989e-01, 7.50863989e-01, 7.50863989e-01, 7.50863989e-01,
       7.55375416e-01, 7.55375416e-01, 7.55375416e-01, 7.55375416e-01,
       7.75249150e-01, 7.75249150e-01, 7.75249150e-01, 7.75249150e-01,
       8.37539996e-01, 8.37539996e-01, 8.37539996e-01, 8.37539996e-01,
       9.77371489e-01, 9.77371489e-01, 9.77371489e-01, 9.77371489e-01,
       1.16096785e+00, 1.16096785e+00, 1.16096785e+00, 1.16096785e+00,
       1.30163748e+00, 1.30163748e+00, 1.30163748e+00, 1.30163748e+00,
       1.35906515e+00, 1.35906515e+00, 1.35906515e+00, 1.35906515e+00,
       1.37165137e+00, 1.37165137e+00, 1.37165137e+00, 1.37165137e+00,
       1.37159981e+00, 1.37159981e+00, 1.37159981e+00, 1.37159981e+00,
       1.36020817e+00, 1.36020817e+00, 1.36020817e+00, 1.36020817e+00,
       1.28954477e+00, 1.28954477e+00, 1.28954477e+00, 1.28954477e+00,
       9.92965165e-01, 9.92965165e-01, 9.92965165e-01, 9.92965165e-01,
       3.41054294e-01, 3.41054294e-01, 3.41054294e-01, 3.41054294e-01,
       3.78450976e-02, 3.78450976e-02, 3.78450976e-02, 3.78450976e-02,
       2.89520706e-03, 2.89520706e-03, 2.89520706e-03, 2.89520706e-03,
       2.08927779e-04, 2.08927779e-04, 2.08927779e-04, 2.08927779e-04,
       1.46114029e-05, 1.46114029e-05, 1.46114029e-05, 1.46114029e-05,
       9.77146281e-07, 9.77146281e-07, 9.77146281e-07, 9.77146281e-07,
       6.15180946e-08, 6.15180946e-08, 6.15180946e-08, 6.15180946e-08,
       3.59623288e-09, 3.59623288e-09, 3.59623288e-09, 3.59623288e-09,
       1.92933425e-10, 1.92933425e-10, 1.92933425e-10, 1.92933425e-10,
       9.40773578e-12, 9.40773578e-12, 9.40773578e-12, 9.40773578e-12,
       4.13570502e-13, 4.13570502e-13, 4.13570502e-13, 4.13570502e-13,
       1.62288270e-14, 1.62288270e-14, 1.62288270e-14, 1.62288270e-14,
       5.61211316e-16, 5.61211316e-16, 5.61211316e-16, 5.61211316e-16,
       1.04414501e-17, 1.04414501e-17, 1.04414501e-17, 1.04414501e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999992,
       0.99999992, 0.99999992, 0.99999992, 0.99999889, 0.99999889,
       0.99999889, 0.99999889, 0.99998689, 0.99998689, 0.99998689,
       0.99998689, 0.99987131, 0.99987131, 0.99987131, 0.99987131,
       0.99897815, 0.99897815, 0.99897815, 0.99897815, 0.99365816,
       0.99365816, 0.99365816, 0.99365816, 0.9705574 , 0.9705574 ,
       0.9705574 , 0.9705574 , 0.90168105, 0.90168105, 0.90168105,
       0.90168105, 0.76473302, 0.76473302, 0.76473302, 0.76473302,
       0.60049273, 0.60049273, 0.60049273, 0.60049273, 0.49550855,
       0.49550855, 0.49550855, 0.49550855, 0.47006662, 0.47006662,
       0.47006662, 0.47006662, 0.47260804, 0.47260804, 0.47260804,
       0.47260804, 0.47428975, 0.47428975, 0.47428975, 0.47428975,
       0.46714499, 0.46714499, 0.46714499, 0.46714499, 0.43304518,
       0.43304518, 0.43304518, 0.43304518, 0.32159783, 0.32159783,
       0.32159783, 0.32159783, 0.15419082, 0.15419082, 0.15419082,
       0.15419082, 0.1050973 , 0.1050973 , 0.1050973 , 0.1050973 ,
       0.10038332, 0.10038332, 0.10038332, 0.10038332, 0.10002764,
       0.10002764, 0.10002764, 0.10002764, 0.10000193, 0.10000193,
       0.10000193, 0.10000193, 0.10000013, 0.10000013, 0.10000013,
       0.10000013, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
       0.99999987, 0.99999987, 0.99999987, 0.99999837, 0.99999837,
       0.99999837, 0.99999837, 0.9999828 , 0.9999828 , 0.9999828 ,
       0.9999828 , 0.99984871, 0.99984871, 0.99984871, 0.99984871,
       0.99891955, 0.99891955, 0.99891955, 0.99891955, 0.99394315,
       0.99394315, 0.99394315, 0.99394315, 0.97437567, 0.97437567,
       0.97437567, 0.97437567, 0.92055976, 0.92055976, 0.92055976,
       0.92055976, 0.81822558, 0.81822558, 0.81822558, 0.81822558,
       0.69670438, 0.69670438, 0.69670438, 0.69670438, 0.62488661,
       0.62488661, 0.62488661, 0.62488661, 0.59118008, 0.59118008,
       0.59118008, 0.59118008, 0.5544861 , 0.5544861 , 0.5544861 ,
       0.5544861 , 0.50269605, 0.50269605, 0.50269605, 0.50269605,
       0.4331649 , 0.4331649 , 0.4331649 , 0.4331649 , 0.36021979,
       0.36021979, 0.36021979, 0.36021979, 0.29637809, 0.29637809,
       0.29637809, 0.29637809, 0.21820395, 0.21820395, 0.21820395,
       0.21820395, 0.14411847, 0.14411847, 0.14411847, 0.14411847,
       0.126943  , 0.126943  , 0.126943  , 0.126943  , 0.12515306,
       0.12515306, 0.12515306, 0.12515306, 0.12501123, 0.12501123,
       0.12501123, 0.12501123, 0.1250008 , 0.1250008 , 0.1250008 ,
       0.1250008 , 0.12500005, 0.12500005, 0.12500005, 0.12500005,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
       7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
       7.50001925e-01, 7.50001925e-01, 7.50001925e-01, 7.50001925e-01,
       7.50020345e-01, 7.50020345e-01, 7.50020345e-01, 7.50020345e-01,
       7.50178950e-01, 7.50178950e-01, 7.50178950e-01, 7.50178950e-01,
       7.51277500e-01, 7.51277500e-01, 7.51277500e-01, 7.51277500e-01,
       7.57165560e-01, 7.57165560e-01, 7.57165560e-01, 7.57165560e-01,
       7.80529643e-01, 7.80529643e-01, 7.80529643e-01, 7.80529643e-01,
       8.47148531e-01, 8.47148531e-01, 8.47148531e-01, 8.47148531e-01,
       9.85270426e-01, 9.85270426e-01, 9.85270426e-01, 9.85270426e-01,
       1.15957712e+00, 1.15957712e+00, 1.15957712e+00, 1.15957712e+00,
       1.29566032e+00, 1.29566032e+00, 1.29566032e+00, 1.29566032e+00,
       1.35118587e+00, 1.35118587e+00, 1.35118587e+00, 1.35118587e+00,
       1.36601672e+00, 1.36601672e+00, 1.36601672e+00, 1.36601672e+00,
       1.36997305e+00, 1.36997305e+00, 1.36997305e+00, 1.36997305e+00,
       1.36942484e+00, 1.36942484e+00, 1.36942484e+00, 1.36942484e+00,
       1.34862905e+00, 1.34862905e+00, 1.34862905e+00, 1.34862905e+00,
       1.23673227e+00, 1.23673227e+00, 1.23673227e+00, 1.23673227e+00,
       8.18685529e-01, 8.18685529e-01, 8.18685529e-01, 8.18685529e-01,
       1.89365930e-01, 1.89365930e-01, 1.89365930e-01, 1.89365930e-01,
       1.77483277e-02, 1.77483277e-02, 1.77483277e-02, 1.77483277e-02,
       1.32231275e-03, 1.32231275e-03, 1.32231275e-03, 1.32231275e-03,
       9.55485885e-05, 9.55485885e-05, 9.55485885e-05, 9.55485885e-05,
       6.74007898e-06, 6.74007898e-06, 6.74007898e-06, 6.74007898e-06,
       4.58238639e-07, 4.58238639e-07, 4.58238639e-07, 4.58238639e-07,
       2.96179808e-08, 2.96179808e-08, 2.96179808e-08, 2.96179808e-08,
       1.79683460e-09, 1.79683460e-09, 1.79683460e-09, 1.79683460e-09,
       1.01205791e-10, 1.01205791e-10, 1.01205791e-10, 1.01205791e-10,
       5.24439143e-12, 5.24439143e-12, 5.24439143e-12, 5.24439143e-12,
       2.48169579e-13, 2.48169579e-13, 2.48169579e-13, 2.48169579e-13,
       1.06030558e-14, 1.06030558e-14, 1.06030558e-14, 1.06030558e-14,
       3.88917738e-16, 3.88917738e-16, 3.88917738e-16, 3.88917738e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999982,
       0.99999982, 0.99999982, 0.99999982, 0.99999772, 0.99999772,
       0.99999772, 0.99999772, 0.99997593, 0.99997593, 0.99997593,
       0.99997593, 0.99978828, 0.99978828, 0.99978828, 0.99978828,
       0.99848943, 0.99848943, 0.99848943, 0.99848943, 0.99155515,
       0.99155515, 0.99155515, 0.99155515, 0.964514  , 0.964514  ,
       0.964514  , 0.964514  , 0.89148856, 0.89148856, 0.89148856,
       0.89148856, 0.75731665, 0.75731665, 0.75731665, 0.75731665,
       0.6041739 , 0.6041739 , 0.6041739 , 0.6041739 , 0.50038286,
       0.50038286, 0.50038286, 0.50038286, 0.46850918, 0.46850918,
       0.46850918, 0.46850918, 0.46942557, 0.46942557, 0.46942557,
       0.46942557, 0.47328763, 0.47328763, 0.47328763, 0.47328763,
       0.47194986, 0.47194986, 0.47194986, 0.47194986, 0.46019101,
       0.46019101, 0.46019101, 0.46019101, 0.41012287, 0.41012287,
       0.41012287, 0.41012287, 0.26737713, 0.26737713, 0.26737713,
       0.26737713, 0.12780983, 0.12780983, 0.12780983, 0.12780983,
       0.1023651 , 0.1023651 , 0.1023651 , 0.1023651 , 0.10017499,
       0.10017499, 0.10017499, 0.10017499, 0.10001264, 0.10001264,
       0.10001264, 0.10001264, 0.10000089, 0.10000089, 0.10000089,
       0.10000089, 0.10000006, 0.10000006, 0.10000006, 0.10000006,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999972,
       0.99999972, 0.99999972, 0.99999972, 0.99999688, 0.99999688,
       0.99999688, 0.99999688, 0.99997019, 0.99997019, 0.99997019,
       0.99997019, 0.99976264, 0.99976264, 0.99976264, 0.99976264,
       0.99846262, 0.99846262, 0.99846262, 0.99846262, 0.9921662 ,
       0.9921662 , 0.9921662 , 0.9921662 , 0.96972408, 0.96972408,
       0.96972408, 0.96972408, 0.91324871, 0.91324871, 0.91324871,
       0.91324871, 0.81299809, 0.81299809, 0.81299809, 0.81299809,
       0.69707716, 0.69707716, 0.69707716, 0.69707716, 0.6262992 ,
       0.6262992 , 0.6262992 , 0.6262992 , 0.59760474, 0.59760474,
       0.59760474, 0.59760474, 0.56779664, 0.56779664, 0.56779664,
       0.56779664, 0.52592744, 0.52592744, 0.52592744, 0.52592744,
       0.46563753, 0.46563753, 0.46563753, 0.46563753, 0.39326426,
       0.39326426, 0.39326426, 0.39326426, 0.33284785, 0.33284785,
       0.33284785, 0.33284785, 0.27504145, 0.27504145, 0.27504145,
       0.27504145, 0.19106843, 0.19106843, 0.19106843, 0.19106843,
       0.13511522, 0.13511522, 0.13511522, 0.13511522, 0.12591513,
       0.12591513, 0.12591513, 0.12591513, 0.12507031, 0.12507031,
       0.12507031, 0.12507031, 0.12500515, 0.12500515, 0.12500515,
       0.12500515, 0.12500037, 0.12500037, 0.12500037, 0.12500037,
       0.12500003, 0.12500003, 0.12500003, 0.12500003, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000329e-01, 7.50000329e-01, 7.50000329e-01, 7.50000329e-01,
       7.50003695e-01, 7.50003695e-01, 7.50003695e-01, 7.50003695e-01,
       7.50035264e-01, 7.50035264e-01, 7.50035264e-01, 7.50035264e-01,
       7.50280759e-01, 7.50280759e-01, 7.50280759e-01, 7.50280759e-01,
       7.51818086e-01, 7.51818086e-01, 7.51818086e-01, 7.51818086e-01,
       7.59276172e-01, 7.59276172e-01, 7.59276172e-01, 7.59276172e-01,
       7.86169462e-01, 7.86169462e-01, 7.86169462e-01, 7.86169462e-01,
       8.56546408e-01, 8.56546408e-01, 8.56546408e-01, 8.56546408e-01,
       9.92456196e-01, 9.92456196e-01, 9.92456196e-01, 9.92456196e-01,
       1.15763323e+00, 1.15763323e+00, 1.15763323e+00, 1.15763323e+00,
       1.29146040e+00, 1.29146040e+00, 1.29146040e+00, 1.29146040e+00,
       1.34573538e+00, 1.34573538e+00, 1.34573538e+00, 1.34573538e+00,
       1.36098136e+00, 1.36098136e+00, 1.36098136e+00, 1.36098136e+00,
       1.36604284e+00, 1.36604284e+00, 1.36604284e+00, 1.36604284e+00,
       1.36966028e+00, 1.36966028e+00, 1.36966028e+00, 1.36966028e+00,
       1.36622633e+00, 1.36622633e+00, 1.36622633e+00, 1.36622633e+00,
       1.32998311e+00, 1.32998311e+00, 1.32998311e+00, 1.32998311e+00,
       1.15597656e+00, 1.15597656e+00, 1.15597656e+00, 1.15597656e+00,
       6.12942776e-01, 6.12942776e-01, 6.12942776e-01, 6.12942776e-01,
       9.84564756e-02, 9.84564756e-02, 9.84564756e-02, 9.84564756e-02,
       8.15622587e-03, 8.15622587e-03, 8.15622587e-03, 8.15622587e-03,
       6.03159348e-04, 6.03159348e-04, 6.03159348e-04, 6.03159348e-04,
       4.37065832e-05, 4.37065832e-05, 4.37065832e-05, 4.37065832e-05,
       3.10316624e-06, 3.10316624e-06, 3.10316624e-06, 3.10316624e-06,
       2.13754454e-07, 2.13754454e-07, 2.13754454e-07, 2.13754454e-07,
       1.41094631e-08, 1.41094631e-08, 1.41094631e-08, 1.41094631e-08,
       8.82092666e-10, 8.82092666e-10, 8.82092666e-10, 8.82092666e-10,
       5.16973157e-11, 5.16973157e-11, 5.16973157e-11, 5.16973157e-11,
       2.81588859e-12, 2.81588859e-12, 2.81588859e-12, 2.81588859e-12,
       1.41485550e-13, 1.41485550e-13, 1.41485550e-13, 1.41485550e-13,
       6.51607025e-15, 6.51607025e-15, 6.51607025e-15, 6.51607025e-15,
       2.40152978e-16, 2.40152978e-16, 2.40152978e-16, 2.40152978e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999961,
       0.99999961, 0.99999961, 0.99999961, 0.99999563, 0.99999563,
       0.99999563, 0.99999563, 0.99995828, 0.99995828, 0.99995828,
       0.99995828, 0.99966785, 0.99966785, 0.99966785, 0.99966785,
       0.99785087, 0.99785087, 0.99785087, 0.99785087, 0.98908149,
       0.98908149, 0.98908149, 0.98908149, 0.9581009 , 0.9581009 ,
       0.9581009 , 0.9581009 , 0.88161392, 0.88161392, 0.88161392,
       0.88161392, 0.75058451, 0.75058451, 0.75058451, 0.75058451,
       0.60688233, 0.60688233, 0.60688233, 0.60688233, 0.50620558,
       0.50620558, 0.50620558, 0.50620558, 0.46870616, 0.46870616,
       0.46870616, 0.46870616, 0.46692176, 0.46692176, 0.46692176,
       0.46692176, 0.47084207, 0.47084207, 0.47084207, 0.47084207,
       0.47212989, 0.47212989, 0.47212989, 0.47212989, 0.46881527,
       0.46881527, 0.46881527, 0.46881527, 0.45065004, 0.45065004,
       0.45065004, 0.45065004, 0.37876151, 0.37876151, 0.37876151,
       0.37876151, 0.21224192, 0.21224192, 0.21224192, 0.21224192,
       0.11373333, 0.11373333, 0.11373333, 0.11373333, 0.10108205,
       0.10108205, 0.10108205, 0.10108205, 0.1000798 , 0.1000798 ,
       0.1000798 , 0.1000798 , 0.10000578, 0.10000578, 0.10000578,
       0.10000578, 0.10000041, 0.10000041, 0.10000041, 0.10000041,
       0.10000003, 0.10000003, 0.10000003, 0.10000003, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999945,
       0.99999945, 0.99999945, 0.99999945, 0.99999434, 0.99999434,
       0.99999434, 0.99999434, 0.99995077, 0.99995077, 0.99995077,
       0.99995077, 0.99964227, 0.99964227, 0.99964227, 0.99964227,
       0.99788241, 0.99788241, 0.99788241, 0.99788241, 0.99011845,
       0.99011845, 0.99011845, 0.99011845, 0.96484327, 0.96484327,
       0.96484327, 0.96484327, 0.90617454, 0.90617454, 0.90617454,
       0.90617454, 0.80826973, 0.80826973, 0.80826973, 0.80826973,
       0.69774371, 0.69774371, 0.69774371, 0.69774371, 0.62678051,
       0.62678051, 0.62678051, 0.62678051, 0.60206381, 0.60206381,
       0.60206381, 0.60206381, 0.57792713, 0.57792713, 0.57792713,
       0.57792713, 0.54425972, 0.54425972, 0.54425972, 0.54425972,
       0.49346931, 0.49346931, 0.49346931, 0.49346931, 0.42544549,
       0.42544549, 0.42544549, 0.42544549, 0.36171435, 0.36171435,
       0.36171435, 0.36171435, 0.31197099, 0.31197099, 0.31197099,
       0.31197099, 0.25437815, 0.25437815, 0.25437815, 0.25437815,
       0.16685114, 0.16685114, 0.16685114, 0.16685114, 0.13005985,
       0.13005985, 0.13005985, 0.13005985, 0.1254259 , 0.1254259 ,
       0.1254259 , 0.1254259 , 0.12503221, 0.12503221, 0.12503221,
       0.12503221, 0.12500236, 0.12500236, 0.12500236, 0.12500236,
       0.12500017, 0.12500017, 0.12500017, 0.12500017, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000056e-01, 7.50000056e-01, 7.50000056e-01, 7.50000056e-01,
       7.50000657e-01, 7.50000657e-01, 7.50000657e-01, 7.50000657e-01,
       7.50006699e-01, 7.50006699e-01, 7.50006699e-01, 7.50006699e-01,
       7.50058238e-01, 7.50058238e-01, 7.50058238e-01, 7.50058238e-01,
       7.50423153e-01, 7.50423153e-01, 7.50423153e-01, 7.50423153e-01,
       7.52504789e-01, 7.52504789e-01, 7.52504789e-01, 7.52504789e-01,
       7.61712941e-01, 7.61712941e-01, 7.61712941e-01, 7.61712941e-01,
       7.92115818e-01, 7.92115818e-01, 7.92115818e-01, 7.92115818e-01,
       8.65693722e-01, 8.65693722e-01, 8.65693722e-01, 8.65693722e-01,
       9.99009811e-01, 9.99009811e-01, 9.99009811e-01, 9.99009811e-01,
       1.15520654e+00, 1.15520654e+00, 1.15520654e+00, 1.15520654e+00,
       1.28768450e+00, 1.28768450e+00, 1.28768450e+00, 1.28768450e+00,
       1.34268320e+00, 1.34268320e+00, 1.34268320e+00, 1.34268320e+00,
       1.35715119e+00, 1.35715119e+00, 1.35715119e+00, 1.35715119e+00,
       1.36145245e+00, 1.36145245e+00, 1.36145245e+00, 1.36145245e+00,
       1.36744320e+00, 1.36744320e+00, 1.36744320e+00, 1.36744320e+00,
       1.36938027e+00, 1.36938027e+00, 1.36938027e+00, 1.36938027e+00,
       1.36032906e+00, 1.36032906e+00, 1.36032906e+00, 1.36032906e+00,
       1.30083630e+00, 1.30083630e+00, 1.30083630e+00, 1.30083630e+00,
       1.03904720e+00, 1.03904720e+00, 1.03904720e+00, 1.03904720e+00,
       4.03867617e-01, 4.03867617e-01, 4.03867617e-01, 4.03867617e-01,
       4.78324169e-02, 4.78324169e-02, 4.78324169e-02, 4.78324169e-02,
       3.73133151e-03, 3.73133151e-03, 3.73133151e-03, 3.73133151e-03,
       2.75051151e-04, 2.75051151e-04, 2.75051151e-04, 2.75051151e-04,
       1.99786506e-05, 1.99786506e-05, 1.99786506e-05, 1.99786506e-05,
       1.42705014e-06, 1.42705014e-06, 1.42705014e-06, 1.42705014e-06,
       9.93370281e-08, 9.93370281e-08, 9.93370281e-08, 9.93370281e-08,
       6.66943143e-09, 6.66943143e-09, 6.66943143e-09, 6.66943143e-09,
       4.27344831e-10, 4.27344831e-10, 4.27344831e-10, 4.27344831e-10,
       2.58814547e-11, 2.58814547e-11, 2.58814547e-11, 2.58814547e-11,
       1.46936578e-12, 1.46936578e-12, 1.46936578e-12, 1.46936578e-12,
       7.76106587e-14, 7.76106587e-14, 7.76106587e-14, 7.76106587e-14,
       3.75314846e-15, 3.75314846e-15, 3.75314846e-15, 3.75314846e-15,
       1.59879132e-16, 1.59879132e-16, 1.59879132e-16, 1.59879132e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999922,
       0.99999922, 0.99999922, 0.99999922, 0.99999207, 0.99999207,
       0.99999207, 0.99999207, 0.99993109, 0.99993109, 0.99993109,
       0.99993109, 0.99949942, 0.99949942, 0.99949942, 0.99949942,
       0.9970403 , 0.9970403 , 0.9970403 , 0.9970403 , 0.98623335,
       0.98623335, 0.98623335, 0.98623335, 0.95138454, 0.95138454,
       0.95138454, 0.95138454, 0.87208823, 0.87208823, 0.87208823,
       0.87208823, 0.74445435, 0.74445435, 0.74445435, 0.74445435,
       0.60875561, 0.60875561, 0.60875561, 0.60875561, 0.51204856,
       0.51204856, 0.51204856, 0.51204856, 0.47069723, 0.47069723,
       0.47069723, 0.47069723, 0.46531969, 0.46531969, 0.46531969,
       0.46531969, 0.46797682, 0.46797682, 0.46797682, 0.46797682,
       0.47094798, 0.47094798, 0.47094798, 0.47094798, 0.47050583,
       0.47050583, 0.47050583, 0.47050583, 0.4648433 , 0.4648433 ,
       0.4648433 , 0.4648433 , 0.43679273, 0.43679273, 0.43679273,
       0.43679273, 0.33696764, 0.33696764, 0.33696764, 0.33696764,
       0.16596212, 0.16596212, 0.16596212, 0.16596212, 0.10647712,
       0.10647712, 0.10647712, 0.10647712, 0.10049417, 0.10049417,
       0.10049417, 0.10049417, 0.10003639, 0.10003639, 0.10003639,
       0.10003639, 0.10000264, 0.10000264, 0.10000264, 0.10000264,
       0.10000019, 0.10000019, 0.10000019, 0.10000019, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999895,
       0.99999895, 0.99999895, 0.99999895, 0.99999022, 0.99999022,
       0.99999022, 0.99999022, 0.99992199, 0.99992199, 0.99992199,
       0.99992199, 0.99947912, 0.99947912, 0.99947912, 0.99947912,
       0.99716379, 0.99716379, 0.99716379, 0.99716379, 0.98780171,
       0.98780171, 0.98780171, 0.98780171, 0.95977919, 0.95977919,
       0.95977919, 0.95977919, 0.899356  , 0.899356  , 0.899356  ,
       0.899356  , 0.80398103, 0.80398103, 0.80398103, 0.80398103,
       0.69885064, 0.69885064, 0.69885064, 0.69885064, 0.62663048,
       0.62663048, 0.62663048, 0.62663048, 0.60456203, 0.60456203,
       0.60456203, 0.60456203, 0.58574218, 0.58574218, 0.58574218,
       0.58574218, 0.55889671, 0.55889671, 0.55889671, 0.55889671,
       0.51652074, 0.51652074, 0.51652074, 0.51652074, 0.45677399,
       0.45677399, 0.45677399, 0.45677399, 0.38843992, 0.38843992,
       0.38843992, 0.38843992, 0.33857154, 0.33857154, 0.33857154,
       0.33857154, 0.2958245 , 0.2958245 , 0.2958245 , 0.2958245 ,
       0.23037144, 0.23037144, 0.23037144, 0.23037144, 0.14866712,
       0.14866712, 0.14866712, 0.14866712, 0.12746378, 0.12746378,
       0.12746378, 0.12746378, 0.12519715, 0.12519715, 0.12519715,
       0.12519715, 0.12501472, 0.12501472, 0.12501472, 0.12501472,
       0.12500108, 0.12500108, 0.12500108, 0.12500108, 0.12500008,
       0.12500008, 0.12500008, 0.12500008, 0.12500001, 0.12500001,
       0.12500001, 0.12500001, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000115e-01, 7.50000115e-01, 7.50000115e-01, 7.50000115e-01,
       7.50001238e-01, 7.50001238e-01, 7.50001238e-01, 7.50001238e-01,
       7.50011569e-01, 7.50011569e-01, 7.50011569e-01, 7.50011569e-01,
       7.50092289e-01, 7.50092289e-01, 7.50092289e-01, 7.50092289e-01,
       7.50616160e-01, 7.50616160e-01, 7.50616160e-01, 7.50616160e-01,
       7.53355737e-01, 7.53355737e-01, 7.53355737e-01, 7.53355737e-01,
       7.64475707e-01, 7.64475707e-01, 7.64475707e-01, 7.64475707e-01,
       7.98316114e-01, 7.98316114e-01, 7.98316114e-01, 7.98316114e-01,
       8.74560291e-01, 8.74560291e-01, 8.74560291e-01, 8.74560291e-01,
       1.00500047e+00, 1.00500047e+00, 1.00500047e+00, 1.00500047e+00,
       1.15260232e+00, 1.15260232e+00, 1.15260232e+00, 1.15260232e+00,
       1.28340256e+00, 1.28340256e+00, 1.28340256e+00, 1.28340256e+00,
       1.34114330e+00, 1.34114330e+00, 1.34114330e+00, 1.34114330e+00,
       1.35501138e+00, 1.35501138e+00, 1.35501138e+00, 1.35501138e+00,
       1.35810478e+00, 1.35810478e+00, 1.35810478e+00, 1.35810478e+00,
       1.36336774e+00, 1.36336774e+00, 1.36336774e+00, 1.36336774e+00,
       1.36847879e+00, 1.36847879e+00, 1.36847879e+00, 1.36847879e+00,
       1.36811377e+00, 1.36811377e+00, 1.36811377e+00, 1.36811377e+00,
       1.35072599e+00, 1.35072599e+00, 1.35072599e+00, 1.35072599e+00,
       1.25426560e+00, 1.25426560e+00, 1.25426560e+00, 1.25426560e+00,
       8.79763139e-01, 8.79763139e-01, 8.79763139e-01, 8.79763139e-01,
       2.32057473e-01, 2.32057473e-01, 2.32057473e-01, 2.32057473e-01,
       2.26258785e-02, 2.26258785e-02, 2.26258785e-02, 2.26258785e-02,
       1.70706147e-03, 1.70706147e-03, 1.70706147e-03, 1.70706147e-03,
       1.25313284e-04, 1.25313284e-04, 1.25313284e-04, 1.25313284e-04,
       9.12735833e-06, 9.12735833e-06, 9.12735833e-06, 9.12735833e-06,
       6.55213907e-07, 6.55213907e-07, 6.55213907e-07, 6.55213907e-07,
       4.60110799e-08, 4.60110799e-08, 4.60110799e-08, 4.60110799e-08,
       3.13257583e-09, 3.13257583e-09, 3.13257583e-09, 3.13257583e-09,
       2.04833966e-10, 2.04833966e-10, 2.04833966e-10, 2.04833966e-10,
       1.27491473e-11, 1.27491473e-11, 1.27491473e-11, 1.27491473e-11,
       7.49384168e-13, 7.49384168e-13, 7.49384168e-13, 7.49384168e-13,
       4.12715433e-14, 4.12715433e-14, 4.12715433e-14, 4.12715433e-14,
       2.08438071e-15, 2.08438071e-15, 2.08438071e-15, 2.08438071e-15,
       6.95966513e-17, 6.95966513e-17, 6.95966513e-17, 6.95966513e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999854,
       0.99999854, 0.99999854, 0.99999854, 0.99998631, 0.99998631,
       0.99998631, 0.99998631, 0.99989081, 0.99989081, 0.99989081,
       0.99989081, 0.99927118, 0.99927118, 0.99927118, 0.99927118,
       0.99603677, 0.99603677, 0.99603677, 0.99603677, 0.98301421,
       0.98301421, 0.98301421, 0.98301421, 0.94442958, 0.94442958,
       0.94442958, 0.94442958, 0.86293221, 0.86293221, 0.86293221,
       0.86293221, 0.73885742, 0.73885742, 0.73885742, 0.73885742,
       0.61009357, 0.61009357, 0.61009357, 0.61009357, 0.51726091,
       0.51726091, 0.51726091, 0.51726091, 0.47391825, 0.47391825,
       0.47391825, 0.47391825, 0.46487842, 0.46487842, 0.46487842,
       0.46487842, 0.46589916, 0.46589916, 0.46589916, 0.46589916,
       0.46870505, 0.46870505, 0.46870505, 0.46870505, 0.47008932,
       0.47008932, 0.47008932, 0.47008932, 0.4686757 , 0.4686757 ,
       0.4686757 , 0.4686757 , 0.45927249, 0.45927249, 0.45927249,
       0.45927249, 0.41693776, 0.41693776, 0.41693776, 0.41693776,
       0.28500491, 0.28500491, 0.28500491, 0.28500491, 0.13470714,
       0.13470714, 0.13470714, 0.13470714, 0.10302215, 0.10302215,
       0.10302215, 0.10302215, 0.10022593, 0.10022593, 0.10022593,
       0.10022593, 0.10001658, 0.10001658, 0.10001658, 0.10001658,
       0.10000121, 0.10000121, 0.10000121, 0.10000121, 0.10000009,
       0.10000009, 0.10000009, 0.10000009, 0.10000001, 0.10000001,
       0.10000001, 0.10000001, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999981, 0.99999981, 0.99999981, 0.99999981, 0.99999812,
       0.99999812, 0.99999812, 0.99999812, 0.99998381, 0.99998381,
       0.99998381, 0.99998381, 0.99988072, 0.99988072, 0.99988072,
       0.99988072, 0.99926394, 0.99926394, 0.99926394, 0.99926394,
       0.99629293, 0.99629293, 0.99629293, 0.99629293, 0.98522251,
       0.98522251, 0.98522251, 0.98522251, 0.95457584, 0.95457584,
       0.95457584, 0.95457584, 0.89280503, 0.89280503, 0.89280503,
       0.89280503, 0.80007672, 0.80007672, 0.80007672, 0.80007672,
       0.70045666, 0.70045666, 0.70045666, 0.70045666, 0.62631673,
       0.62631673, 0.62631673, 0.62631673, 0.60514204, 0.60514204,
       0.60514204, 0.60514204, 0.59141774, 0.59141774, 0.59141774,
       0.59141774, 0.57060546, 0.57060546, 0.57060546, 0.57060546,
       0.53581477, 0.53581477, 0.53581477, 0.53581477, 0.48414835,
       0.48414835, 0.48414835, 0.48414835, 0.41731063, 0.41731063,
       0.41731063, 0.41731063, 0.36078704, 0.36078704, 0.36078704,
       0.36078704, 0.32184882, 0.32184882, 0.32184882, 0.32184882,
       0.28122767, 0.28122767, 0.28122767, 0.28122767, 0.20285998,
       0.20285998, 0.20285998, 0.20285998, 0.13769277, 0.13769277,
       0.13769277, 0.13769277, 0.12617394, 0.12617394, 0.12617394,
       0.12617394, 0.12509074, 0.12509074, 0.12509074, 0.12509074,
       0.12500673, 0.12500673, 0.12500673, 0.12500673, 0.12500049,
       0.12500049, 0.12500049, 0.12500049, 0.12500004, 0.12500004,
       0.12500004, 0.12500004, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000020e-01, 7.50000020e-01, 7.50000020e-01, 7.50000020e-01,
       7.50000224e-01, 7.50000224e-01, 7.50000224e-01, 7.50000224e-01,
       7.50002223e-01, 7.50002223e-01, 7.50002223e-01, 7.50002223e-01,
       7.50019160e-01, 7.50019160e-01, 7.50019160e-01, 7.50019160e-01,
       7.50141119e-01, 7.50141119e-01, 7.50141119e-01, 7.50141119e-01,
       7.50870743e-01, 7.50870743e-01, 7.50870743e-01, 7.50870743e-01,
       7.54387642e-01, 7.54387642e-01, 7.54387642e-01, 7.54387642e-01,
       7.67558867e-01, 7.67558867e-01, 7.67558867e-01, 7.67558867e-01,
       8.04718986e-01, 8.04718986e-01, 8.04718986e-01, 8.04718986e-01,
       8.83124089e-01, 8.83124089e-01, 8.83124089e-01, 8.83124089e-01,
       1.01048782e+00, 1.01048782e+00, 1.01048782e+00, 1.01048782e+00,
       1.15015373e+00, 1.15015373e+00, 1.15015373e+00, 1.15015373e+00,
       1.27828995e+00, 1.27828995e+00, 1.27828995e+00, 1.27828995e+00,
       1.33996420e+00, 1.33996420e+00, 1.33996420e+00, 1.33996420e+00,
       1.35434258e+00, 1.35434258e+00, 1.35434258e+00, 1.35434258e+00,
       1.35651250e+00, 1.35651250e+00, 1.35651250e+00, 1.35651250e+00,
       1.35943170e+00, 1.35943170e+00, 1.35943170e+00, 1.35943170e+00,
       1.36562928e+00, 1.36562928e+00, 1.36562928e+00, 1.36562928e+00,
       1.36871828e+00, 1.36871828e+00, 1.36871828e+00, 1.36871828e+00,
       1.36559918e+00, 1.36559918e+00, 1.36559918e+00, 1.36559918e+00,
       1.33410068e+00, 1.33410068e+00, 1.33410068e+00, 1.33410068e+00,
       1.18316118e+00, 1.18316118e+00, 1.18316118e+00, 1.18316118e+00,
       6.83501416e-01, 6.83501416e-01, 6.83501416e-01, 6.83501416e-01,
       1.23082855e-01, 1.23082855e-01, 1.23082855e-01, 1.23082855e-01,
       1.05135867e-02, 1.05135867e-02, 1.05135867e-02, 1.05135867e-02,
       7.79480203e-04, 7.79480203e-04, 7.79480203e-04, 7.79480203e-04,
       5.71875744e-05, 5.71875744e-05, 5.71875744e-05, 5.71875744e-05,
       4.16908647e-06, 4.16908647e-06, 4.16908647e-06, 4.16908647e-06,
       3.00491897e-07, 3.00491897e-07, 3.00491897e-07, 3.00491897e-07,
       2.12578537e-08, 2.12578537e-08, 2.12578537e-08, 2.12578537e-08,
       1.46423018e-09, 1.46423018e-09, 1.46423018e-09, 1.46423018e-09,
       9.73781859e-11, 9.73781859e-11, 9.73781859e-11, 9.73781859e-11,
       6.20162096e-12, 6.20162096e-12, 6.20162096e-12, 6.20162096e-12,
       3.75332869e-13, 3.75332869e-13, 3.75332869e-13, 3.75332869e-13,
       2.14560454e-14, 2.14560454e-14, 2.14560454e-14, 2.14560454e-14,
       1.07221018e-15, 1.07221018e-15, 1.07221018e-15, 1.07221018e-15,
       3.44235441e-17, 3.44235441e-17, 3.44235441e-17, 3.44235441e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999737,
       0.99999737, 0.99999737, 0.99999737, 0.99997733, 0.99997733,
       0.99997733, 0.99997733, 0.99983304, 0.99983304, 0.99983304,
       0.99983304, 0.9989702 , 0.9989702 , 0.9989702 , 0.9989702 ,
       0.99482119, 0.99482119, 0.99482119, 0.99482119, 0.97943416,
       0.97943416, 0.97943416, 0.97943416, 0.93729763, 0.93729763,
       0.93729763, 0.93729763, 0.85415822, 0.85415822, 0.85415822,
       0.85415822, 0.73373529, 0.73373529, 0.73373529, 0.73373529,
       0.6112099 , 0.6112099 , 0.6112099 , 0.6112099 , 0.52160141,
       0.52160141, 0.52160141, 0.52160141, 0.47759878, 0.47759878,
       0.47759878, 0.47759878, 0.465481  , 0.465481  , 0.465481  ,
       0.465481  , 0.46501776, 0.46501776, 0.46501776, 0.46501776,
       0.46641955, 0.46641955, 0.46641955, 0.46641955, 0.46863112,
       0.46863112, 0.46863112, 0.46863112, 0.46903125, 0.46903125,
       0.46903125, 0.46903125, 0.466292  , 0.466292  , 0.466292  ,
       0.466292  , 0.45159727, 0.45159727, 0.45159727, 0.45159727,
       0.38874303, 0.38874303, 0.38874303, 0.38874303, 0.22928284,
       0.22928284, 0.22928284, 0.22928284, 0.11739066, 0.11739066,
       0.11739066, 0.11739066, 0.10139613, 0.10139613, 0.10139613,
       0.10139613, 0.10010314, 0.10010314, 0.10010314, 0.10010314,
       0.10000757, 0.10000757, 0.10000757, 0.10000757, 0.10000055,
       0.10000055, 0.10000055, 0.10000055, 0.10000004, 0.10000004,
       0.10000004, 0.10000004, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
       0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999676,
       0.99999676, 0.99999676, 0.99999676, 0.99997414, 0.99997414,
       0.99997414, 0.99997414, 0.99982322, 0.99982322, 0.99982322,
       0.99982322, 0.99898687, 0.99898687, 0.99898687, 0.99898687,
       0.99525772, 0.99525772, 0.99525772, 0.99525772, 0.98239165,
       0.98239165, 0.98239165, 0.98239165, 0.94927458, 0.94927458,
       0.94927458, 0.94927458, 0.88652829, 0.88652829, 0.88652829,
       0.88652829, 0.79650788, 0.79650788, 0.79650788, 0.79650788,
       0.70249376, 0.70249376, 0.70249376, 0.70249376, 0.62636848,
       0.62636848, 0.62636848, 0.62636848, 0.60412838, 0.60412838,
       0.60412838, 0.60412838, 0.59491245, 0.59491245, 0.59491245,
       0.59491245, 0.57973366, 0.57973366, 0.57973366, 0.57973366,
       0.55197703, 0.55197703, 0.55197703, 0.55197703, 0.50772236,
       0.50772236, 0.50772236, 0.50772236, 0.44720509, 0.44720509,
       0.44720509, 0.44720509, 0.38317069, 0.38317069, 0.38317069,
       0.38317069, 0.34144572, 0.34144572, 0.34144572, 0.34144572,
       0.30939376, 0.30939376, 0.30939376, 0.30939376, 0.26448525,
       0.26448525, 0.26448525, 0.26448525, 0.17617514, 0.17617514,
       0.17617514, 0.17617514, 0.1314537 , 0.1314537 , 0.1314537 ,
       0.1314537 , 0.1255488 , 0.1255488 , 0.1255488 , 0.1255488 ,
       0.12504168, 0.12504168, 0.12504168, 0.12504168, 0.12500308,
       0.12500308, 0.12500308, 0.12500308, 0.12500022, 0.12500022,
       0.12500022, 0.12500022, 0.12500002, 0.12500002, 0.12500002,
       0.12500002, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000040e-01, 7.50000040e-01, 7.50000040e-01, 7.50000040e-01,
       7.50000416e-01, 7.50000416e-01, 7.50000416e-01, 7.50000416e-01,
       7.50003829e-01, 7.50003829e-01, 7.50003829e-01, 7.50003829e-01,
       7.50030595e-01, 7.50030595e-01, 7.50030595e-01, 7.50030595e-01,
       7.50209148e-01, 7.50209148e-01, 7.50209148e-01, 7.50209148e-01,
       7.51198600e-01, 7.51198600e-01, 7.51198600e-01, 7.51198600e-01,
       7.55615304e-01, 7.55615304e-01, 7.55615304e-01, 7.55615304e-01,
       7.70951868e-01, 7.70951868e-01, 7.70951868e-01, 7.70951868e-01,
       8.11275275e-01, 8.11275275e-01, 8.11275275e-01, 8.11275275e-01,
       8.91370127e-01, 8.91370127e-01, 8.91370127e-01, 8.91370127e-01,
       1.01552397e+00, 1.01552397e+00, 1.01552397e+00, 1.01552397e+00,
       1.14807632e+00, 1.14807632e+00, 1.14807632e+00, 1.14807632e+00,
       1.27251928e+00, 1.27251928e+00, 1.27251928e+00, 1.27251928e+00,
       1.33824106e+00, 1.33824106e+00, 1.33824106e+00, 1.33824106e+00,
       1.35468133e+00, 1.35468133e+00, 1.35468133e+00, 1.35468133e+00,
       1.35603990e+00, 1.35603990e+00, 1.35603990e+00, 1.35603990e+00,
       1.35749304e+00, 1.35749304e+00, 1.35749304e+00, 1.35749304e+00,
       1.36161701e+00, 1.36161701e+00, 1.36161701e+00, 1.36161701e+00,
       1.36709517e+00, 1.36709517e+00, 1.36709517e+00, 1.36709517e+00,
       1.36853942e+00, 1.36853942e+00, 1.36853942e+00, 1.36853942e+00,
       1.35998310e+00, 1.35998310e+00, 1.35998310e+00, 1.35998310e+00,
       1.30814871e+00, 1.30814871e+00, 1.30814871e+00, 1.30814871e+00,
       1.07919686e+00, 1.07919686e+00, 1.07919686e+00, 1.07919686e+00,
       4.71939660e-01, 4.71939660e-01, 4.71939660e-01, 4.71939660e-01,
       6.10545409e-02, 6.10545409e-02, 6.10545409e-02, 6.10545409e-02,
       4.82456880e-03, 4.82456880e-03, 4.82456880e-03, 4.82456880e-03,
       3.56247646e-04, 3.56247646e-04, 3.56247646e-04, 3.56247646e-04,
       2.61067770e-05, 2.61067770e-05, 2.61067770e-05, 2.61067770e-05,
       1.90472760e-06, 1.90472760e-06, 1.90472760e-06, 1.90472760e-06,
       1.37703296e-07, 1.37703296e-07, 1.37703296e-07, 1.37703296e-07,
       9.80046714e-09, 9.80046714e-09, 9.80046714e-09, 9.80046714e-09,
       6.81680766e-10, 6.81680766e-10, 6.81680766e-10, 6.81680766e-10,
       4.59859347e-11, 4.59859347e-11, 4.59859347e-11, 4.59859347e-11,
       2.98599883e-12, 2.98599883e-12, 2.98599883e-12, 2.98599883e-12,
       1.85306740e-13, 1.85306740e-13, 1.85306740e-13, 1.85306740e-13,
       1.08045186e-14, 1.08045186e-14, 1.08045186e-14, 1.08045186e-14,
       5.92240191e-16, 5.92240191e-16, 5.92240191e-16, 5.92240191e-16,
       3.36083066e-17, 3.36083066e-17, 3.36083066e-17, 3.36083066e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999995, 0.99999995, 0.99999995, 0.99999995,
       0.99999951, 0.99999951, 0.99999951, 0.99999951, 0.99999547,
       0.99999547, 0.99999547, 0.99999547, 0.9999638 , 0.9999638 ,
       0.9999638 , 0.9999638 , 0.99975256, 0.99975256, 0.99975256,
       0.99975256, 0.99858272, 0.99858272, 0.99858272, 0.99858272,
       0.99337694, 0.99337694, 0.99337694, 0.99337694, 0.97550929,
       0.97550929, 0.97550929, 0.97550929, 0.93004626, 0.93004626,
       0.93004626, 0.93004626, 0.84577195, 0.84577195, 0.84577195,
       0.84577195, 0.72903811, 0.72903811, 0.72903811, 0.72903811,
       0.61232549, 0.61232549, 0.61232549, 0.61232549, 0.52517321,
       0.52517321, 0.52517321, 0.52517321, 0.48111312, 0.48111312,
       0.48111312, 0.48111312, 0.46690051, 0.46690051, 0.46690051,
       0.46690051, 0.46488503, 0.46488503, 0.46488503, 0.46488503,
       0.46527105, 0.46527105, 0.46527105, 0.46527105, 0.46650029,
       0.46650029, 0.46650029, 0.46650029, 0.46823227, 0.46823227,
       0.46823227, 0.46823227, 0.46775485, 0.46775485, 0.46775485,
       0.46775485, 0.46346347, 0.46346347, 0.46346347, 0.46346347,
       0.43993022, 0.43993022, 0.43993022, 0.43993022, 0.35059336,
       0.35059336, 0.35059336, 0.35059336, 0.17933862, 0.17933862,
       0.17933862, 0.17933862, 0.10832159, 0.10832159, 0.10832159,
       0.10832159, 0.1006392 , 0.1006392 , 0.1006392 , 0.1006392 ,
       0.10004713, 0.10004713, 0.10004713, 0.10004713, 0.10000345,
       0.10000345, 0.10000345, 0.10000345, 0.10000025, 0.10000025,
       0.10000025, 0.10000025, 0.10000002, 0.10000002, 0.10000002,
       0.10000002, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999937, 0.99999937, 0.99999937, 0.99999937, 0.99999463,
       0.99999463, 0.99999463, 0.99999463, 0.99996001, 0.99996001,
       0.99996001, 0.99996001, 0.99974513, 0.99974513, 0.99974513,
       0.99974513, 0.99863764, 0.99863764, 0.99863764, 0.99863764,
       0.99404812, 0.99404812, 0.99404812, 0.99404812, 0.97932361,
       0.97932361, 0.97932361, 0.97932361, 0.94391361, 0.94391361,
       0.94391361, 0.94391361, 0.88052889, 0.88052889, 0.88052889,
       0.88052889, 0.7932456 , 0.7932456 , 0.7932456 , 0.7932456 ,
       0.70476828, 0.70476828, 0.70476828, 0.70476828, 0.62723661,
       0.62723661, 0.62723661, 0.62723661, 0.60206706, 0.60206706,
       0.60206706, 0.60206706, 0.5963246 , 0.5963246 , 0.5963246 ,
       0.5963246 , 0.58637919, 0.58637919, 0.58637919, 0.58637919,
       0.56513598, 0.56513598, 0.56513598, 0.56513598, 0.52823708,
       0.52823708, 0.52823708, 0.52823708, 0.47484775, 0.47484775,
       0.47484775, 0.47484775, 0.40888641, 0.40888641, 0.40888641,
       0.40888641, 0.35916094, 0.35916094, 0.35916094, 0.35916094,
       0.32770215, 0.32770215, 0.32770215, 0.32770215, 0.29918377,
       0.29918377, 0.29918377, 0.29918377, 0.24277737, 0.24277737,
       0.24277737, 0.24277737, 0.1544822 , 0.1544822 , 0.1544822 ,
       0.1544822 , 0.12813873, 0.12813873, 0.12813873, 0.12813873,
       0.12525473, 0.12525473, 0.12525473, 0.12525473, 0.12501909,
       0.12501909, 0.12501909, 0.12501909, 0.12500141, 0.12500141,
       0.12500141, 0.12500141, 0.1250001 , 0.1250001 , 0.1250001 ,
       0.1250001 , 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
       7.50000076e-01, 7.50000076e-01, 7.50000076e-01, 7.50000076e-01,
       7.50000743e-01, 7.50000743e-01, 7.50000743e-01, 7.50000743e-01,
       7.50006355e-01, 7.50006355e-01, 7.50006355e-01, 7.50006355e-01,
       7.50047312e-01, 7.50047312e-01, 7.50047312e-01, 7.50047312e-01,
       7.50301532e-01, 7.50301532e-01, 7.50301532e-01, 7.50301532e-01,
       7.51611926e-01, 7.51611926e-01, 7.51611926e-01, 7.51611926e-01,
       7.57051218e-01, 7.57051218e-01, 7.57051218e-01, 7.57051218e-01,
       7.74639815e-01, 7.74639815e-01, 7.74639815e-01, 7.74639815e-01,
       8.17938711e-01, 8.17938711e-01, 8.17938711e-01, 8.17938711e-01,
       8.99300214e-01, 8.99300214e-01, 8.99300214e-01, 8.99300214e-01,
       1.02004865e+00, 1.02004865e+00, 1.02004865e+00, 1.02004865e+00,
       1.14652531e+00, 1.14652531e+00, 1.14652531e+00, 1.14652531e+00,
       1.26652821e+00, 1.26652821e+00, 1.26652821e+00, 1.26652821e+00,
       1.33548200e+00, 1.33548200e+00, 1.33548200e+00, 1.33548200e+00,
       1.35534630e+00, 1.35534630e+00, 1.35534630e+00, 1.35534630e+00,
       1.35643148e+00, 1.35643148e+00, 1.35643148e+00, 1.35643148e+00,
       1.35688841e+00, 1.35688841e+00, 1.35688841e+00, 1.35688841e+00,
       1.35905944e+00, 1.35905944e+00, 1.35905944e+00, 1.35905944e+00,
       1.36376675e+00, 1.36376675e+00, 1.36376675e+00, 1.36376675e+00,
       1.36790199e+00, 1.36790199e+00, 1.36790199e+00, 1.36790199e+00,
       1.36676900e+00, 1.36676900e+00, 1.36676900e+00, 1.36676900e+00,
       1.35107712e+00, 1.35107712e+00, 1.35107712e+00, 1.35107712e+00,
       1.26776498e+00, 1.26776498e+00, 1.26776498e+00, 1.26776498e+00,
       9.35091603e-01, 9.35091603e-01, 9.35091603e-01, 9.35091603e-01,
       2.80578131e-01, 2.80578131e-01, 2.80578131e-01, 2.80578131e-01,
       2.89234526e-02, 2.89234526e-02, 2.89234526e-02, 2.89234526e-02,
       2.21034091e-03, 2.21034091e-03, 2.21034091e-03, 2.21034091e-03,
       1.62586243e-04, 1.62586243e-04, 1.62586243e-04, 1.62586243e-04,
       1.19199001e-05, 1.19199001e-05, 1.19199001e-05, 1.19199001e-05,
       8.70329480e-07, 8.70329480e-07, 8.70329480e-07, 8.70329480e-07,
       6.30649885e-08, 6.30649885e-08, 6.30649885e-08, 6.30649885e-08,
       4.51037180e-09, 4.51037180e-09, 4.51037180e-09, 4.51037180e-09,
       3.16293216e-10, 3.16293216e-10, 3.16293216e-10, 3.16293216e-10,
       2.15961374e-11, 2.15961374e-11, 2.15961374e-11, 2.15961374e-11,
       1.42561215e-12, 1.42561215e-12, 1.42561215e-12, 1.42561215e-12,
       9.02795039e-14, 9.02795039e-14, 9.02795039e-14, 9.02795039e-14,
       5.44358060e-15, 5.44358060e-15, 5.44358060e-15, 5.44358060e-15,
       3.46618598e-16, 3.46618598e-16, 3.46618598e-16, 3.46618598e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999912, 0.99999912, 0.99999912, 0.99999912, 0.99999248,
       0.99999248, 0.99999248, 0.99999248, 0.99994402, 0.99994402,
       0.99994402, 0.99994402, 0.99964328, 0.99964328, 0.99964328,
       0.99964328, 0.99809443, 0.99809443, 0.99809443, 0.99809443,
       0.99169035, 0.99169035, 0.99169035, 0.99169035, 0.97126076,
       0.97126076, 0.97126076, 0.97126076, 0.92272829, 0.92272829,
       0.92272829, 0.92272829, 0.83776294, 0.83776294, 0.83776294,
       0.83776294, 0.72464681, 0.72464681, 0.72464681, 0.72464681,
       0.6136125 , 0.6136125 , 0.6136125 , 0.6136125 , 0.52827001,
       0.52827001, 0.52827001, 0.52827001, 0.48410084, 0.48410084,
       0.48410084, 0.48410084, 0.46873669, 0.46873669, 0.46873669,
       0.46873669, 0.465321  , 0.465321  , 0.465321  , 0.465321  ,
       0.46494758, 0.46494758, 0.46494758, 0.46494758, 0.46514031,
       0.46514031, 0.46514031, 0.46514031, 0.46651691, 0.46651691,
       0.46651691, 0.46651691, 0.46747205, 0.46747205, 0.46747205,
       0.46747205, 0.46667036, 0.46667036, 0.46667036, 0.46667036,
       0.45913733, 0.45913733, 0.45913733, 0.45913733, 0.42245963,
       0.42245963, 0.42245963, 0.42245963, 0.30188464, 0.30188464,
       0.30188464, 0.30188464, 0.14267451, 0.14267451, 0.14267451,
       0.14267451, 0.10387503, 0.10387503, 0.10387503, 0.10387503,
       0.10029258, 0.10029258, 0.10029258, 0.10029258, 0.10002151,
       0.10002151, 0.10002151, 0.10002151, 0.10000158, 0.10000158,
       0.10000158, 0.10000158, 0.10000012, 0.10000012, 0.10000012,
       0.10000012, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
       0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99999137,
       0.99999137, 0.99999137, 0.99999137, 0.9999399 , 0.9999399 ,
       0.9999399 , 0.9999399 , 0.99964148, 0.99964148, 0.99964148,
       0.99964148, 0.9982058 , 0.9982058 , 0.9982058 , 0.9982058 ,
       0.99265642, 0.99265642, 0.99265642, 0.99265642, 0.97603583,
       0.97603583, 0.97603583, 0.97603583, 0.93852726, 0.93852726,
       0.93852726, 0.93852726, 0.87480059, 0.87480059, 0.87480059,
       0.87480059, 0.79029824, 0.79029824, 0.79029824, 0.79029824,
       0.70698986, 0.70698986, 0.70698986, 0.70698986, 0.6291912 ,
       0.6291912 , 0.6291912 , 0.6291912 , 0.59965944, 0.59965944,
       0.59965944, 0.59965944, 0.59596883, 0.59596883, 0.59596883,
       0.59596883, 0.59053208, 0.59053208, 0.59053208, 0.59053208,
       0.5754485 , 0.5754485 , 0.5754485 , 0.5754485 , 0.54568684,
       0.54568684, 0.54568684, 0.54568684, 0.49942691, 0.49942691,
       0.49942691, 0.49942691, 0.43715677, 0.43715677, 0.43715677,
       0.43715677, 0.3785361 , 0.3785361 , 0.3785361 , 0.3785361 ,
       0.34229804, 0.34229804, 0.34229804, 0.34229804, 0.31792866,
       0.31792866, 0.31792866, 0.31792866, 0.28869213, 0.28869213,
       0.28869213, 0.28869213, 0.21502361, 0.21502361, 0.21502361,
       0.21502361, 0.14073628, 0.14073628, 0.14073628, 0.14073628,
       0.12650253, 0.12650253, 0.12650253, 0.12650253, 0.12511712,
       0.12511712, 0.12511712, 0.12511712, 0.12500873, 0.12500873,
       0.12500873, 0.12500873, 0.12500064, 0.12500064, 0.12500064,
       0.12500064, 0.12500005, 0.12500005, 0.12500005, 0.12500005,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
       7.50000141e-01, 7.50000141e-01, 7.50000141e-01, 7.50000141e-01,
       7.50001276e-01, 7.50001276e-01, 7.50001276e-01, 7.50001276e-01,
       7.50010210e-01, 7.50010210e-01, 7.50010210e-01, 7.50010210e-01,
       7.50071106e-01, 7.50071106e-01, 7.50071106e-01, 7.50071106e-01,
       7.50424168e-01, 7.50424168e-01, 7.50424168e-01, 7.50424168e-01,
       7.52123167e-01, 7.52123167e-01, 7.52123167e-01, 7.52123167e-01,
       7.58705271e-01, 7.58705271e-01, 7.58705271e-01, 7.58705271e-01,
       7.78604138e-01, 7.78604138e-01, 7.78604138e-01, 7.78604138e-01,
       8.24667213e-01, 8.24667213e-01, 8.24667213e-01, 8.24667213e-01,
       9.06930229e-01, 9.06930229e-01, 9.06930229e-01, 9.06930229e-01,
       1.02400230e+00, 1.02400230e+00, 1.02400230e+00, 1.02400230e+00,
       1.14543639e+00, 1.14543639e+00, 1.14543639e+00, 1.14543639e+00,
       1.26083347e+00, 1.26083347e+00, 1.26083347e+00, 1.26083347e+00,
       1.33169331e+00, 1.33169331e+00, 1.33169331e+00, 1.33169331e+00,
       1.35558798e+00, 1.35558798e+00, 1.35558798e+00, 1.35558798e+00,
       1.35748922e+00, 1.35748922e+00, 1.35748922e+00, 1.35748922e+00,
       1.35707583e+00, 1.35707583e+00, 1.35707583e+00, 1.35707583e+00,
       1.35801616e+00, 1.35801616e+00, 1.35801616e+00, 1.35801616e+00,
       1.36080683e+00, 1.36080683e+00, 1.36080683e+00, 1.36080683e+00,
       1.36564217e+00, 1.36564217e+00, 1.36564217e+00, 1.36564217e+00,
       1.36731393e+00, 1.36731393e+00, 1.36731393e+00, 1.36731393e+00,
       1.36391260e+00, 1.36391260e+00, 1.36391260e+00, 1.36391260e+00,
       1.33675447e+00, 1.33675447e+00, 1.33675447e+00, 1.33675447e+00,
       1.20527086e+00, 1.20527086e+00, 1.20527086e+00, 1.20527086e+00,
       7.48851135e-01, 7.48851135e-01, 7.48851135e-01, 7.48851135e-01,
       1.51176427e-01, 1.51176427e-01, 1.51176427e-01, 1.51176427e-01,
       1.35019359e-02, 1.35019359e-02, 1.35019359e-02, 1.35019359e-02,
       1.00744606e-03, 1.00744606e-03, 1.00744606e-03, 1.00744606e-03,
       7.41979754e-05, 7.41979754e-05, 7.41979754e-05, 7.41979754e-05,
       5.44259245e-06, 5.44259245e-06, 5.44259245e-06, 5.44259245e-06,
       3.97695182e-07, 3.97695182e-07, 3.97695182e-07, 3.97695182e-07,
       2.88737197e-08, 2.88737197e-08, 2.88737197e-08, 2.88737197e-08,
       2.07323036e-09, 2.07323036e-09, 2.07323036e-09, 2.07323036e-09,
       1.46378112e-10, 1.46378112e-10, 1.46378112e-10, 1.46378112e-10,
       1.00972396e-11, 1.00972396e-11, 1.00972396e-11, 1.00972396e-11,
       6.75961800e-13, 6.75961800e-13, 6.75961800e-13, 6.75961800e-13,
       4.36475480e-14, 4.36475480e-14, 4.36475480e-14, 4.36475480e-14,
       2.72468011e-15, 2.72468011e-15, 2.72468011e-15, 2.72468011e-15,
       1.63168395e-16, 1.63168395e-16, 1.63168395e-16, 1.63168395e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999983, 0.99999983, 0.99999983, 0.99999983,
       0.99999849, 0.99999849, 0.99999849, 0.99999849, 0.99998792,
       0.99998792, 0.99998792, 0.99998792, 0.99991587, 0.99991587,
       0.99991587, 0.99991587, 0.99949823, 0.99949823, 0.99949823,
       0.99949823, 0.9974908 , 0.9974908 , 0.9974908 , 0.9974908 ,
       0.98975108, 0.98975108, 0.98975108, 0.98975108, 0.96671385,
       0.96671385, 0.96671385, 0.96671385, 0.91539051, 0.91539051,
       0.91539051, 0.91539051, 0.83010759, 0.83010759, 0.83010759,
       0.83010759, 0.72047423, 0.72047423, 0.72047423, 0.72047423,
       0.61506756, 0.61506756, 0.61506756, 0.61506756, 0.53125219,
       0.53125219, 0.53125219, 0.53125219, 0.48653051, 0.48653051,
       0.48653051, 0.48653051, 0.47051006, 0.47051006, 0.47051006,
       0.47051006, 0.46624138, 0.46624138, 0.46624138, 0.46624138,
       0.46510466, 0.46510466, 0.46510466, 0.46510466, 0.46465008,
       0.46465008, 0.46465008, 0.46465008, 0.4649645 , 0.4649645 ,
       0.4649645 , 0.4649645 , 0.46635721, 0.46635721, 0.46635721,
       0.46635721, 0.4669385 , 0.4669385 , 0.4669385 , 0.4669385 ,
       0.46507386, 0.46507386, 0.46507386, 0.46507386, 0.45256509,
       0.45256509, 0.45256509, 0.45256509, 0.39724826, 0.39724826,
       0.39724826, 0.39724826, 0.24626608, 0.24626608, 0.24626608,
       0.24626608, 0.12167041, 0.12167041, 0.12167041, 0.12167041,
       0.10179518, 0.10179518, 0.10179518, 0.10179518, 0.10013331,
       0.10013331, 0.10013331, 0.10013331, 0.10000982, 0.10000982,
       0.10000982, 0.10000982, 0.10000072, 0.10000072, 0.10000072,
       0.10000072, 0.10000005, 0.10000005, 0.10000005, 0.10000005,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999979, 0.99999979, 0.99999979, 0.99999979,
       0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99998654,
       0.99998654, 0.99998654, 0.99998654, 0.99991195, 0.99991195,
       0.99991195, 0.99991195, 0.99950669, 0.99950669, 0.99950669,
       0.99950669, 0.99768098, 0.99768098, 0.99768098, 0.99768098,
       0.99107741, 0.99107741, 0.99107741, 0.99107741, 0.97254809,
       0.97254809, 0.97254809, 0.97254809, 0.93314576, 0.93314576,
       0.93314576, 0.93314576, 0.86931013, 0.86931013, 0.86931013,
       0.86931013, 0.78745561, 0.78745561, 0.78745561, 0.78745561,
       0.70912742, 0.70912742, 0.70912742, 0.70912742, 0.63224649,
       0.63224649, 0.63224649, 0.63224649, 0.59761707, 0.59761707,
       0.59761707, 0.59761707, 0.59438022, 0.59438022, 0.59438022,
       0.59438022, 0.5922818 , 0.5922818 , 0.5922818 , 0.5922818 ,
       0.58292186, 0.58292186, 0.58292186, 0.58292186, 0.56012924,
       0.56012924, 0.56012924, 0.56012924, 0.52108056, 0.52108056,
       0.52108056, 0.52108056, 0.46554919, 0.46554919, 0.46554919,
       0.46554919, 0.40122218, 0.40122218, 0.40122218, 0.40122218,
       0.35684472, 0.35684472, 0.35684472, 0.35684472, 0.33092508,
       0.33092508, 0.33092508, 0.33092508, 0.3109016 , 0.3109016 ,
       0.3109016 , 0.3109016 , 0.2745178 , 0.2745178 , 0.2745178 ,
       0.2745178 , 0.18574868, 0.18574868, 0.18574868, 0.18574868,
       0.13312446, 0.13312446, 0.13312446, 0.13312446, 0.12570243,
       0.12570243, 0.12570243, 0.12570243, 0.12505374, 0.12505374,
       0.12505374, 0.12505374, 0.12500399, 0.12500399, 0.12500399,
       0.12500399, 0.12500029, 0.12500029, 0.12500029, 0.12500029,
       0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
       7.50000249e-01, 7.50000249e-01, 7.50000249e-01, 7.50000249e-01,
       7.50002122e-01, 7.50002122e-01, 7.50002122e-01, 7.50002122e-01,
       7.50015931e-01, 7.50015931e-01, 7.50015931e-01, 7.50015931e-01,
       7.50104174e-01, 7.50104174e-01, 7.50104174e-01, 7.50104174e-01,
       7.50583657e-01, 7.50583657e-01, 7.50583657e-01, 7.50583657e-01,
       7.52744722e-01, 7.52744722e-01, 7.52744722e-01, 7.52744722e-01,
       7.60584516e-01, 7.60584516e-01, 7.60584516e-01, 7.60584516e-01,
       7.82823347e-01, 7.82823347e-01, 7.82823347e-01, 7.82823347e-01,
       8.31422691e-01, 8.31422691e-01, 8.31422691e-01, 8.31422691e-01,
       9.14253491e-01, 9.14253491e-01, 9.14253491e-01, 9.14253491e-01,
       1.02753151e+00, 1.02753151e+00, 1.02753151e+00, 1.02753151e+00,
       1.14446418e+00, 1.14446418e+00, 1.14446418e+00, 1.14446418e+00,
       1.25572429e+00, 1.25572429e+00, 1.25572429e+00, 1.25572429e+00,
       1.32726860e+00, 1.32726860e+00, 1.32726860e+00, 1.32726860e+00,
       1.35494148e+00, 1.35494148e+00, 1.35494148e+00, 1.35494148e+00,
       1.35862615e+00, 1.35862615e+00, 1.35862615e+00, 1.35862615e+00,
       1.35792280e+00, 1.35792280e+00, 1.35792280e+00, 1.35792280e+00,
       1.35790930e+00, 1.35790930e+00, 1.35790930e+00, 1.35790930e+00,
       1.35939545e+00, 1.35939545e+00, 1.35939545e+00, 1.35939545e+00,
       1.36269094e+00, 1.36269094e+00, 1.36269094e+00, 1.36269094e+00,
       1.36606975e+00, 1.36606975e+00, 1.36606975e+00, 1.36606975e+00,
       1.36643658e+00, 1.36643658e+00, 1.36643658e+00, 1.36643658e+00,
       1.35906893e+00, 1.35906893e+00, 1.35906893e+00, 1.35906893e+00,
       1.31349500e+00, 1.31349500e+00, 1.31349500e+00, 1.31349500e+00,
       1.11168051e+00, 1.11168051e+00, 1.11168051e+00, 1.11168051e+00,
       5.39000363e-01, 5.39000363e-01, 5.39000363e-01, 5.39000363e-01,
       7.70165641e-02, 7.70165641e-02, 7.70165641e-02, 7.70165641e-02,
       6.19417821e-03, 6.19417821e-03, 6.19417821e-03, 6.19417821e-03,
       4.59703599e-04, 4.59703599e-04, 4.59703599e-04, 4.59703599e-04,
       3.38422021e-05, 3.38422021e-05, 3.38422021e-05, 3.38422021e-05,
       2.48403190e-06, 2.48403190e-06, 2.48403190e-06, 2.48403190e-06,
       1.81703671e-07, 1.81703671e-07, 1.81703671e-07, 1.81703671e-07,
       1.32143978e-08, 1.32143978e-08, 1.32143978e-08, 1.32143978e-08,
       9.51971465e-10, 9.51971465e-10, 9.51971465e-10, 9.51971465e-10,
       6.75952916e-11, 6.75952916e-11, 6.75952916e-11, 6.75952916e-11,
       4.70333296e-12, 4.70333296e-12, 4.70333296e-12, 4.70333296e-12,
       3.18764056e-13, 3.18764056e-13, 3.18764056e-13, 3.18764056e-13,
       2.09144307e-14, 2.09144307e-14, 2.09144307e-14, 2.09144307e-14,
       1.34091434e-15, 1.34091434e-15, 1.34091434e-15, 1.34091434e-15,
       7.02262902e-17, 7.02262902e-17, 7.02262902e-17, 7.02262902e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
       0.99999749, 0.99999749, 0.99999749, 0.99999749, 0.99998115,
       0.99998115, 0.99998115, 0.99998115, 0.99987675, 0.99987675,
       0.99987675, 0.99987675, 0.99930963, 0.99930963, 0.99930963,
       0.99930963, 0.9967574 , 0.9967574 , 0.9967574 , 0.9967574 ,
       0.98755235, 0.98755235, 0.98755235, 0.98755235, 0.961897  ,
       0.961897  , 0.961897  , 0.961897  , 0.90807418, 0.90807418,
       0.90807418, 0.90807418, 0.82280457, 0.82280457, 0.82280457,
       0.82280457, 0.71660108, 0.71660108, 0.71660108, 0.71660108,
       0.61647152, 0.61647152, 0.61647152, 0.61647152, 0.53433754,
       0.53433754, 0.53433754, 0.53433754, 0.48862858, 0.48862858,
       0.48862858, 0.48862858, 0.47191446, 0.47191446, 0.47191446,
       0.47191446, 0.46731186, 0.46731186, 0.46731186, 0.46731186,
       0.46568567, 0.46568567, 0.46568567, 0.46568567, 0.46466716,
       0.46466716, 0.46466716, 0.46466716, 0.46428833, 0.46428833,
       0.46428833, 0.46428833, 0.46483777, 0.46483777, 0.46483777,
       0.46483777, 0.46633071, 0.46633071, 0.46633071, 0.46633071,
       0.46626754, 0.46626754, 0.46626754, 0.46626754, 0.46271596,
       0.46271596, 0.46271596, 0.46271596, 0.44260208, 0.44260208,
       0.44260208, 0.44260208, 0.36235029, 0.36235029, 0.36235029,
       0.36235029, 0.19361303, 0.19361303, 0.19361303, 0.19361303,
       0.11058547, 0.11058547, 0.11058547, 0.11058547, 0.10082107,
       0.10082107, 0.10082107, 0.10082107, 0.10006082, 0.10006082,
       0.10006082, 0.10006082, 0.10000448, 0.10000448, 0.10000448,
       0.10000448, 0.10000033, 0.10000033, 0.10000033, 0.10000033,
       0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999996, 0.99999996, 0.99999996,
       0.99999996, 0.99999964, 0.99999964, 0.99999964, 0.99999964,
       0.99999711, 0.99999711, 0.99999711, 0.99999711, 0.99997953,
       0.99997953, 0.99997953, 0.99997953, 0.99987394, 0.99987394,
       0.99987394, 0.99987394, 0.99933463, 0.99933463, 0.99933463,
       0.99933463, 0.99705312, 0.99705312, 0.99705312, 0.99705312,
       0.98930851, 0.98930851, 0.98930851, 0.98930851, 0.96888183,
       0.96888183, 0.96888183, 0.96888183, 0.92779564, 0.92779564,
       0.92779564, 0.92779564, 0.86405491, 0.86405491, 0.86405491,
       0.86405491, 0.78470523, 0.78470523, 0.78470523, 0.78470523,
       0.71095409, 0.71095409, 0.71095409, 0.71095409, 0.63622824,
       0.63622824, 0.63622824, 0.63622824, 0.59650729, 0.59650729,
       0.59650729, 0.59650729, 0.59187689, 0.59187689, 0.59187689,
       0.59187689, 0.59231137, 0.59231137, 0.59231137, 0.59231137,
       0.58763049, 0.58763049, 0.58763049, 0.58763049, 0.57146876,
       0.57146876, 0.57146876, 0.57146876, 0.53974952, 0.53974952,
       0.53974952, 0.53974952, 0.49128145, 0.49128145, 0.49128145,
       0.49128145, 0.4279453 , 0.4279453 , 0.4279453 , 0.4279453 ,
       0.37383925, 0.37383925, 0.37383925, 0.37383925, 0.34208564,
       0.34208564, 0.34208564, 0.34208564, 0.32336538, 0.32336538,
       0.32336538, 0.32336538, 0.30459933, 0.30459933, 0.30459933,
       0.30459933, 0.25375017, 0.25375017, 0.25375017, 0.25375017,
       0.1610919 , 0.1610919 , 0.1610919 , 0.1610919 , 0.12897793,
       0.12897793, 0.12897793, 0.12897793, 0.12532639, 0.12532639,
       0.12532639, 0.12532639, 0.1250246 , 0.1250246 , 0.1250246 ,
       0.1250246 , 0.12500182, 0.12500182, 0.12500182, 0.12500182,
       0.12500013, 0.12500013, 0.12500013, 0.12500013, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000048e-01, 7.50000048e-01, 7.50000048e-01, 7.50000048e-01,
       7.50000428e-01, 7.50000428e-01, 7.50000428e-01, 7.50000428e-01,
       7.50003425e-01, 7.50003425e-01, 7.50003425e-01, 7.50003425e-01,
       7.50024215e-01, 7.50024215e-01, 7.50024215e-01, 7.50024215e-01,
       7.50149149e-01, 7.50149149e-01, 7.50149149e-01, 7.50149149e-01,
       7.50787259e-01, 7.50787259e-01, 7.50787259e-01, 7.50787259e-01,
       7.53488669e-01, 7.53488669e-01, 7.53488669e-01, 7.53488669e-01,
       7.62693058e-01, 7.62693058e-01, 7.62693058e-01, 7.62693058e-01,
       7.87273690e-01, 7.87273690e-01, 7.87273690e-01, 7.87273690e-01,
       8.38170390e-01, 8.38170390e-01, 8.38170390e-01, 8.38170390e-01,
       9.21264845e-01, 9.21264845e-01, 9.21264845e-01, 9.21264845e-01,
       1.03075711e+00, 1.03075711e+00, 1.03075711e+00, 1.03075711e+00,
       1.14341648e+00, 1.14341648e+00, 1.14341648e+00, 1.14341648e+00,
       1.25118970e+00, 1.25118970e+00, 1.25118970e+00, 1.25118970e+00,
       1.32270364e+00, 1.32270364e+00, 1.32270364e+00, 1.32270364e+00,
       1.35337313e+00, 1.35337313e+00, 1.35337313e+00, 1.35337313e+00,
       1.35937786e+00, 1.35937786e+00, 1.35937786e+00, 1.35937786e+00,
       1.35905340e+00, 1.35905340e+00, 1.35905340e+00, 1.35905340e+00,
       1.35850392e+00, 1.35850392e+00, 1.35850392e+00, 1.35850392e+00,
       1.35894967e+00, 1.35894967e+00, 1.35894967e+00, 1.35894967e+00,
       1.36090221e+00, 1.36090221e+00, 1.36090221e+00, 1.36090221e+00,
       1.36370505e+00, 1.36370505e+00, 1.36370505e+00, 1.36370505e+00,
       1.36598769e+00, 1.36598769e+00, 1.36598769e+00, 1.36598769e+00,
       1.36486873e+00, 1.36486873e+00, 1.36486873e+00, 1.36486873e+00,
       1.35070633e+00, 1.35070633e+00, 1.35070633e+00, 1.35070633e+00,
       1.27741452e+00, 1.27741452e+00, 1.27741452e+00, 1.27741452e+00,
       9.81464738e-01, 9.81464738e-01, 9.81464738e-01, 9.81464738e-01,
       3.36046188e-01, 3.36046188e-01, 3.36046188e-01, 3.36046188e-01,
       3.68463062e-02, 3.68463062e-02, 3.68463062e-02, 3.68463062e-02,
       2.83912454e-03, 2.83912454e-03, 2.83912454e-03, 2.83912454e-03,
       2.09688885e-04, 2.09688885e-04, 2.09688885e-04, 2.09688885e-04,
       1.54316406e-05, 1.54316406e-05, 1.54316406e-05, 1.54316406e-05,
       1.13356929e-06, 1.13356929e-06, 1.13356929e-06, 1.13356929e-06,
       8.29963615e-08, 8.29963615e-08, 8.29963615e-08, 8.29963615e-08,
       6.04553786e-09, 6.04553786e-09, 6.04553786e-09, 6.04553786e-09,
       4.36752195e-10, 4.36752195e-10, 4.36752195e-10, 4.36752195e-10,
       3.11603660e-11, 3.11603660e-11, 3.11603660e-11, 3.11603660e-11,
       2.18424142e-12, 2.18424142e-12, 2.18424142e-12, 2.18424142e-12,
       1.49600112e-13, 1.49600112e-13, 1.49600112e-13, 1.49600112e-13,
       9.91152530e-15, 9.91152530e-15, 9.91152530e-15, 9.91152530e-15,
       6.43616174e-16, 6.43616174e-16, 6.43616174e-16, 6.43616174e-16,
       3.40906797e-17, 3.40906797e-17, 3.40906797e-17, 3.40906797e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
       0.99999994, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
       0.99999595, 0.99999595, 0.99999595, 0.99999595, 0.99997135,
       0.99997135, 0.99997135, 0.99997135, 0.99982354, 0.99982354,
       0.99982354, 0.99982354, 0.9990689 , 0.9990689 , 0.9990689 ,
       0.9990689 , 0.99588029, 0.99588029, 0.99588029, 0.99588029,
       0.98509107, 0.98509107, 0.98509107, 0.98509107, 0.95684085,
       0.95684085, 0.95684085, 0.95684085, 0.90081585, 0.90081585,
       0.90081585, 0.90081585, 0.81585349, 0.81585349, 0.81585349,
       0.81585349, 0.71306117, 0.71306117, 0.71306117, 0.71306117,
       0.61770042, 0.61770042, 0.61770042, 0.61770042, 0.53754808,
       0.53754808, 0.53754808, 0.53754808, 0.49069344, 0.49069344,
       0.49069344, 0.49069344, 0.47291767, 0.47291767, 0.47291767,
       0.47291767, 0.46823402, 0.46823402, 0.46823402, 0.46823402,
       0.46647842, 0.46647842, 0.46647842, 0.46647842, 0.46510214,
       0.46510214, 0.46510214, 0.46510214, 0.46413565, 0.46413565,
       0.46413565, 0.46413565, 0.46395683, 0.46395683, 0.46395683,
       0.46395683, 0.46511952, 0.46511952, 0.46511952, 0.46511952,
       0.46605603, 0.46605603, 0.46605603, 0.46605603, 0.46541207,
       0.46541207, 0.46541207, 0.46541207, 0.45926933, 0.45926933,
       0.45926933, 0.45926933, 0.42726405, 0.42726405, 0.42726405,
       0.42726405, 0.31664309, 0.31664309, 0.31664309, 0.31664309,
       0.15234215, 0.15234215, 0.15234215, 0.15234215, 0.10495591,
       0.10495591, 0.10495591, 0.10495591, 0.10037589, 0.10037589,
       0.10037589, 0.10037589, 0.10002774, 0.10002774, 0.10002774,
       0.10002774, 0.10000204, 0.10000204, 0.10000204, 0.10000204,
       0.10000015, 0.10000015, 0.10000015, 0.10000015, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
       0.99999993, 0.9999994 , 0.9999994 , 0.9999994 , 0.9999994 ,
       0.99999545, 0.99999545, 0.99999545, 0.99999545, 0.99996962,
       0.99996962, 0.99996962, 0.99996962, 0.99982324, 0.99982324,
       0.99982324, 0.99982324, 0.9991187 , 0.9991187 , 0.9991187 ,
       0.9991187 , 0.9963127 , 0.9963127 , 0.9963127 , 0.9963127 ,
       0.98734973, 0.98734973, 0.98734973, 0.98734973, 0.96505957,
       0.96505957, 0.96505957, 0.96505957, 0.92250062, 0.92250062,
       0.92250062, 0.92250062, 0.85904285, 0.85904285, 0.85904285,
       0.85904285, 0.78210563, 0.78210563, 0.78210563, 0.78210563,
       0.71214743, 0.71214743, 0.71214743, 0.71214743, 0.64091277,
       0.64091277, 0.64091277, 0.64091277, 0.5967045 , 0.5967045 ,
       0.5967045 , 0.5967045 , 0.58917295, 0.58917295, 0.58917295,
       0.58917295, 0.59108358, 0.59108358, 0.59108358, 0.59108358,
       0.58980314, 0.58980314, 0.58980314, 0.58980314, 0.57968492,
       0.57968492, 0.57968492, 0.57968492, 0.5552647 , 0.5552647 ,
       0.5552647 , 0.5552647 , 0.51411927, 0.51411927, 0.51411927,
       0.51411927, 0.45652797, 0.45652797, 0.45652797, 0.45652797,
       0.39426685, 0.39426685, 0.39426685, 0.39426685, 0.35435985,
       0.35435985, 0.35435985, 0.35435985, 0.33267462, 0.33267462,
       0.33267462, 0.33267462, 0.3183219 , 0.3183219 , 0.3183219 ,
       0.3183219 , 0.29605972, 0.29605972, 0.29605972, 0.29605972,
       0.22620934, 0.22620934, 0.22620934, 0.22620934, 0.1443368 ,
       0.1443368 , 0.1443368 , 0.1443368 , 0.12690967, 0.12690967,
       0.12690967, 0.12690967, 0.12515044, 0.12515044, 0.12515044,
       0.12515044, 0.12501125, 0.12501125, 0.12501125, 0.12501125,
       0.12500083, 0.12500083, 0.12500083, 0.12500083, 0.12500006,
       0.12500006, 0.12500006, 0.12500006, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000084e-01, 7.50000084e-01, 7.50000084e-01, 7.50000084e-01,
       7.50000712e-01, 7.50000712e-01, 7.50000712e-01, 7.50000712e-01,
       7.50005384e-01, 7.50005384e-01, 7.50005384e-01, 7.50005384e-01,
       7.50035944e-01, 7.50035944e-01, 7.50035944e-01, 7.50035944e-01,
       7.50209136e-01, 7.50209136e-01, 7.50209136e-01, 7.50209136e-01,
       7.51042813e-01, 7.51042813e-01, 7.51042813e-01, 7.51042813e-01,
       7.54366472e-01, 7.54366472e-01, 7.54366472e-01, 7.54366472e-01,
       7.65032020e-01, 7.65032020e-01, 7.65032020e-01, 7.65032020e-01,
       7.91929802e-01, 7.91929802e-01, 7.91929802e-01, 7.91929802e-01,
       8.44879000e-01, 8.44879000e-01, 8.44879000e-01, 8.44879000e-01,
       9.27961552e-01, 9.27961552e-01, 9.27961552e-01, 9.27961552e-01,
       1.03376284e+00, 1.03376284e+00, 1.03376284e+00, 1.03376284e+00,
       1.14223005e+00, 1.14223005e+00, 1.14223005e+00, 1.14223005e+00,
       1.24703626e+00, 1.24703626e+00, 1.24703626e+00, 1.24703626e+00,
       1.31835154e+00, 1.31835154e+00, 1.31835154e+00, 1.31835154e+00,
       1.35115729e+00, 1.35115729e+00, 1.35115729e+00, 1.35115729e+00,
       1.35952683e+00, 1.35952683e+00, 1.35952683e+00, 1.35952683e+00,
       1.36000050e+00, 1.36000050e+00, 1.36000050e+00, 1.36000050e+00,
       1.35946783e+00, 1.35946783e+00, 1.35946783e+00, 1.35946783e+00,
       1.35931504e+00, 1.35931504e+00, 1.35931504e+00, 1.35931504e+00,
       1.36014004e+00, 1.36014004e+00, 1.36014004e+00, 1.36014004e+00,
       1.36169449e+00, 1.36169449e+00, 1.36169449e+00, 1.36169449e+00,
       1.36442795e+00, 1.36442795e+00, 1.36442795e+00, 1.36442795e+00,
       1.36544109e+00, 1.36544109e+00, 1.36544109e+00, 1.36544109e+00,
       1.36179797e+00, 1.36179797e+00, 1.36179797e+00, 1.36179797e+00,
       1.33753550e+00, 1.33753550e+00, 1.33753550e+00, 1.33753550e+00,
       1.22289370e+00, 1.22289370e+00, 1.22289370e+00, 1.22289370e+00,
       8.07609730e-01, 8.07609730e-01, 8.07609730e-01, 8.07609730e-01,
       1.84578851e-01, 1.84578851e-01, 1.84578851e-01, 1.84578851e-01,
       1.72459356e-02, 1.72459356e-02, 1.72459356e-02, 1.72459356e-02,
       1.29636420e-03, 1.29636420e-03, 1.29636420e-03, 1.29636420e-03,
       9.56231757e-05, 9.56231757e-05, 9.56231757e-05, 9.56231757e-05,
       7.03861571e-06, 7.03861571e-06, 7.03861571e-06, 7.03861571e-06,
       5.17203032e-07, 5.17203032e-07, 5.17203032e-07, 5.17203032e-07,
       3.79012480e-08, 3.79012480e-08, 3.79012480e-08, 3.79012480e-08,
       2.76477945e-09, 2.76477945e-09, 2.76477945e-09, 2.76477945e-09,
       2.00229731e-10, 2.00229731e-10, 2.00229731e-10, 2.00229731e-10,
       1.43439296e-11, 1.43439296e-11, 1.43439296e-11, 1.43439296e-11,
       1.01180886e-12, 1.01180886e-12, 1.01180886e-12, 1.01180886e-12,
       6.98829576e-14, 6.98829576e-14, 6.98829576e-14, 6.98829576e-14,
       4.66606318e-15, 4.66606318e-15, 4.66606318e-15, 4.66606318e-15,
       3.37838020e-16, 3.37838020e-16, 3.37838020e-16, 3.37838020e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.9999999 , 0.9999999 , 0.9999999 ,
       0.9999999 , 0.99999916, 0.99999916, 0.99999916, 0.99999916,
       0.99999363, 0.99999363, 0.99999363, 0.99999363, 0.99995747,
       0.99995747, 0.99995747, 0.99995747, 0.99975257, 0.99975257,
       0.99975257, 0.99975257, 0.99876684, 0.99876684, 0.99876684,
       0.99876684, 0.99484634, 0.99484634, 0.99484634, 0.99484634,
       0.98236786, 0.98236786, 0.98236786, 0.98236786, 0.95157745,
       0.95157745, 0.95157745, 0.95157745, 0.89364753, 0.89364753,
       0.89364753, 0.89364753, 0.80925164, 0.80925164, 0.80925164,
       0.80925164, 0.70985244, 0.70985244, 0.70985244, 0.70985244,
       0.61872344, 0.61872344, 0.61872344, 0.61872344, 0.54078556,
       0.54078556, 0.54078556, 0.54078556, 0.49293771, 0.49293771,
       0.49293771, 0.49293771, 0.47368455, 0.47368455, 0.47368455,
       0.47368455, 0.46885678, 0.46885678, 0.46885678, 0.46885678,
       0.46721006, 0.46721006, 0.46721006, 0.46721006, 0.46578019,
       0.46578019, 0.46578019, 0.46578019, 0.46443757, 0.46443757,
       0.46443757, 0.46443757, 0.46363693, 0.46363693, 0.46363693,
       0.46363693, 0.46405796, 0.46405796, 0.46405796, 0.46405796,
       0.46529802, 0.46529802, 0.46529802, 0.46529802, 0.46568405,
       0.46568405, 0.46568405, 0.46568405, 0.46436586, 0.46436586,
       0.46436586, 0.46436586, 0.45372193, 0.45372193, 0.45372193,
       0.45372193, 0.40428218, 0.40428218, 0.40428218, 0.40428218,
       0.26242895, 0.26242895, 0.26242895, 0.26242895, 0.12688139,
       0.12688139, 0.12688139, 0.12688139, 0.10229679, 0.10229679,
       0.10229679, 0.10229679, 0.10017155, 0.10017155, 0.10017155,
       0.10017155, 0.10001265, 0.10001265, 0.10001265, 0.10001265,
       0.10000093, 0.10000093, 0.10000093, 0.10000093, 0.10000007,
       0.10000007, 0.10000007, 0.10000007, 0.10000001, 0.10000001,
       0.10000001, 0.10000001, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999988, 0.99999988, 0.99999988,
       0.99999988, 0.99999902, 0.99999902, 0.99999902, 0.99999902,
       0.99999302, 0.99999302, 0.99999302, 0.99999302, 0.99995587,
       0.99995587, 0.99995587, 0.99995587, 0.99975682, 0.99975682,
       0.99975682, 0.99975682, 0.99885188, 0.99885188, 0.99885188,
       0.99885188, 0.99545106, 0.99545106, 0.99545106, 0.99545106,
       0.98520362, 0.98520362, 0.98520362, 0.98520362, 0.96110441,
       0.96110441, 0.96110441, 0.96110441, 0.91728156, 0.91728156,
       0.91728156, 0.91728156, 0.85427981, 0.85427981, 0.85427981,
       0.85427981, 0.77971476, 0.77971476, 0.77971476, 0.77971476,
       0.71287025, 0.71287025, 0.71287025, 0.71287025, 0.64564457,
       0.64564457, 0.64564457, 0.64564457, 0.59826562, 0.59826562,
       0.59826562, 0.59826562, 0.58691045, 0.58691045, 0.58691045,
       0.58691045, 0.58906206, 0.58906206, 0.58906206, 0.58906206,
       0.59003485, 0.59003485, 0.59003485, 0.59003485, 0.58486504,
       0.58486504, 0.58486504, 0.58486504, 0.56744401, 0.56744401,
       0.56744401, 0.56744401, 0.53390234, 0.53390234, 0.53390234,
       0.53390234, 0.48345644, 0.48345644, 0.48345644, 0.48345644,
       0.41935629, 0.41935629, 0.41935629, 0.41935629, 0.3694156 ,
       0.3694156 , 0.3694156 , 0.3694156 , 0.34157081, 0.34157081,
       0.34157081, 0.34157081, 0.3267349 , 0.3267349 , 0.3267349 ,
       0.3267349 , 0.31430765, 0.31430765, 0.31430765, 0.31430765,
       0.28309759, 0.28309759, 0.28309759, 0.28309759, 0.19541361,
       0.19541361, 0.19541361, 0.19541361, 0.13508752, 0.13508752,
       0.13508752, 0.13508752, 0.12589416, 0.12589416, 0.12589416,
       0.12589416, 0.12506897, 0.12506897, 0.12506897, 0.12506897,
       0.12500514, 0.12500514, 0.12500514, 0.12500514, 0.12500038,
       0.12500038, 0.12500038, 0.12500038, 0.12500003, 0.12500003,
       0.12500003, 0.12500003, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
       7.50000144e-01, 7.50000144e-01, 7.50000144e-01, 7.50000144e-01,
       7.50001154e-01, 7.50001154e-01, 7.50001154e-01, 7.50001154e-01,
       7.50008260e-01, 7.50008260e-01, 7.50008260e-01, 7.50008260e-01,
       7.50052218e-01, 7.50052218e-01, 7.50052218e-01, 7.50052218e-01,
       7.50287727e-01, 7.50287727e-01, 7.50287727e-01, 7.50287727e-01,
       7.51358635e-01, 7.51358635e-01, 7.51358635e-01, 7.51358635e-01,
       7.55388706e-01, 7.55388706e-01, 7.55388706e-01, 7.55388706e-01,
       7.67599601e-01, 7.67599601e-01, 7.67599601e-01, 7.67599601e-01,
       7.96765297e-01, 7.96765297e-01, 7.96765297e-01, 7.96765297e-01,
       8.51520678e-01, 8.51520678e-01, 8.51520678e-01, 8.51520678e-01,
       9.34344216e-01, 9.34344216e-01, 9.34344216e-01, 9.34344216e-01,
       1.03659724e+00, 1.03659724e+00, 1.03659724e+00, 1.03659724e+00,
       1.14096365e+00, 1.14096365e+00, 1.14096365e+00, 1.14096365e+00,
       1.24306837e+00, 1.24306837e+00, 1.24306837e+00, 1.24306837e+00,
       1.31432670e+00, 1.31432670e+00, 1.31432670e+00, 1.31432670e+00,
       1.34867754e+00, 1.34867754e+00, 1.34867754e+00, 1.34867754e+00,
       1.35900751e+00, 1.35900751e+00, 1.35900751e+00, 1.35900751e+00,
       1.36059408e+00, 1.36059408e+00, 1.36059408e+00, 1.36059408e+00,
       1.36044668e+00, 1.36044668e+00, 1.36044668e+00, 1.36044668e+00,
       1.36010596e+00, 1.36010596e+00, 1.36010596e+00, 1.36010596e+00,
       1.36018463e+00, 1.36018463e+00, 1.36018463e+00, 1.36018463e+00,
       1.36083030e+00, 1.36083030e+00, 1.36083030e+00, 1.36083030e+00,
       1.36234837e+00, 1.36234837e+00, 1.36234837e+00, 1.36234837e+00,
       1.36463009e+00, 1.36463009e+00, 1.36463009e+00, 1.36463009e+00,
       1.36410988e+00, 1.36410988e+00, 1.36410988e+00, 1.36410988e+00,
       1.35701598e+00, 1.35701598e+00, 1.35701598e+00, 1.35701598e+00,
       1.31740523e+00, 1.31740523e+00, 1.31740523e+00, 1.31740523e+00,
       1.13985851e+00, 1.13985851e+00, 1.13985851e+00, 1.13985851e+00,
       6.02207928e-01, 6.02207928e-01, 6.02207928e-01, 6.02207928e-01,
       9.54826887e-02, 9.54826887e-02, 9.54826887e-02, 9.54826887e-02,
       7.91081899e-03, 7.91081899e-03, 7.91081899e-03, 7.91081899e-03,
       5.90658670e-04, 5.90658670e-04, 5.90658670e-04, 5.90658670e-04,
       4.36023608e-05, 4.36023608e-05, 4.36023608e-05, 4.36023608e-05,
       3.20991156e-06, 3.20991156e-06, 3.20991156e-06, 3.20991156e-06,
       2.35963719e-07, 2.35963719e-07, 2.35963719e-07, 2.35963719e-07,
       1.73040175e-08, 1.73040175e-08, 1.73040175e-08, 1.73040175e-08,
       1.26389111e-09, 1.26389111e-09, 1.26389111e-09, 1.26389111e-09,
       9.17314216e-11, 9.17314216e-11, 9.17314216e-11, 9.17314216e-11,
       6.59454231e-12, 6.59454231e-12, 6.59454231e-12, 6.59454231e-12,
       4.67644782e-13, 4.67644782e-13, 4.67644782e-13, 4.67644782e-13,
       3.25389011e-14, 3.25389011e-14, 3.25389011e-14, 3.25389011e-14,
       2.17274114e-15, 2.17274114e-15, 2.17274114e-15, 2.17274114e-15,
       1.63514197e-16, 1.63514197e-16, 1.63514197e-16, 1.63514197e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.99999983, 0.99999983, 0.99999983,
       0.99999983, 0.99999863, 0.99999863, 0.99999863, 0.99999863,
       0.99999023, 0.99999023, 0.99999023, 0.99999023, 0.99993822,
       0.99993822, 0.99993822, 0.99993822, 0.99965961, 0.99965961,
       0.99965961, 0.99965961, 0.99839366, 0.99839366, 0.99839366,
       0.99839366, 0.99364361, 0.99364361, 0.99364361, 0.99364361,
       0.9793869 , 0.9793869 , 0.9793869 , 0.9793869 , 0.94613945,
       0.94613945, 0.94613945, 0.94613945, 0.88659682, 0.88659682,
       0.88659682, 0.88659682, 0.80299287, 0.80299287, 0.80299287,
       0.80299287, 0.70694993, 0.70694993, 0.70694993, 0.70694993,
       0.61957684, 0.61957684, 0.61957684, 0.61957684, 0.54392052,
       0.54392052, 0.54392052, 0.54392052, 0.49542686, 0.49542686,
       0.49542686, 0.49542686, 0.47445103, 0.47445103, 0.47445103,
       0.47445103, 0.46915145, 0.46915145, 0.46915145, 0.46915145,
       0.46775039, 0.46775039, 0.46775039, 0.46775039, 0.4664833 ,
       0.4664833 , 0.4664833 , 0.4664833 , 0.46501843, 0.46501843,
       0.46501843, 0.46501843, 0.46374393, 0.46374393, 0.46374393,
       0.46374393, 0.46361884, 0.46361884, 0.46361884, 0.46361884,
       0.46424828, 0.46424828, 0.46424828, 0.46424828, 0.46530062,
       0.46530062, 0.46530062, 0.46530062, 0.46544329, 0.46544329,
       0.46544329, 0.46544329, 0.46257326, 0.46257326, 0.46257326,
       0.46257326, 0.44471278, 0.44471278, 0.44471278, 0.44471278,
       0.37244248, 0.37244248, 0.37244248, 0.37244248, 0.20801386,
       0.20801386, 0.20801386, 0.20801386, 0.11324933, 0.11324933,
       0.11324933, 0.11324933, 0.10104929, 0.10104929, 0.10104929,
       0.10104929, 0.10007815, 0.10007815, 0.10007815, 0.10007815,
       0.10000577, 0.10000577, 0.10000577, 0.10000577, 0.10000042,
       0.10000042, 0.10000042, 0.10000042, 0.10000003, 0.10000003,
       0.10000003, 0.10000003, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.9999998 , 0.9999998 , 0.9999998 ,
       0.9999998 , 0.99999846, 0.99999846, 0.99999846, 0.99999846,
       0.99998952, 0.99998952, 0.99998952, 0.99998952, 0.99993714,
       0.99993714, 0.99993714, 0.99993714, 0.99967122, 0.99967122,
       0.99967122, 0.99967122, 0.99852689, 0.99852689, 0.99852689,
       0.99852689, 0.99446052, 0.99446052, 0.99446052, 0.99446052,
       0.98287516, 0.98287516, 0.98287516, 0.98287516, 0.95703951,
       0.95703951, 0.95703951, 0.95703951, 0.91215643, 0.91215643,
       0.91215643, 0.91215643, 0.8497645 , 0.8497645 , 0.8497645 ,
       0.8497645 , 0.77754676, 0.77754676, 0.77754676, 0.77754676,
       0.71330927, 0.71330927, 0.71330927, 0.71330927, 0.64997203,
       0.64997203, 0.64997203, 0.64997203, 0.60097098, 0.60097098,
       0.60097098, 0.60097098, 0.58535154, 0.58535154, 0.58535154,
       0.58535154, 0.58659819, 0.58659819, 0.58659819, 0.58659819,
       0.58934885, 0.58934885, 0.58934885, 0.58934885, 0.58736059,
       0.58736059, 0.58736059, 0.58736059, 0.57621724, 0.57621724,
       0.57621724, 0.57621724, 0.55034135, 0.55034135, 0.55034135,
       0.55034135, 0.50742676, 0.50742676, 0.50742676, 0.50742676,
       0.44761191, 0.44761191, 0.44761191, 0.44761191, 0.38816796,
       0.38816796, 0.38816796, 0.38816796, 0.35214391, 0.35214391,
       0.35214391, 0.35214391, 0.3335225 , 0.3335225 , 0.3335225 ,
       0.3335225 , 0.32286182, 0.32286182, 0.32286182, 0.32286182,
       0.30990165, 0.30990165, 0.30990165, 0.30990165, 0.26354073,
       0.26354073, 0.26354073, 0.26354073, 0.16798532, 0.16798532,
       0.16798532, 0.16798532, 0.1299533 , 0.1299533 , 0.1299533 ,
       0.1299533 , 0.12541416, 0.12541416, 0.12541416, 0.12541416,
       0.12503153, 0.12503153, 0.12503153, 0.12503153, 0.12500234,
       0.12500234, 0.12500234, 0.12500234, 0.12500017, 0.12500017,
       0.12500017, 0.12500017, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
       7.50000240e-01, 7.50000240e-01, 7.50000240e-01, 7.50000240e-01,
       7.50001825e-01, 7.50001825e-01, 7.50001825e-01, 7.50001825e-01,
       7.50012395e-01, 7.50012395e-01, 7.50012395e-01, 7.50012395e-01,
       7.50074381e-01, 7.50074381e-01, 7.50074381e-01, 7.50074381e-01,
       7.50389013e-01, 7.50389013e-01, 7.50389013e-01, 7.50389013e-01,
       7.51743396e-01, 7.51743396e-01, 7.51743396e-01, 7.51743396e-01,
       7.56564809e-01, 7.56564809e-01, 7.56564809e-01, 7.56564809e-01,
       7.70391197e-01, 7.70391197e-01, 7.70391197e-01, 7.70391197e-01,
       8.01753316e-01, 8.01753316e-01, 8.01753316e-01, 8.01753316e-01,
       8.58071057e-01, 8.58071057e-01, 8.58071057e-01, 8.58071057e-01,
       9.40417104e-01, 9.40417104e-01, 9.40417104e-01, 9.40417104e-01,
       1.03928138e+00, 1.03928138e+00, 1.03928138e+00, 1.03928138e+00,
       1.13970389e+00, 1.13970389e+00, 1.13970389e+00, 1.13970389e+00,
       1.23914812e+00, 1.23914812e+00, 1.23914812e+00, 1.23914812e+00,
       1.31054875e+00, 1.31054875e+00, 1.31054875e+00, 1.31054875e+00,
       1.34625395e+00, 1.34625395e+00, 1.34625395e+00, 1.34625395e+00,
       1.35799687e+00, 1.35799687e+00, 1.35799687e+00, 1.35799687e+00,
       1.36074574e+00, 1.36074574e+00, 1.36074574e+00, 1.36074574e+00,
       1.36111035e+00, 1.36111035e+00, 1.36111035e+00, 1.36111035e+00,
       1.36105209e+00, 1.36105209e+00, 1.36105209e+00, 1.36105209e+00,
       1.36078907e+00, 1.36078907e+00, 1.36078907e+00, 1.36078907e+00,
       1.36071354e+00, 1.36071354e+00, 1.36071354e+00, 1.36071354e+00,
       1.36126545e+00, 1.36126545e+00, 1.36126545e+00, 1.36126545e+00,
       1.36293306e+00, 1.36293306e+00, 1.36293306e+00, 1.36293306e+00,
       1.36391003e+00, 1.36391003e+00, 1.36391003e+00, 1.36391003e+00,
       1.36223548e+00, 1.36223548e+00, 1.36223548e+00, 1.36223548e+00,
       1.35001289e+00, 1.35001289e+00, 1.35001289e+00, 1.35001289e+00,
       1.28580407e+00, 1.28580407e+00, 1.28580407e+00, 1.28580407e+00,
       1.02083102e+00, 1.02083102e+00, 1.02083102e+00, 1.02083102e+00,
       3.92354167e-01, 3.92354167e-01, 3.92354167e-01, 3.92354167e-01,
       4.60233453e-02, 4.60233453e-02, 4.60233453e-02, 4.60233453e-02,
       3.61135389e-03, 3.61135389e-03, 3.61135389e-03, 3.61135389e-03,
       2.68870213e-04, 2.68870213e-04, 2.68870213e-04, 2.68870213e-04,
       1.98606715e-05, 1.98606715e-05, 1.98606715e-05, 1.98606715e-05,
       1.46364464e-06, 1.46364464e-06, 1.46364464e-06, 1.46364464e-06,
       1.07646738e-07, 1.07646738e-07, 1.07646738e-07, 1.07646738e-07,
       7.89913828e-09, 7.89913828e-09, 7.89913828e-09, 7.89913828e-09,
       5.77602003e-10, 5.77602003e-10, 5.77602003e-10, 5.77602003e-10,
       4.20009750e-11, 4.20009750e-11, 4.20009750e-11, 4.20009750e-11,
       3.02859296e-12, 3.02859296e-12, 3.02859296e-12, 3.02859296e-12,
       2.15774482e-13, 2.15774482e-13, 2.15774482e-13, 2.15774482e-13,
       1.50503680e-14, 1.50503680e-14, 1.50503680e-14, 1.50503680e-14,
       1.05328765e-15, 1.05328765e-15, 1.05328765e-15, 1.05328765e-15,
       5.90101831e-17, 5.90101831e-17, 5.90101831e-17, 5.90101831e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999997, 0.99999997,
       0.99999997, 0.99999997, 0.99999972, 0.99999972, 0.99999972,
       0.99999972, 0.99999784, 0.99999784, 0.99999784, 0.99999784,
       0.99998533, 0.99998533, 0.99998533, 0.99998533, 0.999912  ,
       0.999912  , 0.999912  , 0.999912  , 0.99953981, 0.99953981,
       0.99953981, 0.99953981, 0.99793921, 0.99793921, 0.99793921,
       0.99793921, 0.99226162, 0.99226162, 0.99226162, 0.99226162,
       0.97615575, 0.97615575, 0.97615575, 0.97615575, 0.94055943,
       0.94055943, 0.94055943, 0.94055943, 0.87968697, 0.87968697,
       0.87968697, 0.87968697, 0.7970675 , 0.7970675 , 0.7970675 ,
       0.7970675 , 0.7043173 , 0.7043173 , 0.7043173 , 0.7043173 ,
       0.62032421, 0.62032421, 0.62032421, 0.62032421, 0.54686006,
       0.54686006, 0.54686006, 0.54686006, 0.49810099, 0.49810099,
       0.49810099, 0.49810099, 0.47541418, 0.47541418, 0.47541418,
       0.47541418, 0.46923871, 0.46923871, 0.46923871, 0.46923871,
       0.46803173, 0.46803173, 0.46803173, 0.46803173, 0.46700788,
       0.46700788, 0.46700788, 0.46700788, 0.46571924, 0.46571924,
       0.46571924, 0.46571924, 0.4641767 , 0.4641767 , 0.4641767 ,
       0.4641767 , 0.46358808, 0.46358808, 0.46358808, 0.46358808,
       0.46369014, 0.46369014, 0.46369014, 0.46369014, 0.46447516,
       0.46447516, 0.46447516, 0.46447516, 0.46535017, 0.46535017,
       0.46535017, 0.46535017, 0.46498179, 0.46498179, 0.46498179,
       0.46498179, 0.45937493, 0.45937493, 0.45937493, 0.45937493,
       0.43093306, 0.43093306, 0.43093306, 0.43093306, 0.32993773,
       0.32993773, 0.32993773, 0.32993773, 0.16285786, 0.16285786,
       0.16285786, 0.16285786, 0.10621868, 0.10621868, 0.10621868,
       0.10621868, 0.10047825, 0.10047825, 0.10047825, 0.10047825,
       0.10003557, 0.10003557, 0.10003557, 0.10003557, 0.10000263,
       0.10000263, 0.10000263, 0.10000263, 0.10000019, 0.10000019,
       0.10000019, 0.10000019, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999996, 0.99999996,
       0.99999996, 0.99999996, 0.99999967, 0.99999967, 0.99999967,
       0.99999967, 0.99999762, 0.99999762, 0.99999762, 0.99999762,
       0.99998459, 0.99998459, 0.99998459, 0.99998459, 0.99991206,
       0.99991206, 0.99991206, 0.99991206, 0.99956257, 0.99956257,
       0.99956257, 0.99956257, 0.99813629, 0.99813629, 0.99813629,
       0.99813629, 0.99333466, 0.99333466, 0.99333466, 0.99333466,
       0.98037152, 0.98037152, 0.98037152, 0.98037152, 0.9528877 ,
       0.9528877 , 0.9528877 , 0.9528877 , 0.90714025, 0.90714025,
       0.90714025, 0.90714025, 0.84549133, 0.84549133, 0.84549133,
       0.84549133, 0.7755971 , 0.7755971 , 0.7755971 , 0.7755971 ,
       0.71345002, 0.71345002, 0.71345002, 0.71345002, 0.65381042,
       0.65381042, 0.65381042, 0.65381042, 0.60449037, 0.60449037,
       0.60449037, 0.60449037, 0.58459071, 0.58459071, 0.58459071,
       0.58459071, 0.58451904, 0.58451904, 0.58451904, 0.58451904,
       0.58778013, 0.58778013, 0.58778013, 0.58778013, 0.58801938,
       0.58801938, 0.58801938, 0.58801938, 0.58183243, 0.58183243,
       0.58183243, 0.58183243, 0.56319798, 0.56319798, 0.56319798,
       0.56319798, 0.52817231, 0.52817231, 0.52817231, 0.52817231,
       0.47570938, 0.47570938, 0.47570938, 0.47570938, 0.41147965,
       0.41147965, 0.41147965, 0.41147965, 0.36562289, 0.36562289,
       0.36562289, 0.36562289, 0.34085096, 0.34085096, 0.34085096,
       0.34085096, 0.32857429, 0.32857429, 0.32857429, 0.32857429,
       0.32046461, 0.32046461, 0.32046461, 0.32046461, 0.30277278,
       0.30277278, 0.30277278, 0.30277278, 0.23628223, 0.23628223,
       0.23628223, 0.23628223, 0.14837728, 0.14837728, 0.14837728,
       0.14837728, 0.12738162, 0.12738162, 0.12738162, 0.12738162,
       0.12519072, 0.12519072, 0.12519072, 0.12519072, 0.12501437,
       0.12501437, 0.12501437, 0.12501437, 0.12500107, 0.12500107,
       0.12500107, 0.12500107, 0.12500008, 0.12500008, 0.12500008,
       0.12500008, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
       7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
       7.50000390e-01, 7.50000390e-01, 7.50000390e-01, 7.50000390e-01,
       7.50002822e-01, 7.50002822e-01, 7.50002822e-01, 7.50002822e-01,
       7.50018229e-01, 7.50018229e-01, 7.50018229e-01, 7.50018229e-01,
       7.50104049e-01, 7.50104049e-01, 7.50104049e-01, 7.50104049e-01,
       7.50517585e-01, 7.50517585e-01, 7.50517585e-01, 7.50517585e-01,
       7.52205977e-01, 7.52205977e-01, 7.52205977e-01, 7.52205977e-01,
       7.57902857e-01, 7.57902857e-01, 7.57902857e-01, 7.57902857e-01,
       7.73399599e-01, 7.73399599e-01, 7.73399599e-01, 7.73399599e-01,
       8.06867047e-01, 8.06867047e-01, 8.06867047e-01, 8.06867047e-01,
       8.64509234e-01, 8.64509234e-01, 8.64509234e-01, 8.64509234e-01,
       9.46188008e-01, 9.46188008e-01, 9.46188008e-01, 9.46188008e-01,
       1.04182143e+00, 1.04182143e+00, 1.04182143e+00, 1.04182143e+00,
       1.13851947e+00, 1.13851947e+00, 1.13851947e+00, 1.13851947e+00,
       1.23521943e+00, 1.23521943e+00, 1.23521943e+00, 1.23521943e+00,
       1.30684121e+00, 1.30684121e+00, 1.30684121e+00, 1.30684121e+00,
       1.34402276e+00, 1.34402276e+00, 1.34402276e+00, 1.34402276e+00,
       1.35679818e+00, 1.35679818e+00, 1.35679818e+00, 1.35679818e+00,
       1.36042879e+00, 1.36042879e+00, 1.36042879e+00, 1.36042879e+00,
       1.36144375e+00, 1.36144375e+00, 1.36144375e+00, 1.36144375e+00,
       1.36176750e+00, 1.36176750e+00, 1.36176750e+00, 1.36176750e+00,
       1.36169308e+00, 1.36169308e+00, 1.36169308e+00, 1.36169308e+00,
       1.36111048e+00, 1.36111048e+00, 1.36111048e+00, 1.36111048e+00,
       1.36105105e+00, 1.36105105e+00, 1.36105105e+00, 1.36105105e+00,
       1.36162469e+00, 1.36162469e+00, 1.36162469e+00, 1.36162469e+00,
       1.36281678e+00, 1.36281678e+00, 1.36281678e+00, 1.36281678e+00,
       1.36293589e+00, 1.36293589e+00, 1.36293589e+00, 1.36293589e+00,
       1.35989169e+00, 1.35989169e+00, 1.35989169e+00, 1.35989169e+00,
       1.33857964e+00, 1.33857964e+00, 1.33857964e+00, 1.33857964e+00,
       1.23678480e+00, 1.23678480e+00, 1.23678480e+00, 1.23678480e+00,
       8.59426221e-01, 8.59426221e-01, 8.59426221e-01, 8.59426221e-01,
       2.22121850e-01, 2.22121850e-01, 2.22121850e-01, 2.22121850e-01,
       2.16158662e-02, 2.16158662e-02, 2.16158662e-02, 2.16158662e-02,
       1.64641832e-03, 1.64641832e-03, 1.64641832e-03, 1.64641832e-03,
       1.22204390e-04, 1.22204390e-04, 1.22204390e-04, 1.22204390e-04,
       9.04194482e-06, 9.04194482e-06, 9.04194482e-06, 9.04194482e-06,
       6.67040993e-07, 6.67040993e-07, 6.67040993e-07, 6.67040993e-07,
       4.90964691e-08, 4.90964691e-08, 4.90964691e-08, 4.90964691e-08,
       3.60523547e-09, 3.60523547e-09, 3.60523547e-09, 3.60523547e-09,
       2.63885888e-10, 2.63885888e-10, 2.63885888e-10, 2.63885888e-10,
       1.92204794e-11, 1.92204794e-11, 1.92204794e-11, 1.92204794e-11,
       1.38961104e-12, 1.38961104e-12, 1.38961104e-12, 1.38961104e-12,
       9.92868582e-14, 9.92868582e-14, 9.92868582e-14, 9.92868582e-14,
       7.03275916e-15, 7.03275916e-15, 7.03275916e-15, 7.03275916e-15,
       5.17027335e-16, 5.17027335e-16, 5.17027335e-16, 5.17027335e-16,
       3.42591394e-17, 3.42591394e-17, 3.42591394e-17, 3.42591394e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999994, 0.99999994,
       0.99999994, 0.99999994, 0.99999954, 0.99999954, 0.99999954,
       0.99999954, 0.99999666, 0.99999666, 0.99999666, 0.99999666,
       0.99997843, 0.99997843, 0.99997843, 0.99997843, 0.99987689,
       0.99987689, 0.99987689, 0.99987689, 0.99938776, 0.99938776,
       0.99938776, 0.99938776, 0.99739311, 0.99739311, 0.99739311,
       0.99739311, 0.99069162, 0.99069162, 0.99069162, 0.99069162,
       0.97268505, 0.97268505, 0.97268505, 0.97268505, 0.93486932,
       0.93486932, 0.93486932, 0.93486932, 0.87293717, 0.87293717,
       0.87293717, 0.87293717, 0.79146304, 0.79146304, 0.79146304,
       0.79146304, 0.70191535, 0.70191535, 0.70191535, 0.70191535,
       0.62102876, 0.62102876, 0.62102876, 0.62102876, 0.54957627,
       0.54957627, 0.54957627, 0.54957627, 0.50083599, 0.50083599,
       0.50083599, 0.50083599, 0.47665599, 0.47665599, 0.47665599,
       0.47665599, 0.46931339, 0.46931339, 0.46931339, 0.46931339,
       0.4680499 , 0.4680499 , 0.4680499 , 0.4680499 , 0.46732564,
       0.46732564, 0.46732564, 0.46732564, 0.46628964, 0.46628964,
       0.46628964, 0.46628964, 0.46482191, 0.46482191, 0.46482191,
       0.46482191, 0.46383924, 0.46383924, 0.46383924, 0.46383924,
       0.46359009, 0.46359009, 0.46359009, 0.46359009, 0.46381923,
       0.46381923, 0.46381923, 0.46381923, 0.46482679, 0.46482679,
       0.46482679, 0.46482679, 0.46530733, 0.46530733, 0.46530733,
       0.46530733, 0.46390266, 0.46390266, 0.46390266, 0.46390266,
       0.45436119, 0.45436119, 0.45436119, 0.45436119, 0.41039534,
       0.41039534, 0.41039534, 0.41039534, 0.27755879, 0.27755879,
       0.27755879, 0.27755879, 0.13288495, 0.13288495, 0.13288495,
       0.13288495, 0.10288468, 0.10288468, 0.10288468, 0.10288468,
       0.1002179 , 0.1002179 , 0.1002179 , 0.1002179 , 0.10001617,
       0.10001617, 0.10001617, 0.10001617, 0.1000012 , 0.1000012 ,
       0.1000012 , 0.1000012 , 0.10000009, 0.10000009, 0.10000009,
       0.10000009, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999993, 0.99999993,
       0.99999993, 0.99999993, 0.99999948, 0.99999948, 0.99999948,
       0.99999948, 0.99999639, 0.99999639, 0.99999639, 0.99999639,
       0.99997776, 0.99997776, 0.99997776, 0.99997776, 0.99987902,
       0.99987902, 0.99987902, 0.99987902, 0.99942658, 0.99942658,
       0.99942658, 0.99942658, 0.99767258, 0.99767258, 0.99767258,
       0.99767258, 0.99206839, 0.99206839, 0.99206839, 0.99206839,
       0.97770184, 0.97770184, 0.97770184, 0.97770184, 0.94867108,
       0.94867108, 0.94867108, 0.94867108, 0.90224525, 0.90224525,
       0.90224525, 0.90224525, 0.84145258, 0.84145258, 0.84145258,
       0.84145258, 0.77386505, 0.77386505, 0.77386505, 0.77386505,
       0.71340462, 0.71340462, 0.71340462, 0.71340462, 0.65703975,
       0.65703975, 0.65703975, 0.65703975, 0.60849329, 0.60849329,
       0.60849329, 0.60849329, 0.58468831, 0.58468831, 0.58468831,
       0.58468831, 0.58294187, 0.58294187, 0.58294187, 0.58294187,
       0.58573115, 0.58573115, 0.58573115, 0.58573115, 0.58763646,
       0.58763646, 0.58763646, 0.58763646, 0.58482843, 0.58482843,
       0.58482843, 0.58482843, 0.57251091, 0.57251091, 0.57251091,
       0.57251091, 0.54537817, 0.54537817, 0.54537817, 0.54537817,
       0.50073074, 0.50073074, 0.50073074, 0.50073074, 0.4391213 ,
       0.4391213 , 0.4391213 , 0.4391213 , 0.38293704, 0.38293704,
       0.38293704, 0.38293704, 0.35013347, 0.35013347, 0.35013347,
       0.35013347, 0.33368088, 0.33368088, 0.33368088, 0.33368088,
       0.32582494, 0.32582494, 0.32582494, 0.32582494, 0.31844833,
       0.31844833, 0.31844833, 0.31844833, 0.29046653, 0.29046653,
       0.29046653, 0.29046653, 0.20455633, 0.20455633, 0.20455633,
       0.20455633, 0.1372754 , 0.1372754 , 0.1372754 , 0.1372754 ,
       0.12612182, 0.12612182, 0.12612182, 0.12612182, 0.1250873 ,
       0.1250873 , 0.1250873 , 0.1250873 , 0.12500654, 0.12500654,
       0.12500654, 0.12500654, 0.12500049, 0.12500049, 0.12500049,
       0.12500049, 0.12500004, 0.12500004, 0.12500004, 0.12500004,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000010e-01, 7.50000010e-01, 7.50000010e-01, 7.50000010e-01,
       7.50000081e-01, 7.50000081e-01, 7.50000081e-01, 7.50000081e-01,
       7.50000620e-01, 7.50000620e-01, 7.50000620e-01, 7.50000620e-01,
       7.50004274e-01, 7.50004274e-01, 7.50004274e-01, 7.50004274e-01,
       7.50026313e-01, 7.50026313e-01, 7.50026313e-01, 7.50026313e-01,
       7.50143141e-01, 7.50143141e-01, 7.50143141e-01, 7.50143141e-01,
       7.50678514e-01, 7.50678514e-01, 7.50678514e-01, 7.50678514e-01,
       7.52755312e-01, 7.52755312e-01, 7.52755312e-01, 7.52755312e-01,
       7.59409383e-01, 7.59409383e-01, 7.59409383e-01, 7.59409383e-01,
       7.76615231e-01, 7.76615231e-01, 7.76615231e-01, 7.76615231e-01,
       8.12080151e-01, 8.12080151e-01, 8.12080151e-01, 8.12080151e-01,
       8.70817643e-01, 8.70817643e-01, 8.70817643e-01, 8.70817643e-01,
       9.51667486e-01, 9.51667486e-01, 9.51667486e-01, 9.51667486e-01,
       1.04421860e+00, 1.04421860e+00, 1.04421860e+00, 1.04421860e+00,
       1.13749267e+00, 1.13749267e+00, 1.13749267e+00, 1.13749267e+00,
       1.23129415e+00, 1.23129415e+00, 1.23129415e+00, 1.23129415e+00,
       1.30304219e+00, 1.30304219e+00, 1.30304219e+00, 1.30304219e+00,
       1.34192905e+00, 1.34192905e+00, 1.34192905e+00, 1.34192905e+00,
       1.35567521e+00, 1.35567521e+00, 1.35567521e+00, 1.35567521e+00,
       1.35980921e+00, 1.35980921e+00, 1.35980921e+00, 1.35980921e+00,
       1.36138601e+00, 1.36138601e+00, 1.36138601e+00, 1.36138601e+00,
       1.36219441e+00, 1.36219441e+00, 1.36219441e+00, 1.36219441e+00,
       1.36249996e+00, 1.36249996e+00, 1.36249996e+00, 1.36249996e+00,
       1.36190367e+00, 1.36190367e+00, 1.36190367e+00, 1.36190367e+00,
       1.36127546e+00, 1.36127546e+00, 1.36127546e+00, 1.36127546e+00,
       1.36128875e+00, 1.36128875e+00, 1.36128875e+00, 1.36128875e+00,
       1.36152144e+00, 1.36152144e+00, 1.36152144e+00, 1.36152144e+00,
       1.36239947e+00, 1.36239947e+00, 1.36239947e+00, 1.36239947e+00,
       1.36213183e+00, 1.36213183e+00, 1.36213183e+00, 1.36213183e+00,
       1.35586085e+00, 1.35586085e+00, 1.35586085e+00, 1.35586085e+00,
       1.32010356e+00, 1.32010356e+00, 1.32010356e+00, 1.32010356e+00,
       1.16287547e+00, 1.16287547e+00, 1.16287547e+00, 1.16287547e+00,
       6.61162492e-01, 6.61162492e-01, 6.61162492e-01, 6.61162492e-01,
       1.16351678e-01, 1.16351678e-01, 1.16351678e-01, 1.16351678e-01,
       9.97096672e-03, 9.97096672e-03, 9.97096672e-03, 9.97096672e-03,
       7.48552643e-04, 7.48552643e-04, 7.48552643e-04, 7.48552643e-04,
       5.55786565e-05, 5.55786565e-05, 5.55786565e-05, 5.55786565e-05,
       4.11419588e-06, 4.11419588e-06, 4.11419588e-06, 4.11419588e-06,
       3.03837917e-07, 3.03837917e-07, 3.03837917e-07, 3.03837917e-07,
       2.23849014e-08, 2.23849014e-08, 2.23849014e-08, 2.23849014e-08,
       1.64507675e-09, 1.64507675e-09, 1.64507675e-09, 1.64507675e-09,
       1.20527942e-10, 1.20527942e-10, 1.20527942e-10, 1.20527942e-10,
       8.79167161e-12, 8.79167161e-12, 8.79167161e-12, 8.79167161e-12,
       6.36916518e-13, 6.36916518e-13, 6.36916518e-13, 6.36916518e-13,
       4.58094779e-14, 4.58094779e-14, 4.58094779e-14, 4.58094779e-14,
       3.28064473e-15, 3.28064473e-15, 3.28064473e-15, 3.28064473e-15,
       2.21511670e-16, 2.21511670e-16, 2.21511670e-16, 2.21511670e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.9999999 , 0.9999999 ,
       0.9999999 , 0.9999999 , 0.99999927, 0.99999927, 0.99999927,
       0.99999927, 0.99999494, 0.99999494, 0.99999494, 0.99999494,
       0.99996887, 0.99996887, 0.99996887, 0.99996887, 0.99983065,
       0.99983065, 0.99983065, 0.99983065, 0.99919747, 0.99919747,
       0.99919747, 0.99919747, 0.99674497, 0.99674497, 0.99674497,
       0.99674497, 0.98892685, 0.98892685, 0.98892685, 0.98892685,
       0.96898818, 0.96898818, 0.96898818, 0.96898818, 0.92909988,
       0.92909988, 0.92909988, 0.92909988, 0.86636274, 0.86636274,
       0.86636274, 0.86636274, 0.7861649 , 0.7861649 , 0.7861649 ,
       0.7861649 , 0.69970743, 0.69970743, 0.69970743, 0.69970743,
       0.62175522, 0.62175522, 0.62175522, 0.62175522, 0.55208192,
       0.55208192, 0.55208192, 0.55208192, 0.50351395, 0.50351395,
       0.50351395, 0.50351395, 0.47813801, 0.47813801, 0.47813801,
       0.47813801, 0.46954374, 0.46954374, 0.46954374, 0.46954374,
       0.46791496, 0.46791496, 0.46791496, 0.46791496, 0.46740496,
       0.46740496, 0.46740496, 0.46740496, 0.466675  , 0.466675  ,
       0.466675  , 0.466675  , 0.46544862, 0.46544862, 0.46544862,
       0.46544862, 0.46432762, 0.46432762, 0.46432762, 0.46432762,
       0.46372285, 0.46372285, 0.46372285, 0.46372285, 0.46365147,
       0.46365147, 0.46365147, 0.46365147, 0.46418465, 0.46418465,
       0.46418465, 0.46418465, 0.46505548, 0.46505548, 0.46505548,
       0.46505548, 0.46493934, 0.46493934, 0.46493934, 0.46493934,
       0.46223591, 0.46223591, 0.46223591, 0.46223591, 0.44656565,
       0.44656565, 0.44656565, 0.44656565, 0.38108891, 0.38108891,
       0.38108891, 0.38108891, 0.22238569, 0.22238569, 0.22238569,
       0.22238569, 0.11633052, 0.11633052, 0.11633052, 0.11633052,
       0.10132364, 0.10132364, 0.10132364, 0.10132364, 0.10009904,
       0.10009904, 0.10009904, 0.10009904, 0.10000735, 0.10000735,
       0.10000735, 0.10000735, 0.10000054, 0.10000054, 0.10000054,
       0.10000054, 0.10000004, 0.10000004, 0.10000004, 0.10000004,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999989, 0.99999989,
       0.99999989, 0.99999989, 0.99999918, 0.99999918, 0.99999918,
       0.99999918, 0.99999463, 0.99999463, 0.99999463, 0.99999463,
       0.99996845, 0.99996845, 0.99996845, 0.99996845, 0.99983612,
       0.99983612, 0.99983612, 0.99983612, 0.9992586 , 0.9992586 ,
       0.9992586 , 0.9992586 , 0.99712842, 0.99712842, 0.99712842,
       0.99712842, 0.99065816, 0.99065816, 0.99065816, 0.99065816,
       0.97487697, 0.97487697, 0.97487697, 0.97487697, 0.94441074,
       0.94441074, 0.94441074, 0.94441074, 0.89748102, 0.89748102,
       0.89748102, 0.89748102, 0.83763755, 0.83763755, 0.83763755,
       0.83763755, 0.77233781, 0.77233781, 0.77233781, 0.77233781,
       0.7132907 , 0.7132907 , 0.7132907 , 0.7132907 , 0.65963706,
       0.65963706, 0.65963706, 0.65963706, 0.612651  , 0.612651  ,
       0.612651  , 0.612651  , 0.5857125 , 0.5857125 , 0.5857125 ,
       0.5857125 , 0.58169792, 0.58169792, 0.58169792, 0.58169792,
       0.5836328 , 0.5836328 , 0.5836328 , 0.5836328 , 0.58674094,
       0.58674094, 0.58674094, 0.58674094, 0.58596439, 0.58596439,
       0.58596439, 0.58596439, 0.57862616, 0.57862616, 0.57862616,
       0.57862616, 0.55885909, 0.55885909, 0.55885909, 0.55885909,
       0.52235302, 0.52235302, 0.52235302, 0.52235302, 0.46790255,
       0.46790255, 0.46790255, 0.46790255, 0.40461805, 0.40461805,
       0.40461805, 0.40461805, 0.36237207, 0.36237207, 0.36237207,
       0.36237207, 0.33984239, 0.33984239, 0.33984239, 0.33984239,
       0.32970398, 0.32970398, 0.32970398, 0.32970398, 0.32449566,
       0.32449566, 0.32449566, 0.32449566, 0.31491343, 0.31491343,
       0.31491343, 0.31491343, 0.2715366 , 0.2715366 , 0.2715366 ,
       0.2715366 , 0.17519676, 0.17519676, 0.17519676, 0.17519676,
       0.13110272, 0.13110272, 0.13110272, 0.13110272, 0.12551958,
       0.12551958, 0.12551958, 0.12551958, 0.12503987, 0.12503987,
       0.12503987, 0.12503987, 0.12500298, 0.12500298, 0.12500298,
       0.12500298, 0.12500022, 0.12500022, 0.12500022, 0.12500022,
       0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
       7.50000132e-01, 7.50000132e-01, 7.50000132e-01, 7.50000132e-01,
       7.50000966e-01, 7.50000966e-01, 7.50000966e-01, 7.50000966e-01,
       7.50006351e-01, 7.50006351e-01, 7.50006351e-01, 7.50006351e-01,
       7.50037333e-01, 7.50037333e-01, 7.50037333e-01, 7.50037333e-01,
       7.50193899e-01, 7.50193899e-01, 7.50193899e-01, 7.50193899e-01,
       7.50877324e-01, 7.50877324e-01, 7.50877324e-01, 7.50877324e-01,
       7.53400222e-01, 7.53400222e-01, 7.53400222e-01, 7.53400222e-01,
       7.61089231e-01, 7.61089231e-01, 7.61089231e-01, 7.61089231e-01,
       7.80026437e-01, 7.80026437e-01, 7.80026437e-01, 7.80026437e-01,
       8.17367158e-01, 8.17367158e-01, 8.17367158e-01, 8.17367158e-01,
       8.76981911e-01, 8.76981911e-01, 8.76981911e-01, 8.76981911e-01,
       9.56868187e-01, 9.56868187e-01, 9.56868187e-01, 9.56868187e-01,
       1.04646915e+00, 1.04646915e+00, 1.04646915e+00, 1.04646915e+00,
       1.13664890e+00, 1.13664890e+00, 1.13664890e+00, 1.13664890e+00,
       1.22747197e+00, 1.22747197e+00, 1.22747197e+00, 1.22747197e+00,
       1.29906860e+00, 1.29906860e+00, 1.29906860e+00, 1.29906860e+00,
       1.33980440e+00, 1.33980440e+00, 1.33980440e+00, 1.33980440e+00,
       1.35473761e+00, 1.35473761e+00, 1.35473761e+00, 1.35473761e+00,
       1.35912884e+00, 1.35912884e+00, 1.35912884e+00, 1.35912884e+00,
       1.36103279e+00, 1.36103279e+00, 1.36103279e+00, 1.36103279e+00,
       1.36224006e+00, 1.36224006e+00, 1.36224006e+00, 1.36224006e+00,
       1.36307271e+00, 1.36307271e+00, 1.36307271e+00, 1.36307271e+00,
       1.36277930e+00, 1.36277930e+00, 1.36277930e+00, 1.36277930e+00,
       1.36186954e+00, 1.36186954e+00, 1.36186954e+00, 1.36186954e+00,
       1.36140807e+00, 1.36140807e+00, 1.36140807e+00, 1.36140807e+00,
       1.36104332e+00, 1.36104332e+00, 1.36104332e+00, 1.36104332e+00,
       1.36139643e+00, 1.36139643e+00, 1.36139643e+00, 1.36139643e+00,
       1.36210857e+00, 1.36210857e+00, 1.36210857e+00, 1.36210857e+00,
       1.36065559e+00, 1.36065559e+00, 1.36065559e+00, 1.36065559e+00,
       1.34903815e+00, 1.34903815e+00, 1.34903815e+00, 1.34903815e+00,
       1.29211103e+00, 1.29211103e+00, 1.29211103e+00, 1.29211103e+00,
       1.05539569e+00, 1.05539569e+00, 1.05539569e+00, 1.05539569e+00,
       4.48123192e-01, 4.48123192e-01, 4.48123192e-01, 4.48123192e-01,
       5.68576756e-02, 5.68576756e-02, 5.68576756e-02, 5.68576756e-02,
       4.54568441e-03, 4.54568441e-03, 4.54568441e-03, 4.54568441e-03,
       3.40320288e-04, 3.40320288e-04, 3.40320288e-04, 3.40320288e-04,
       2.52658640e-05, 2.52658640e-05, 2.52658640e-05, 2.52658640e-05,
       1.87162703e-06, 1.87162703e-06, 1.87162703e-06, 1.87162703e-06,
       1.38344702e-07, 1.38344702e-07, 1.38344702e-07, 1.38344702e-07,
       1.02018842e-08, 1.02018842e-08, 1.02018842e-08, 1.02018842e-08,
       7.50419983e-10, 7.50419983e-10, 7.50419983e-10, 7.50419983e-10,
       5.50338981e-11, 5.50338981e-11, 5.50338981e-11, 5.50338981e-11,
       4.01951569e-12, 4.01951569e-12, 4.01951569e-12, 4.01951569e-12,
       2.91936804e-13, 2.91936804e-13, 2.91936804e-13, 2.91936804e-13,
       2.11199253e-14, 2.11199253e-14, 2.11199253e-14, 2.11199253e-14,
       1.47398293e-15, 1.47398293e-15, 1.47398293e-15, 1.47398293e-15,
       9.45362951e-17, 9.45362951e-17, 9.45362951e-17, 9.45362951e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999984, 0.99999984,
       0.99999984, 0.99999984, 0.99999886, 0.99999886, 0.99999886,
       0.99999886, 0.99999249, 0.99999249, 0.99999249, 0.99999249,
       0.99995583, 0.99995583, 0.99995583, 0.99995583, 0.9997706 ,
       0.9997706 , 0.9997706 , 0.9997706 , 0.99896245, 0.99896245,
       0.99896245, 0.99896245, 0.9959846 , 0.9959846 , 0.9959846 ,
       0.9959846 , 0.98696264, 0.98696264, 0.98696264, 0.98696264,
       0.96508085, 0.96508085, 0.96508085, 0.96508085, 0.92328027,
       0.92328027, 0.92328027, 0.92328027, 0.85997549, 0.85997549,
       0.85997549, 0.85997549, 0.78115703, 0.78115703, 0.78115703,
       0.78115703, 0.69766029, 0.69766029, 0.69766029, 0.69766029,
       0.62252492, 0.62252492, 0.62252492, 0.62252492, 0.55444993,
       0.55444993, 0.55444993, 0.55444993, 0.50606466, 0.50606466,
       0.50606466, 0.50606466, 0.4797491 , 0.4797491 , 0.4797491 ,
       0.4797491 , 0.47000142, 0.47000142, 0.47000142, 0.47000142,
       0.46778259, 0.46778259, 0.46778259, 0.46778259, 0.46731388,
       0.46731388, 0.46731388, 0.46731388, 0.46681772, 0.46681772,
       0.46681772, 0.46681772, 0.46594134, 0.46594134, 0.46594134,
       0.46594134, 0.46489255, 0.46489255, 0.46489255, 0.46489255,
       0.46406793, 0.46406793, 0.46406793, 0.46406793, 0.46371733,
       0.46371733, 0.46371733, 0.46371733, 0.46392827, 0.46392827,
       0.46392827, 0.46392827, 0.46457704, 0.46457704, 0.46457704,
       0.46457704, 0.4649299 , 0.4649299 , 0.4649299 , 0.4649299 ,
       0.464449  , 0.464449  , 0.464449  , 0.464449  , 0.45965373,
       0.45965373, 0.45965373, 0.45965373, 0.43413396, 0.43413396,
       0.43413396, 0.43413396, 0.3417067 , 0.3417067 , 0.3417067 ,
       0.3417067 , 0.17380695, 0.17380695, 0.17380695, 0.17380695,
       0.10772404, 0.10772404, 0.10772404, 0.10772404, 0.10060218,
       0.10060218, 0.10060218, 0.10060218, 0.10004502, 0.10004502,
       0.10004502, 0.10004502, 0.10000334, 0.10000334, 0.10000334,
       0.10000334, 0.10000025, 0.10000025, 0.10000025, 0.10000025,
       0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
       0.99999982, 0.99999982, 0.99999875, 0.99999875, 0.99999875,
       0.99999875, 0.99999216, 0.99999216, 0.99999216, 0.99999216,
       0.99995594, 0.99995594, 0.99995594, 0.99995594, 0.99978118,
       0.99978118, 0.99978118, 0.99978118, 0.99905363, 0.99905363,
       0.99905363, 0.99905363, 0.99649673, 0.99649673, 0.99649673,
       0.99649673, 0.98910195, 0.98910195, 0.98910195, 0.98910195,
       0.97190917, 0.97190917, 0.97190917, 0.97190917, 0.94012653,
       0.94012653, 0.94012653, 0.94012653, 0.89285479, 0.89285479,
       0.89285479, 0.89285479, 0.83403394, 0.83403394, 0.83403394,
       0.83403394, 0.77099739, 0.77099739, 0.77099739, 0.77099739,
       0.71316881, 0.71316881, 0.71316881, 0.71316881, 0.66167639,
       0.66167639, 0.66167639, 0.66167639, 0.61669901, 0.61669901,
       0.61669901, 0.61669901, 0.58751731, 0.58751731, 0.58751731,
       0.58751731, 0.58088401, 0.58088401, 0.58088401, 0.58088401,
       0.58197653, 0.58197653, 0.58197653, 0.58197653, 0.58530083,
       0.58530083, 0.58530083, 0.58530083, 0.58593749, 0.58593749,
       0.58593749, 0.58593749, 0.58219521, 0.58219521, 0.58219521,
       0.58219521, 0.56871482, 0.56871482, 0.56871482, 0.56871482,
       0.54028566, 0.54028566, 0.54028566, 0.54028566, 0.49391932,
       0.49391932, 0.49391932, 0.49391932, 0.43125951, 0.43125951,
       0.43125951, 0.43125951, 0.37842572, 0.37842572, 0.37842572,
       0.37842572, 0.34810948, 0.34810948, 0.34810948, 0.34810948,
       0.33368361, 0.33368361, 0.33368361, 0.33368361, 0.32786563,
       0.32786563, 0.32786563, 0.32786563, 0.32355452, 0.32355452,
       0.32355452, 0.32355452, 0.30821032, 0.30821032, 0.30821032,
       0.30821032, 0.24538437, 0.24538437, 0.24538437, 0.24538437,
       0.15274327, 0.15274327, 0.15274327, 0.15274327, 0.12792757,
       0.12792757, 0.12792757, 0.12792757, 0.12523902, 0.12523902,
       0.12523902, 0.12523902, 0.12501814, 0.12501814, 0.12501814,
       0.12501814, 0.12500135, 0.12500135, 0.12500135, 0.12500135,
       0.1250001 , 0.1250001 , 0.1250001 , 0.1250001 , 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
       7.50000211e-01, 7.50000211e-01, 7.50000211e-01, 7.50000211e-01,
       7.50001474e-01, 7.50001474e-01, 7.50001474e-01, 7.50001474e-01,
       7.50009273e-01, 7.50009273e-01, 7.50009273e-01, 7.50009273e-01,
       7.50052129e-01, 7.50052129e-01, 7.50052129e-01, 7.50052129e-01,
       7.50258907e-01, 7.50258907e-01, 7.50258907e-01, 7.50258907e-01,
       7.51119944e-01, 7.51119944e-01, 7.51119944e-01, 7.51119944e-01,
       7.54149241e-01, 7.54149241e-01, 7.54149241e-01, 7.54149241e-01,
       7.62945461e-01, 7.62945461e-01, 7.62945461e-01, 7.62945461e-01,
       7.83619793e-01, 7.83619793e-01, 7.83619793e-01, 7.83619793e-01,
       8.22703779e-01, 8.22703779e-01, 8.22703779e-01, 8.22703779e-01,
       8.82990632e-01, 8.82990632e-01, 8.82990632e-01, 8.82990632e-01,
       9.61803322e-01, 9.61803322e-01, 9.61803322e-01, 9.61803322e-01,
       1.04857800e+00, 1.04857800e+00, 1.04857800e+00, 1.04857800e+00,
       1.13591034e+00, 1.13591034e+00, 1.13591034e+00, 1.13591034e+00,
       1.22389255e+00, 1.22389255e+00, 1.22389255e+00, 1.22389255e+00,
       1.29496803e+00, 1.29496803e+00, 1.29496803e+00, 1.29496803e+00,
       1.33747715e+00, 1.33747715e+00, 1.33747715e+00, 1.33747715e+00,
       1.35392574e+00, 1.35392574e+00, 1.35392574e+00, 1.35392574e+00,
       1.35857156e+00, 1.35857156e+00, 1.35857156e+00, 1.35857156e+00,
       1.36055928e+00, 1.36055928e+00, 1.36055928e+00, 1.36055928e+00,
       1.36197585e+00, 1.36197585e+00, 1.36197585e+00, 1.36197585e+00,
       1.36328541e+00, 1.36328541e+00, 1.36328541e+00, 1.36328541e+00,
       1.36343618e+00, 1.36343618e+00, 1.36343618e+00, 1.36343618e+00,
       1.36275200e+00, 1.36275200e+00, 1.36275200e+00, 1.36275200e+00,
       1.36185315e+00, 1.36185315e+00, 1.36185315e+00, 1.36185315e+00,
       1.36106906e+00, 1.36106906e+00, 1.36106906e+00, 1.36106906e+00,
       1.36076174e+00, 1.36076174e+00, 1.36076174e+00, 1.36076174e+00,
       1.36153615e+00, 1.36153615e+00, 1.36153615e+00, 1.36153615e+00,
       1.36145251e+00, 1.36145251e+00, 1.36145251e+00, 1.36145251e+00,
       1.35798352e+00, 1.35798352e+00, 1.35798352e+00, 1.35798352e+00,
       1.33896458e+00, 1.33896458e+00, 1.33896458e+00, 1.33896458e+00,
       1.24901222e+00, 1.24901222e+00, 1.24901222e+00, 1.24901222e+00,
       9.05845095e-01, 9.05845095e-01, 9.05845095e-01, 9.05845095e-01,
       2.60939488e-01, 2.60939488e-01, 2.60939488e-01, 2.60939488e-01,
       2.66949863e-02, 2.66949863e-02, 2.66949863e-02, 2.66949863e-02,
       2.06759900e-03, 2.06759900e-03, 2.06759900e-03, 2.06759900e-03,
       1.54404335e-04, 1.54404335e-04, 1.54404335e-04, 1.54404335e-04,
       1.14811015e-05, 1.14811015e-05, 1.14811015e-05, 1.14811015e-05,
       8.51232178e-07, 8.51232178e-07, 8.51232178e-07, 8.51232178e-07,
       6.29700498e-08, 6.29700498e-08, 6.29700498e-08, 6.29700498e-08,
       4.64771793e-09, 4.64771793e-09, 4.64771793e-09, 4.64771793e-09,
       3.42187413e-10, 3.42187413e-10, 3.42187413e-10, 3.42187413e-10,
       2.51200466e-11, 2.51200466e-11, 2.51200466e-11, 2.51200466e-11,
       1.83703667e-12, 1.83703667e-12, 1.83703667e-12, 1.83703667e-12,
       1.33855888e-13, 1.33855888e-13, 1.33855888e-13, 1.33855888e-13,
       9.58591565e-15, 9.58591565e-15, 9.58591565e-15, 9.58591565e-15,
       6.58015436e-16, 6.58015436e-16, 6.58015436e-16, 6.58015436e-16,
       4.63362200e-17, 4.63362200e-17, 4.63362200e-17, 4.63362200e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.99999975, 0.99999975,
       0.99999975, 0.99999975, 0.99999826, 0.99999826, 0.99999826,
       0.99999826, 0.99998903, 0.99998903, 0.99998903, 0.99998903,
       0.99993832, 0.99993832, 0.99993832, 0.99993832, 0.9996937 ,
       0.9996937 , 0.9996937 , 0.9996937 , 0.9986757 , 0.9986757 ,
       0.9986757 , 0.9986757 , 0.99510219, 0.99510219, 0.99510219,
       0.99510219, 0.98479658, 0.98479658, 0.98479658, 0.98479658,
       0.96098067, 0.96098067, 0.96098067, 0.96098067, 0.91743778,
       0.91743778, 0.91743778, 0.91743778, 0.85378402, 0.85378402,
       0.85378402, 0.85378402, 0.7764234 , 0.7764234 , 0.7764234 ,
       0.7764234 , 0.69575388, 0.69575388, 0.69575388, 0.69575388,
       0.62328396, 0.62328396, 0.62328396, 0.62328396, 0.55678008,
       0.55678008, 0.55678008, 0.55678008, 0.50850264, 0.50850264,
       0.50850264, 0.50850264, 0.48137473, 0.48137473, 0.48137473,
       0.48137473, 0.47065375, 0.47065375, 0.47065375, 0.47065375,
       0.46777062, 0.46777062, 0.46777062, 0.46777062, 0.46716399,
       0.46716399, 0.46716399, 0.46716399, 0.46676886, 0.46676886,
       0.46676886, 0.46676886, 0.46619345, 0.46619345, 0.46619345,
       0.46619345, 0.46537137, 0.46537137, 0.46537137, 0.46537137,
       0.46458172, 0.46458172, 0.46458172, 0.46458172, 0.46395933,
       0.46395933, 0.46395933, 0.46395933, 0.46392493, 0.46392493,
       0.46392493, 0.46392493, 0.46425901, 0.46425901, 0.46425901,
       0.46425901, 0.46466477, 0.46466477, 0.46466477, 0.46466477,
       0.46482226, 0.46482226, 0.46482226, 0.46482226, 0.46376334,
       0.46376334, 0.46376334, 0.46376334, 0.45509168, 0.45509168,
       0.45509168, 0.45509168, 0.41543057, 0.41543057, 0.41543057,
       0.41543057, 0.29185634, 0.29185634, 0.29185634, 0.29185634,
       0.13928365, 0.13928365, 0.13928365, 0.13928365, 0.10357133,
       0.10357133, 0.10357133, 0.10357133, 0.10027368, 0.10027368,
       0.10027368, 0.10027368, 0.10002043, 0.10002043, 0.10002043,
       0.10002043, 0.10000152, 0.10000152, 0.10000152, 0.10000152,
       0.10000011, 0.10000011, 0.10000011, 0.10000011, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999996,
       0.99999996, 0.99999996, 0.99999996, 0.99999972, 0.99999972,
       0.99999972, 0.99999972, 0.99999813, 0.99999813, 0.99999813,
       0.99999813, 0.99998874, 0.99998874, 0.99998874, 0.99998874,
       0.99993939, 0.99993939, 0.99993939, 0.99993939, 0.99971172,
       0.99971172, 0.99971172, 0.99971172, 0.99880638, 0.99880638,
       0.99880638, 0.99880638, 0.99577085, 0.99577085, 0.99577085,
       0.99577085, 0.98739937, 0.98739937, 0.98739937, 0.98739937,
       0.96881177, 0.96881177, 0.96881177, 0.96881177, 0.93583686,
       0.93583686, 0.93583686, 0.93583686, 0.88837163, 0.88837163,
       0.88837163, 0.88837163, 0.83062885, 0.83062885, 0.83062885,
       0.83062885, 0.76981937, 0.76981937, 0.76981937, 0.76981937,
       0.71310496, 0.71310496, 0.71310496, 0.71310496, 0.66323748,
       0.66323748, 0.66323748, 0.66323748, 0.62045416, 0.62045416,
       0.62045416, 0.62045416, 0.58992516, 0.58992516, 0.58992516,
       0.58992516, 0.58052011, 0.58052011, 0.58052011, 0.58052011,
       0.58080503, 0.58080503, 0.58080503, 0.58080503, 0.58354665,
       0.58354665, 0.58354665, 0.58354665, 0.58540693, 0.58540693,
       0.58540693, 0.58540693, 0.58382526, 0.58382526, 0.58382526,
       0.58382526, 0.57540774, 0.57540774, 0.57540774, 0.57540774,
       0.55436649, 0.55436649, 0.55436649, 0.55436649, 0.51638779,
       0.51638779, 0.51638779, 0.51638779, 0.46017314, 0.46017314,
       0.46017314, 0.46017314, 0.39863657, 0.39863657, 0.39863657,
       0.39863657, 0.3593355 , 0.3593355 , 0.3593355 , 0.3593355 ,
       0.33897034, 0.33897034, 0.33897034, 0.33897034, 0.33057608,
       0.33057608, 0.33057608, 0.33057608, 0.32697565, 0.32697565,
       0.32697565, 0.32697565, 0.32222492, 0.32222492, 0.32222492,
       0.32222492, 0.29663114, 0.29663114, 0.29663114, 0.29663114,
       0.21326785, 0.21326785, 0.21326785, 0.21326785, 0.13963631,
       0.13963631, 0.13963631, 0.13963631, 0.12638405, 0.12638405,
       0.12638405, 0.12638405, 0.12510904, 0.12510904, 0.12510904,
       0.12510904, 0.12500824, 0.12500824, 0.12500824, 0.12500824,
       0.12500062, 0.12500062, 0.12500062, 0.12500062, 0.12500005,
       0.12500005, 0.12500005, 0.12500005, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
       7.50000045e-01, 7.50000045e-01, 7.50000045e-01, 7.50000045e-01,
       7.50000331e-01, 7.50000331e-01, 7.50000331e-01, 7.50000331e-01,
       7.50002210e-01, 7.50002210e-01, 7.50002210e-01, 7.50002210e-01,
       7.50013317e-01, 7.50013317e-01, 7.50013317e-01, 7.50013317e-01,
       7.50071715e-01, 7.50071715e-01, 7.50071715e-01, 7.50071715e-01,
       7.50341105e-01, 7.50341105e-01, 7.50341105e-01, 7.50341105e-01,
       7.51412648e-01, 7.51412648e-01, 7.51412648e-01, 7.51412648e-01,
       7.55010444e-01, 7.55010444e-01, 7.55010444e-01, 7.55010444e-01,
       7.64979298e-01, 7.64979298e-01, 7.64979298e-01, 7.64979298e-01,
       7.87380429e-01, 7.87380429e-01, 7.87380429e-01, 7.87380429e-01,
       8.28067152e-01, 8.28067152e-01, 8.28067152e-01, 8.28067152e-01,
       8.88835090e-01, 8.88835090e-01, 8.88835090e-01, 8.88835090e-01,
       9.66485823e-01, 9.66485823e-01, 9.66485823e-01, 9.66485823e-01,
       1.05055852e+00, 1.05055852e+00, 1.05055852e+00, 1.05055852e+00,
       1.13522481e+00, 1.13522481e+00, 1.13522481e+00, 1.13522481e+00,
       1.22058953e+00, 1.22058953e+00, 1.22058953e+00, 1.22058953e+00,
       1.29086599e+00, 1.29086599e+00, 1.29086599e+00, 1.29086599e+00,
       1.33487117e+00, 1.33487117e+00, 1.33487117e+00, 1.33487117e+00,
       1.35308250e+00, 1.35308250e+00, 1.35308250e+00, 1.35308250e+00,
       1.35819700e+00, 1.35819700e+00, 1.35819700e+00, 1.35819700e+00,
       1.36011186e+00, 1.36011186e+00, 1.36011186e+00, 1.36011186e+00,
       1.36156806e+00, 1.36156806e+00, 1.36156806e+00, 1.36156806e+00,
       1.36315058e+00, 1.36315058e+00, 1.36315058e+00, 1.36315058e+00,
       1.36379727e+00, 1.36379727e+00, 1.36379727e+00, 1.36379727e+00,
       1.36351067e+00, 1.36351067e+00, 1.36351067e+00, 1.36351067e+00,
       1.36261248e+00, 1.36261248e+00, 1.36261248e+00, 1.36261248e+00,
       1.36146436e+00, 1.36146436e+00, 1.36146436e+00, 1.36146436e+00,
       1.36063916e+00, 1.36063916e+00, 1.36063916e+00, 1.36063916e+00,
       1.36092008e+00, 1.36092008e+00, 1.36092008e+00, 1.36092008e+00,
       1.36127360e+00, 1.36127360e+00, 1.36127360e+00, 1.36127360e+00,
       1.36020110e+00, 1.36020110e+00, 1.36020110e+00, 1.36020110e+00,
       1.35450702e+00, 1.35450702e+00, 1.35450702e+00, 1.35450702e+00,
       1.32300030e+00, 1.32300030e+00, 1.32300030e+00, 1.32300030e+00,
       1.18237908e+00, 1.18237908e+00, 1.18237908e+00, 1.18237908e+00,
       7.15441717e-01, 7.15441717e-01, 7.15441717e-01, 7.15441717e-01,
       1.38769905e-01, 1.38769905e-01, 1.38769905e-01, 1.38769905e-01,
       1.23577720e-02, 1.23577720e-02, 1.23577720e-02, 1.23577720e-02,
       9.36224416e-04, 9.36224416e-04, 9.36224416e-04, 9.36224416e-04,
       7.00272710e-05, 7.00272710e-05, 7.00272710e-05, 7.00272710e-05,
       5.21364262e-06, 5.21364262e-06, 5.21364262e-06, 5.21364262e-06,
       3.86975587e-07, 3.86975587e-07, 3.86975587e-07, 3.86975587e-07,
       2.86533268e-08, 2.86533268e-08, 2.86533268e-08, 2.86533268e-08,
       2.11667470e-09, 2.11667470e-09, 2.11667470e-09, 2.11667470e-09,
       1.55981163e-10, 1.55981163e-10, 1.55981163e-10, 1.55981163e-10,
       1.14620004e-11, 1.14620004e-11, 1.14620004e-11, 1.14620004e-11,
       8.39464394e-13, 8.39464394e-13, 8.39464394e-13, 8.39464394e-13,
       6.10879150e-14, 6.10879150e-14, 6.10879150e-14, 6.10879150e-14,
       4.40544803e-15, 4.40544803e-15, 4.40544803e-15, 4.40544803e-15,
       3.15470277e-16, 3.15470277e-16, 3.15470277e-16, 3.15470277e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
       0.99999995, 0.99999995, 0.99999995, 0.99999961, 0.99999961,
       0.99999961, 0.99999961, 0.99999739, 0.99999739, 0.99999739,
       0.99999739, 0.99998424, 0.99998424, 0.99998424, 0.99998424,
       0.99991515, 0.99991515, 0.99991515, 0.99991515, 0.99959648,
       0.99959648, 0.99959648, 0.99959648, 0.99832987, 0.99832987,
       0.99832987, 0.99832987, 0.99408857, 0.99408857, 0.99408857,
       0.99408857, 0.98242851, 0.98242851, 0.98242851, 0.98242851,
       0.95670672, 0.95670672, 0.95670672, 0.95670672, 0.91159757,
       0.91159757, 0.91159757, 0.91159757, 0.8477941 , 0.8477941 ,
       0.8477941 , 0.8477941 , 0.77194869, 0.77194869, 0.77194869,
       0.77194869, 0.69397675, 0.69397675, 0.69397675, 0.69397675,
       0.62399737, 0.62399737, 0.62399737, 0.62399737, 0.55909955,
       0.55909955, 0.55909955, 0.55909955, 0.51089525, 0.51089525,
       0.51089525, 0.51089525, 0.48295725, 0.48295725, 0.48295725,
       0.48295725, 0.47140761, 0.47140761, 0.47140761, 0.47140761,
       0.46792021, 0.46792021, 0.46792021, 0.46792021, 0.46704157,
       0.46704157, 0.46704157, 0.46704157, 0.46664044, 0.46664044,
       0.46664044, 0.46664044, 0.46622055, 0.46622055, 0.46622055,
       0.46622055, 0.46568048, 0.46568048, 0.46568048, 0.46568048,
       0.46505167, 0.46505167, 0.46505167, 0.46505167, 0.46437416,
       0.46437416, 0.46437416, 0.46437416, 0.46411629, 0.46411629,
       0.46411629, 0.46411629, 0.46418296, 0.46418296, 0.46418296,
       0.46418296, 0.46437517, 0.46437517, 0.46437517, 0.46437517,
       0.46474262, 0.46474262, 0.46474262, 0.46474262, 0.4647905 ,
       0.4647905 , 0.4647905 , 0.4647905 , 0.46219808, 0.46219808,
       0.46219808, 0.46219808, 0.44788536, 0.44788536, 0.44788536,
       0.44788536, 0.38869085, 0.38869085, 0.38869085, 0.38869085,
       0.23647903, 0.23647903, 0.23647903, 0.23647903, 0.11972131,
       0.11972131, 0.11972131, 0.11972131, 0.10164215, 0.10164215,
       0.10164215, 0.10164215, 0.10012388, 0.10012388, 0.10012388,
       0.10012388, 0.10000926, 0.10000926, 0.10000926, 0.10000926,
       0.10000069, 0.10000069, 0.10000069, 0.10000069, 0.10000005,
       0.10000005, 0.10000005, 0.10000005, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
       0.99999994, 0.99999994, 0.99999994, 0.99999957, 0.99999957,
       0.99999957, 0.99999957, 0.99999725, 0.99999725, 0.99999725,
       0.99999725, 0.99998408, 0.99998408, 0.99998408, 0.99998408,
       0.99991777, 0.99991777, 0.99991777, 0.99991777, 0.99962494,
       0.99962494, 0.99962494, 0.99962494, 0.99851137, 0.99851137,
       0.99851137, 0.99851137, 0.99494469, 0.99494469, 0.99494469,
       0.99494469, 0.98555163, 0.98555163, 0.98555163, 0.98555163,
       0.96559893, 0.96559893, 0.96559893, 0.96559893, 0.93155858,
       0.93155858, 0.93155858, 0.93155858, 0.88403476, 0.88403476,
       0.88403476, 0.88403476, 0.8274092 , 0.8274092 , 0.8274092 ,
       0.8274092 , 0.76877221, 0.76877221, 0.76877221, 0.76877221,
       0.71316056, 0.71316056, 0.71316056, 0.71316056, 0.66441163,
       0.66441163, 0.66441163, 0.66441163, 0.62379118, 0.62379118,
       0.62379118, 0.62379118, 0.59276036, 0.59276036, 0.59276036,
       0.59276036, 0.58060214, 0.58060214, 0.58060214, 0.58060214,
       0.58004359, 0.58004359, 0.58004359, 0.58004359, 0.58181969,
       0.58181969, 0.58181969, 0.58181969, 0.58456085, 0.58456085,
       0.58456085, 0.58456085, 0.58426133, 0.58426133, 0.58426133,
       0.58426133, 0.57952111, 0.57952111, 0.57952111, 0.57952111,
       0.56481381, 0.56481381, 0.56481381, 0.56481381, 0.53498407,
       0.53498407, 0.53498407, 0.53498407, 0.48707968, 0.48707968,
       0.48707968, 0.48707968, 0.4240172 , 0.4240172 , 0.4240172 ,
       0.4240172 , 0.37419742, 0.37419742, 0.37419742, 0.37419742,
       0.34640254, 0.34640254, 0.34640254, 0.34640254, 0.33383188,
       0.33383188, 0.33383188, 0.33383188, 0.32905424, 0.32905424,
       0.32905424, 0.32905424, 0.32677563, 0.32677563, 0.32677563,
       0.32677563, 0.31923078, 0.31923078, 0.31923078, 0.31923078,
       0.27840167, 0.27840167, 0.27840167, 0.27840167, 0.1822785 ,
       0.1822785 , 0.1822785 , 0.1822785 , 0.13240005, 0.13240005,
       0.13240005, 0.13240005, 0.12564148, 0.12564148, 0.12564148,
       0.12564148, 0.12504969, 0.12504969, 0.12504969, 0.12504969,
       0.12500374, 0.12500374, 0.12500374, 0.12500374, 0.12500028,
       0.12500028, 0.12500028, 0.12500028, 0.12500002, 0.12500002,
       0.12500002, 0.12500002, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000072e-01, 7.50000072e-01, 7.50000072e-01, 7.50000072e-01,
       7.50000509e-01, 7.50000509e-01, 7.50000509e-01, 7.50000509e-01,
       7.50003258e-01, 7.50003258e-01, 7.50003258e-01, 7.50003258e-01,
       7.50018836e-01, 7.50018836e-01, 7.50018836e-01, 7.50018836e-01,
       7.50097297e-01, 7.50097297e-01, 7.50097297e-01, 7.50097297e-01,
       7.50443797e-01, 7.50443797e-01, 7.50443797e-01, 7.50443797e-01,
       7.51761984e-01, 7.51761984e-01, 7.51761984e-01, 7.51761984e-01,
       7.55991281e-01, 7.55991281e-01, 7.55991281e-01, 7.55991281e-01,
       7.67190124e-01, 7.67190124e-01, 7.67190124e-01, 7.67190124e-01,
       7.91292369e-01, 7.91292369e-01, 7.91292369e-01, 7.91292369e-01,
       8.33436036e-01, 8.33436036e-01, 8.33436036e-01, 8.33436036e-01,
       8.94508968e-01, 8.94508968e-01, 8.94508968e-01, 8.94508968e-01,
       9.70928324e-01, 9.70928324e-01, 9.70928324e-01, 9.70928324e-01,
       1.05242450e+00, 1.05242450e+00, 1.05242450e+00, 1.05242450e+00,
       1.13456684e+00, 1.13456684e+00, 1.13456684e+00, 1.13456684e+00,
       1.21752814e+00, 1.21752814e+00, 1.21752814e+00, 1.21752814e+00,
       1.28688080e+00, 1.28688080e+00, 1.28688080e+00, 1.28688080e+00,
       1.33202565e+00, 1.33202565e+00, 1.33202565e+00, 1.33202565e+00,
       1.35205511e+00, 1.35205511e+00, 1.35205511e+00, 1.35205511e+00,
       1.35794285e+00, 1.35794285e+00, 1.35794285e+00, 1.35794285e+00,
       1.35979765e+00, 1.35979765e+00, 1.35979765e+00, 1.35979765e+00,
       1.36117165e+00, 1.36117165e+00, 1.36117165e+00, 1.36117165e+00,
       1.36278081e+00, 1.36278081e+00, 1.36278081e+00, 1.36278081e+00,
       1.36384708e+00, 1.36384708e+00, 1.36384708e+00, 1.36384708e+00,
       1.36394428e+00, 1.36394428e+00, 1.36394428e+00, 1.36394428e+00,
       1.36340422e+00, 1.36340422e+00, 1.36340422e+00, 1.36340422e+00,
       1.36216954e+00, 1.36216954e+00, 1.36216954e+00, 1.36216954e+00,
       1.36091948e+00, 1.36091948e+00, 1.36091948e+00, 1.36091948e+00,
       1.36072488e+00, 1.36072488e+00, 1.36072488e+00, 1.36072488e+00,
       1.36080076e+00, 1.36080076e+00, 1.36080076e+00, 1.36080076e+00,
       1.36052967e+00, 1.36052967e+00, 1.36052967e+00, 1.36052967e+00,
       1.35904254e+00, 1.35904254e+00, 1.35904254e+00, 1.35904254e+00,
       1.34885124e+00, 1.34885124e+00, 1.34885124e+00, 1.34885124e+00,
       1.29744243e+00, 1.29744243e+00, 1.29744243e+00, 1.29744243e+00,
       1.08422445e+00, 1.08422445e+00, 1.08422445e+00, 1.08422445e+00,
       5.02990327e-01, 5.02990327e-01, 5.02990327e-01, 5.02990327e-01,
       6.93727442e-02, 6.93727442e-02, 6.93727442e-02, 6.93727442e-02,
       5.63191058e-03, 5.63191058e-03, 5.63191058e-03, 5.63191058e-03,
       4.24506091e-04, 4.24506091e-04, 4.24506091e-04, 4.24506091e-04,
       3.17404436e-05, 3.17404436e-05, 3.17404436e-05, 3.17404436e-05,
       2.36582375e-06, 2.36582375e-06, 2.36582375e-06, 2.36582375e-06,
       1.75833876e-07, 1.75833876e-07, 1.75833876e-07, 1.75833876e-07,
       1.30328080e-08, 1.30328080e-08, 1.30328080e-08, 1.30328080e-08,
       9.63639514e-10, 9.63639514e-10, 9.63639514e-10, 9.63639514e-10,
       7.10763736e-11, 7.10763736e-11, 7.10763736e-11, 7.10763736e-11,
       5.22825264e-12, 5.22825264e-12, 5.22825264e-12, 5.22825264e-12,
       3.83163730e-13, 3.83163730e-13, 3.83163730e-13, 3.83163730e-13,
       2.79726565e-14, 2.79726565e-14, 2.79726565e-14, 2.79726565e-14,
       2.02525897e-15, 2.02525897e-15, 2.02525897e-15, 2.02525897e-15,
       1.51631827e-16, 1.51631827e-16, 1.51631827e-16, 1.51631827e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999991,
       0.99999991, 0.99999991, 0.99999991, 0.9999994 , 0.9999994 ,
       0.9999994 , 0.9999994 , 0.99999614, 0.99999614, 0.99999614,
       0.99999614, 0.99997771, 0.99997771, 0.99997771, 0.99997771,
       0.99988488, 0.99988488, 0.99988488, 0.99988488, 0.99947502,
       0.99947502, 0.99947502, 0.99947502, 0.99791728, 0.99791728,
       0.99791728, 0.99791728, 0.99293536, 0.99293536, 0.99293536,
       0.99293536, 0.97986052, 0.97986052, 0.97986052, 0.97986052,
       0.95227911, 0.95227911, 0.95227911, 0.95227911, 0.90578254,
       0.90578254, 0.90578254, 0.90578254, 0.84200911, 0.84200911,
       0.84200911, 0.84200911, 0.76771824, 0.76771824, 0.76771824,
       0.76771824, 0.69232015, 0.69232015, 0.69232015, 0.69232015,
       0.62465064, 0.62465064, 0.62465064, 0.62465064, 0.56138795,
       0.56138795, 0.56138795, 0.56138795, 0.51330741, 0.51330741,
       0.51330741, 0.51330741, 0.4845093 , 0.4845093 , 0.4845093 ,
       0.4845093 , 0.47217185, 0.47217185, 0.47217185, 0.47217185,
       0.46819774, 0.46819774, 0.46819774, 0.46819774, 0.46701446,
       0.46701446, 0.46701446, 0.46701446, 0.46652199, 0.46652199,
       0.46652199, 0.46652199, 0.46611084, 0.46611084, 0.46611084,
       0.46611084, 0.46578348, 0.46578348, 0.46578348, 0.46578348,
       0.46535618, 0.46535618, 0.46535618, 0.46535618, 0.46482306,
       0.46482306, 0.46482306, 0.46482306, 0.46446841, 0.46446841,
       0.46446841, 0.46446841, 0.46430983, 0.46430983, 0.46430983,
       0.46430983, 0.46428048, 0.46428048, 0.46428048, 0.46428048,
       0.46452486, 0.46452486, 0.46452486, 0.46452486, 0.4649441 ,
       0.4649441 , 0.4649441 , 0.4649441 , 0.46428963, 0.46428963,
       0.46428963, 0.46428963, 0.45964556, 0.45964556, 0.45964556,
       0.45964556, 0.4368908 , 0.4368908 , 0.4368908 , 0.4368908 ,
       0.35200209, 0.35200209, 0.35200209, 0.35200209, 0.18536524,
       0.18536524, 0.18536524, 0.18536524, 0.10948877, 0.10948877,
       0.10948877, 0.10948877, 0.10074638, 0.10074638, 0.10074638,
       0.10074638, 0.10005616, 0.10005616, 0.10005616, 0.10005616,
       0.1000042 , 0.1000042 , 0.1000042 , 0.1000042 , 0.10000031,
       0.10000031, 0.10000031, 0.10000031, 0.10000002, 0.10000002,
       0.10000002, 0.10000002, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.9999999 ,
       0.9999999 , 0.9999999 , 0.9999999 , 0.99999935, 0.99999935,
       0.99999935, 0.99999935, 0.999996  , 0.999996  , 0.999996  ,
       0.999996  , 0.9999778 , 0.9999778 , 0.9999778 , 0.9999778 ,
       0.99988988, 0.99988988, 0.99988988, 0.99988988, 0.99951775,
       0.99951775, 0.99951775, 0.99951775, 0.99816293, 0.99816293,
       0.99816293, 0.99816293, 0.99401287, 0.99401287, 0.99401287,
       0.99401287, 0.98356146, 0.98356146, 0.98356146, 0.98356146,
       0.9622853 , 0.9622853 , 0.9622853 , 0.9622853 , 0.92730693,
       0.92730693, 0.92730693, 0.92730693, 0.87984577, 0.87984577,
       0.87984577, 0.87984577, 0.82436213, 0.82436213, 0.82436213,
       0.82436213, 0.76781991, 0.76781991, 0.76781991, 0.76781991,
       0.71338064, 0.71338064, 0.71338064, 0.71338064, 0.66530752,
       0.66530752, 0.66530752, 0.66530752, 0.62662899, 0.62662899,
       0.62662899, 0.62662899, 0.59584458, 0.59584458, 0.59584458,
       0.59584458, 0.58122522, 0.58122522, 0.58122522, 0.58122522,
       0.57945682, 0.57945682, 0.57945682, 0.57945682, 0.58056762,
       0.58056762, 0.58056762, 0.58056762, 0.58335259, 0.58335259,
       0.58335259, 0.58335259, 0.5840114 , 0.5840114 , 0.5840114 ,
       0.5840114 , 0.58173244, 0.58173244, 0.58173244, 0.58173244,
       0.57212127, 0.57212127, 0.57212127, 0.57212127, 0.54967525,
       0.54967525, 0.54967525, 0.54967525, 0.51027045, 0.51027045,
       0.51027045, 0.51027045, 0.45256286, 0.45256286, 0.45256286,
       0.45256286, 0.39319195, 0.39319195, 0.39319195, 0.39319195,
       0.35669662, 0.35669662, 0.35669662, 0.35669662, 0.33848333,
       0.33848333, 0.33848333, 0.33848333, 0.33098586, 0.33098586,
       0.33098586, 0.33098586, 0.32867169, 0.32867169, 0.32867169,
       0.32867169, 0.32673109, 0.32673109, 0.32673109, 0.32673109,
       0.31276146, 0.31276146, 0.31276146, 0.31276146, 0.25297057,
       0.25297057, 0.25297057, 0.25297057, 0.15774063, 0.15774063,
       0.15774063, 0.15774063, 0.12857133, 0.12857133, 0.12857133,
       0.12857133, 0.12529541, 0.12529541, 0.12529541, 0.12529541,
       0.12502259, 0.12502259, 0.12502259, 0.12502259, 0.1250017 ,
       0.1250017 , 0.1250017 , 0.1250017 , 0.12500013, 0.12500013,
       0.12500013, 0.12500013, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000015e-01, 7.50000015e-01, 7.50000015e-01, 7.50000015e-01,
       7.50000114e-01, 7.50000114e-01, 7.50000114e-01, 7.50000114e-01,
       7.50000768e-01, 7.50000768e-01, 7.50000768e-01, 7.50000768e-01,
       7.50004730e-01, 7.50004730e-01, 7.50004730e-01, 7.50004730e-01,
       7.50026264e-01, 7.50026264e-01, 7.50026264e-01, 7.50026264e-01,
       7.50130297e-01, 7.50130297e-01, 7.50130297e-01, 7.50130297e-01,
       7.50570647e-01, 7.50570647e-01, 7.50570647e-01, 7.50570647e-01,
       7.52174682e-01, 7.52174682e-01, 7.52174682e-01, 7.52174682e-01,
       7.57098423e-01, 7.57098423e-01, 7.57098423e-01, 7.57098423e-01,
       7.69575519e-01, 7.69575519e-01, 7.69575519e-01, 7.69575519e-01,
       7.95338848e-01, 7.95338848e-01, 7.95338848e-01, 7.95338848e-01,
       8.38790934e-01, 8.38790934e-01, 8.38790934e-01, 8.38790934e-01,
       9.00008072e-01, 9.00008072e-01, 9.00008072e-01, 9.00008072e-01,
       9.75143222e-01, 9.75143222e-01, 9.75143222e-01, 9.75143222e-01,
       1.05418743e+00, 1.05418743e+00, 1.05418743e+00, 1.05418743e+00,
       1.13392925e+00, 1.13392925e+00, 1.13392925e+00, 1.13392925e+00,
       1.21464803e+00, 1.21464803e+00, 1.21464803e+00, 1.21464803e+00,
       1.28307514e+00, 1.28307514e+00, 1.28307514e+00, 1.28307514e+00,
       1.32905104e+00, 1.32905104e+00, 1.32905104e+00, 1.32905104e+00,
       1.35077100e+00, 1.35077100e+00, 1.35077100e+00, 1.35077100e+00,
       1.35767915e+00, 1.35767915e+00, 1.35767915e+00, 1.35767915e+00,
       1.35963173e+00, 1.35963173e+00, 1.35963173e+00, 1.35963173e+00,
       1.36086885e+00, 1.36086885e+00, 1.36086885e+00, 1.36086885e+00,
       1.36233245e+00, 1.36233245e+00, 1.36233245e+00, 1.36233245e+00,
       1.36365306e+00, 1.36365306e+00, 1.36365306e+00, 1.36365306e+00,
       1.36410375e+00, 1.36410375e+00, 1.36410375e+00, 1.36410375e+00,
       1.36392708e+00, 1.36392708e+00, 1.36392708e+00, 1.36392708e+00,
       1.36298853e+00, 1.36298853e+00, 1.36298853e+00, 1.36298853e+00,
       1.36152724e+00, 1.36152724e+00, 1.36152724e+00, 1.36152724e+00,
       1.36088739e+00, 1.36088739e+00, 1.36088739e+00, 1.36088739e+00,
       1.36059622e+00, 1.36059622e+00, 1.36059622e+00, 1.36059622e+00,
       1.36030814e+00, 1.36030814e+00, 1.36030814e+00, 1.36030814e+00,
       1.36008913e+00, 1.36008913e+00, 1.36008913e+00, 1.36008913e+00,
       1.35711729e+00, 1.35711729e+00, 1.35711729e+00, 1.35711729e+00,
       1.33931866e+00, 1.33931866e+00, 1.33931866e+00, 1.33931866e+00,
       1.25869909e+00, 1.25869909e+00, 1.25869909e+00, 1.25869909e+00,
       9.47391457e-01, 9.47391457e-01, 9.47391457e-01, 9.47391457e-01,
       3.03306502e-01, 3.03306502e-01, 3.03306502e-01, 3.03306502e-01,
       3.27779884e-02, 3.27779884e-02, 3.27779884e-02, 3.27779884e-02,
       2.56194868e-03, 2.56194868e-03, 2.56194868e-03, 2.56194868e-03,
       1.92341225e-04, 1.92341225e-04, 1.92341225e-04, 1.92341225e-04,
       1.43841206e-05, 1.43841206e-05, 1.43841206e-05, 1.43841206e-05,
       1.07319292e-06, 1.07319292e-06, 1.07319292e-06, 1.07319292e-06,
       7.98515072e-08, 7.98515072e-08, 7.98515072e-08, 7.98515072e-08,
       5.92527078e-09, 5.92527078e-09, 5.92527078e-09, 5.92527078e-09,
       4.38545776e-10, 4.38545776e-10, 4.38545776e-10, 4.38545776e-10,
       3.23766591e-11, 3.23766591e-11, 3.23766591e-11, 3.23766591e-11,
       2.38365625e-12, 2.38365625e-12, 2.38365625e-12, 2.38365625e-12,
       1.74984281e-13, 1.74984281e-13, 1.74984281e-13, 1.74984281e-13,
       1.27988486e-14, 1.27988486e-14, 1.27988486e-14, 1.27988486e-14,
       9.36619527e-16, 9.36619527e-16, 9.36619527e-16, 9.36619527e-16,
       5.90078683e-17, 5.90078683e-17, 5.90078683e-17, 5.90078683e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999987,
       0.99999987, 0.99999987, 0.99999987, 0.99999909, 0.99999909,
       0.99999909, 0.99999909, 0.9999944 , 0.9999944 , 0.9999944 ,
       0.9999944 , 0.99996892, 0.99996892, 0.99996892, 0.99996892,
       0.99984584, 0.99984584, 0.99984584, 0.99984584, 0.99932502,
       0.99932502, 0.99932502, 0.99932502, 0.99743007, 0.99743007,
       0.99743007, 0.99743007, 0.99163522, 0.99163522, 0.99163522,
       0.99163522, 0.97709688, 0.97709688, 0.97709688, 0.97709688,
       0.94771858, 0.94771858, 0.94771858, 0.94771858, 0.90001323,
       0.90001323, 0.90001323, 0.90001323, 0.83643028, 0.83643028,
       0.83643028, 0.83643028, 0.76371797, 0.76371797, 0.76371797,
       0.76371797, 0.69077552, 0.69077552, 0.69077552, 0.69077552,
       0.62524441, 0.62524441, 0.62524441, 0.62524441, 0.56360708,
       0.56360708, 0.56360708, 0.56360708, 0.51576884, 0.51576884,
       0.51576884, 0.51576884, 0.48608775, 0.48608775, 0.48608775,
       0.48608775, 0.47290348, 0.47290348, 0.47290348, 0.47290348,
       0.46852795, 0.46852795, 0.46852795, 0.46852795, 0.46709417,
       0.46709417, 0.46709417, 0.46709417, 0.4664615 , 0.4664615 ,
       0.4664615 , 0.4664615 , 0.46595946, 0.46595946, 0.46595946,
       0.46595946, 0.46573483, 0.46573483, 0.46573483, 0.46573483,
       0.46549762, 0.46549762, 0.46549762, 0.46549762, 0.4651401 ,
       0.4651401 , 0.4651401 , 0.4651401 , 0.4648877 , 0.4648877 ,
       0.4648877 , 0.4648877 , 0.46460628, 0.46460628, 0.46460628,
       0.46460628, 0.46435859, 0.46435859, 0.46435859, 0.46435859,
       0.46443008, 0.46443008, 0.46443008, 0.46443008, 0.46484084,
       0.46484084, 0.46484084, 0.46484084, 0.46477421, 0.46477421,
       0.46477421, 0.46477421, 0.46345495, 0.46345495, 0.46345495,
       0.46345495, 0.45575261, 0.45575261, 0.45575261, 0.45575261,
       0.41991969, 0.41991969, 0.41991969, 0.41991969, 0.30495101,
       0.30495101, 0.30495101, 0.30495101, 0.14641294, 0.14641294,
       0.14641294, 0.14641294, 0.10439859, 0.10439859, 0.10439859,
       0.10439859, 0.10033916, 0.10033916, 0.10033916, 0.10033916,
       0.10002545, 0.10002545, 0.10002545, 0.10002545, 0.1000019 ,
       0.1000019 , 0.1000019 , 0.1000019 , 0.10000014, 0.10000014,
       0.10000014, 0.10000014, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999985,
       0.99999985, 0.99999985, 0.99999985, 0.99999903, 0.99999903,
       0.99999903, 0.99999903, 0.99999428, 0.99999428, 0.99999428,
       0.99999428, 0.99996946, 0.99996946, 0.99996946, 0.99996946,
       0.99985432, 0.99985432, 0.99985432, 0.99985432, 0.99938676,
       0.99938676, 0.99938676, 0.99938676, 0.99775536, 0.99775536,
       0.99775536, 0.99775536, 0.99297081, 0.99297081, 0.99297081,
       0.99297081, 0.98143309, 0.98143309, 0.98143309, 0.98143309,
       0.95888578, 0.95888578, 0.95888578, 0.95888578, 0.9230955 ,
       0.9230955 , 0.9230955 , 0.9230955 , 0.87580507, 0.87580507,
       0.87580507, 0.87580507, 0.82147709, 0.82147709, 0.82147709,
       0.82147709, 0.76692374, 0.76692374, 0.76692374, 0.76692374,
       0.71378615, 0.71378615, 0.71378615, 0.71378615, 0.66604952,
       0.66604952, 0.66604952, 0.66604952, 0.62893204, 0.62893204,
       0.62893204, 0.62893204, 0.59898326, 0.59898326, 0.59898326,
       0.59898326, 0.58239235, 0.58239235, 0.58239235, 0.58239235,
       0.57906513, 0.57906513, 0.57906513, 0.57906513, 0.5796752 ,
       0.5796752 , 0.5796752 , 0.5796752 , 0.58197407, 0.58197407,
       0.58197407, 0.58197407, 0.58350893, 0.58350893, 0.58350893,
       0.58350893, 0.58262487, 0.58262487, 0.58262487, 0.58262487,
       0.5768568 , 0.5768568 , 0.5768568 , 0.5768568 , 0.56077107,
       0.56077107, 0.56077107, 0.56077107, 0.52949915, 0.52949915,
       0.52949915, 0.52949915, 0.48013846, 0.48013846, 0.48013846,
       0.48013846, 0.41713955, 0.41713955, 0.41713955, 0.41713955,
       0.37044721, 0.37044721, 0.37044721, 0.37044721, 0.34523075,
       0.34523075, 0.34523075, 0.34523075, 0.33369594, 0.33369594,
       0.33369594, 0.33369594, 0.32989191, 0.32989191, 0.32989191,
       0.32989191, 0.32903442, 0.32903442, 0.32903442, 0.32903442,
       0.32566179, 0.32566179, 0.32566179, 0.32566179, 0.30140914,
       0.30140914, 0.30140914, 0.30140914, 0.22161536, 0.22161536,
       0.22161536, 0.22161536, 0.142229  , 0.142229  , 0.142229  ,
       0.142229  , 0.12669189, 0.12669189, 0.12669189, 0.12669189,
       0.12513485, 0.12513485, 0.12513485, 0.12513485, 0.12501025,
       0.12501025, 0.12501025, 0.12501025, 0.12500077, 0.12500077,
       0.12500077, 0.12500077, 0.12500006, 0.12500006, 0.12500006,
       0.12500006, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000176e-01, 7.50000176e-01, 7.50000176e-01, 7.50000176e-01,
       7.50001143e-01, 7.50001143e-01, 7.50001143e-01, 7.50001143e-01,
       7.50006765e-01, 7.50006765e-01, 7.50006765e-01, 7.50006765e-01,
       7.50036132e-01, 7.50036132e-01, 7.50036132e-01, 7.50036132e-01,
       7.50172369e-01, 7.50172369e-01, 7.50172369e-01, 7.50172369e-01,
       7.50725674e-01, 7.50725674e-01, 7.50725674e-01, 7.50725674e-01,
       7.52657561e-01, 7.52657561e-01, 7.52657561e-01, 7.52657561e-01,
       7.58337621e-01, 7.58337621e-01, 7.58337621e-01, 7.58337621e-01,
       7.72131336e-01, 7.72131336e-01, 7.72131336e-01, 7.72131336e-01,
       7.99502632e-01, 7.99502632e-01, 7.99502632e-01, 7.99502632e-01,
       8.44114177e-01, 8.44114177e-01, 8.44114177e-01, 8.44114177e-01,
       9.05331881e-01, 9.05331881e-01, 9.05331881e-01, 9.05331881e-01,
       9.79125457e-01, 9.79125457e-01, 9.79125457e-01, 9.79125457e-01,
       1.05587185e+00, 1.05587185e+00, 1.05587185e+00, 1.05587185e+00,
       1.13331506e+00, 1.13331506e+00, 1.13331506e+00, 1.13331506e+00,
       1.21189543e+00, 1.21189543e+00, 1.21189543e+00, 1.21189543e+00,
       1.27944869e+00, 1.27944869e+00, 1.27944869e+00, 1.27944869e+00,
       1.32606311e+00, 1.32606311e+00, 1.32606311e+00, 1.32606311e+00,
       1.34925512e+00, 1.34925512e+00, 1.34925512e+00, 1.34925512e+00,
       1.35728578e+00, 1.35728578e+00, 1.35728578e+00, 1.35728578e+00,
       1.35954920e+00, 1.35954920e+00, 1.35954920e+00, 1.35954920e+00,
       1.36069411e+00, 1.36069411e+00, 1.36069411e+00, 1.36069411e+00,
       1.36194086e+00, 1.36194086e+00, 1.36194086e+00, 1.36194086e+00,
       1.36330593e+00, 1.36330593e+00, 1.36330593e+00, 1.36330593e+00,
       1.36405650e+00, 1.36405650e+00, 1.36405650e+00, 1.36405650e+00,
       1.36415497e+00, 1.36415497e+00, 1.36415497e+00, 1.36415497e+00,
       1.36359348e+00, 1.36359348e+00, 1.36359348e+00, 1.36359348e+00,
       1.36234614e+00, 1.36234614e+00, 1.36234614e+00, 1.36234614e+00,
       1.36135889e+00, 1.36135889e+00, 1.36135889e+00, 1.36135889e+00,
       1.36073912e+00, 1.36073912e+00, 1.36073912e+00, 1.36073912e+00,
       1.36010502e+00, 1.36010502e+00, 1.36010502e+00, 1.36010502e+00,
       1.36015262e+00, 1.36015262e+00, 1.36015262e+00, 1.36015262e+00,
       1.35942760e+00, 1.35942760e+00, 1.35942760e+00, 1.35942760e+00,
       1.35349451e+00, 1.35349451e+00, 1.35349451e+00, 1.35349451e+00,
       1.32499316e+00, 1.32499316e+00, 1.32499316e+00, 1.32499316e+00,
       1.19968030e+00, 1.19968030e+00, 1.19968030e+00, 1.19968030e+00,
       7.65654632e-01, 7.65654632e-01, 7.65654632e-01, 7.65654632e-01,
       1.63013744e-01, 1.63013744e-01, 1.63013744e-01, 1.63013744e-01,
       1.51766301e-02, 1.51766301e-02, 1.51766301e-02, 1.51766301e-02,
       1.15961586e-03, 1.15961586e-03, 1.15961586e-03, 1.15961586e-03,
       8.71092067e-05, 8.71092067e-05, 8.71092067e-05, 8.71092067e-05,
       6.51852874e-06, 6.51852874e-06, 6.51852874e-06, 6.51852874e-06,
       4.86666078e-07, 4.86666078e-07, 4.86666078e-07, 4.86666078e-07,
       3.62471947e-08, 3.62471947e-08, 3.62471947e-08, 3.62471947e-08,
       2.69260253e-09, 2.69260253e-09, 2.69260253e-09, 2.69260253e-09,
       1.99494358e-10, 1.99494358e-10, 1.99494358e-10, 1.99494358e-10,
       1.47423360e-11, 1.47423360e-11, 1.47423360e-11, 1.47423360e-11,
       1.08650415e-12, 1.08650415e-12, 1.08650415e-12, 1.08650415e-12,
       7.98526879e-14, 7.98526879e-14, 7.98526879e-14, 7.98526879e-14,
       5.91227187e-15, 5.91227187e-15, 5.91227187e-15, 5.91227187e-15,
       3.97725372e-16, 3.97725372e-16, 3.97725372e-16, 3.97725372e-16,
       1.14152033e-17, 1.14152033e-17, 1.14152033e-17, 1.14152033e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999979,
       0.99999979, 0.99999979, 0.99999979, 0.99999865, 0.99999865,
       0.99999865, 0.99999865, 0.999992  , 0.999992  , 0.999992  ,
       0.999992  , 0.99995725, 0.99995725, 0.99995725, 0.99995725,
       0.99979607, 0.99979607, 0.99979607, 0.99979607, 0.99914172,
       0.99914172, 0.99914172, 0.99914172, 0.9968603 , 0.9968603 ,
       0.9968603 , 0.9968603 , 0.99018195, 0.99018195, 0.99018195,
       0.99018195, 0.97414391, 0.97414391, 0.97414391, 0.97414391,
       0.94304609, 0.94304609, 0.94304609, 0.94304609, 0.89430785,
       0.89430785, 0.89430785, 0.89430785, 0.83105531, 0.83105531,
       0.83105531, 0.83105531, 0.75992159, 0.75992159, 0.75992159,
       0.75992159, 0.68934729, 0.68934729, 0.68934729, 0.68934729,
       0.62578832, 0.62578832, 0.62578832, 0.62578832, 0.56572412,
       0.56572412, 0.56572412, 0.56572412, 0.51826812, 0.51826812,
       0.51826812, 0.51826812, 0.48775305, 0.48775305, 0.48775305,
       0.48775305, 0.47361881, 0.47361881, 0.47361881, 0.47361881,
       0.46884188, 0.46884188, 0.46884188, 0.46884188, 0.46724329,
       0.46724329, 0.46724329, 0.46724329, 0.46648424, 0.46648424,
       0.46648424, 0.46648424, 0.46584328, 0.46584328, 0.46584328,
       0.46584328, 0.46559981, 0.46559981, 0.46559981, 0.46559981,
       0.46550449, 0.46550449, 0.46550449, 0.46550449, 0.46529836,
       0.46529836, 0.46529836, 0.46529836, 0.46519784, 0.46519784,
       0.46519784, 0.46519784, 0.46501854, 0.46501854, 0.46501854,
       0.46501854, 0.4645934 , 0.4645934 , 0.4645934 , 0.4645934 ,
       0.4644984 , 0.4644984 , 0.4644984 , 0.4644984 , 0.4647448 ,
       0.4647448 , 0.4647448 , 0.4647448 , 0.46480417, 0.46480417,
       0.46480417, 0.46480417, 0.46452695, 0.46452695, 0.46452695,
       0.46452695, 0.46226705, 0.46226705, 0.46226705, 0.46226705,
       0.44923987, 0.44923987, 0.44923987, 0.44923987, 0.39520123,
       0.39520123, 0.39520123, 0.39520123, 0.25019732, 0.25019732,
       0.25019732, 0.25019732, 0.12347913, 0.12347913, 0.12347913,
       0.12347913, 0.10201923, 0.10201923, 0.10201923, 0.10201923,
       0.10015345, 0.10015345, 0.10015345, 0.10015345, 0.10001152,
       0.10001152, 0.10001152, 0.10001152, 0.10000086, 0.10000086,
       0.10000086, 0.10000086, 0.10000006, 0.10000006, 0.10000006,
       0.10000006, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999977,
       0.99999977, 0.99999977, 0.99999977, 0.99999859, 0.99999859,
       0.99999859, 0.99999859, 0.99999193, 0.99999193, 0.99999193,
       0.99999193, 0.99995852, 0.99995852, 0.99995852, 0.99995852,
       0.99980949, 0.99980949, 0.99980949, 0.99980949, 0.99922831,
       0.99922831, 0.99922831, 0.99922831, 0.99728299, 0.99728299,
       0.99728299, 0.99728299, 0.99181486, 0.99181486, 0.99181486,
       0.99181486, 0.97917208, 0.97917208, 0.97917208, 0.97917208,
       0.95541523, 0.95541523, 0.95541523, 0.95541523, 0.91893615,
       0.91893615, 0.91893615, 0.91893615, 0.87190997, 0.87190997,
       0.87190997, 0.87190997, 0.8187528 , 0.8187528 , 0.8187528 ,
       0.8187528 , 0.76602872, 0.76602872, 0.76602872, 0.76602872,
       0.7143833 , 0.7143833 , 0.7143833 , 0.7143833 , 0.66676801,
       0.66676801, 0.66676801, 0.66676801, 0.6307179 , 0.6307179 ,
       0.6307179 , 0.6307179 , 0.60198349, 0.60198349, 0.60198349,
       0.60198349, 0.58404794, 0.58404794, 0.58404794, 0.58404794,
       0.57892756, 0.57892756, 0.57892756, 0.57892756, 0.57904741,
       0.57904741, 0.57904741, 0.57904741, 0.58062787, 0.58062787,
       0.58062787, 0.58062787, 0.58283322, 0.58283322, 0.58283322,
       0.58283322, 0.58277091, 0.58277091, 0.58277091, 0.58277091,
       0.57963328, 0.57963328, 0.57963328, 0.57963328, 0.56873886,
       0.56873886, 0.56873886, 0.56873886, 0.54485283, 0.54485283,
       0.54485283, 0.54485283, 0.50395357, 0.50395357, 0.50395357,
       0.50395357, 0.44501153, 0.44501153, 0.44501153, 0.44501153,
       0.38825268, 0.38825268, 0.38825268, 0.38825268, 0.35468169,
       0.35468169, 0.35468169, 0.35468169, 0.33785192, 0.33785192,
       0.33785192, 0.33785192, 0.331301  , 0.331301  , 0.331301  ,
       0.331301  , 0.33001344, 0.33001344, 0.33001344, 0.33001344,
       0.32943388, 0.32943388, 0.32943388, 0.32943388, 0.32258242,
       0.32258242, 0.32258242, 0.32258242, 0.28431554, 0.28431554,
       0.28431554, 0.28431554, 0.1892955 , 0.1892955 , 0.1892955 ,
       0.1892955 , 0.1338258 , 0.1338258 , 0.1338258 , 0.1338258 ,
       0.12578276, 0.12578276, 0.12578276, 0.12578276, 0.1250613 ,
       0.1250613 , 0.1250613 , 0.1250613 , 0.12500465, 0.12500465,
       0.12500465, 0.12500465, 0.12500035, 0.12500035, 0.12500035,
       0.12500035, 0.12500003, 0.12500003, 0.12500003, 0.12500003,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000039e-01, 7.50000039e-01, 7.50000039e-01, 7.50000039e-01,
       7.50000267e-01, 7.50000267e-01, 7.50000267e-01, 7.50000267e-01,
       7.50001674e-01, 7.50001674e-01, 7.50001674e-01, 7.50001674e-01,
       7.50009545e-01, 7.50009545e-01, 7.50009545e-01, 7.50009545e-01,
       7.50049084e-01, 7.50049084e-01, 7.50049084e-01, 7.50049084e-01,
       7.50225416e-01, 7.50225416e-01, 7.50225416e-01, 7.50225416e-01,
       7.50913227e-01, 7.50913227e-01, 7.50913227e-01, 7.50913227e-01,
       7.53217421e-01, 7.53217421e-01, 7.53217421e-01, 7.53217421e-01,
       7.59713585e-01, 7.59713585e-01, 7.59713585e-01, 7.59713585e-01,
       7.74851816e-01, 7.74851816e-01, 7.74851816e-01, 7.74851816e-01,
       8.03766307e-01, 8.03766307e-01, 8.03766307e-01, 8.03766307e-01,
       8.49390171e-01, 8.49390171e-01, 8.49390171e-01, 8.49390171e-01,
       9.10489184e-01, 9.10489184e-01, 9.10489184e-01, 9.10489184e-01,
       9.82823141e-01, 9.82823141e-01, 9.82823141e-01, 9.82823141e-01,
       1.05751085e+00, 1.05751085e+00, 1.05751085e+00, 1.05751085e+00,
       1.13275935e+00, 1.13275935e+00, 1.13275935e+00, 1.13275935e+00,
       1.20924075e+00, 1.20924075e+00, 1.20924075e+00, 1.20924075e+00,
       1.27595955e+00, 1.27595955e+00, 1.27595955e+00, 1.27595955e+00,
       1.32313321e+00, 1.32313321e+00, 1.32313321e+00, 1.32313321e+00,
       1.34759687e+00, 1.34759687e+00, 1.34759687e+00, 1.34759687e+00,
       1.35670899e+00, 1.35670899e+00, 1.35670899e+00, 1.35670899e+00,
       1.35944955e+00, 1.35944955e+00, 1.35944955e+00, 1.35944955e+00,
       1.36061079e+00, 1.36061079e+00, 1.36061079e+00, 1.36061079e+00,
       1.36171079e+00, 1.36171079e+00, 1.36171079e+00, 1.36171079e+00,
       1.36290556e+00, 1.36290556e+00, 1.36290556e+00, 1.36290556e+00,
       1.36383904e+00, 1.36383904e+00, 1.36383904e+00, 1.36383904e+00,
       1.36419289e+00, 1.36419289e+00, 1.36419289e+00, 1.36419289e+00,
       1.36391125e+00, 1.36391125e+00, 1.36391125e+00, 1.36391125e+00,
       1.36302760e+00, 1.36302760e+00, 1.36302760e+00, 1.36302760e+00,
       1.36208548e+00, 1.36208548e+00, 1.36208548e+00, 1.36208548e+00,
       1.36114875e+00, 1.36114875e+00, 1.36114875e+00, 1.36114875e+00,
       1.36014308e+00, 1.36014308e+00, 1.36014308e+00, 1.36014308e+00,
       1.36010184e+00, 1.36010184e+00, 1.36010184e+00, 1.36010184e+00,
       1.35992178e+00, 1.35992178e+00, 1.35992178e+00, 1.35992178e+00,
       1.35788212e+00, 1.35788212e+00, 1.35788212e+00, 1.35788212e+00,
       1.34841935e+00, 1.34841935e+00, 1.34841935e+00, 1.34841935e+00,
       1.30264541e+00, 1.30264541e+00, 1.30264541e+00, 1.30264541e+00,
       1.10947676e+00, 1.10947676e+00, 1.10947676e+00, 1.10947676e+00,
       5.55338397e-01, 5.55338397e-01, 5.55338397e-01, 5.55338397e-01,
       8.31514874e-02, 8.31514874e-02, 8.31514874e-02, 8.31514874e-02,
       6.89643013e-03, 6.89643013e-03, 6.89643013e-03, 6.89643013e-03,
       5.24246789e-04, 5.24246789e-04, 5.24246789e-04, 5.24246789e-04,
       3.94230246e-05, 3.94230246e-05, 3.94230246e-05, 3.94230246e-05,
       2.95275452e-06, 2.95275452e-06, 2.95275452e-06, 2.95275452e-06,
       2.20643830e-07, 2.20643830e-07, 2.20643830e-07, 2.20643830e-07,
       1.64480940e-08, 1.64480940e-08, 1.64480940e-08, 1.64480940e-08,
       1.22307279e-09, 1.22307279e-09, 1.22307279e-09, 1.22307279e-09,
       9.07116089e-11, 9.07116089e-11, 9.07116089e-11, 9.07116089e-11,
       6.71020267e-12, 6.71020267e-12, 6.71020267e-12, 6.71020267e-12,
       4.95019676e-13, 4.95019676e-13, 4.95019676e-13, 4.95019676e-13,
       3.65542843e-14, 3.65542843e-14, 3.65542843e-14, 3.65542843e-14,
       2.62269446e-15, 2.62269446e-15, 2.62269446e-15, 2.62269446e-15,
       1.74466545e-16, 1.74466545e-16, 1.74466545e-16, 1.74466545e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999968,
       0.99999968, 0.99999968, 0.99999968, 0.99999802, 0.99999802,
       0.99999802, 0.99999802, 0.99998871, 0.99998871, 0.99998871,
       0.99998871, 0.99994192, 0.99994192, 0.99994192, 0.99994192,
       0.99973332, 0.99973332, 0.99973332, 0.99973332, 0.99892001,
       0.99892001, 0.99892001, 0.99892001, 0.99620009, 0.99620009,
       0.99620009, 0.99620009, 0.98857069, 0.98857069, 0.98857069,
       0.98857069, 0.97100982, 0.97100982, 0.97100982, 0.97100982,
       0.93828248, 0.93828248, 0.93828248, 0.93828248, 0.88868204,
       0.88868204, 0.88868204, 0.88868204, 0.82587279, 0.82587279,
       0.82587279, 0.82587279, 0.75627712, 0.75627712, 0.75627712,
       0.75627712, 0.68804743, 0.68804743, 0.68804743, 0.68804743,
       0.62631819, 0.62631819, 0.62631819, 0.62631819, 0.56772481,
       0.56772481, 0.56772481, 0.56772481, 0.52076656, 0.52076656,
       0.52076656, 0.52076656, 0.48953753, 0.48953753, 0.48953753,
       0.48953753, 0.47437293, 0.47437293, 0.47437293, 0.47437293,
       0.46911158, 0.46911158, 0.46911158, 0.46911158, 0.46740275,
       0.46740275, 0.46740275, 0.46740275, 0.46657107, 0.46657107,
       0.46657107, 0.46657107, 0.46582165, 0.46582165, 0.46582165,
       0.46582165, 0.46543932, 0.46543932, 0.46543932, 0.46543932,
       0.4654086 , 0.4654086 , 0.4654086 , 0.4654086 , 0.46534166,
       0.46534166, 0.46534166, 0.46534166, 0.46535445, 0.46535445,
       0.46535445, 0.46535445, 0.4653544 , 0.4653544 , 0.4653544 ,
       0.4653544 , 0.46497431, 0.46497431, 0.46497431, 0.46497431,
       0.46469511, 0.46469511, 0.46469511, 0.46469511, 0.46475993,
       0.46475993, 0.46475993, 0.46475993, 0.464781  , 0.464781  ,
       0.464781  , 0.464781  , 0.46475951, 0.46475951, 0.46475951,
       0.46475951, 0.46429906, 0.46429906, 0.46429906, 0.46429906,
       0.45994624, 0.45994624, 0.45994624, 0.45994624, 0.43907961,
       0.43907961, 0.43907961, 0.43907961, 0.36134325, 0.36134325,
       0.36134325, 0.36134325, 0.19702827, 0.19702827, 0.19702827,
       0.19702827, 0.11146119, 0.11146119, 0.11146119, 0.11146119,
       0.1009144 , 0.1009144 , 0.1009144 , 0.1009144 , 0.10006936,
       0.10006936, 0.10006936, 0.10006936, 0.10000522, 0.10000522,
       0.10000522, 0.10000522, 0.10000039, 0.10000039, 0.10000039,
       0.10000039, 0.10000003, 0.10000003, 0.10000003, 0.10000003,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999966,
       0.99999966, 0.99999966, 0.99999966, 0.99999796, 0.99999796,
       0.99999796, 0.99999796, 0.99998877, 0.99998877, 0.99998877,
       0.99998877, 0.99994431, 0.99994431, 0.99994431, 0.99994431,
       0.99975356, 0.99975356, 0.99975356, 0.99975356, 0.99903846,
       0.99903846, 0.99903846, 0.99903846, 0.99674028, 0.99674028,
       0.99674028, 0.99674028, 0.9905424 , 0.9905424 , 0.9905424 ,
       0.9905424 , 0.97678524, 0.97678524, 0.97678524, 0.97678524,
       0.95188827, 0.95188827, 0.95188827, 0.95188827, 0.91483889,
       0.91483889, 0.91483889, 0.91483889, 0.86814947, 0.86814947,
       0.86814947, 0.86814947, 0.81614043, 0.81614043, 0.81614043,
       0.81614043, 0.76514638, 0.76514638, 0.76514638, 0.76514638,
       0.71513541, 0.71513541, 0.71513541, 0.71513541, 0.66759433,
       0.66759433, 0.66759433, 0.66759433, 0.63206294, 0.63206294,
       0.63206294, 0.63206294, 0.60467247, 0.60467247, 0.60467247,
       0.60467247, 0.58608604, 0.58608604, 0.58608604, 0.58608604,
       0.57910917, 0.57910917, 0.57910917, 0.57910917, 0.57863491,
       0.57863491, 0.57863491, 0.57863491, 0.57958226, 0.57958226,
       0.57958226, 0.57958226, 0.58186037, 0.58186037, 0.58186037,
       0.58186037, 0.58254066, 0.58254066, 0.58254066, 0.58254066,
       0.58105548, 0.58105548, 0.58105548, 0.58105548, 0.5741289 ,
       0.5741289 , 0.5741289 , 0.5741289 , 0.55663703, 0.55663703,
       0.55663703, 0.55663703, 0.52383547, 0.52383547, 0.52383547,
       0.52383547, 0.47295059, 0.47295059, 0.47295059, 0.47295059,
       0.41066789, 0.41066789, 0.41066789, 0.41066789, 0.36741736,
       0.36741736, 0.36741736, 0.36741736, 0.34401862, 0.34401862,
       0.34401862, 0.34401862, 0.33359114, 0.33359114, 0.33359114,
       0.33359114, 0.33073618, 0.33073618, 0.33073618, 0.33073618,
       0.33046507, 0.33046507, 0.33046507, 0.33046507, 0.32945985,
       0.32945985, 0.32945985, 0.32945985, 0.31646094, 0.31646094,
       0.31646094, 0.31646094, 0.25979697, 0.25979697, 0.25979697,
       0.25979697, 0.16286529, 0.16286529, 0.16286529, 0.16286529,
       0.12929032, 0.12929032, 0.12929032, 0.12929032, 0.12536025,
       0.12536025, 0.12536025, 0.12536025, 0.1250278 , 0.1250278 ,
       0.1250278 , 0.1250278 , 0.1250021 , 0.1250021 , 0.1250021 ,
       0.1250021 , 0.12500016, 0.12500016, 0.12500016, 0.12500016,
       0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000008e-01, 7.50000008e-01, 7.50000008e-01, 7.50000008e-01,
       7.50000061e-01, 7.50000061e-01, 7.50000061e-01, 7.50000061e-01,
       7.50000400e-01, 7.50000400e-01, 7.50000400e-01, 7.50000400e-01,
       7.50002418e-01, 7.50002418e-01, 7.50002418e-01, 7.50002418e-01,
       7.50013293e-01, 7.50013293e-01, 7.50013293e-01, 7.50013293e-01,
       7.50065892e-01, 7.50065892e-01, 7.50065892e-01, 7.50065892e-01,
       7.50291602e-01, 7.50291602e-01, 7.50291602e-01, 7.50291602e-01,
       7.51137963e-01, 7.51137963e-01, 7.51137963e-01, 7.51137963e-01,
       7.53860931e-01, 7.53860931e-01, 7.53860931e-01, 7.53860931e-01,
       7.61229895e-01, 7.61229895e-01, 7.61229895e-01, 7.61229895e-01,
       7.77729726e-01, 7.77729726e-01, 7.77729726e-01, 7.77729726e-01,
       8.08112566e-01, 8.08112566e-01, 8.08112566e-01, 8.08112566e-01,
       8.54605431e-01, 8.54605431e-01, 8.54605431e-01, 8.54605431e-01,
       9.15480064e-01, 9.15480064e-01, 9.15480064e-01, 9.15480064e-01,
       9.86288872e-01, 9.86288872e-01, 9.86288872e-01, 9.86288872e-01,
       1.05903455e+00, 1.05903455e+00, 1.05903455e+00, 1.05903455e+00,
       1.13226352e+00, 1.13226352e+00, 1.13226352e+00, 1.13226352e+00,
       1.20670021e+00, 1.20670021e+00, 1.20670021e+00, 1.20670021e+00,
       1.27256005e+00, 1.27256005e+00, 1.27256005e+00, 1.27256005e+00,
       1.32027206e+00, 1.32027206e+00, 1.32027206e+00, 1.32027206e+00,
       1.34589382e+00, 1.34589382e+00, 1.34589382e+00, 1.34589382e+00,
       1.35597341e+00, 1.35597341e+00, 1.35597341e+00, 1.35597341e+00,
       1.35925362e+00, 1.35925362e+00, 1.35925362e+00, 1.35925362e+00,
       1.36055940e+00, 1.36055940e+00, 1.36055940e+00, 1.36055940e+00,
       1.36160216e+00, 1.36160216e+00, 1.36160216e+00, 1.36160216e+00,
       1.36259868e+00, 1.36259868e+00, 1.36259868e+00, 1.36259868e+00,
       1.36352978e+00, 1.36352978e+00, 1.36352978e+00, 1.36352978e+00,
       1.36408956e+00, 1.36408956e+00, 1.36408956e+00, 1.36408956e+00,
       1.36400563e+00, 1.36400563e+00, 1.36400563e+00, 1.36400563e+00,
       1.36344216e+00, 1.36344216e+00, 1.36344216e+00, 1.36344216e+00,
       1.36276431e+00, 1.36276431e+00, 1.36276431e+00, 1.36276431e+00,
       1.36178307e+00, 1.36178307e+00, 1.36178307e+00, 1.36178307e+00,
       1.36049076e+00, 1.36049076e+00, 1.36049076e+00, 1.36049076e+00,
       1.36016799e+00, 1.36016799e+00, 1.36016799e+00, 1.36016799e+00,
       1.36000464e+00, 1.36000464e+00, 1.36000464e+00, 1.36000464e+00,
       1.35908609e+00, 1.35908609e+00, 1.35908609e+00, 1.35908609e+00,
       1.35614599e+00, 1.35614599e+00, 1.35614599e+00, 1.35614599e+00,
       1.34038610e+00, 1.34038610e+00, 1.34038610e+00, 1.34038610e+00,
       1.26724046e+00, 1.26724046e+00, 1.26724046e+00, 1.26724046e+00,
       9.82640800e-01, 9.82640800e-01, 9.82640800e-01, 9.82640800e-01,
       3.48788395e-01, 3.48788395e-01, 3.48788395e-01, 3.48788395e-01,
       3.96209590e-02, 3.96209590e-02, 3.96209590e-02, 3.96209590e-02,
       3.13229418e-03, 3.13229418e-03, 3.13229418e-03, 3.13229418e-03,
       2.36909021e-04, 2.36909021e-04, 2.36909021e-04, 2.36909021e-04,
       1.78221789e-05, 1.78221789e-05, 1.78221789e-05, 1.78221789e-05,
       1.33690626e-06, 1.33690626e-06, 1.33690626e-06, 1.33690626e-06,
       9.99987457e-08, 9.99987457e-08, 9.99987457e-08, 9.99987457e-08,
       7.46125178e-09, 7.46125178e-09, 7.46125178e-09, 7.46125178e-09,
       5.55345318e-10, 5.55345318e-10, 5.55345318e-10, 5.55345318e-10,
       4.12297396e-11, 4.12297396e-11, 4.12297396e-11, 4.12297396e-11,
       3.05298490e-12, 3.05298490e-12, 3.05298490e-12, 3.05298490e-12,
       2.25630808e-13, 2.25630808e-13, 2.25630808e-13, 2.25630808e-13,
       1.65496825e-14, 1.65496825e-14, 1.65496825e-14, 1.65496825e-14,
       1.18089382e-15, 1.18089382e-15, 1.18089382e-15, 1.18089382e-15,
       7.03960128e-17, 7.03960128e-17, 7.03960128e-17, 7.03960128e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999953,
       0.99999953, 0.99999953, 0.99999953, 0.99999714, 0.99999714,
       0.99999714, 0.99999714, 0.99998427, 0.99998427, 0.99998427,
       0.99998427, 0.99992204, 0.99992204, 0.99992204, 0.99992204,
       0.99965503, 0.99965503, 0.99965503, 0.99965503, 0.99865441,
       0.99865441, 0.99865441, 0.99865441, 0.99544177, 0.99544177,
       0.99544177, 0.99544177, 0.98679799, 0.98679799, 0.98679799,
       0.98679799, 0.96770449, 0.96770449, 0.96770449, 0.96770449,
       0.93344814, 0.93344814, 0.93344814, 0.93344814, 0.88314892,
       0.88314892, 0.88314892, 0.88314892, 0.82088008, 0.82088008,
       0.82088008, 0.82088008, 0.75281451, 0.75281451, 0.75281451,
       0.75281451, 0.68680422, 0.68680422, 0.68680422, 0.68680422,
       0.62684396, 0.62684396, 0.62684396, 0.62684396, 0.56962935,
       0.56962935, 0.56962935, 0.56962935, 0.5232226 , 0.5232226 ,
       0.5232226 , 0.5232226 , 0.49143435, 0.49143435, 0.49143435,
       0.49143435, 0.47522501, 0.47522501, 0.47522501, 0.47522501,
       0.46935729, 0.46935729, 0.46935729, 0.46935729, 0.46752687,
       0.46752687, 0.46752687, 0.46752687, 0.46668373, 0.46668373,
       0.46668373, 0.46668373, 0.46587781, 0.46587781, 0.46587781,
       0.46587781, 0.46533792, 0.46533792, 0.46533792, 0.46533792,
       0.46526321, 0.46526321, 0.46526321, 0.46526321, 0.46529401,
       0.46529401, 0.46529401, 0.46529401, 0.46538814, 0.46538814,
       0.46538814, 0.46538814, 0.46554165, 0.46554165, 0.46554165,
       0.46554165, 0.4653427 , 0.4653427 , 0.4653427 , 0.4653427 ,
       0.46500494, 0.46500494, 0.46500494, 0.46500494, 0.4649203 ,
       0.4649203 , 0.4649203 , 0.4649203 , 0.46481236, 0.46481236,
       0.46481236, 0.46481236, 0.4648016 , 0.4648016 , 0.4648016 ,
       0.4648016 , 0.46486006, 0.46486006, 0.46486006, 0.46486006,
       0.46351591, 0.46351591, 0.46351591, 0.46351591, 0.45617693,
       0.45617693, 0.45617693, 0.45617693, 0.42387417, 0.42387417,
       0.42387417, 0.42387417, 0.31662409, 0.31662409, 0.31662409,
       0.31662409, 0.15467947, 0.15467947, 0.15467947, 0.15467947,
       0.10533579, 0.10533579, 0.10533579, 0.10533579, 0.10041475,
       0.10041475, 0.10041475, 0.10041475, 0.10003134, 0.10003134,
       0.10003134, 0.10003134, 0.10000236, 0.10000236, 0.10000236,
       0.10000236, 0.10000018, 0.10000018, 0.10000018, 0.10000018,
       0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.9999995 ,
       0.9999995 , 0.9999995 , 0.9999995 , 0.99999709, 0.99999709,
       0.99999709, 0.99999709, 0.99998454, 0.99998454, 0.99998454,
       0.99998454, 0.99992608, 0.99992608, 0.99992608, 0.99992608,
       0.99968447, 0.99968447, 0.99968447, 0.99968447, 0.99881309,
       0.99881309, 0.99881309, 0.99881309, 0.9961219 , 0.9961219 ,
       0.9961219 , 0.9961219 , 0.98915182, 0.98915182, 0.98915182,
       0.98915182, 0.9742804 , 0.9742804 , 0.9742804 , 0.9742804 ,
       0.94831908, 0.94831908, 0.94831908, 0.94831908, 0.91081218,
       0.91081218, 0.91081218, 0.91081218, 0.86452304, 0.86452304,
       0.86452304, 0.86452304, 0.81364869, 0.81364869, 0.81364869,
       0.81364869, 0.76425007, 0.76425007, 0.76425007, 0.76425007,
       0.71596964, 0.71596964, 0.71596964, 0.71596964, 0.66862165,
       0.66862165, 0.66862165, 0.66862165, 0.63309882, 0.63309882,
       0.63309882, 0.63309882, 0.60692411, 0.60692411, 0.60692411,
       0.60692411, 0.58834503, 0.58834503, 0.58834503, 0.58834503,
       0.5797179 , 0.5797179 , 0.5797179 , 0.5797179 , 0.57833736,
       0.57833736, 0.57833736, 0.57833736, 0.57885427, 0.57885427,
       0.57885427, 0.57885427, 0.58070829, 0.58070829, 0.58070829,
       0.58070829, 0.5821418 , 0.5821418 , 0.5821418 , 0.5821418 ,
       0.58161437, 0.58161437, 0.58161437, 0.58161437, 0.57752342,
       0.57752342, 0.57752342, 0.57752342, 0.56529572, 0.56529572,
       0.56529572, 0.56529572, 0.53988046, 0.53988046, 0.53988046,
       0.53988046, 0.49734652, 0.49734652, 0.49734652, 0.49734652,
       0.43756408, 0.43756408, 0.43756408, 0.43756408, 0.38405097,
       0.38405097, 0.38405097, 0.38405097, 0.35274026, 0.35274026,
       0.35274026, 0.35274026, 0.33729664, 0.33729664, 0.33729664,
       0.33729664, 0.33184586, 0.33184586, 0.33184586, 0.33184586,
       0.3308689 , 0.3308689 , 0.3308689 , 0.3308689 , 0.33116014,
       0.33116014, 0.33116014, 0.33116014, 0.3284959 , 0.3284959 ,
       0.3284959 , 0.3284959 , 0.305514  , 0.305514  , 0.305514  ,
       0.305514  , 0.22909354, 0.22909354, 0.22909354, 0.22909354,
       0.14525793, 0.14525793, 0.14525793, 0.14525793, 0.12704227,
       0.12704227, 0.12704227, 0.12704227, 0.12516466, 0.12516466,
       0.12516466, 0.12516466, 0.12501259, 0.12501259, 0.12501259,
       0.12501259, 0.12500095, 0.12500095, 0.12500095, 0.12500095,
       0.12500007, 0.12500007, 0.12500007, 0.12500007, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
       7.50000093e-01, 7.50000093e-01, 7.50000093e-01, 7.50000093e-01,
       7.50000591e-01, 7.50000591e-01, 7.50000591e-01, 7.50000591e-01,
       7.50003448e-01, 7.50003448e-01, 7.50003448e-01, 7.50003448e-01,
       7.50018287e-01, 7.50018287e-01, 7.50018287e-01, 7.50018287e-01,
       7.50087467e-01, 7.50087467e-01, 7.50087467e-01, 7.50087467e-01,
       7.50373360e-01, 7.50373360e-01, 7.50373360e-01, 7.50373360e-01,
       7.51404804e-01, 7.51404804e-01, 7.51404804e-01, 7.51404804e-01,
       7.54594512e-01, 7.54594512e-01, 7.54594512e-01, 7.54594512e-01,
       7.62888923e-01, 7.62888923e-01, 7.62888923e-01, 7.62888923e-01,
       7.80756528e-01, 7.80756528e-01, 7.80756528e-01, 7.80756528e-01,
       8.12524446e-01, 8.12524446e-01, 8.12524446e-01, 8.12524446e-01,
       8.59748156e-01, 8.59748156e-01, 8.59748156e-01, 8.59748156e-01,
       9.20303317e-01, 9.20303317e-01, 9.20303317e-01, 9.20303317e-01,
       9.89569875e-01, 9.89569875e-01, 9.89569875e-01, 9.89569875e-01,
       1.06043656e+00, 1.06043656e+00, 1.06043656e+00, 1.06043656e+00,
       1.13178235e+00, 1.13178235e+00, 1.13178235e+00, 1.13178235e+00,
       1.20428722e+00, 1.20428722e+00, 1.20428722e+00, 1.20428722e+00,
       1.26922681e+00, 1.26922681e+00, 1.26922681e+00, 1.26922681e+00,
       1.31744793e+00, 1.31744793e+00, 1.31744793e+00, 1.31744793e+00,
       1.34420543e+00, 1.34420543e+00, 1.34420543e+00, 1.34420543e+00,
       1.35515354e+00, 1.35515354e+00, 1.35515354e+00, 1.35515354e+00,
       1.35893569e+00, 1.35893569e+00, 1.35893569e+00, 1.35893569e+00,
       1.36047087e+00, 1.36047087e+00, 1.36047087e+00, 1.36047087e+00,
       1.36156372e+00, 1.36156372e+00, 1.36156372e+00, 1.36156372e+00,
       1.36242402e+00, 1.36242402e+00, 1.36242402e+00, 1.36242402e+00,
       1.36322740e+00, 1.36322740e+00, 1.36322740e+00, 1.36322740e+00,
       1.36389115e+00, 1.36389115e+00, 1.36389115e+00, 1.36389115e+00,
       1.36394778e+00, 1.36394778e+00, 1.36394778e+00, 1.36394778e+00,
       1.36363338e+00, 1.36363338e+00, 1.36363338e+00, 1.36363338e+00,
       1.36317823e+00, 1.36317823e+00, 1.36317823e+00, 1.36317823e+00,
       1.36245466e+00, 1.36245466e+00, 1.36245466e+00, 1.36245466e+00,
       1.36111329e+00, 1.36111329e+00, 1.36111329e+00, 1.36111329e+00,
       1.36045029e+00, 1.36045029e+00, 1.36045029e+00, 1.36045029e+00,
       1.36011173e+00, 1.36011173e+00, 1.36011173e+00, 1.36011173e+00,
       1.35943008e+00, 1.35943008e+00, 1.35943008e+00, 1.35943008e+00,
       1.35849429e+00, 1.35849429e+00, 1.35849429e+00, 1.35849429e+00,
       1.35337432e+00, 1.35337432e+00, 1.35337432e+00, 1.35337432e+00,
       1.32699322e+00, 1.32699322e+00, 1.32699322e+00, 1.32699322e+00,
       1.21392814e+00, 1.21392814e+00, 1.21392814e+00, 1.21392814e+00,
       8.11305629e-01, 8.11305629e-01, 8.11305629e-01, 8.11305629e-01,
       1.91993018e-01, 1.91993018e-01, 1.91993018e-01, 1.91993018e-01,
       1.84260657e-02, 1.84260657e-02, 1.84260657e-02, 1.84260657e-02,
       1.41864065e-03, 1.41864065e-03, 1.41864065e-03, 1.41864065e-03,
       1.07039498e-04, 1.07039498e-04, 1.07039498e-04, 1.07039498e-04,
       8.05698302e-06, 8.05698302e-06, 8.05698302e-06, 8.05698302e-06,
       6.04942296e-07, 6.04942296e-07, 6.04942296e-07, 6.04942296e-07,
       4.53003318e-08, 4.53003318e-08, 4.53003318e-08, 4.53003318e-08,
       3.38340676e-09, 3.38340676e-09, 3.38340676e-09, 3.38340676e-09,
       2.52067618e-10, 2.52067618e-10, 2.52067618e-10, 2.52067618e-10,
       1.87321914e-11, 1.87321914e-11, 1.87321914e-11, 1.87321914e-11,
       1.38872868e-12, 1.38872868e-12, 1.38872868e-12, 1.38872868e-12,
       1.02623229e-13, 1.02623229e-13, 1.02623229e-13, 1.02623229e-13,
       7.45434898e-15, 7.45434898e-15, 7.45434898e-15, 7.45434898e-15,
       5.62547042e-16, 5.62547042e-16, 5.62547042e-16, 5.62547042e-16,
       3.42190912e-17, 3.42190912e-17, 3.42190912e-17, 3.42190912e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999989, 0.99999989, 0.99999989, 0.99999989, 0.9999993 ,
       0.9999993 , 0.9999993 , 0.9999993 , 0.99999592, 0.99999592,
       0.99999592, 0.99999592, 0.99997836, 0.99997836, 0.99997836,
       0.99997836, 0.99989651, 0.99989651, 0.99989651, 0.99989651,
       0.99955833, 0.99955833, 0.99955833, 0.99955833, 0.99833914,
       0.99833914, 0.99833914, 0.99833914, 0.994578  , 0.994578  ,
       0.994578  , 0.994578  , 0.98486191, 0.98486191, 0.98486191,
       0.98486191, 0.96423927, 0.96423927, 0.96423927, 0.96423927,
       0.92856276, 0.92856276, 0.92856276, 0.92856276, 0.87771963,
       0.87771963, 0.87771963, 0.87771963, 0.81607625, 0.81607625,
       0.81607625, 0.81607625, 0.74954761, 0.74954761, 0.74954761,
       0.74954761, 0.68560013, 0.68560013, 0.68560013, 0.68560013,
       0.62733728, 0.62733728, 0.62733728, 0.62733728, 0.57145736,
       0.57145736, 0.57145736, 0.57145736, 0.52561297, 0.52561297,
       0.52561297, 0.52561297, 0.4934087 , 0.4934087 , 0.4934087 ,
       0.4934087 , 0.4762095 , 0.4762095 , 0.4762095 , 0.4762095 ,
       0.46962957, 0.46962957, 0.46962957, 0.46962957, 0.46760322,
       0.46760322, 0.46760322, 0.46760322, 0.46677931, 0.46677931,
       0.46677931, 0.46677931, 0.46598101, 0.46598101, 0.46598101,
       0.46598101, 0.4653201 , 0.4653201 , 0.4653201 , 0.4653201 ,
       0.46512805, 0.46512805, 0.46512805, 0.46512805, 0.46518516,
       0.46518516, 0.46518516, 0.46518516, 0.46533628, 0.46533628,
       0.46533628, 0.46533628, 0.46560697, 0.46560697, 0.46560697,
       0.46560697, 0.46556363, 0.46556363, 0.46556363, 0.46556363,
       0.46534283, 0.46534283, 0.46534283, 0.46534283, 0.46521233,
       0.46521233, 0.46521233, 0.46521233, 0.46494555, 0.46494555,
       0.46494555, 0.46494555, 0.46485571, 0.46485571, 0.46485571,
       0.46485571, 0.46502167, 0.46502167, 0.46502167, 0.46502167,
       0.46460407, 0.46460407, 0.46460407, 0.46460407, 0.46217056,
       0.46217056, 0.46217056, 0.46217056, 0.4504888 , 0.4504888 ,
       0.4504888 , 0.4504888 , 0.40110266, 0.40110266, 0.40110266,
       0.40110266, 0.26313779, 0.26313779, 0.26313779, 0.26313779,
       0.12803042, 0.12803042, 0.12803042, 0.12803042, 0.1024553 ,
       0.1024553 , 0.1024553 , 0.1024553 , 0.10018774, 0.10018774,
       0.10018774, 0.10018774, 0.10001416, 0.10001416, 0.10001416,
       0.10001416, 0.10000107, 0.10000107, 0.10000107, 0.10000107,
       0.10000008, 0.10000008, 0.10000008, 0.10000008, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999988, 0.99999988, 0.99999988, 0.99999988, 0.99999927,
       0.99999927, 0.99999927, 0.99999927, 0.9999959 , 0.9999959 ,
       0.9999959 , 0.9999959 , 0.99997898, 0.99997898, 0.99997898,
       0.99997898, 0.99990291, 0.99990291, 0.99990291, 0.99990291,
       0.99959993, 0.99959993, 0.99959993, 0.99959993, 0.99854785,
       0.99854785, 0.99854785, 0.99854785, 0.99542289, 0.99542289,
       0.99542289, 0.99542289, 0.98764264, 0.98764264, 0.98764264,
       0.98764264, 0.97166631, 0.97166631, 0.97166631, 0.97166631,
       0.94472122, 0.94472122, 0.94472122, 0.94472122, 0.90686323,
       0.90686323, 0.90686323, 0.90686323, 0.86103104, 0.86103104,
       0.86103104, 0.86103104, 0.81128459, 0.81128459, 0.81128459,
       0.81128459, 0.76333114, 0.76333114, 0.76333114, 0.76333114,
       0.71681296, 0.71681296, 0.71681296, 0.71681296, 0.66988534,
       0.66988534, 0.66988534, 0.66988534, 0.63398635, 0.63398635,
       0.63398635, 0.63398635, 0.60868419, 0.60868419, 0.60868419,
       0.60868419, 0.59062344, 0.59062344, 0.59062344, 0.59062344,
       0.58075915, 0.58075915, 0.58075915, 0.58075915, 0.57821989,
       0.57821989, 0.57821989, 0.57821989, 0.57834671, 0.57834671,
       0.57834671, 0.57834671, 0.57958969, 0.57958969, 0.57958969,
       0.57958969, 0.58156325, 0.58156325, 0.58156325, 0.58156325,
       0.58167402, 0.58167402, 0.58167402, 0.58167402, 0.57949654,
       0.57949654, 0.57949654, 0.57949654, 0.57136665, 0.57136665,
       0.57136665, 0.57136665, 0.55237715, 0.55237715, 0.55237715,
       0.55237715, 0.5178861 , 0.5178861 , 0.5178861 , 0.5178861 ,
       0.46556784, 0.46556784, 0.46556784, 0.46556784, 0.40490108,
       0.40490108, 0.40490108, 0.40490108, 0.36456809, 0.36456809,
       0.36456809, 0.36456809, 0.34291316, 0.34291316, 0.34291316,
       0.34291316, 0.33384449, 0.33384449, 0.33384449, 0.33384449,
       0.33130867, 0.33130867, 0.33130867, 0.33130867, 0.33149943,
       0.33149943, 0.33149943, 0.33149943, 0.33184294, 0.33184294,
       0.33184294, 0.33184294, 0.32533092, 0.32533092, 0.32533092,
       0.32533092, 0.28902333, 0.28902333, 0.28902333, 0.28902333,
       0.1964541 , 0.1964541 , 0.1964541 , 0.1964541 , 0.13545621,
       0.13545621, 0.13545621, 0.13545621, 0.12594954, 0.12594954,
       0.12594954, 0.12594954, 0.12507487, 0.12507487, 0.12507487,
       0.12507487, 0.1250057 , 0.1250057 , 0.1250057 , 0.1250057 ,
       0.12500043, 0.12500043, 0.12500043, 0.12500043, 0.12500003,
       0.12500003, 0.12500003, 0.12500003, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000021e-01, 7.50000021e-01, 7.50000021e-01, 7.50000021e-01,
       7.50000140e-01, 7.50000140e-01, 7.50000140e-01, 7.50000140e-01,
       7.50000861e-01, 7.50000861e-01, 7.50000861e-01, 7.50000861e-01,
       7.50004854e-01, 7.50004854e-01, 7.50004854e-01, 7.50004854e-01,
       7.50024870e-01, 7.50024870e-01, 7.50024870e-01, 7.50024870e-01,
       7.50114879e-01, 7.50114879e-01, 7.50114879e-01, 7.50114879e-01,
       7.50473401e-01, 7.50473401e-01, 7.50473401e-01, 7.50473401e-01,
       7.51718892e-01, 7.51718892e-01, 7.51718892e-01, 7.51718892e-01,
       7.55424229e-01, 7.55424229e-01, 7.55424229e-01, 7.55424229e-01,
       7.64691790e-01, 7.64691790e-01, 7.64691790e-01, 7.64691790e-01,
       7.83922560e-01, 7.83922560e-01, 7.83922560e-01, 7.83922560e-01,
       8.16985524e-01, 8.16985524e-01, 8.16985524e-01, 8.16985524e-01,
       8.64808121e-01, 8.64808121e-01, 8.64808121e-01, 8.64808121e-01,
       9.24958686e-01, 9.24958686e-01, 9.24958686e-01, 9.24958686e-01,
       9.92693337e-01, 9.92693337e-01, 9.92693337e-01, 9.92693337e-01,
       1.06173967e+00, 1.06173967e+00, 1.06173967e+00, 1.06173967e+00,
       1.13129021e+00, 1.13129021e+00, 1.13129021e+00, 1.13129021e+00,
       1.20198744e+00, 1.20198744e+00, 1.20198744e+00, 1.20198744e+00,
       1.26595672e+00, 1.26595672e+00, 1.26595672e+00, 1.26595672e+00,
       1.31461852e+00, 1.31461852e+00, 1.31461852e+00, 1.31461852e+00,
       1.34253734e+00, 1.34253734e+00, 1.34253734e+00, 1.34253734e+00,
       1.35432704e+00, 1.35432704e+00, 1.35432704e+00, 1.35432704e+00,
       1.35852967e+00, 1.35852967e+00, 1.35852967e+00, 1.35852967e+00,
       1.36029446e+00, 1.36029446e+00, 1.36029446e+00, 1.36029446e+00,
       1.36153027e+00, 1.36153027e+00, 1.36153027e+00, 1.36153027e+00,
       1.36236269e+00, 1.36236269e+00, 1.36236269e+00, 1.36236269e+00,
       1.36299920e+00, 1.36299920e+00, 1.36299920e+00, 1.36299920e+00,
       1.36365952e+00, 1.36365952e+00, 1.36365952e+00, 1.36365952e+00,
       1.36380842e+00, 1.36380842e+00, 1.36380842e+00, 1.36380842e+00,
       1.36364674e+00, 1.36364674e+00, 1.36364674e+00, 1.36364674e+00,
       1.36337979e+00, 1.36337979e+00, 1.36337979e+00, 1.36337979e+00,
       1.36291780e+00, 1.36291780e+00, 1.36291780e+00, 1.36291780e+00,
       1.36179759e+00, 1.36179759e+00, 1.36179759e+00, 1.36179759e+00,
       1.36099880e+00, 1.36099880e+00, 1.36099880e+00, 1.36099880e+00,
       1.36037766e+00, 1.36037766e+00, 1.36037766e+00, 1.36037766e+00,
       1.35961227e+00, 1.35961227e+00, 1.35961227e+00, 1.35961227e+00,
       1.35921926e+00, 1.35921926e+00, 1.35921926e+00, 1.35921926e+00,
       1.35759675e+00, 1.35759675e+00, 1.35759675e+00, 1.35759675e+00,
       1.34828922e+00, 1.34828922e+00, 1.34828922e+00, 1.34828922e+00,
       1.30681890e+00, 1.30681890e+00, 1.30681890e+00, 1.30681890e+00,
       1.13247598e+00, 1.13247598e+00, 1.13247598e+00, 1.13247598e+00,
       6.05650926e-01, 6.05650926e-01, 6.05650926e-01, 6.05650926e-01,
       9.87277152e-02, 9.87277152e-02, 9.87277152e-02, 9.87277152e-02,
       8.39794778e-03, 8.39794778e-03, 8.39794778e-03, 8.39794778e-03,
       6.41036738e-04, 6.41036738e-04, 6.41036738e-04, 6.41036738e-04,
       4.83799215e-05, 4.83799215e-05, 4.83799215e-05, 4.83799215e-05,
       3.64189070e-06, 3.64189070e-06, 3.64189070e-06, 3.64189070e-06,
       2.73646970e-07, 2.73646970e-07, 2.73646970e-07, 2.73646970e-07,
       2.05122779e-08, 2.05122779e-08, 2.05122779e-08, 2.05122779e-08,
       1.53361037e-09, 1.53361037e-09, 1.53361037e-09, 1.53361037e-09,
       1.14368647e-10, 1.14368647e-10, 1.14368647e-10, 1.14368647e-10,
       8.50778657e-12, 8.50778657e-12, 8.50778657e-12, 8.50778657e-12,
       6.31241749e-13, 6.31241749e-13, 6.31241749e-13, 6.31241749e-13,
       4.65959457e-14, 4.65959457e-14, 4.65959457e-14, 4.65959457e-14,
       3.44111781e-15, 3.44111781e-15, 3.44111781e-15, 3.44111781e-15,
       2.44715227e-16, 2.44715227e-16, 2.44715227e-16, 2.44715227e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999983, 0.99999983, 0.99999983, 0.99999983, 0.99999898,
       0.99999898, 0.99999898, 0.99999898, 0.99999426, 0.99999426,
       0.99999426, 0.99999426, 0.99997057, 0.99997057, 0.99997057,
       0.99997057, 0.99986408, 0.99986408, 0.99986408, 0.99986408,
       0.99944001, 0.99944001, 0.99944001, 0.99944001, 0.99796817,
       0.99796817, 0.99796817, 0.99796817, 0.99360189, 0.99360189,
       0.99360189, 0.99360189, 0.98276203, 0.98276203, 0.98276203,
       0.98276203, 0.96062669, 0.96062669, 0.96062669, 0.96062669,
       0.92364506, 0.92364506, 0.92364506, 0.92364506, 0.87240348,
       0.87240348, 0.87240348, 0.87240348, 0.81145937, 0.81145937,
       0.81145937, 0.81145937, 0.74647243, 0.74647243, 0.74647243,
       0.74647243, 0.68444299, 0.68444299, 0.68444299, 0.68444299,
       0.62778294, 0.62778294, 0.62778294, 0.62778294, 0.5732094 ,
       0.5732094 , 0.5732094 , 0.5732094 , 0.52793038, 0.52793038,
       0.52793038, 0.52793038, 0.49541854, 0.49541854, 0.49541854,
       0.49541854, 0.47732601, 0.47732601, 0.47732601, 0.47732601,
       0.46998067, 0.46998067, 0.46998067, 0.46998067, 0.46765631,
       0.46765631, 0.46765631, 0.46765631, 0.46682798, 0.46682798,
       0.46682798, 0.46682798, 0.46608977, 0.46608977, 0.46608977,
       0.46608977, 0.4653755 , 0.4653755 , 0.4653755 , 0.4653755 ,
       0.46504229, 0.46504229, 0.46504229, 0.46504229, 0.46505976,
       0.46505976, 0.46505976, 0.46505976, 0.46523378, 0.46523378,
       0.46523378, 0.46523378, 0.46557421, 0.46557421, 0.46557421,
       0.46557421, 0.4656599 , 0.4656599 , 0.4656599 , 0.4656599 ,
       0.46558172, 0.46558172, 0.46558172, 0.46558172, 0.46553439,
       0.46553439, 0.46553439, 0.46553439, 0.46520836, 0.46520836,
       0.46520836, 0.46520836, 0.46498438, 0.46498438, 0.46498438,
       0.46498438, 0.46510742, 0.46510742, 0.46510742, 0.46510742,
       0.46494014, 0.46494014, 0.46494014, 0.46494014, 0.46413174,
       0.46413174, 0.46413174, 0.46413174, 0.46026772, 0.46026772,
       0.46026772, 0.46026772, 0.44125804, 0.44125804, 0.44125804,
       0.44125804, 0.36962649, 0.36962649, 0.36962649, 0.36962649,
       0.20878392, 0.20878392, 0.20878392, 0.20878392, 0.11372397,
       0.11372397, 0.11372397, 0.11372397, 0.10111414, 0.10111414,
       0.10111414, 0.10111414, 0.10008482, 0.10008482, 0.10008482,
       0.10008482, 0.1000064 , 0.1000064 , 0.1000064 , 0.1000064 ,
       0.10000048, 0.10000048, 0.10000048, 0.10000048, 0.10000004,
       0.10000004, 0.10000004, 0.10000004, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
       0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999895,
       0.99999895, 0.99999895, 0.99999895, 0.99999429, 0.99999429,
       0.99999429, 0.99999429, 0.99997173, 0.99997173, 0.99997173,
       0.99997173, 0.99987376, 0.99987376, 0.99987376, 0.99987376,
       0.99949743, 0.99949743, 0.99949743, 0.99949743, 0.99823832,
       0.99823832, 0.99823832, 0.99823832, 0.99463867, 0.99463867,
       0.99463867, 0.99463867, 0.98601545, 0.98601545, 0.98601545,
       0.98601545, 0.96895243, 0.96895243, 0.96895243, 0.96895243,
       0.94110753, 0.94110753, 0.94110753, 0.94110753, 0.90299803,
       0.90299803, 0.90299803, 0.90299803, 0.85767273, 0.85767273,
       0.85767273, 0.85767273, 0.80904917, 0.80904917, 0.80904917,
       0.80904917, 0.76239648, 0.76239648, 0.76239648, 0.76239648,
       0.71749093, 0.71749093, 0.71749093, 0.71749093, 0.67147851,
       0.67147851, 0.67147851, 0.67147851, 0.63489   , 0.63489   ,
       0.63489   , 0.63489   , 0.60997929, 0.60997929, 0.60997929,
       0.60997929, 0.59272294, 0.59272294, 0.59272294, 0.59272294,
       0.58215958, 0.58215958, 0.58215958, 0.58215958, 0.57835617,
       0.57835617, 0.57835617, 0.57835617, 0.57803304, 0.57803304,
       0.57803304, 0.57803304, 0.57873351, 0.57873351, 0.57873351,
       0.57873351, 0.58068604, 0.58068604, 0.58068604, 0.58068604,
       0.58148766, 0.58148766, 0.58148766, 0.58148766, 0.58048792,
       0.58048792, 0.58048792, 0.58048792, 0.57541107, 0.57541107,
       0.57541107, 0.57541107, 0.56176436, 0.56176436, 0.56176436,
       0.56176436, 0.53464163, 0.53464163, 0.53464163, 0.53464163,
       0.49054306, 0.49054306, 0.49054306, 0.49054306, 0.43056034,
       0.43056034, 0.43056034, 0.43056034, 0.38004005, 0.38004005,
       0.38004005, 0.38004005, 0.35093816, 0.35093816, 0.35093816,
       0.35093816, 0.33716902, 0.33716902, 0.33716902, 0.33716902,
       0.33218768, 0.33218768, 0.33218768, 0.33218768, 0.33163645,
       0.33163645, 0.33163645, 0.33163645, 0.33249535, 0.33249535,
       0.33249535, 0.33249535, 0.33172011, 0.33172011, 0.33172011,
       0.33172011, 0.3191431 , 0.3191431 , 0.3191431 , 0.3191431 ,
       0.2660949 , 0.2660949 , 0.2660949 , 0.2660949 , 0.16817172,
       0.16817172, 0.16817172, 0.16817172, 0.13009983, 0.13009983,
       0.13009983, 0.13009983, 0.12543611, 0.12543611, 0.12543611,
       0.12543611, 0.12503393, 0.12503393, 0.12503393, 0.12503393,
       0.12500258, 0.12500258, 0.12500258, 0.12500258, 0.12500019,
       0.12500019, 0.12500019, 0.12500019, 0.12500001, 0.12500001,
       0.12500001, 0.12500001, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000032e-01, 7.50000032e-01, 7.50000032e-01, 7.50000032e-01,
       7.50000208e-01, 7.50000208e-01, 7.50000208e-01, 7.50000208e-01,
       7.50001239e-01, 7.50001239e-01, 7.50001239e-01, 7.50001239e-01,
       7.50006753e-01, 7.50006753e-01, 7.50006753e-01, 7.50006753e-01,
       7.50033455e-01, 7.50033455e-01, 7.50033455e-01, 7.50033455e-01,
       7.50149366e-01, 7.50149366e-01, 7.50149366e-01, 7.50149366e-01,
       7.50594713e-01, 7.50594713e-01, 7.50594713e-01, 7.50594713e-01,
       7.52085532e-01, 7.52085532e-01, 7.52085532e-01, 7.52085532e-01,
       7.56355674e-01, 7.56355674e-01, 7.56355674e-01, 7.56355674e-01,
       7.66638355e-01, 7.66638355e-01, 7.66638355e-01, 7.66638355e-01,
       7.87217230e-01, 7.87217230e-01, 7.87217230e-01, 7.87217230e-01,
       8.21480083e-01, 8.21480083e-01, 8.21480083e-01, 8.21480083e-01,
       8.69776615e-01, 8.69776615e-01, 8.69776615e-01, 8.69776615e-01,
       9.29447294e-01, 9.29447294e-01, 9.29447294e-01, 9.29447294e-01,
       9.95674208e-01, 9.95674208e-01, 9.95674208e-01, 9.95674208e-01,
       1.06296792e+00, 1.06296792e+00, 1.06296792e+00, 1.06296792e+00,
       1.13078254e+00, 1.13078254e+00, 1.13078254e+00, 1.13078254e+00,
       1.19977119e+00, 1.19977119e+00, 1.19977119e+00, 1.19977119e+00,
       1.26275299e+00, 1.26275299e+00, 1.26275299e+00, 1.26275299e+00,
       1.31175348e+00, 1.31175348e+00, 1.31175348e+00, 1.31175348e+00,
       1.34085462e+00, 1.34085462e+00, 1.34085462e+00, 1.34085462e+00,
       1.35353646e+00, 1.35353646e+00, 1.35353646e+00, 1.35353646e+00,
       1.35810343e+00, 1.35810343e+00, 1.35810343e+00, 1.35810343e+00,
       1.36003123e+00, 1.36003123e+00, 1.36003123e+00, 1.36003123e+00,
       1.36143326e+00, 1.36143326e+00, 1.36143326e+00, 1.36143326e+00,
       1.36236200e+00, 1.36236200e+00, 1.36236200e+00, 1.36236200e+00,
       1.36287773e+00, 1.36287773e+00, 1.36287773e+00, 1.36287773e+00,
       1.36345264e+00, 1.36345264e+00, 1.36345264e+00, 1.36345264e+00,
       1.36363732e+00, 1.36363732e+00, 1.36363732e+00, 1.36363732e+00,
       1.36353697e+00, 1.36353697e+00, 1.36353697e+00, 1.36353697e+00,
       1.36343404e+00, 1.36343404e+00, 1.36343404e+00, 1.36343404e+00,
       1.36315760e+00, 1.36315760e+00, 1.36315760e+00, 1.36315760e+00,
       1.36232473e+00, 1.36232473e+00, 1.36232473e+00, 1.36232473e+00,
       1.36166019e+00, 1.36166019e+00, 1.36166019e+00, 1.36166019e+00,
       1.36084564e+00, 1.36084564e+00, 1.36084564e+00, 1.36084564e+00,
       1.35984618e+00, 1.35984618e+00, 1.35984618e+00, 1.35984618e+00,
       1.35955179e+00, 1.35955179e+00, 1.35955179e+00, 1.35955179e+00,
       1.35897144e+00, 1.35897144e+00, 1.35897144e+00, 1.35897144e+00,
       1.35552174e+00, 1.35552174e+00, 1.35552174e+00, 1.35552174e+00,
       1.34102919e+00, 1.34102919e+00, 1.34102919e+00, 1.34102919e+00,
       1.27545330e+00, 1.27545330e+00, 1.27545330e+00, 1.27545330e+00,
       1.01455011e+00, 1.01455011e+00, 1.01455011e+00, 1.01455011e+00,
       3.94082610e-01, 3.94082610e-01, 3.94082610e-01, 3.94082610e-01,
       4.73339439e-02, 4.73339439e-02, 4.73339439e-02, 4.73339439e-02,
       3.80163833e-03, 3.80163833e-03, 3.80163833e-03, 3.80163833e-03,
       2.89378256e-04, 2.89378256e-04, 2.89378256e-04, 2.89378256e-04,
       2.18495362e-05, 2.18495362e-05, 2.18495362e-05, 2.18495362e-05,
       1.64610353e-06, 1.64610353e-06, 1.64610353e-06, 1.64610353e-06,
       1.23761362e-07, 1.23761362e-07, 1.23761362e-07, 1.23761362e-07,
       9.28475911e-09, 9.28475911e-09, 9.28475911e-09, 9.28475911e-09,
       6.94864466e-10, 6.94864466e-10, 6.94864466e-10, 6.94864466e-10,
       5.18715247e-11, 5.18715247e-11, 5.18715247e-11, 5.18715247e-11,
       3.86232749e-12, 3.86232749e-12, 3.86232749e-12, 3.86232749e-12,
       2.86798402e-13, 2.86798402e-13, 2.86798402e-13, 2.86798402e-13,
       2.12511563e-14, 2.12511563e-14, 2.12511563e-14, 2.12511563e-14,
       1.51978465e-15, 1.51978465e-15, 1.51978465e-15, 1.51978465e-15,
       8.24527483e-17, 8.24527483e-17, 8.24527483e-17, 8.24527483e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999853,
       0.99999853, 0.99999853, 0.99999853, 0.99999201, 0.99999201,
       0.99999201, 0.99999201, 0.99996042, 0.99996042, 0.99996042,
       0.99996042, 0.99982328, 0.99982328, 0.99982328, 0.99982328,
       0.99929656, 0.99929656, 0.99929656, 0.99929656, 0.9975353 ,
       0.9975353 , 0.9975353 , 0.9975353 , 0.99250721, 0.99250721,
       0.99250721, 0.99250721, 0.98049952, 0.98049952, 0.98049952,
       0.98049952, 0.95688026, 0.95688026, 0.95688026, 0.95688026,
       0.91871272, 0.91871272, 0.91871272, 0.91871272, 0.86720806,
       0.86720806, 0.86720806, 0.86720806, 0.80702616, 0.80702616,
       0.80702616, 0.80702616, 0.74357673, 0.74357673, 0.74357673,
       0.74357673, 0.68334214, 0.68334214, 0.68334214, 0.68334214,
       0.62818486, 0.62818486, 0.62818486, 0.62818486, 0.57487936,
       0.57487936, 0.57487936, 0.57487936, 0.53017432, 0.53017432,
       0.53017432, 0.53017432, 0.49742975, 0.49742975, 0.49742975,
       0.49742975, 0.47854702, 0.47854702, 0.47854702, 0.47854702,
       0.47044075, 0.47044075, 0.47044075, 0.47044075, 0.46773171,
       0.46773171, 0.46773171, 0.46773171, 0.46683192, 0.46683192,
       0.46683192, 0.46683192, 0.46616185, 0.46616185, 0.46616185,
       0.46616185, 0.4654718 , 0.4654718 , 0.4654718 , 0.4654718 ,
       0.46502244, 0.46502244, 0.46502244, 0.46502244, 0.46495839,
       0.46495839, 0.46495839, 0.46495839, 0.46511062, 0.46511062,
       0.46511062, 0.46511062, 0.46546668, 0.46546668, 0.46546668,
       0.46546668, 0.46567427, 0.46567427, 0.46567427, 0.46567427,
       0.4656998 , 0.4656998 , 0.4656998 , 0.4656998 , 0.46577701,
       0.46577701, 0.46577701, 0.46577701, 0.46553312, 0.46553312,
       0.46553312, 0.46553312, 0.46520841, 0.46520841, 0.46520841,
       0.46520841, 0.46521622, 0.46521622, 0.46521622, 0.46521622,
       0.46509428, 0.46509428, 0.46509428, 0.46509428, 0.46477283,
       0.46477283, 0.46477283, 0.46477283, 0.46362484, 0.46362484,
       0.46362484, 0.46362484, 0.45682453, 0.45682453, 0.45682453,
       0.45682453, 0.42721627, 0.42721627, 0.42721627, 0.42721627,
       0.32761038, 0.32761038, 0.32761038, 0.32761038, 0.16329323,
       0.16329323, 0.16329323, 0.16329323, 0.1064006 , 0.1064006 ,
       0.1064006 , 0.1064006 , 0.10050349, 0.10050349, 0.10050349,
       0.10050349, 0.10003828, 0.10003828, 0.10003828, 0.10003828,
       0.10000289, 0.10000289, 0.10000289, 0.10000289, 0.10000022,
       0.10000022, 0.10000022, 0.10000022, 0.10000002, 0.10000002,
       0.10000002, 0.10000002, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999851,
       0.99999851, 0.99999851, 0.99999851, 0.99999215, 0.99999215,
       0.99999215, 0.99999215, 0.99996236, 0.99996236, 0.99996236,
       0.99996236, 0.99983743, 0.99983743, 0.99983743, 0.99983743,
       0.99937421, 0.99937421, 0.99937421, 0.99937421, 0.99787995,
       0.99787995, 0.99787995, 0.99787995, 0.99376522, 0.99376522,
       0.99376522, 0.99376522, 0.98427193, 0.98427193, 0.98427193,
       0.98427193, 0.96614873, 0.96614873, 0.96614873, 0.96614873,
       0.93749002, 0.93749002, 0.93749002, 0.93749002, 0.89922146,
       0.89922146, 0.89922146, 0.89922146, 0.85444615, 0.85444615,
       0.85444615, 0.85444615, 0.80694026, 0.80694026, 0.80694026,
       0.80694026, 0.76147336, 0.76147336, 0.76147336, 0.76147336,
       0.71798649, 0.71798649, 0.71798649, 0.71798649, 0.67328624,
       0.67328624, 0.67328624, 0.67328624, 0.63596237, 0.63596237,
       0.63596237, 0.63596237, 0.61090962, 0.61090962, 0.61090962,
       0.61090962, 0.59448665, 0.59448665, 0.59448665, 0.59448665,
       0.58377912, 0.58377912, 0.58377912, 0.58377912, 0.57884073,
       0.57884073, 0.57884073, 0.57884073, 0.57784159, 0.57784159,
       0.57784159, 0.57784159, 0.57814677, 0.57814677, 0.57814677,
       0.57814677, 0.57965393, 0.57965393, 0.57965393, 0.57965393,
       0.58114142, 0.58114142, 0.58114142, 0.58114142, 0.58086906,
       0.58086906, 0.58086906, 0.58086906, 0.57793383, 0.57793383,
       0.57793383, 0.57793383, 0.56855027, 0.56855027, 0.56855027,
       0.56855027, 0.54788997, 0.54788997, 0.54788997, 0.54788997,
       0.51173387, 0.51173387, 0.51173387, 0.51173387, 0.45826092,
       0.45826092, 0.45826092, 0.45826092, 0.39944332, 0.39944332,
       0.39944332, 0.39944332, 0.36188141, 0.36188141, 0.36188141,
       0.36188141, 0.34228638, 0.34228638, 0.34228638, 0.34228638,
       0.33391914, 0.33391914, 0.33391914, 0.33391914, 0.33194109,
       0.33194109, 0.33194109, 0.33194109, 0.33247925, 0.33247925,
       0.33247925, 0.33247925, 0.33319907, 0.33319907, 0.33319907,
       0.33319907, 0.33042192, 0.33042192, 0.33042192, 0.33042192,
       0.30893759, 0.30893759, 0.30893759, 0.30893759, 0.23627498,
       0.23627498, 0.23627498, 0.23627498, 0.14849035, 0.14849035,
       0.14849035, 0.14849035, 0.12743542, 0.12743542, 0.12743542,
       0.12743542, 0.12519919, 0.12519919, 0.12519919, 0.12519919,
       0.12501533, 0.12501533, 0.12501533, 0.12501533, 0.12500116,
       0.12500116, 0.12500116, 0.12500116, 0.12500009, 0.12500009,
       0.12500009, 0.12500009, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
       7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
       7.50000306e-01, 7.50000306e-01, 7.50000306e-01, 7.50000306e-01,
       7.50001762e-01, 7.50001762e-01, 7.50001762e-01, 7.50001762e-01,
       7.50009291e-01, 7.50009291e-01, 7.50009291e-01, 7.50009291e-01,
       7.50044538e-01, 7.50044538e-01, 7.50044538e-01, 7.50044538e-01,
       7.50192354e-01, 7.50192354e-01, 7.50192354e-01, 7.50192354e-01,
       7.50740552e-01, 7.50740552e-01, 7.50740552e-01, 7.50740552e-01,
       7.52510129e-01, 7.52510129e-01, 7.52510129e-01, 7.52510129e-01,
       7.57393863e-01, 7.57393863e-01, 7.57393863e-01, 7.57393863e-01,
       7.68727220e-01, 7.68727220e-01, 7.68727220e-01, 7.68727220e-01,
       7.90629207e-01, 7.90629207e-01, 7.90629207e-01, 7.90629207e-01,
       8.25993244e-01, 8.25993244e-01, 8.25993244e-01, 8.25993244e-01,
       8.74646375e-01, 8.74646375e-01, 8.74646375e-01, 8.74646375e-01,
       9.33771553e-01, 9.33771553e-01, 9.33771553e-01, 9.33771553e-01,
       9.98521665e-01, 9.98521665e-01, 9.98521665e-01, 9.98521665e-01,
       1.06413782e+00, 1.06413782e+00, 1.06413782e+00, 1.06413782e+00,
       1.13027656e+00, 1.13027656e+00, 1.13027656e+00, 1.13027656e+00,
       1.19762442e+00, 1.19762442e+00, 1.19762442e+00, 1.19762442e+00,
       1.25961704e+00, 1.25961704e+00, 1.25961704e+00, 1.25961704e+00,
       1.30884188e+00, 1.30884188e+00, 1.30884188e+00, 1.30884188e+00,
       1.33910827e+00, 1.33910827e+00, 1.33910827e+00, 1.33910827e+00,
       1.35277568e+00, 1.35277568e+00, 1.35277568e+00, 1.35277568e+00,
       1.35771893e+00, 1.35771893e+00, 1.35771893e+00, 1.35771893e+00,
       1.35973017e+00, 1.35973017e+00, 1.35973017e+00, 1.35973017e+00,
       1.36124410e+00, 1.36124410e+00, 1.36124410e+00, 1.36124410e+00,
       1.36234589e+00, 1.36234589e+00, 1.36234589e+00, 1.36234589e+00,
       1.36284576e+00, 1.36284576e+00, 1.36284576e+00, 1.36284576e+00,
       1.36330700e+00, 1.36330700e+00, 1.36330700e+00, 1.36330700e+00,
       1.36348314e+00, 1.36348314e+00, 1.36348314e+00, 1.36348314e+00,
       1.36337493e+00, 1.36337493e+00, 1.36337493e+00, 1.36337493e+00,
       1.36336149e+00, 1.36336149e+00, 1.36336149e+00, 1.36336149e+00,
       1.36324405e+00, 1.36324405e+00, 1.36324405e+00, 1.36324405e+00,
       1.36265870e+00, 1.36265870e+00, 1.36265870e+00, 1.36265870e+00,
       1.36215849e+00, 1.36215849e+00, 1.36215849e+00, 1.36215849e+00,
       1.36145357e+00, 1.36145357e+00, 1.36145357e+00, 1.36145357e+00,
       1.36027737e+00, 1.36027737e+00, 1.36027737e+00, 1.36027737e+00,
       1.35985957e+00, 1.35985957e+00, 1.35985957e+00, 1.35985957e+00,
       1.35950146e+00, 1.35950146e+00, 1.35950146e+00, 1.35950146e+00,
       1.35794105e+00, 1.35794105e+00, 1.35794105e+00, 1.35794105e+00,
       1.35302786e+00, 1.35302786e+00, 1.35302786e+00, 1.35302786e+00,
       1.32948395e+00, 1.32948395e+00, 1.32948395e+00, 1.32948395e+00,
       1.22656804e+00, 1.22656804e+00, 1.22656804e+00, 1.22656804e+00,
       8.53469650e-01, 8.53469650e-01, 8.53469650e-01, 8.53469650e-01,
       2.22591142e-01, 2.22591142e-01, 2.22591142e-01, 2.22591142e-01,
       2.20888528e-02, 2.20888528e-02, 2.20888528e-02, 2.20888528e-02,
       1.71922272e-03, 1.71922272e-03, 1.71922272e-03, 1.71922272e-03,
       1.30417470e-04, 1.30417470e-04, 1.30417470e-04, 1.30417470e-04,
       9.86300289e-06, 9.86300289e-06, 9.86300289e-06, 9.86300289e-06,
       7.43754125e-07, 7.43754125e-07, 7.43754125e-07, 7.43754125e-07,
       5.59602796e-08, 5.59602796e-08, 5.59602796e-08, 5.59602796e-08,
       4.20149858e-09, 4.20149858e-09, 4.20149858e-09, 4.20149858e-09,
       3.14719729e-10, 3.14719729e-10, 3.14719729e-10, 3.14719729e-10,
       2.35165721e-11, 2.35165721e-11, 2.35165721e-11, 2.35165721e-11,
       1.75282978e-12, 1.75282978e-12, 1.75282978e-12, 1.75282978e-12,
       1.30293969e-13, 1.30293969e-13, 1.30293969e-13, 1.30293969e-13,
       9.55439487e-15, 9.55439487e-15, 9.55439487e-15, 9.55439487e-15,
       6.56847280e-16, 6.56847280e-16, 6.56847280e-16, 6.56847280e-16,
       3.41706842e-17, 3.41706842e-17, 3.41706842e-17, 3.41706842e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999964, 0.99999964, 0.99999964, 0.99999964, 0.99999792,
       0.99999792, 0.99999792, 0.99999792, 0.99998901, 0.99998901,
       0.99998901, 0.99998901, 0.9999473 , 0.9999473 , 0.9999473 ,
       0.9999473 , 0.99977243, 0.99977243, 0.99977243, 0.99977243,
       0.99912413, 0.99912413, 0.99912413, 0.99912413, 0.99703423,
       0.99703423, 0.99703423, 0.99703423, 0.99128845, 0.99128845,
       0.99128845, 0.99128845, 0.97807702, 0.97807702, 0.97807702,
       0.97807702, 0.95301417, 0.95301417, 0.95301417, 0.95301417,
       0.91378216, 0.91378216, 0.91378216, 0.91378216, 0.86213936,
       0.86213936, 0.86213936, 0.86213936, 0.80277216, 0.80277216,
       0.80277216, 0.80277216, 0.7408459 , 0.7408459 , 0.7408459 ,
       0.7408459 , 0.68230078, 0.68230078, 0.68230078, 0.68230078,
       0.62855672, 0.62855672, 0.62855672, 0.62855672, 0.5764662 ,
       0.5764662 , 0.5764662 , 0.5764662 , 0.53234585, 0.53234585,
       0.53234585, 0.53234585, 0.49942183, 0.49942183, 0.49942183,
       0.49942183, 0.47983443, 0.47983443, 0.47983443, 0.47983443,
       0.47100923, 0.47100923, 0.47100923, 0.47100923, 0.46787142,
       0.46787142, 0.46787142, 0.46787142, 0.46682295, 0.46682295,
       0.46682295, 0.46682295, 0.46618014, 0.46618014, 0.46618014,
       0.46618014, 0.46556219, 0.46556219, 0.46556219, 0.46556219,
       0.46506118, 0.46506118, 0.46506118, 0.46506118, 0.46489673,
       0.46489673, 0.46489673, 0.46489673, 0.46500213, 0.46500213,
       0.46500213, 0.46500213, 0.46532374, 0.46532374, 0.46532374,
       0.46532374, 0.46561466, 0.46561466, 0.46561466, 0.46561466,
       0.46573189, 0.46573189, 0.46573189, 0.46573189, 0.46592128,
       0.46592128, 0.46592128, 0.46592128, 0.46578294, 0.46578294,
       0.46578294, 0.46578294, 0.46549998, 0.46549998, 0.46549998,
       0.46549998, 0.46541691, 0.46541691, 0.46541691, 0.46541691,
       0.46523714, 0.46523714, 0.46523714, 0.46523714, 0.46502176,
       0.46502176, 0.46502176, 0.46502176, 0.46475263, 0.46475263,
       0.46475263, 0.46475263, 0.46237713, 0.46237713, 0.46237713,
       0.46237713, 0.45142205, 0.45142205, 0.45142205, 0.45142205,
       0.40654284, 0.40654284, 0.40654284, 0.40654284, 0.27563326,
       0.27563326, 0.27563326, 0.27563326, 0.13295938, 0.13295938,
       0.13295938, 0.13295938, 0.1029486 , 0.1029486 , 0.1029486 ,
       0.1029486 , 0.10022754, 0.10022754, 0.10022754, 0.10022754,
       0.10001725, 0.10001725, 0.10001725, 0.10001725, 0.1000013 ,
       0.1000013 , 0.1000013 , 0.1000013 , 0.1000001 , 0.1000001 ,
       0.1000001 , 0.1000001 , 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999962, 0.99999962, 0.99999962, 0.99999962, 0.99999791,
       0.99999791, 0.99999791, 0.99999791, 0.99998931, 0.99998931,
       0.99998931, 0.99998931, 0.99995038, 0.99995038, 0.99995038,
       0.99995038, 0.99979255, 0.99979255, 0.99979255, 0.99979255,
       0.99922731, 0.99922731, 0.99922731, 0.99922731, 0.99746821,
       0.99746821, 0.99746821, 0.99746821, 0.99279908, 0.99279908,
       0.99279908, 0.99279908, 0.98241481, 0.98241481, 0.98241481,
       0.98241481, 0.96326558, 0.96326558, 0.96326558, 0.96326558,
       0.93387982, 0.93387982, 0.93387982, 0.93387982, 0.89553728,
       0.89553728, 0.89553728, 0.89553728, 0.85134817, 0.85134817,
       0.85134817, 0.85134817, 0.80495162, 0.80495162, 0.80495162,
       0.80495162, 0.76058273, 0.76058273, 0.76058273, 0.76058273,
       0.71835604, 0.71835604, 0.71835604, 0.71835604, 0.67514463,
       0.67514463, 0.67514463, 0.67514463, 0.63729119, 0.63729119,
       0.63729119, 0.63729119, 0.61162641, 0.61162641, 0.61162641,
       0.61162641, 0.59582875, 0.59582875, 0.59582875, 0.59582875,
       0.58543448, 0.58543448, 0.58543448, 0.58543448, 0.57967261,
       0.57967261, 0.57967261, 0.57967261, 0.57782428, 0.57782428,
       0.57782428, 0.57782428, 0.57777383, 0.57777383, 0.57777383,
       0.57777383, 0.57870314, 0.57870314, 0.57870314, 0.57870314,
       0.58056833, 0.58056833, 0.58056833, 0.58056833, 0.58087553,
       0.58087553, 0.58087553, 0.58087553, 0.57939156, 0.57939156,
       0.57939156, 0.57939156, 0.57325442, 0.57325442, 0.57325442,
       0.57325442, 0.55803941, 0.55803941, 0.55803941, 0.55803941,
       0.52921033, 0.52921033, 0.52921033, 0.52921033, 0.4837152 ,
       0.4837152 , 0.4837152 , 0.4837152 , 0.42371397, 0.42371397,
       0.42371397, 0.42371397, 0.376212  , 0.376212  , 0.376212  ,
       0.376212  , 0.34965307, 0.34965307, 0.34965307, 0.34965307,
       0.33690123, 0.33690123, 0.33690123, 0.33690123, 0.33265682,
       0.33265682, 0.33265682, 0.33265682, 0.33246875, 0.33246875,
       0.33246875, 0.33246875, 0.33332651, 0.33332651, 0.33332651,
       0.33332651, 0.33357826, 0.33357826, 0.33357826, 0.33357826,
       0.32736337, 0.32736337, 0.32736337, 0.32736337, 0.29324759,
       0.29324759, 0.29324759, 0.29324759, 0.20348887, 0.20348887,
       0.20348887, 0.20348887, 0.13723772, 0.13723772, 0.13723772,
       0.13723772, 0.12613944, 0.12613944, 0.12613944, 0.12613944,
       0.12509047, 0.12509047, 0.12509047, 0.12509047, 0.12500693,
       0.12500693, 0.12500693, 0.12500693, 0.12500053, 0.12500053,
       0.12500053, 0.12500053, 0.12500004, 0.12500004, 0.12500004,
       0.12500004, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
       7.50000073e-01, 7.50000073e-01, 7.50000073e-01, 7.50000073e-01,
       7.50000444e-01, 7.50000444e-01, 7.50000444e-01, 7.50000444e-01,
       7.50002476e-01, 7.50002476e-01, 7.50002476e-01, 7.50002476e-01,
       7.50012648e-01, 7.50012648e-01, 7.50012648e-01, 7.50012648e-01,
       7.50058710e-01, 7.50058710e-01, 7.50058710e-01, 7.50058710e-01,
       7.50245463e-01, 7.50245463e-01, 7.50245463e-01, 7.50245463e-01,
       7.50914434e-01, 7.50914434e-01, 7.50914434e-01, 7.50914434e-01,
       7.52998113e-01, 7.52998113e-01, 7.52998113e-01, 7.52998113e-01,
       7.58543146e-01, 7.58543146e-01, 7.58543146e-01, 7.58543146e-01,
       7.70955766e-01, 7.70955766e-01, 7.70955766e-01, 7.70955766e-01,
       7.94146625e-01, 7.94146625e-01, 7.94146625e-01, 7.94146625e-01,
       8.30511067e-01, 8.30511067e-01, 8.30511067e-01, 8.30511067e-01,
       8.79411509e-01, 8.79411509e-01, 8.79411509e-01, 8.79411509e-01,
       9.37934877e-01, 9.37934877e-01, 9.37934877e-01, 9.37934877e-01,
       1.00124282e+00, 1.00124282e+00, 1.00124282e+00, 1.00124282e+00,
       1.06525741e+00, 1.06525741e+00, 1.06525741e+00, 1.06525741e+00,
       1.12978836e+00, 1.12978836e+00, 1.12978836e+00, 1.12978836e+00,
       1.19554873e+00, 1.19554873e+00, 1.19554873e+00, 1.19554873e+00,
       1.25655219e+00, 1.25655219e+00, 1.25655219e+00, 1.25655219e+00,
       1.30588997e+00, 1.30588997e+00, 1.30588997e+00, 1.30588997e+00,
       1.33725902e+00, 1.33725902e+00, 1.33725902e+00, 1.33725902e+00,
       1.35200167e+00, 1.35200167e+00, 1.35200167e+00, 1.35200167e+00,
       1.35740137e+00, 1.35740137e+00, 1.35740137e+00, 1.35740137e+00,
       1.35945680e+00, 1.35945680e+00, 1.35945680e+00, 1.35945680e+00,
       1.36098916e+00, 1.36098916e+00, 1.36098916e+00, 1.36098916e+00,
       1.36225665e+00, 1.36225665e+00, 1.36225665e+00, 1.36225665e+00,
       1.36284870e+00, 1.36284870e+00, 1.36284870e+00, 1.36284870e+00,
       1.36323230e+00, 1.36323230e+00, 1.36323230e+00, 1.36323230e+00,
       1.36337379e+00, 1.36337379e+00, 1.36337379e+00, 1.36337379e+00,
       1.36322082e+00, 1.36322082e+00, 1.36322082e+00, 1.36322082e+00,
       1.36321667e+00, 1.36321667e+00, 1.36321667e+00, 1.36321667e+00,
       1.36320442e+00, 1.36320442e+00, 1.36320442e+00, 1.36320442e+00,
       1.36283306e+00, 1.36283306e+00, 1.36283306e+00, 1.36283306e+00,
       1.36246959e+00, 1.36246959e+00, 1.36246959e+00, 1.36246959e+00,
       1.36197500e+00, 1.36197500e+00, 1.36197500e+00, 1.36197500e+00,
       1.36085259e+00, 1.36085259e+00, 1.36085259e+00, 1.36085259e+00,
       1.36028892e+00, 1.36028892e+00, 1.36028892e+00, 1.36028892e+00,
       1.35984919e+00, 1.35984919e+00, 1.35984919e+00, 1.35984919e+00,
       1.35883540e+00, 1.35883540e+00, 1.35883540e+00, 1.35883540e+00,
       1.35714143e+00, 1.35714143e+00, 1.35714143e+00, 1.35714143e+00,
       1.34894991e+00, 1.34894991e+00, 1.34894991e+00, 1.34894991e+00,
       1.31073945e+00, 1.31073945e+00, 1.31073945e+00, 1.31073945e+00,
       1.15250494e+00, 1.15250494e+00, 1.15250494e+00, 1.15250494e+00,
       6.53937892e-01, 6.53937892e-01, 6.53937892e-01, 6.53937892e-01,
       1.15935794e-01, 1.15935794e-01, 1.15935794e-01, 1.15935794e-01,
       1.01224064e-02, 1.01224064e-02, 1.01224064e-02, 1.01224064e-02,
       7.75605173e-04, 7.75605173e-04, 7.75605173e-04, 7.75605173e-04,
       5.88223629e-05, 5.88223629e-05, 5.88223629e-05, 5.88223629e-05,
       4.44985365e-06, 4.44985365e-06, 4.44985365e-06, 4.44985365e-06,
       3.35889504e-07, 3.35889504e-07, 3.35889504e-07, 3.35889504e-07,
       2.52955860e-08, 2.52955860e-08, 2.52955860e-08, 2.52955860e-08,
       1.90071378e-09, 1.90071378e-09, 1.90071378e-09, 1.90071378e-09,
       1.42497338e-10, 1.42497338e-10, 1.42497338e-10, 1.42497338e-10,
       1.06576856e-11, 1.06576856e-11, 1.06576856e-11, 1.06576856e-11,
       7.95109096e-13, 7.95109096e-13, 7.95109096e-13, 7.95109096e-13,
       5.90704393e-14, 5.90704393e-14, 5.90704393e-14, 5.90704393e-14,
       4.31701064e-15, 4.31701064e-15, 4.31701064e-15, 4.31701064e-15,
       3.15002440e-16, 3.15002440e-16, 3.15002440e-16, 3.15002440e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999947, 0.99999947, 0.99999947, 0.99999947, 0.99999707,
       0.99999707, 0.99999707, 0.99999707, 0.99998504, 0.99998504,
       0.99998504, 0.99998504, 0.99993054, 0.99993054, 0.99993054,
       0.99993054, 0.9997096 , 0.9997096 , 0.9997096 , 0.9997096 ,
       0.99891859, 0.99891859, 0.99891859, 0.99891859, 0.99645866,
       0.99645866, 0.99645866, 0.99645866, 0.98994093, 0.98994093,
       0.98994093, 0.98994093, 0.97549864, 0.97549864, 0.97549864,
       0.97549864, 0.94904306, 0.94904306, 0.94904306, 0.94904306,
       0.90886853, 0.90886853, 0.90886853, 0.90886853, 0.85720188,
       0.85720188, 0.85720188, 0.85720188, 0.79869209, 0.79869209,
       0.79869209, 0.79869209, 0.73826586, 0.73826586, 0.73826586,
       0.73826586, 0.68131655, 0.68131655, 0.68131655, 0.68131655,
       0.62890962, 0.62890962, 0.62890962, 0.62890962, 0.57797733,
       0.57797733, 0.57797733, 0.57797733, 0.53444855, 0.53444855,
       0.53444855, 0.53444855, 0.5013871 , 0.5013871 , 0.5013871 ,
       0.5013871 , 0.48115492, 0.48115492, 0.48115492, 0.48115492,
       0.47166155, 0.47166155, 0.47166155, 0.47166155, 0.468095  ,
       0.468095  , 0.468095  , 0.468095  , 0.46684318, 0.46684318,
       0.46684318, 0.46684318, 0.46616211, 0.46616211, 0.46616211,
       0.46616211, 0.46561043, 0.46561043, 0.46561043, 0.46561043,
       0.46512576, 0.46512576, 0.46512576, 0.46512576, 0.46487872,
       0.46487872, 0.46487872, 0.46487872, 0.46492772, 0.46492772,
       0.46492772, 0.46492772, 0.4651844 , 0.4651844 , 0.4651844 ,
       0.4651844 , 0.4655066 , 0.4655066 , 0.4655066 , 0.4655066 ,
       0.46569201, 0.46569201, 0.46569201, 0.46569201, 0.46598138,
       0.46598138, 0.46598138, 0.46598138, 0.46594011, 0.46594011,
       0.46594011, 0.46594011, 0.4657527 , 0.4657527 , 0.4657527 ,
       0.4657527 , 0.4656862 , 0.4656862 , 0.4656862 , 0.4656862 ,
       0.46543641, 0.46543641, 0.46543641, 0.46543641, 0.46518651,
       0.46518651, 0.46518651, 0.46518651, 0.46517111, 0.46517111,
       0.46517111, 0.46517111, 0.46429022, 0.46429022, 0.46429022,
       0.46429022, 0.46039234, 0.46039234, 0.46039234, 0.46039234,
       0.44325735, 0.44325735, 0.44325735, 0.44325735, 0.37715612,
       0.37715612, 0.37715612, 0.37715612, 0.22068217, 0.22068217,
       0.22068217, 0.22068217, 0.11627314, 0.11627314, 0.11627314,
       0.11627314, 0.10134388, 0.10134388, 0.10134388, 0.10134388,
       0.10010262, 0.10010262, 0.10010262, 0.10010262, 0.10000778,
       0.10000778, 0.10000778, 0.10000778, 0.10000059, 0.10000059,
       0.10000059, 0.10000059, 0.10000004, 0.10000004, 0.10000004,
       0.10000004, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999946, 0.99999946, 0.99999946, 0.99999946, 0.99999709,
       0.99999709, 0.99999709, 0.99999709, 0.9999856 , 0.9999856 ,
       0.9999856 , 0.9999856 , 0.9999352 , 0.9999352 , 0.9999352 ,
       0.9999352 , 0.99973758, 0.99973758, 0.99973758, 0.99973758,
       0.99905358, 0.99905358, 0.99905358, 0.99905358, 0.99699862,
       0.99699862, 0.99699862, 0.99699862, 0.99173748, 0.99173748,
       0.99173748, 0.99173748, 0.98044778, 0.98044778, 0.98044778,
       0.98044778, 0.96031352, 0.96031352, 0.96031352, 0.96031352,
       0.93028712, 0.93028712, 0.93028712, 0.93028712, 0.89194825,
       0.89194825, 0.89194825, 0.89194825, 0.84837482, 0.84837482,
       0.84837482, 0.84837482, 0.80307475, 0.80307475, 0.80307475,
       0.80307475, 0.75973657, 0.75973657, 0.75973657, 0.75973657,
       0.71864049, 0.71864049, 0.71864049, 0.71864049, 0.6769383 ,
       0.6769383 , 0.6769383 , 0.6769383 , 0.63889909, 0.63889909,
       0.63889909, 0.63889909, 0.61229773, 0.61229773, 0.61229773,
       0.61229773, 0.59674677, 0.59674677, 0.59674677, 0.59674677,
       0.58694413, 0.58694413, 0.58694413, 0.58694413, 0.58077655,
       0.58077655, 0.58077655, 0.58077655, 0.57805601, 0.57805601,
       0.57805601, 0.57805601, 0.57755678, 0.57755678, 0.57755678,
       0.57755678, 0.57803073, 0.57803073, 0.57803073, 0.57803073,
       0.57971225, 0.57971225, 0.57971225, 0.57971225, 0.5806943 ,
       0.5806943 , 0.5806943 , 0.5806943 , 0.58009671, 0.58009671,
       0.58009671, 0.58009671, 0.57636073, 0.57636073, 0.57636073,
       0.57636073, 0.5655678 , 0.5655678 , 0.5655678 , 0.5655678 ,
       0.54322304, 0.54322304, 0.54322304, 0.54322304, 0.50551025,
       0.50551025, 0.50551025, 0.50551025, 0.45076947, 0.45076947,
       0.45076947, 0.45076947, 0.39435096, 0.39435096, 0.39435096,
       0.39435096, 0.3597402 , 0.3597402 , 0.3597402 , 0.3597402 ,
       0.34154439, 0.34154439, 0.34154439, 0.34154439, 0.33413329,
       0.33413329, 0.33413329, 0.33413329, 0.33272707, 0.33272707,
       0.33272707, 0.33272707, 0.33306897, 0.33306897, 0.33306897,
       0.33306897, 0.33417837, 0.33417837, 0.33417837, 0.33417837,
       0.33342156, 0.33342156, 0.33342156, 0.33342156, 0.32134726,
       0.32134726, 0.32134726, 0.32134726, 0.27151457, 0.27151457,
       0.27151457, 0.27151457, 0.17391339, 0.17391339, 0.17391339,
       0.17391339, 0.131043  , 0.131043  , 0.131043  , 0.131043  ,
       0.12552415, 0.12552415, 0.12552415, 0.12552415, 0.12504101,
       0.12504101, 0.12504101, 0.12504101, 0.12500313, 0.12500313,
       0.12500313, 0.12500313, 0.12500024, 0.12500024, 0.12500024,
       0.12500024, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000017e-01, 7.50000017e-01, 7.50000017e-01, 7.50000017e-01,
       7.50000108e-01, 7.50000108e-01, 7.50000108e-01, 7.50000108e-01,
       7.50000636e-01, 7.50000636e-01, 7.50000636e-01, 7.50000636e-01,
       7.50003442e-01, 7.50003442e-01, 7.50003442e-01, 7.50003442e-01,
       7.50017043e-01, 7.50017043e-01, 7.50017043e-01, 7.50017043e-01,
       7.50076668e-01, 7.50076668e-01, 7.50076668e-01, 7.50076668e-01,
       7.50310517e-01, 7.50310517e-01, 7.50310517e-01, 7.50310517e-01,
       7.51120114e-01, 7.51120114e-01, 7.51120114e-01, 7.51120114e-01,
       7.53554867e-01, 7.53554867e-01, 7.53554867e-01, 7.53554867e-01,
       7.59807118e-01, 7.59807118e-01, 7.59807118e-01, 7.59807118e-01,
       7.73320214e-01, 7.73320214e-01, 7.73320214e-01, 7.73320214e-01,
       7.97757265e-01, 7.97757265e-01, 7.97757265e-01, 7.97757265e-01,
       8.35020634e-01, 8.35020634e-01, 8.35020634e-01, 8.35020634e-01,
       8.84067394e-01, 8.84067394e-01, 8.84067394e-01, 8.84067394e-01,
       9.41941415e-01, 9.41941415e-01, 9.41941415e-01, 9.41941415e-01,
       1.00384428e+00, 1.00384428e+00, 1.00384428e+00, 1.00384428e+00,
       1.06633018e+00, 1.06633018e+00, 1.06633018e+00, 1.06633018e+00,
       1.12932515e+00, 1.12932515e+00, 1.12932515e+00, 1.12932515e+00,
       1.19354968e+00, 1.19354968e+00, 1.19354968e+00, 1.19354968e+00,
       1.25356360e+00, 1.25356360e+00, 1.25356360e+00, 1.25356360e+00,
       1.30291531e+00, 1.30291531e+00, 1.30291531e+00, 1.30291531e+00,
       1.33529031e+00, 1.33529031e+00, 1.33529031e+00, 1.33529031e+00,
       1.35115947e+00, 1.35115947e+00, 1.35115947e+00, 1.35115947e+00,
       1.35713174e+00, 1.35713174e+00, 1.35713174e+00, 1.35713174e+00,
       1.35925965e+00, 1.35925965e+00, 1.35925965e+00, 1.35925965e+00,
       1.36072477e+00, 1.36072477e+00, 1.36072477e+00, 1.36072477e+00,
       1.36208351e+00, 1.36208351e+00, 1.36208351e+00, 1.36208351e+00,
       1.36283213e+00, 1.36283213e+00, 1.36283213e+00, 1.36283213e+00,
       1.36320426e+00, 1.36320426e+00, 1.36320426e+00, 1.36320426e+00,
       1.36331504e+00, 1.36331504e+00, 1.36331504e+00, 1.36331504e+00,
       1.36312690e+00, 1.36312690e+00, 1.36312690e+00, 1.36312690e+00,
       1.36305072e+00, 1.36305072e+00, 1.36305072e+00, 1.36305072e+00,
       1.36308238e+00, 1.36308238e+00, 1.36308238e+00, 1.36308238e+00,
       1.36286521e+00, 1.36286521e+00, 1.36286521e+00, 1.36286521e+00,
       1.36262787e+00, 1.36262787e+00, 1.36262787e+00, 1.36262787e+00,
       1.36231759e+00, 1.36231759e+00, 1.36231759e+00, 1.36231759e+00,
       1.36138818e+00, 1.36138818e+00, 1.36138818e+00, 1.36138818e+00,
       1.36084001e+00, 1.36084001e+00, 1.36084001e+00, 1.36084001e+00,
       1.36024205e+00, 1.36024205e+00, 1.36024205e+00, 1.36024205e+00,
       1.35931961e+00, 1.35931961e+00, 1.35931961e+00, 1.35931961e+00,
       1.35862778e+00, 1.35862778e+00, 1.35862778e+00, 1.35862778e+00,
       1.35576681e+00, 1.35576681e+00, 1.35576681e+00, 1.35576681e+00,
       1.34188087e+00, 1.34188087e+00, 1.34188087e+00, 1.34188087e+00,
       1.28237194e+00, 1.28237194e+00, 1.28237194e+00, 1.28237194e+00,
       1.04403836e+00, 1.04403836e+00, 1.04403836e+00, 1.04403836e+00,
       4.40023066e-01, 4.40023066e-01, 4.40023066e-01, 4.40023066e-01,
       5.63022869e-02, 5.63022869e-02, 5.63022869e-02, 5.63022869e-02,
       4.58333546e-03, 4.58333546e-03, 4.58333546e-03, 4.58333546e-03,
       3.49968099e-04, 3.49968099e-04, 3.49968099e-04, 3.49968099e-04,
       2.65258651e-05, 2.65258651e-05, 2.65258651e-05, 2.65258651e-05,
       2.00742922e-06, 2.00742922e-06, 2.00742922e-06, 2.00742922e-06,
       1.51640690e-07, 1.51640690e-07, 1.51640690e-07, 1.51640690e-07,
       1.14299111e-08, 1.14299111e-08, 1.14299111e-08, 1.14299111e-08,
       8.59588993e-10, 8.59588993e-10, 8.59588993e-10, 8.59588993e-10,
       6.44987274e-11, 6.44987274e-11, 6.44987274e-11, 6.44987274e-11,
       4.82824703e-12, 4.82824703e-12, 4.82824703e-12, 4.82824703e-12,
       3.60377106e-13, 3.60377106e-13, 3.60377106e-13, 3.60377106e-13,
       2.67995136e-14, 2.67995136e-14, 2.67995136e-14, 2.67995136e-14,
       1.97682800e-15, 1.97682800e-15, 1.97682800e-15, 1.97682800e-15,
       1.51415324e-16, 1.51415324e-16, 1.51415324e-16, 1.51415324e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
       0.99999925, 0.99999925, 0.99999925, 0.99999925, 0.99999593,
       0.99999593, 0.99999593, 0.99999593, 0.99997983, 0.99997983,
       0.99997983, 0.99997983, 0.99990929, 0.99990929, 0.99990929,
       0.99990929, 0.99963266, 0.99963266, 0.99963266, 0.99963266,
       0.99867551, 0.99867551, 0.99867551, 0.99867551, 0.99580237,
       0.99580237, 0.99580237, 0.99580237, 0.98846096, 0.98846096,
       0.98846096, 0.98846096, 0.97276987, 0.97276987, 0.97276987,
       0.97276987, 0.94498179, 0.94498179, 0.94498179, 0.94498179,
       0.90398561, 0.90398561, 0.90398561, 0.90398561, 0.85239877,
       0.85239877, 0.85239877, 0.85239877, 0.79478009, 0.79478009,
       0.79478009, 0.79478009, 0.73582397, 0.73582397, 0.73582397,
       0.73582397, 0.68038471, 0.68038471, 0.68038471, 0.68038471,
       0.62924921, 0.62924921, 0.62924921, 0.62924921, 0.57942336,
       0.57942336, 0.57942336, 0.57942336, 0.53648813, 0.53648813,
       0.53648813, 0.53648813, 0.50332705, 0.50332705, 0.50332705,
       0.50332705, 0.48248881, 0.48248881, 0.48248881, 0.48248881,
       0.47236439, 0.47236439, 0.47236439, 0.47236439, 0.46839479,
       0.46839479, 0.46839479, 0.46839479, 0.46692446, 0.46692446,
       0.46692446, 0.46692446, 0.46614238, 0.46614238, 0.46614238,
       0.46614238, 0.46561056, 0.46561056, 0.46561056, 0.46561056,
       0.4651818 , 0.4651818 , 0.4651818 , 0.4651818 , 0.46489012,
       0.46489012, 0.46489012, 0.46489012, 0.46489108, 0.46489108,
       0.46489108, 0.46489108, 0.4650843 , 0.4650843 , 0.4650843 ,
       0.4650843 , 0.46537787, 0.46537787, 0.46537787, 0.46537787,
       0.46560331, 0.46560331, 0.46560331, 0.46560331, 0.46596369,
       0.46596369, 0.46596369, 0.46596369, 0.46601669, 0.46601669,
       0.46601669, 0.46601669, 0.46592137, 0.46592137, 0.46592137,
       0.46592137, 0.46593666, 0.46593666, 0.46593666, 0.46593666,
       0.46569284, 0.46569284, 0.46569284, 0.46569284, 0.46537354,
       0.46537354, 0.46537354, 0.46537354, 0.46539853, 0.46539853,
       0.46539853, 0.46539853, 0.46498145, 0.46498145, 0.46498145,
       0.46498145, 0.46356472, 0.46356472, 0.46356472, 0.46356472,
       0.45748027, 0.45748027, 0.45748027, 0.45748027, 0.43042442,
       0.43042442, 0.43042442, 0.43042442, 0.33773594, 0.33773594,
       0.33773594, 0.33773594, 0.1723474 , 0.1723474 , 0.1723474 ,
       0.1723474 , 0.10764844, 0.10764844, 0.10764844, 0.10764844,
       0.10060719, 0.10060719, 0.10060719, 0.10060719, 0.1000463 ,
       0.1000463 , 0.1000463 , 0.1000463 , 0.10000351, 0.10000351,
       0.10000351, 0.10000351, 0.10000027, 0.10000027, 0.10000027,
       0.10000027, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_hllc': [{'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999993, 0.99999993, 0.99999993, 0.99999993,
       0.99999956, 0.99999956, 0.99999956, 0.99999956, 0.99999758,
       0.99999758, 0.99999758, 0.99999758, 0.99998782, 0.99998782,
       0.99998782, 0.99998782, 0.99994422, 0.99994422, 0.99994422,
       0.99994422, 0.99977003, 0.99977003, 0.99977003, 0.99977003,
       0.99915542, 0.99915542, 0.99915542, 0.99915542, 0.99727188,
       0.99727188, 0.99727188, 0.99727188, 0.99234954, 0.99234954,
       0.99234954, 0.99234954, 0.98156538, 0.98156538, 0.98156538,
       0.98156538, 0.96194746, 0.96194746, 0.96194746, 0.96194746,
       0.93218276, 0.93218276, 0.93218276, 0.93218276, 0.8936786 ,
       0.8936786 , 0.8936786 , 0.8936786 , 0.84954127, 0.84954127,
       0.84954127, 0.84954127, 0.80317128, 0.80317128, 0.80317128,
       0.80317128, 0.75830147, 0.75830147, 0.75830147, 0.75830147,
       0.71601042, 0.71601042, 0.71601042, 0.71601042, 0.67327991,
       0.67327991, 0.67327991, 0.67327991, 0.63607874, 0.63607874,
       0.63607874, 0.63607874, 0.61091745, 0.61091745, 0.61091745,
       0.61091745, 0.59673414, 0.59673414, 0.59673414, 0.59673414,
       0.58738935, 0.58738935, 0.58738935, 0.58738935, 0.58067077,
       0.58067077, 0.58067077, 0.58067077, 0.57738951, 0.57738951,
       0.57738951, 0.57738951, 0.57684123, 0.57684123, 0.57684123,
       0.57684123, 0.57741731, 0.57741731, 0.57741731, 0.57741731,
       0.57933199, 0.57933199, 0.57933199, 0.57933199, 0.5807667 ,
       0.5807667 , 0.5807667 , 0.5807667 , 0.58038131, 0.58038131,
       0.58038131, 0.58038131, 0.57694171, 0.57694171, 0.57694171,
       0.57694171, 0.56652927, 0.56652927, 0.56652927, 0.56652927,
       0.54427792, 0.54427792, 0.54427792, 0.54427792, 0.50574245,
       0.50574245, 0.50574245, 0.50574245, 0.44917162, 0.44917162,
       0.44917162, 0.44917162, 0.39267489, 0.39267489, 0.39267489,
       0.39267489, 0.35904482, 0.35904482, 0.35904482, 0.35904482,
       0.34183176, 0.34183176, 0.34183176, 0.34183176, 0.33519947,
       0.33519947, 0.33519947, 0.33519947, 0.33392488, 0.33392488,
       0.33392488, 0.33392488, 0.33443666, 0.33443666, 0.33443666,
       0.33443666, 0.33522049, 0.33522049, 0.33522049, 0.33522049,
       0.33404885, 0.33404885, 0.33404885, 0.33404885, 0.32180389,
       0.32180389, 0.32180389, 0.32180389, 0.27211543, 0.27211543,
       0.27211543, 0.27211543, 0.17353096, 0.17353096, 0.17353096,
       0.17353096, 0.13090219, 0.13090219, 0.13090219, 0.13090219,
       0.12548944, 0.12548944, 0.12548944, 0.12548944, 0.12503725,
       0.12503725, 0.12503725, 0.12503725, 0.12500281, 0.12500281,
       0.12500281, 0.12500281, 0.12500021, 0.12500021, 0.12500021,
       0.12500021, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
       7.50000087e-01, 7.50000087e-01, 7.50000087e-01, 7.50000087e-01,
       7.50000519e-01, 7.50000519e-01, 7.50000519e-01, 7.50000519e-01,
       7.50002860e-01, 7.50002860e-01, 7.50002860e-01, 7.50002860e-01,
       7.50014413e-01, 7.50014413e-01, 7.50014413e-01, 7.50014413e-01,
       7.50065997e-01, 7.50065997e-01, 7.50065997e-01, 7.50065997e-01,
       7.50272133e-01, 7.50272133e-01, 7.50272133e-01, 7.50272133e-01,
       7.50999658e-01, 7.50999658e-01, 7.50999658e-01, 7.50999658e-01,
       7.53231583e-01, 7.53231583e-01, 7.53231583e-01, 7.53231583e-01,
       7.59081507e-01, 7.59081507e-01, 7.59081507e-01, 7.59081507e-01,
       7.71986731e-01, 7.71986731e-01, 7.71986731e-01, 7.71986731e-01,
       7.95781524e-01, 7.95781524e-01, 7.95781524e-01, 7.95781524e-01,
       8.32680719e-01, 8.32680719e-01, 8.32680719e-01, 8.32680719e-01,
       8.81876321e-01, 8.81876321e-01, 8.81876321e-01, 8.81876321e-01,
       9.40397529e-01, 9.40397529e-01, 9.40397529e-01, 9.40397529e-01,
       1.00383705e+00, 1.00383705e+00, 1.00383705e+00, 1.00383705e+00,
       1.06846436e+00, 1.06846436e+00, 1.06846436e+00, 1.06846436e+00,
       1.13364194e+00, 1.13364194e+00, 1.13364194e+00, 1.13364194e+00,
       1.19966388e+00, 1.19966388e+00, 1.19966388e+00, 1.19966388e+00,
       1.25823577e+00, 1.25823577e+00, 1.25823577e+00, 1.25823577e+00,
       1.30460285e+00, 1.30460285e+00, 1.30460285e+00, 1.30460285e+00,
       1.33510884e+00, 1.33510884e+00, 1.33510884e+00, 1.33510884e+00,
       1.35096608e+00, 1.35096608e+00, 1.35096608e+00, 1.35096608e+00,
       1.35752911e+00, 1.35752911e+00, 1.35752911e+00, 1.35752911e+00,
       1.36008887e+00, 1.36008887e+00, 1.36008887e+00, 1.36008887e+00,
       1.36168158e+00, 1.36168158e+00, 1.36168158e+00, 1.36168158e+00,
       1.36273536e+00, 1.36273536e+00, 1.36273536e+00, 1.36273536e+00,
       1.36310325e+00, 1.36310325e+00, 1.36310325e+00, 1.36310325e+00,
       1.36308266e+00, 1.36308266e+00, 1.36308266e+00, 1.36308266e+00,
       1.36292459e+00, 1.36292459e+00, 1.36292459e+00, 1.36292459e+00,
       1.36276796e+00, 1.36276796e+00, 1.36276796e+00, 1.36276796e+00,
       1.36261137e+00, 1.36261137e+00, 1.36261137e+00, 1.36261137e+00,
       1.36242480e+00, 1.36242480e+00, 1.36242480e+00, 1.36242480e+00,
       1.36240105e+00, 1.36240105e+00, 1.36240105e+00, 1.36240105e+00,
       1.36236978e+00, 1.36236978e+00, 1.36236978e+00, 1.36236978e+00,
       1.36206049e+00, 1.36206049e+00, 1.36206049e+00, 1.36206049e+00,
       1.36120137e+00, 1.36120137e+00, 1.36120137e+00, 1.36120137e+00,
       1.36080070e+00, 1.36080070e+00, 1.36080070e+00, 1.36080070e+00,
       1.36024607e+00, 1.36024607e+00, 1.36024607e+00, 1.36024607e+00,
       1.35960979e+00, 1.35960979e+00, 1.35960979e+00, 1.35960979e+00,
       1.35845878e+00, 1.35845878e+00, 1.35845878e+00, 1.35845878e+00,
       1.35582525e+00, 1.35582525e+00, 1.35582525e+00, 1.35582525e+00,
       1.34268743e+00, 1.34268743e+00, 1.34268743e+00, 1.34268743e+00,
       1.28409176e+00, 1.28409176e+00, 1.28409176e+00, 1.28409176e+00,
       1.04736551e+00, 1.04736551e+00, 1.04736551e+00, 1.04736551e+00,
       4.29328817e-01, 4.29328817e-01, 4.29328817e-01, 4.29328817e-01,
       5.19371545e-02, 5.19371545e-02, 5.19371545e-02, 5.19371545e-02,
       4.15794051e-03, 4.15794051e-03, 4.15794051e-03, 4.15794051e-03,
       3.15435852e-04, 3.15435852e-04, 3.15435852e-04, 3.15435852e-04,
       2.37540443e-05, 2.37540443e-05, 2.37540443e-05, 2.37540443e-05,
       1.78468394e-06, 1.78468394e-06, 1.78468394e-06, 1.78468394e-06,
       1.33840550e-07, 1.33840550e-07, 1.33840550e-07, 1.33840550e-07,
       1.00204015e-08, 1.00204015e-08, 1.00204015e-08, 1.00204015e-08,
       7.48783638e-10, 7.48783638e-10, 7.48783638e-10, 7.48783638e-10,
       5.58269795e-11, 5.58269795e-11, 5.58269795e-11, 5.58269795e-11,
       4.15162222e-12, 4.15162222e-12, 4.15162222e-12, 4.15162222e-12,
       3.07872093e-13, 3.07872093e-13, 3.07872093e-13, 3.07872093e-13,
       2.27463383e-14, 2.27463383e-14, 2.27463383e-14, 2.27463383e-14,
       1.62261633e-15, 1.62261633e-15, 1.62261633e-15, 1.62261633e-15,
       1.00069544e-16, 1.00069544e-16, 1.00069544e-16, 1.00069544e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 ,
       0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999662,
       0.99999662, 0.99999662, 0.99999662, 0.99998295, 0.99998295,
       0.99998295, 0.99998295, 0.99992191, 0.99992191, 0.99992191,
       0.99992191, 0.99967806, 0.99967806, 0.99967806, 0.99967806,
       0.9988179 , 0.9988179 , 0.9988179 , 0.9988179 , 0.99618367,
       0.99618367, 0.99618367, 0.99618367, 0.9893114 , 0.9893114 ,
       0.9893114 , 0.9893114 , 0.97431068, 0.97431068, 0.97431068,
       0.97431068, 0.94720653, 0.94720653, 0.94720653, 0.94720653,
       0.90652171, 0.90652171, 0.90652171, 0.90652171, 0.85466372,
       0.85466372, 0.85466372, 0.85466372, 0.79629842, 0.79629842,
       0.79629842, 0.79629842, 0.73604968, 0.73604968, 0.73604968,
       0.73604968, 0.67878231, 0.67878231, 0.67878231, 0.67878231,
       0.6256561 , 0.6256561 , 0.6256561 , 0.6256561 , 0.57494258,
       0.57494258, 0.57494258, 0.57494258, 0.533212  , 0.533212  ,
       0.533212  , 0.533212  , 0.50207587, 0.50207587, 0.50207587,
       0.50207587, 0.48250309, 0.48250309, 0.48250309, 0.48250309,
       0.47250947, 0.47250947, 0.47250947, 0.47250947, 0.46817049,
       0.46817049, 0.46817049, 0.46817049, 0.46640112, 0.46640112,
       0.46640112, 0.46640112, 0.46567017, 0.46567017, 0.46567017,
       0.46567017, 0.46537494, 0.46537494, 0.46537494, 0.46537494,
       0.4652207 , 0.4652207 , 0.4652207 , 0.4652207 , 0.46520697,
       0.46520697, 0.46520697, 0.46520697, 0.46526117, 0.46526117,
       0.46526117, 0.46526117, 0.46535935, 0.46535935, 0.46535935,
       0.46535935, 0.46554981, 0.46554981, 0.46554981, 0.46554981,
       0.46588653, 0.46588653, 0.46588653, 0.46588653, 0.46609435,
       0.46609435, 0.46609435, 0.46609435, 0.46609123, 0.46609123,
       0.46609123, 0.46609123, 0.46609313, 0.46609313, 0.46609313,
       0.46609313, 0.4660888 , 0.4660888 , 0.4660888 , 0.4660888 ,
       0.46579135, 0.46579135, 0.46579135, 0.46579135, 0.46552363,
       0.46552363, 0.46552363, 0.46552363, 0.46536737, 0.46536737,
       0.46536737, 0.46536737, 0.46516396, 0.46516396, 0.46516396,
       0.46516396, 0.46370822, 0.46370822, 0.46370822, 0.46370822,
       0.45758086, 0.45758086, 0.45758086, 0.45758086, 0.43124529,
       0.43124529, 0.43124529, 0.43124529, 0.33859453, 0.33859453,
       0.33859453, 0.33859453, 0.17013955, 0.17013955, 0.17013955,
       0.17013955, 0.10699674, 0.10699674, 0.10699674, 0.10699674,
       0.10055056, 0.10055056, 0.10055056, 0.10055056, 0.10004173,
       0.10004173, 0.10004173, 0.10004173, 0.10000314, 0.10000314,
       0.10000314, 0.10000314, 0.10000024, 0.10000024, 0.10000024,
       0.10000024, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}]}
minmod_hllc
{'none_hll': [{'rho': array([0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999942,
       0.99999942, 0.99999942, 0.99999942, 0.99999778, 0.99999778,
       0.99999778, 0.99999778, 0.99999202, 0.99999202, 0.99999202,
       0.99999202, 0.99997316, 0.99997316, 0.99997316, 0.99997316,
       0.99991602, 0.99991602, 0.99991602, 0.99991602, 0.9997563 ,
       0.9997563 , 0.9997563 , 0.9997563 , 0.9993467 , 0.9993467 ,
       0.9993467 , 0.9993467 , 0.99838817, 0.99838817, 0.99838817,
       0.99838817, 0.99635204, 0.99635204, 0.99635204, 0.99635204,
       0.99244104, 0.99244104, 0.99244104, 0.99244104, 0.9856563 ,
       0.9856563 , 0.9856563 , 0.9856563 , 0.97499773, 0.97499773,
       0.97499773, 0.97499773, 0.95972818, 0.95972818, 0.95972818,
       0.95972818, 0.93956535, 0.93956535, 0.93956535, 0.93956535,
       0.91470956, 0.91470956, 0.91470956, 0.91470956, 0.88572617,
       0.88572617, 0.88572617, 0.88572617, 0.85336749, 0.85336749,
       0.85336749, 0.85336749, 0.8183986 , 0.8183986 , 0.8183986 ,
       0.8183986 , 0.78138933, 0.78138933, 0.78138933, 0.78138933,
       0.74190427, 0.74190427, 0.74190427, 0.74190427, 0.68069561,
       0.68069561, 0.68069561, 0.68069561, 0.64567578, 0.64567578,
       0.64567578, 0.64567578, 0.62072799, 0.62072799, 0.62072799,
       0.62072799, 0.60234245, 0.60234245, 0.60234245, 0.60234245,
       0.58959115, 0.58959115, 0.58959115, 0.58959115, 0.58159638,
       0.58159638, 0.58159638, 0.58159638, 0.57703206, 0.57703206,
       0.57703206, 0.57703206, 0.5742342 , 0.5742342 , 0.5742342 ,
       0.5742342 , 0.57154338, 0.57154338, 0.57154338, 0.57154338,
       0.56752869, 0.56752869, 0.56752869, 0.56752869, 0.56100982,
       0.56100982, 0.56100982, 0.56100982, 0.55104138, 0.55104138,
       0.55104138, 0.55104138, 0.5369988 , 0.5369988 , 0.5369988 ,
       0.5369988 , 0.51874878, 0.51874878, 0.51874878, 0.51874878,
       0.49679082, 0.49679082, 0.49679082, 0.49679082, 0.4722612 ,
       0.4722612 , 0.4722612 , 0.4722612 , 0.44675753, 0.44675753,
       0.44675753, 0.44675753, 0.42202434, 0.42202434, 0.42202434,
       0.42202434, 0.39959589, 0.39959589, 0.39959589, 0.39959589,
       0.38049936, 0.38049936, 0.38049936, 0.38049936, 0.36508019,
       0.36508019, 0.36508019, 0.36508019, 0.35299013, 0.35299013,
       0.35299013, 0.35299013, 0.34303431, 0.34303431, 0.34303431,
       0.34303431, 0.33311509, 0.33311509, 0.33311509, 0.33311509,
       0.32011436, 0.32011436, 0.32011436, 0.32011436, 0.29976301,
       0.29976301, 0.29976301, 0.29976301, 0.2678043 , 0.2678043 ,
       0.2678043 , 0.2678043 , 0.22419984, 0.22419984, 0.22419984,
       0.22419984, 0.17832614, 0.17832614, 0.17832614, 0.17832614,
       0.14528472, 0.14528472, 0.14528472, 0.14528472, 0.13048361,
       0.13048361, 0.13048361, 0.13048361, 0.12620226, 0.12620226,
       0.12620226, 0.12620226, 0.12524229, 0.12524229, 0.12524229,
       0.12524229, 0.12504738, 0.12504738, 0.12504738, 0.12504738,
       0.12500914, 0.12500914, 0.12500914, 0.12500914, 0.12500174,
       0.12500174, 0.12500174, 0.12500174, 0.12500033, 0.12500033,
       0.12500033, 0.12500033, 0.12500006, 0.12500006, 0.12500006,
       0.12500006, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000167e-01, 7.50000167e-01, 7.50000167e-01, 7.50000167e-01,
       7.50000683e-01, 7.50000683e-01, 7.50000683e-01, 7.50000683e-01,
       7.50002625e-01, 7.50002625e-01, 7.50002625e-01, 7.50002625e-01,
       7.50009447e-01, 7.50009447e-01, 7.50009447e-01, 7.50009447e-01,
       7.50031758e-01, 7.50031758e-01, 7.50031758e-01, 7.50031758e-01,
       7.50099366e-01, 7.50099366e-01, 7.50099366e-01, 7.50099366e-01,
       7.50288337e-01, 7.50288337e-01, 7.50288337e-01, 7.50288337e-01,
       7.50772988e-01, 7.50772988e-01, 7.50772988e-01, 7.50772988e-01,
       7.51907376e-01, 7.51907376e-01, 7.51907376e-01, 7.51907376e-01,
       7.54318699e-01, 7.54318699e-01, 7.54318699e-01, 7.54318699e-01,
       7.58958083e-01, 7.58958083e-01, 7.58958083e-01, 7.58958083e-01,
       7.67034111e-01, 7.67034111e-01, 7.67034111e-01, 7.67034111e-01,
       7.79799756e-01, 7.79799756e-01, 7.79799756e-01, 7.79799756e-01,
       7.98268450e-01, 7.98268450e-01, 7.98268450e-01, 7.98268450e-01,
       8.23003448e-01, 8.23003448e-01, 8.23003448e-01, 8.23003448e-01,
       8.54075522e-01, 8.54075522e-01, 8.54075522e-01, 8.54075522e-01,
       8.91170219e-01, 8.91170219e-01, 8.91170219e-01, 8.91170219e-01,
       9.33761223e-01, 9.33761223e-01, 9.33761223e-01, 9.33761223e-01,
       9.81292612e-01, 9.81292612e-01, 9.81292612e-01, 9.81292612e-01,
       1.03344347e+00, 1.03344347e+00, 1.03344347e+00, 1.03344347e+00,
       1.09134872e+00, 1.09134872e+00, 1.09134872e+00, 1.09134872e+00,
       1.18628677e+00, 1.18628677e+00, 1.18628677e+00, 1.18628677e+00,
       1.24355729e+00, 1.24355729e+00, 1.24355729e+00, 1.24355729e+00,
       1.28577631e+00, 1.28577631e+00, 1.28577631e+00, 1.28577631e+00,
       1.31763060e+00, 1.31763060e+00, 1.31763060e+00, 1.31763060e+00,
       1.33994607e+00, 1.33994607e+00, 1.33994607e+00, 1.33994607e+00,
       1.35366900e+00, 1.35366900e+00, 1.35366900e+00, 1.35366900e+00,
       1.36065228e+00, 1.36065228e+00, 1.36065228e+00, 1.36065228e+00,
       1.36330406e+00, 1.36330406e+00, 1.36330406e+00, 1.36330406e+00,
       1.36377802e+00, 1.36377802e+00, 1.36377802e+00, 1.36377802e+00,
       1.36346214e+00, 1.36346214e+00, 1.36346214e+00, 1.36346214e+00,
       1.36300839e+00, 1.36300839e+00, 1.36300839e+00, 1.36300839e+00,
       1.36262613e+00, 1.36262613e+00, 1.36262613e+00, 1.36262613e+00,
       1.36234022e+00, 1.36234022e+00, 1.36234022e+00, 1.36234022e+00,
       1.36212440e+00, 1.36212440e+00, 1.36212440e+00, 1.36212440e+00,
       1.36194570e+00, 1.36194570e+00, 1.36194570e+00, 1.36194570e+00,
       1.36176870e+00, 1.36176870e+00, 1.36176870e+00, 1.36176870e+00,
       1.36154433e+00, 1.36154433e+00, 1.36154433e+00, 1.36154433e+00,
       1.36118699e+00, 1.36118699e+00, 1.36118699e+00, 1.36118699e+00,
       1.36053007e+00, 1.36053007e+00, 1.36053007e+00, 1.36053007e+00,
       1.35923531e+00, 1.35923531e+00, 1.35923531e+00, 1.35923531e+00,
       1.35660636e+00, 1.35660636e+00, 1.35660636e+00, 1.35660636e+00,
       1.35121276e+00, 1.35121276e+00, 1.35121276e+00, 1.35121276e+00,
       1.34015167e+00, 1.34015167e+00, 1.34015167e+00, 1.34015167e+00,
       1.31767491e+00, 1.31767491e+00, 1.31767491e+00, 1.31767491e+00,
       1.27285288e+00, 1.27285288e+00, 1.27285288e+00, 1.27285288e+00,
       1.18653029e+00, 1.18653029e+00, 1.18653029e+00, 1.18653029e+00,
       1.03082789e+00, 1.03082789e+00, 1.03082789e+00, 1.03082789e+00,
       7.82059657e-01, 7.82059657e-01, 7.82059657e-01, 7.82059657e-01,
       4.62795165e-01, 4.62795165e-01, 4.62795165e-01, 4.62795165e-01,
       1.85035678e-01, 1.85035678e-01, 1.85035678e-01, 1.85035678e-01,
       4.91064989e-02, 4.91064989e-02, 4.91064989e-02, 4.91064989e-02,
       1.04300500e-02, 1.04300500e-02, 1.04300500e-02, 1.04300500e-02,
       2.06834747e-03, 2.06834747e-03, 2.06834747e-03, 2.06834747e-03,
       4.02159204e-04, 4.02159204e-04, 4.02159204e-04, 4.02159204e-04,
       7.74241901e-05, 7.74241901e-05, 7.74241901e-05, 7.74241901e-05,
       1.47732907e-05, 1.47732907e-05, 1.47732907e-05, 1.47732907e-05,
       2.79133251e-06, 2.79133251e-06, 2.79133251e-06, 2.79133251e-06,
       5.21558611e-07, 5.21558611e-07, 5.21558611e-07, 5.21558611e-07,
       9.62314180e-08, 9.62314180e-08, 9.62314180e-08, 9.62314180e-08,
       1.75063215e-08, 1.75063215e-08, 1.75063215e-08, 1.75063215e-08,
       3.13525934e-09, 3.13525934e-09, 3.13525934e-09, 3.13525934e-09,
       5.51945459e-10, 5.51945459e-10, 5.51945459e-10, 5.51945459e-10,
       9.53728523e-11, 9.53728523e-11, 9.53728523e-11]), 'P': array([0.9999998 , 0.9999998 , 0.9999998 , 0.9999998 , 0.99999919,
       0.99999919, 0.99999919, 0.99999919, 0.99999689, 0.99999689,
       0.99999689, 0.99999689, 0.99998882, 0.99998882, 0.99998882,
       0.99998882, 0.99996242, 0.99996242, 0.99996242, 0.99996242,
       0.99988243, 0.99988243, 0.99988243, 0.99988243, 0.99965888,
       0.99965888, 0.99965888, 0.99965888, 0.99908571, 0.99908571,
       0.99908571, 0.99908571, 0.99774515, 0.99774515, 0.99774515,
       0.99774515, 0.99490042, 0.99490042, 0.99490042, 0.99490042,
       0.98944596, 0.98944596, 0.98944596, 0.98944596, 0.98001064,
       0.98001064, 0.98001064, 0.98001064, 0.96525111, 0.96525111,
       0.96525111, 0.96525111, 0.94423203, 0.94423203, 0.94423203,
       0.94423203, 0.91669404, 0.91669404, 0.91669404, 0.91669404,
       0.88307786, 0.88307786, 0.88307786, 0.88307786, 0.84433672,
       0.84433672, 0.84433672, 0.84433672, 0.80166635, 0.80166635,
       0.80166635, 0.80166635, 0.75625152, 0.75625152, 0.75625152,
       0.75625152, 0.70899078, 0.70899078, 0.70899078, 0.70899078,
       0.65951543, 0.65951543, 0.65951543, 0.65951543, 0.58481452,
       0.58481452, 0.58481452, 0.58481452, 0.5433517 , 0.5433517 ,
       0.5433517 , 0.5433517 , 0.51442502, 0.51442502, 0.51442502,
       0.51442502, 0.49348741, 0.49348741, 0.49348741, 0.49348741,
       0.47926376, 0.47926376, 0.47926376, 0.47926376, 0.4706976 ,
       0.4706976 , 0.4706976 , 0.4706976 , 0.46639387, 0.46639387,
       0.46639387, 0.46639387, 0.46477369, 0.46477369, 0.46477369,
       0.46477369, 0.46449143, 0.46449143, 0.46449143, 0.46449143,
       0.46469357, 0.46469357, 0.46469357, 0.46469357, 0.46498071,
       0.46498071, 0.46498071, 0.46498071, 0.46522404, 0.46522404,
       0.46522404, 0.46522404, 0.46540634, 0.46540634, 0.46540634,
       0.46540634, 0.46553884, 0.46553884, 0.46553884, 0.46553884,
       0.46563123, 0.46563123, 0.46563123, 0.46563123, 0.46568376,
       0.46568376, 0.46568376, 0.46568376, 0.46568347, 0.46568347,
       0.46568347, 0.46568347, 0.46559619, 0.46559619, 0.46559619,
       0.46559619, 0.46534764, 0.46534764, 0.46534764, 0.46534764,
       0.46478249, 0.46478249, 0.46478249, 0.46478249, 0.46357931,
       0.46357931, 0.46357931, 0.46357931, 0.46108012, 0.46108012,
       0.46108012, 0.46108012, 0.4559703 , 0.4559703 , 0.4559703 ,
       0.4559703 , 0.44573327, 0.44573327, 0.44573327, 0.44573327,
       0.42592481, 0.42592481, 0.42592481, 0.42592481, 0.38995176,
       0.38995176, 0.38995176, 0.38995176, 0.33171722, 0.33171722,
       0.33171722, 0.33171722, 0.25409808, 0.25409808, 0.25409808,
       0.25409808, 0.1771826 , 0.1771826 , 0.1771826 , 0.1771826 ,
       0.126735  , 0.126735  , 0.126735  , 0.126735  , 0.10663112,
       0.10663112, 0.10663112, 0.10663112, 0.10138491, 0.10138491,
       0.10138491, 0.10138491, 0.1002738 , 0.1002738 , 0.1002738 ,
       0.1002738 , 0.10005321, 0.10005321, 0.10005321, 0.10005321,
       0.10001024, 0.10001024, 0.10001024, 0.10001024, 0.10000195,
       0.10000195, 0.10000195, 0.10000195, 0.10000037, 0.10000037,
       0.10000037, 0.10000037, 0.10000007, 0.10000007, 0.10000007,
       0.10000007, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_rusanov': [{'rho': array([0.99999871, 0.99999871, 0.99999871, 0.99999871, 0.99999661,
       0.99999661, 0.99999661, 0.99999661, 0.99998966, 0.99998966,
       0.99998966, 0.99998966, 0.99997049, 0.99997049, 0.99997049,
       0.99997049, 0.99992058, 0.99992058, 0.99992058, 0.99992058,
       0.99979749, 0.99979749, 0.99979749, 0.99979749, 0.99951129,
       0.99951129, 0.99951129, 0.99951129, 0.99888599, 0.99888599,
       0.99888599, 0.99888599, 0.9976064 , 0.9976064 , 0.9976064 ,
       0.9976064 , 0.99516153, 0.99516153, 0.99516153, 0.99516153,
       0.99081297, 0.99081297, 0.99081297, 0.99081297, 0.98362904,
       0.98362904, 0.98362904, 0.98362904, 0.9726153 , 0.9726153 ,
       0.9726153 , 0.9726153 , 0.95692666, 0.95692666, 0.95692666,
       0.95692666, 0.93608458, 0.93608458, 0.93608458, 0.93608458,
       0.91009674, 0.91009674, 0.91009674, 0.91009674, 0.87942017,
       0.87942017, 0.87942017, 0.87942017, 0.84480243, 0.84480243,
       0.84480243, 0.84480243, 0.80717174, 0.80717174, 0.80717174,
       0.80717174, 0.76833323, 0.76833323, 0.76833323, 0.76833323,
       0.7317958 , 0.7317958 , 0.7317958 , 0.7317958 , 0.69866292,
       0.69866292, 0.69866292, 0.69866292, 0.66877266, 0.66877266,
       0.66877266, 0.66877266, 0.64250712, 0.64250712, 0.64250712,
       0.64250712, 0.62085534, 0.62085534, 0.62085534, 0.62085534,
       0.60473075, 0.60473075, 0.60473075, 0.60473075, 0.59427383,
       0.59427383, 0.59427383, 0.59427383, 0.58874167, 0.58874167,
       0.58874167, 0.58874167, 0.58661231, 0.58661231, 0.58661231,
       0.58661231, 0.58586097, 0.58586097, 0.58586097, 0.58586097,
       0.58476947, 0.58476947, 0.58476947, 0.58476947, 0.58158321,
       0.58158321, 0.58158321, 0.58158321, 0.57471343, 0.57471343,
       0.57471343, 0.57471343, 0.56327381, 0.56327381, 0.56327381,
       0.56327381, 0.54639053, 0.54639053, 0.54639053, 0.54639053,
       0.52240684, 0.52240684, 0.52240684, 0.52240684, 0.48899281,
       0.48899281, 0.48899281, 0.48899281, 0.4463966 , 0.4463966 ,
       0.4463966 , 0.4463966 , 0.40411539, 0.40411539, 0.40411539,
       0.40411539, 0.37294067, 0.37294067, 0.37294067, 0.37294067,
       0.35182753, 0.35182753, 0.35182753, 0.35182753, 0.33895289,
       0.33895289, 0.33895289, 0.33895289, 0.33221897, 0.33221897,
       0.33221897, 0.33221897, 0.3294285 , 0.3294285 , 0.3294285 ,
       0.3294285 , 0.32860094, 0.32860094, 0.32860094, 0.32860094,
       0.32743466, 0.32743466, 0.32743466, 0.32743466, 0.31726988,
       0.31726988, 0.31726988, 0.31726988, 0.27001934, 0.27001934,
       0.27001934, 0.27001934, 0.17357126, 0.17357126, 0.17357126,
       0.17357126, 0.13098555, 0.13098555, 0.13098555, 0.13098555,
       0.12551968, 0.12551968, 0.12551968, 0.12551968, 0.12504027,
       0.12504027, 0.12504027, 0.12504027, 0.12500303, 0.12500303,
       0.12500303, 0.12500303, 0.12500023, 0.12500023, 0.12500023,
       0.12500023, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50001531e-01, 7.50001531e-01, 7.50001531e-01, 7.50001531e-01,
       7.50004007e-01, 7.50004007e-01, 7.50004007e-01, 7.50004007e-01,
       7.50012237e-01, 7.50012237e-01, 7.50012237e-01, 7.50012237e-01,
       7.50034917e-01, 7.50034917e-01, 7.50034917e-01, 7.50034917e-01,
       7.50093968e-01, 7.50093968e-01, 7.50093968e-01, 7.50093968e-01,
       7.50239615e-01, 7.50239615e-01, 7.50239615e-01, 7.50239615e-01,
       7.50578307e-01, 7.50578307e-01, 7.50578307e-01, 7.50578307e-01,
       7.51318450e-01, 7.51318450e-01, 7.51318450e-01, 7.51318450e-01,
       7.52833953e-01, 7.52833953e-01, 7.52833953e-01, 7.52833953e-01,
       7.55733191e-01, 7.55733191e-01, 7.55733191e-01, 7.55733191e-01,
       7.60902495e-01, 7.60902495e-01, 7.60902495e-01, 7.60902495e-01,
       7.69479672e-01, 7.69479672e-01, 7.69479672e-01, 7.69479672e-01,
       7.82724068e-01, 7.82724068e-01, 7.82724068e-01, 7.82724068e-01,
       8.01796569e-01, 8.01796569e-01, 8.01796569e-01, 8.01796569e-01,
       8.27525186e-01, 8.27525186e-01, 8.27525186e-01, 8.27525186e-01,
       8.60261011e-01, 8.60261011e-01, 8.60261011e-01, 8.60261011e-01,
       8.99894497e-01, 8.99894497e-01, 8.99894497e-01, 8.99894497e-01,
       9.46030525e-01, 9.46030525e-01, 9.46030525e-01, 9.46030525e-01,
       9.98277447e-01, 9.98277447e-01, 9.98277447e-01, 9.98277447e-01,
       1.05334834e+00, 1.05334834e+00, 1.05334834e+00, 1.05334834e+00,
       1.10804511e+00, 1.10804511e+00, 1.10804511e+00, 1.10804511e+00,
       1.15927234e+00, 1.15927234e+00, 1.15927234e+00, 1.15927234e+00,
       1.20602476e+00, 1.20602476e+00, 1.20602476e+00, 1.20602476e+00,
       1.24734222e+00, 1.24734222e+00, 1.24734222e+00, 1.24734222e+00,
       1.28248845e+00, 1.28248845e+00, 1.28248845e+00, 1.28248845e+00,
       1.31052537e+00, 1.31052537e+00, 1.31052537e+00, 1.31052537e+00,
       1.33076480e+00, 1.33076480e+00, 1.33076480e+00, 1.33076480e+00,
       1.34415463e+00, 1.34415463e+00, 1.34415463e+00, 1.34415463e+00,
       1.35305806e+00, 1.35305806e+00, 1.35305806e+00, 1.35305806e+00,
       1.35894065e+00, 1.35894065e+00, 1.35894065e+00, 1.35894065e+00,
       1.36185203e+00, 1.36185203e+00, 1.36185203e+00, 1.36185203e+00,
       1.36239557e+00, 1.36239557e+00, 1.36239557e+00, 1.36239557e+00,
       1.36215707e+00, 1.36215707e+00, 1.36215707e+00, 1.36215707e+00,
       1.36194266e+00, 1.36194266e+00, 1.36194266e+00, 1.36194266e+00,
       1.36206937e+00, 1.36206937e+00, 1.36206937e+00, 1.36206937e+00,
       1.36246607e+00, 1.36246607e+00, 1.36246607e+00, 1.36246607e+00,
       1.36297688e+00, 1.36297688e+00, 1.36297688e+00, 1.36297688e+00,
       1.36312897e+00, 1.36312897e+00, 1.36312897e+00, 1.36312897e+00,
       1.36298101e+00, 1.36298101e+00, 1.36298101e+00, 1.36298101e+00,
       1.36246641e+00, 1.36246641e+00, 1.36246641e+00, 1.36246641e+00,
       1.36157437e+00, 1.36157437e+00, 1.36157437e+00, 1.36157437e+00,
       1.36070130e+00, 1.36070130e+00, 1.36070130e+00, 1.36070130e+00,
       1.36003987e+00, 1.36003987e+00, 1.36003987e+00, 1.36003987e+00,
       1.35919056e+00, 1.35919056e+00, 1.35919056e+00, 1.35919056e+00,
       1.35638143e+00, 1.35638143e+00, 1.35638143e+00, 1.35638143e+00,
       1.34281703e+00, 1.34281703e+00, 1.34281703e+00, 1.34281703e+00,
       1.28083198e+00, 1.28083198e+00, 1.28083198e+00, 1.28083198e+00,
       1.03437248e+00, 1.03437248e+00, 1.03437248e+00, 1.03437248e+00,
       4.39845204e-01, 4.39845204e-01, 4.39845204e-01, 4.39845204e-01,
       5.63702448e-02, 5.63702448e-02, 5.63702448e-02, 5.63702448e-02,
       4.56728510e-03, 4.56728510e-03, 4.56728510e-03, 4.56728510e-03,
       3.44109702e-04, 3.44109702e-04, 3.44109702e-04, 3.44109702e-04,
       2.57117118e-05, 2.57117118e-05, 2.57117118e-05, 2.57117118e-05,
       1.91493931e-06, 1.91493931e-06, 1.91493931e-06, 1.91493931e-06,
       1.42183400e-07, 1.42183400e-07, 1.42183400e-07, 1.42183400e-07,
       1.05285748e-08, 1.05285748e-08, 1.05285748e-08, 1.05285748e-08,
       7.77701570e-10, 7.77701570e-10, 7.77701570e-10, 7.77701570e-10,
       5.73011541e-11, 5.73011541e-11, 5.73011541e-11, 5.73011541e-11,
       4.21117928e-12, 4.21117928e-12, 4.21117928e-12, 4.21117928e-12,
       3.08654210e-13, 3.08654210e-13, 3.08654210e-13, 3.08654210e-13,
       2.24724643e-14, 2.24724643e-14, 2.24724643e-14, 2.24724643e-14,
       1.61702291e-15, 1.61702291e-15, 1.61702291e-15, 1.61702291e-15,
       1.02454347e-16, 1.02454347e-16, 1.02454347e-16, 1.02454347e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([0.99999819, 0.99999819, 0.99999819, 0.99999819, 0.99999526,
       0.99999526, 0.99999526, 0.99999526, 0.99998552, 0.99998552,
       0.99998552, 0.99998552, 0.99995869, 0.99995869, 0.99995869,
       0.99995869, 0.99988882, 0.99988882, 0.99988882, 0.99988882,
       0.99971652, 0.99971652, 0.99971652, 0.99971652, 0.99931595,
       0.99931595, 0.99931595, 0.99931595, 0.9984411 , 0.9984411 ,
       0.9984411 , 0.9984411 , 0.99665195, 0.99665195, 0.99665195,
       0.99665195, 0.99323734, 0.99323734, 0.99323734, 0.99323734,
       0.98717551, 0.98717551, 0.98717551, 0.98717551, 0.97719106,
       0.97719106, 0.97719106, 0.97719106, 0.96195133, 0.96195133,
       0.96195133, 0.96195133, 0.94037646, 0.94037646, 0.94037646,
       0.94037646, 0.91194761, 0.91194761, 0.91194761, 0.91194761,
       0.87686269, 0.87686269, 0.87686269, 0.87686269, 0.83595614,
       0.83595614, 0.83595614, 0.83595614, 0.79042203, 0.79042203,
       0.79042203, 0.79042203, 0.74145147, 0.74145147, 0.74145147,
       0.74145147, 0.69147779, 0.69147779, 0.69147779, 0.69147779,
       0.64572403, 0.64572403, 0.64572403, 0.64572403, 0.60528213,
       0.60528213, 0.60528213, 0.60528213, 0.57010763, 0.57010763,
       0.57010763, 0.57010763, 0.5404967 , 0.5404967 , 0.5404967 ,
       0.5404967 , 0.51678706, 0.51678706, 0.51678706, 0.51678706,
       0.49867658, 0.49867658, 0.49867658, 0.49867658, 0.4853026 ,
       0.4853026 , 0.4853026 , 0.4853026 , 0.47607786, 0.47607786,
       0.47607786, 0.47607786, 0.47071083, 0.47071083, 0.47071083,
       0.47071083, 0.46816931, 0.46816931, 0.46816931, 0.46816931,
       0.46677659, 0.46677659, 0.46677659, 0.46677659, 0.46558153,
       0.46558153, 0.46558153, 0.46558153, 0.4647659 , 0.4647659 ,
       0.4647659 , 0.4647659 , 0.46441055, 0.46441055, 0.46441055,
       0.46441055, 0.46437878, 0.46437878, 0.46437878, 0.46437878,
       0.46459568, 0.46459568, 0.46459568, 0.46459568, 0.46499426,
       0.46499426, 0.46499426, 0.46499426, 0.46520033, 0.46520033,
       0.46520033, 0.46520033, 0.46528777, 0.46528777, 0.46528777,
       0.46528777, 0.46526662, 0.46526662, 0.46526662, 0.46526662,
       0.46508061, 0.46508061, 0.46508061, 0.46508061, 0.4649127 ,
       0.4649127 , 0.4649127 , 0.4649127 , 0.46486127, 0.46486127,
       0.46486127, 0.46486127, 0.4647071 , 0.4647071 , 0.4647071 ,
       0.4647071 , 0.46356721, 0.46356721, 0.46356721, 0.46356721,
       0.45731151, 0.45731151, 0.45731151, 0.45731151, 0.42928346,
       0.42928346, 0.42928346, 0.42928346, 0.33578024, 0.33578024,
       0.33578024, 0.33578024, 0.17249402, 0.17249402, 0.17249402,
       0.17249402, 0.10769716, 0.10769716, 0.10769716, 0.10769716,
       0.10060508, 0.10060508, 0.10060508, 0.10060508, 0.10004552,
       0.10004552, 0.10004552, 0.10004552, 0.1000034 , 0.1000034 ,
       0.1000034 , 0.1000034 , 0.10000025, 0.10000025, 0.10000025,
       0.10000025, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_hll': [{'rho': array([1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   ,
       1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 1.   , 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125, 0.125,
       0.125, 0.125, 0.125]), 'vx': array([0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75, 0.75,
       0.75, 0.75, 0.75, 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  , 0.  ,
       0.  , 0.  ]), 'P': array([1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. , 1. ,
       1. , 1. , 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1,
       0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1, 0.1])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999477, 0.99999477,
       0.99999477, 0.99999477, 0.99786485, 0.99786485, 0.99786485,
       0.99786485, 0.93485786, 0.93485786, 0.93485786, 0.93485786,
       0.40121931, 0.40121931, 0.40121931, 0.40121931, 0.15582104,
       0.15582104, 0.15582104, 0.15582104, 0.12524217, 0.12524217,
       0.12524217, 0.12524217, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75      , 0.75      ,
       0.75      , 0.75      , 0.75      , 0.75000582, 0.75000582,
       0.75000582, 0.75000582, 0.75222331, 0.75222331, 0.75222331,
       0.75222331, 0.81126632, 0.81126632, 0.81126632, 0.81126632,
       1.02140027, 1.02140027, 1.02140027, 1.02140027, 0.31355893,
       0.31355893, 0.31355893, 0.31355893, 0.0023764 , 0.0023764 ,
       0.0023764 , 0.0023764 , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ,
       0.        , 0.        , 0.        , 0.        , 0.        ]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999312, 0.99999312,
       0.99999312, 0.99999312, 0.99735755, 0.99735755, 0.99735755,
       0.99735755, 0.93228381, 0.93228381, 0.93228381, 0.93228381,
       0.39392227, 0.39392227, 0.39392227, 0.39392227, 0.14137148,
       0.14137148, 0.14137148, 0.14137148, 0.1003091 , 0.1003091 ,
       0.1003091 , 0.1003091 , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999593,
       0.99999593, 0.99999593, 0.99999593, 0.99976514, 0.99976514,
       0.99976514, 0.99976514, 0.99350557, 0.99350557, 0.99350557,
       0.99350557, 0.91229178, 0.91229178, 0.91229178, 0.91229178,
       0.5439655 , 0.5439655 , 0.5439655 , 0.5439655 , 0.26096859,
       0.26096859, 0.26096859, 0.26096859, 0.14372642, 0.14372642,
       0.14372642, 0.14372642, 0.12576866, 0.12576866, 0.12576866,
       0.12576866, 0.12501238, 0.12501238, 0.12501238, 0.12501238,
       0.12500005, 0.12500005, 0.12500005, 0.12500005, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000034e-01, 7.50000034e-01, 7.50000034e-01, 7.50000034e-01,
       7.50004712e-01, 7.50004712e-01, 7.50004712e-01, 7.50004712e-01,
       7.50264827e-01, 7.50264827e-01, 7.50264827e-01, 7.50264827e-01,
       7.56937682e-01, 7.56937682e-01, 7.56937682e-01, 7.56937682e-01,
       8.39140555e-01, 8.39140555e-01, 8.39140555e-01, 8.39140555e-01,
       1.20185078e+00, 1.20185078e+00, 1.20185078e+00, 1.20185078e+00,
       9.09724624e-01, 9.09724624e-01, 9.09724624e-01, 9.09724624e-01,
       1.82774882e-01, 1.82774882e-01, 1.82774882e-01, 1.82774882e-01,
       7.06720021e-03, 7.06720021e-03, 7.06720021e-03, 7.06720021e-03,
       1.07910808e-04, 1.07910808e-04, 1.07910808e-04, 1.07910808e-04,
       4.52081665e-07, 4.52081665e-07, 4.52081665e-07, 4.52081665e-07,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999442,
       0.99999442, 0.99999442, 0.99999442, 0.99968659, 0.99968659,
       0.99968659, 0.99968659, 0.99178136, 0.99178136, 0.99178136,
       0.99178136, 0.89903919, 0.89903919, 0.89903919, 0.89903919,
       0.51770741, 0.51770741, 0.51770741, 0.51770741, 0.2728004 ,
       0.2728004 , 0.2728004 , 0.2728004 , 0.12535917, 0.12535917,
       0.12535917, 0.12535917, 0.10093445, 0.10093445, 0.10093445,
       0.10093445, 0.10001427, 0.10001427, 0.10001427, 0.10001427,
       0.10000006, 0.10000006, 0.10000006, 0.10000006, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999923, 0.99999923, 0.99999923, 0.99999923, 0.99996861,
       0.99996861, 0.99996861, 0.99996861, 0.99921031, 0.99921031,
       0.99921031, 0.99921031, 0.98796713, 0.98796713, 0.98796713,
       0.98796713, 0.89633843, 0.89633843, 0.89633843, 0.89633843,
       0.62495402, 0.62495402, 0.62495402, 0.62495402, 0.36745601,
       0.36745601, 0.36745601, 0.36745601, 0.20859145, 0.20859145,
       0.20859145, 0.20859145, 0.13495091, 0.13495091, 0.13495091,
       0.13495091, 0.12554615, 0.12554615, 0.12554615, 0.12554615,
       0.12501743, 0.12501743, 0.12501743, 0.12501743, 0.12500034,
       0.12500034, 0.12500034, 0.12500034, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
       7.50000909e-01, 7.50000909e-01, 7.50000909e-01, 7.50000909e-01,
       7.50036531e-01, 7.50036531e-01, 7.50036531e-01, 7.50036531e-01,
       7.50902656e-01, 7.50902656e-01, 7.50902656e-01, 7.50902656e-01,
       7.63307867e-01, 7.63307867e-01, 7.63307867e-01, 7.63307867e-01,
       8.65269104e-01, 8.65269104e-01, 8.65269104e-01, 8.65269104e-01,
       1.24045354e+00, 1.24045354e+00, 1.24045354e+00, 1.24045354e+00,
       1.21114735e+00, 1.21114735e+00, 1.21114735e+00, 1.21114735e+00,
       6.72413161e-01, 6.72413161e-01, 6.72413161e-01, 6.72413161e-01,
       9.49710351e-02, 9.49710351e-02, 9.49710351e-02, 9.49710351e-02,
       4.89829591e-03, 4.89829591e-03, 4.89829591e-03, 4.89829591e-03,
       1.50276620e-04, 1.50276620e-04, 1.50276620e-04, 1.50276620e-04,
       2.85787671e-06, 2.85787671e-06, 2.85787671e-06, 2.85787671e-06,
       2.86001060e-08, 2.86001060e-08, 2.86001060e-08, 2.86001060e-08,
       9.82632001e-11, 9.82632001e-11, 9.82632001e-11, 9.82632001e-11,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99995678,
       0.99995678, 0.99995678, 0.99995678, 0.99893195, 0.99893195,
       0.99893195, 0.99893195, 0.98431021, 0.98431021, 0.98431021,
       0.98431021, 0.87225606, 0.87225606, 0.87225606, 0.87225606,
       0.57198082, 0.57198082, 0.57198082, 0.57198082, 0.38708981,
       0.38708981, 0.38708981, 0.38708981, 0.2169621 , 0.2169621 ,
       0.2169621 , 0.2169621 , 0.11307803, 0.11307803, 0.11307803,
       0.11307803, 0.10064828, 0.10064828, 0.10064828, 0.10064828,
       0.10001988, 0.10001988, 0.10001988, 0.10001988, 0.10000038,
       0.10000038, 0.10000038, 0.10000038, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999987, 0.99999987, 0.99999987, 0.99999987,
       0.99999553, 0.99999553, 0.99999553, 0.99999553, 0.99989298,
       0.99989298, 0.99989298, 0.99989298, 0.99825442, 0.99825442,
       0.99825442, 0.99825442, 0.98154523, 0.98154523, 0.98154523,
       0.98154523, 0.88346323, 0.88346323, 0.88346323, 0.88346323,
       0.66814286, 0.66814286, 0.66814286, 0.66814286, 0.450449  ,
       0.450449  , 0.450449  , 0.450449  , 0.30003012, 0.30003012,
       0.30003012, 0.30003012, 0.17291515, 0.17291515, 0.17291515,
       0.17291515, 0.12999501, 0.12999501, 0.12999501, 0.12999501,
       0.12530317, 0.12530317, 0.12530317, 0.12530317, 0.12501302,
       0.12501302, 0.12501302, 0.12501302, 0.1250004 , 0.1250004 ,
       0.1250004 , 0.1250004 , 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
       7.50005260e-01, 7.50005260e-01, 7.50005260e-01, 7.50005260e-01,
       7.50125177e-01, 7.50125177e-01, 7.50125177e-01, 7.50125177e-01,
       7.52016532e-01, 7.52016532e-01, 7.52016532e-01, 7.52016532e-01,
       7.70955544e-01, 7.70955544e-01, 7.70955544e-01, 7.70955544e-01,
       8.87963066e-01, 8.87963066e-01, 8.87963066e-01, 8.87963066e-01,
       1.23600978e+00, 1.23600978e+00, 1.23600978e+00, 1.23600978e+00,
       1.32985101e+00, 1.32985101e+00, 1.32985101e+00, 1.32985101e+00,
       1.08018999e+00, 1.08018999e+00, 1.08018999e+00, 1.08018999e+00,
       4.31751162e-01, 4.31751162e-01, 4.31751162e-01, 4.31751162e-01,
       4.67980493e-02, 4.67980493e-02, 4.67980493e-02, 4.67980493e-02,
       2.66505147e-03, 2.66505147e-03, 2.66505147e-03, 2.66505147e-03,
       1.11496365e-04, 1.11496365e-04, 1.11496365e-04, 1.11496365e-04,
       3.41260935e-06, 3.41260935e-06, 3.41260935e-06, 3.41260935e-06,
       7.27672658e-08, 7.27672658e-08, 7.27672658e-08, 7.27672658e-08,
       1.00397593e-09, 1.00397593e-09, 1.00397593e-09, 1.00397593e-09,
       7.70528135e-12, 7.70528135e-12, 7.70528135e-12, 7.70528135e-12,
       2.25884809e-14, 2.25884809e-14, 2.25884809e-14, 2.25884809e-14,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999982, 0.99999982, 0.99999982, 0.99999982,
       0.99999378, 0.99999378, 0.99999378, 0.99999378, 0.99985189,
       0.99985189, 0.99985189, 0.99985189, 0.99761523, 0.99761523,
       0.99761523, 0.99761523, 0.97543178, 0.97543178, 0.97543178,
       0.97543178, 0.85010187, 0.85010187, 0.85010187, 0.85010187,
       0.59115606, 0.59115606, 0.59115606, 0.59115606, 0.45201122,
       0.45201122, 0.45201122, 0.45201122, 0.33798169, 0.33798169,
       0.33798169, 0.33798169, 0.16975198, 0.16975198, 0.16975198,
       0.16975198, 0.10631224, 0.10631224, 0.10631224, 0.10631224,
       0.10035268, 0.10035268, 0.10035268, 0.10035268, 0.10001475,
       0.10001475, 0.10001475, 0.10001475, 0.10000045, 0.10000045,
       0.10000045, 0.10000045, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999934, 0.99999934, 0.99999934, 0.99999934,
       0.99998473, 0.99998473, 0.99998473, 0.99998473, 0.99973934,
       0.99973934, 0.99973934, 0.99973934, 0.99684694, 0.99684694,
       0.99684694, 0.99684694, 0.97449508, 0.97449508, 0.97449508,
       0.97449508, 0.87259818, 0.87259818, 0.87259818, 0.87259818,
       0.6864975 , 0.6864975 , 0.6864975 , 0.6864975 , 0.51289402,
       0.51289402, 0.51289402, 0.51289402, 0.38247596, 0.38247596,
       0.38247596, 0.38247596, 0.24627862, 0.24627862, 0.24627862,
       0.24627862, 0.1506058 , 0.1506058 , 0.1506058 , 0.1506058 ,
       0.12742094, 0.12742094, 0.12742094, 0.12742094, 0.12515547,
       0.12515547, 0.12515547, 0.12515547, 0.12500778, 0.12500778,
       0.12500778, 0.12500778, 0.12500031, 0.12500031, 0.12500031,
       0.12500031, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000776e-01, 7.50000776e-01, 7.50000776e-01, 7.50000776e-01,
       7.50017997e-01, 7.50017997e-01, 7.50017997e-01, 7.50017997e-01,
       7.50305930e-01, 7.50305930e-01, 7.50305930e-01, 7.50305930e-01,
       7.53669775e-01, 7.53669775e-01, 7.53669775e-01, 7.53669775e-01,
       7.79517872e-01, 7.79517872e-01, 7.79517872e-01, 7.79517872e-01,
       9.06676406e-01, 9.06676406e-01, 9.06676406e-01, 9.06676406e-01,
       1.21521648e+00, 1.21521648e+00, 1.21521648e+00, 1.21521648e+00,
       1.36901918e+00, 1.36901918e+00, 1.36901918e+00, 1.36901918e+00,
       1.27921096e+00, 1.27921096e+00, 1.27921096e+00, 1.27921096e+00,
       9.03289139e-01, 9.03289139e-01, 9.03289139e-01, 9.03289139e-01,
       2.43356441e-01, 2.43356441e-01, 2.43356441e-01, 2.43356441e-01,
       2.21897389e-02, 2.21897389e-02, 2.21897389e-02, 2.21897389e-02,
       1.34917711e-03, 1.34917711e-03, 1.34917711e-03, 1.34917711e-03,
       6.63347975e-05, 6.63347975e-05, 6.63347975e-05, 6.63347975e-05,
       2.61791335e-06, 2.61791335e-06, 2.61791335e-06, 2.61791335e-06,
       8.01915979e-08, 8.01915979e-08, 8.01915979e-08, 8.01915979e-08,
       1.84159266e-09, 1.84159266e-09, 1.84159266e-09, 1.84159266e-09,
       3.02840362e-11, 3.02840362e-11, 3.02840362e-11, 3.02840362e-11,
       3.31059514e-13, 3.31059514e-13, 3.31059514e-13, 3.31059514e-13,
       2.11159390e-15, 2.11159390e-15, 2.11159390e-15, 2.11159390e-15,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999908, 0.99999908, 0.99999908, 0.99999908,
       0.99997871, 0.99997871, 0.99997871, 0.99997871, 0.99963804,
       0.99963804, 0.99963804, 0.99963804, 0.99566401, 0.99566401,
       0.99566401, 0.99566401, 0.96560299, 0.96560299, 0.96560299,
       0.96560299, 0.8320416 , 0.8320416 , 0.8320416 , 0.8320416 ,
       0.59163041, 0.59163041, 0.59163041, 0.59163041, 0.48324232,
       0.48324232, 0.48324232, 0.48324232, 0.4189936 , 0.4189936 ,
       0.4189936 , 0.4189936 , 0.28887293, 0.28887293, 0.28887293,
       0.28887293, 0.13630773, 0.13630773, 0.13630773, 0.13630773,
       0.1029605 , 0.1029605 , 0.1029605 , 0.1029605 , 0.10017852,
       0.10017852, 0.10017852, 0.10017852, 0.10000878, 0.10000878,
       0.10000878, 0.10000878, 0.10000035, 0.10000035, 0.10000035,
       0.10000035, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.9999999 , 0.9999999 , 0.9999999 ,
       0.9999999 , 0.99999776, 0.99999776, 0.99999776, 0.99999776,
       0.99996053, 0.99996053, 0.99996053, 0.99996053, 0.99947569,
       0.99947569, 0.99947569, 0.99947569, 0.99496288, 0.99496288,
       0.99496288, 0.99496288, 0.96703059, 0.96703059, 0.96703059,
       0.96703059, 0.86276573, 0.86276573, 0.86276573, 0.86276573,
       0.69336478, 0.69336478, 0.69336478, 0.69336478, 0.55587482,
       0.55587482, 0.55587482, 0.55587482, 0.44582134, 0.44582134,
       0.44582134, 0.44582134, 0.32572207, 0.32572207, 0.32572207,
       0.32572207, 0.20563197, 0.20563197, 0.20563197, 0.20563197,
       0.13815838, 0.13815838, 0.13815838, 0.13815838, 0.12615318,
       0.12615318, 0.12615318, 0.12615318, 0.12507598, 0.12507598,
       0.12507598, 0.12507598, 0.1250042 , 0.1250042 , 0.1250042 ,
       0.1250042 , 0.12500019, 0.12500019, 0.12500019, 0.12500019,
       0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000116e-01, 7.50000116e-01, 7.50000116e-01, 7.50000116e-01,
       7.50002645e-01, 7.50002645e-01, 7.50002645e-01, 7.50002645e-01,
       7.50046576e-01, 7.50046576e-01, 7.50046576e-01, 7.50046576e-01,
       7.50616761e-01, 7.50616761e-01, 7.50616761e-01, 7.50616761e-01,
       7.55893760e-01, 7.55893760e-01, 7.55893760e-01, 7.55893760e-01,
       7.88691015e-01, 7.88691015e-01, 7.88691015e-01, 7.88691015e-01,
       9.22508524e-01, 9.22508524e-01, 9.22508524e-01, 9.22508524e-01,
       1.19424995e+00, 1.19424995e+00, 1.19424995e+00, 1.19424995e+00,
       1.37115296e+00, 1.37115296e+00, 1.37115296e+00, 1.37115296e+00,
       1.35656186e+00, 1.35656186e+00, 1.35656186e+00, 1.35656186e+00,
       1.19624538e+00, 1.19624538e+00, 1.19624538e+00, 1.19624538e+00,
       6.97637293e-01, 6.97637293e-01, 6.97637293e-01, 6.97637293e-01,
       1.27100170e-01, 1.27100170e-01, 1.27100170e-01, 1.27100170e-01,
       1.03412299e-02, 1.03412299e-02, 1.03412299e-02, 1.03412299e-02,
       6.53644299e-04, 6.53644299e-04, 6.53644299e-04, 6.53644299e-04,
       3.56971103e-05, 3.56971103e-05, 3.56971103e-05, 3.56971103e-05,
       1.64522459e-06, 1.64522459e-06, 1.64522459e-06, 1.64522459e-06,
       6.25358486e-08, 6.25358486e-08, 6.25358486e-08, 6.25358486e-08,
       1.91748504e-09, 1.91748504e-09, 1.91748504e-09, 1.91748504e-09,
       4.62606839e-11, 4.62606839e-11, 4.62606839e-11, 4.62606839e-11,
       8.51285413e-13, 8.51285413e-13, 8.51285413e-13, 8.51285413e-13,
       1.14285693e-14, 1.14285693e-14, 1.14285693e-14, 1.14285693e-14,
       9.19950648e-17, 9.19950648e-17, 9.19950648e-17, 9.19950648e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999687, 0.99999687, 0.99999687, 0.99999687,
       0.99994489, 0.99994489, 0.99994489, 0.99994489, 0.99927039,
       0.99927039, 0.99927039, 0.99927039, 0.99304531, 0.99304531,
       0.99304531, 0.99304531, 0.95519679, 0.95519679, 0.95519679,
       0.95519679, 0.8168341 , 0.8168341 , 0.8168341 , 0.8168341 ,
       0.58819152, 0.58819152, 0.58819152, 0.58819152, 0.49438551,
       0.49438551, 0.49438551, 0.49438551, 0.45793166, 0.45793166,
       0.45793166, 0.45793166, 0.39260514, 0.39260514, 0.39260514,
       0.39260514, 0.23309146, 0.23309146, 0.23309146, 0.23309146,
       0.11798708, 0.11798708, 0.11798708, 0.11798708, 0.1013727 ,
       0.1013727 , 0.1013727 , 0.1013727 , 0.10008648, 0.10008648,
       0.10008648, 0.10008648, 0.10000472, 0.10000472, 0.10000472,
       0.10000472, 0.10000022, 0.10000022, 0.10000022, 0.10000022,
       0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999967, 0.99999967, 0.99999967,
       0.99999967, 0.99999397, 0.99999397, 0.99999397, 0.99999397,
       0.99991437, 0.99991437, 0.99991437, 0.99991437, 0.99906962,
       0.99906962, 0.99906962, 0.99906962, 0.992598  , 0.992598  ,
       0.992598  , 0.992598  , 0.95931079, 0.95931079, 0.95931079,
       0.95931079, 0.85365694, 0.85365694, 0.85365694, 0.85365694,
       0.69548058, 0.69548058, 0.69548058, 0.69548058, 0.5842581 ,
       0.5842581 , 0.5842581 , 0.5842581 , 0.49197492, 0.49197492,
       0.49197492, 0.49197492, 0.39210102, 0.39210102, 0.39210102,
       0.39210102, 0.27877468, 0.27877468, 0.27877468, 0.27877468,
       0.17568186, 0.17568186, 0.17568186, 0.17568186, 0.1316077 ,
       0.1316077 , 0.1316077 , 0.1316077 , 0.12553921, 0.12553921,
       0.12553921, 0.12553921, 0.12503633, 0.12503633, 0.12503633,
       0.12503633, 0.12500214, 0.12500214, 0.12500214, 0.12500214,
       0.12500011, 0.12500011, 0.12500011, 0.12500011, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000018e-01, 7.50000018e-01, 7.50000018e-01, 7.50000018e-01,
       7.50000395e-01, 7.50000395e-01, 7.50000395e-01, 7.50000395e-01,
       7.50007125e-01, 7.50007125e-01, 7.50007125e-01, 7.50007125e-01,
       7.50101120e-01, 7.50101120e-01, 7.50101120e-01, 7.50101120e-01,
       7.51096094e-01, 7.51096094e-01, 7.51096094e-01, 7.51096094e-01,
       7.58695376e-01, 7.58695376e-01, 7.58695376e-01, 7.58695376e-01,
       7.98253123e-01, 7.98253123e-01, 7.98253123e-01, 7.98253123e-01,
       9.36217768e-01, 9.36217768e-01, 9.36217768e-01, 9.36217768e-01,
       1.17874930e+00, 1.17874930e+00, 1.17874930e+00, 1.17874930e+00,
       1.35926058e+00, 1.35926058e+00, 1.35926058e+00, 1.35926058e+00,
       1.37992227e+00, 1.37992227e+00, 1.37992227e+00, 1.37992227e+00,
       1.31852830e+00, 1.31852830e+00, 1.31852830e+00, 1.31852830e+00,
       1.09147080e+00, 1.09147080e+00, 1.09147080e+00, 1.09147080e+00,
       4.80823248e-01, 4.80823248e-01, 4.80823248e-01, 4.80823248e-01,
       6.29020815e-02, 6.29020815e-02, 6.29020815e-02, 6.29020815e-02,
       4.74941638e-03, 4.74941638e-03, 4.74941638e-03, 4.74941638e-03,
       3.10811782e-04, 3.10811782e-04, 3.10811782e-04, 3.10811782e-04,
       1.81866640e-05, 1.81866640e-05, 1.81866640e-05, 1.81866640e-05,
       9.31308580e-07, 9.31308580e-07, 9.31308580e-07, 9.31308580e-07,
       4.09103671e-08, 4.09103671e-08, 4.09103671e-08, 4.09103671e-08,
       1.51483229e-09, 1.51483229e-09, 1.51483229e-09, 1.51483229e-09,
       4.65132031e-11, 4.65132031e-11, 4.65132031e-11, 4.65132031e-11,
       1.16294442e-12, 1.16294442e-12, 1.16294442e-12, 1.16294442e-12,
       2.31530746e-14, 2.31530746e-14, 2.31530746e-14, 2.31530746e-14,
       3.45133688e-16, 3.45133688e-16, 3.45133688e-16, 3.45133688e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.99999953, 0.99999953, 0.99999953,
       0.99999953, 0.99999157, 0.99999157, 0.99999157, 0.99999157,
       0.99988036, 0.99988036, 0.99988036, 0.99988036, 0.99870367,
       0.99870367, 0.99870367, 0.99870367, 0.98975672, 0.98975672,
       0.98975672, 0.98975672, 0.94447806, 0.94447806, 0.94447806,
       0.94447806, 0.80372375, 0.80372375, 0.80372375, 0.80372375,
       0.58659611, 0.58659611, 0.58659611, 0.58659611, 0.49630691,
       0.49630691, 0.49630691, 0.49630691, 0.47256565, 0.47256565,
       0.47256565, 0.47256565, 0.44649608, 0.44649608, 0.44649608,
       0.44649608, 0.35475085, 0.35475085, 0.35475085, 0.35475085,
       0.18206373, 0.18206373, 0.18206373, 0.18206373, 0.10858619,
       0.10858619, 0.10858619, 0.10858619, 0.10062915, 0.10062915,
       0.10062915, 0.10062915, 0.10004112, 0.10004112, 0.10004112,
       0.10004112, 0.10000241, 0.10000241, 0.10000241, 0.10000241,
       0.10000012, 0.10000012, 0.10000012, 0.10000012, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.99999907, 0.99999907, 0.99999907,
       0.99999907, 0.99998617, 0.99998617, 0.99998617, 0.99998617,
       0.99983554, 0.99983554, 0.99983554, 0.99983554, 0.9984902 ,
       0.9984902 , 0.9984902 , 0.9984902 , 0.9897648 , 0.9897648 ,
       0.9897648 , 0.9897648 , 0.95146278, 0.95146278, 0.95146278,
       0.95146278, 0.84522655, 0.84522655, 0.84522655, 0.84522655,
       0.69592792, 0.69592792, 0.69592792, 0.69592792, 0.60160526,
       0.60160526, 0.60160526, 0.60160526, 0.52681117, 0.52681117,
       0.52681117, 0.52681117, 0.44280683, 0.44280683, 0.44280683,
       0.44280683, 0.3438762 , 0.3438762 , 0.3438762 , 0.3438762 ,
       0.24139758, 0.24139758, 0.24139758, 0.24139758, 0.15433653,
       0.15433653, 0.15433653, 0.15433653, 0.12820419, 0.12820419,
       0.12820419, 0.12820419, 0.12525101, 0.12525101, 0.12525101,
       0.12525101, 0.12501713, 0.12501713, 0.12501713, 0.12501713,
       0.12500106, 0.12500106, 0.12500106, 0.12500106, 0.12500006,
       0.12500006, 0.12500006, 0.12500006, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000060e-01, 7.50000060e-01, 7.50000060e-01, 7.50000060e-01,
       7.50001095e-01, 7.50001095e-01, 7.50001095e-01, 7.50001095e-01,
       7.50016352e-01, 7.50016352e-01, 7.50016352e-01, 7.50016352e-01,
       7.50194298e-01, 7.50194298e-01, 7.50194298e-01, 7.50194298e-01,
       7.51780598e-01, 7.51780598e-01, 7.51780598e-01, 7.51780598e-01,
       7.62062621e-01, 7.62062621e-01, 7.62062621e-01, 7.62062621e-01,
       8.08036385e-01, 8.08036385e-01, 8.08036385e-01, 8.08036385e-01,
       9.48280192e-01, 9.48280192e-01, 9.48280192e-01, 9.48280192e-01,
       1.16919832e+00, 1.16919832e+00, 1.16919832e+00, 1.16919832e+00,
       1.34151992e+00, 1.34151992e+00, 1.34151992e+00, 1.34151992e+00,
       1.38408905e+00, 1.38408905e+00, 1.38408905e+00, 1.38408905e+00,
       1.36212724e+00, 1.36212724e+00, 1.36212724e+00, 1.36212724e+00,
       1.27575638e+00, 1.27575638e+00, 1.27575638e+00, 1.27575638e+00,
       9.46706959e-01, 9.46706959e-01, 9.46706959e-01, 9.46706959e-01,
       2.86961496e-01, 2.86961496e-01, 2.86961496e-01, 2.86961496e-01,
       2.97471236e-02, 2.97471236e-02, 2.97471236e-02, 2.97471236e-02,
       2.18276389e-03, 2.18276389e-03, 2.18276389e-03, 2.18276389e-03,
       1.45981809e-04, 1.45981809e-04, 1.45981809e-04, 1.45981809e-04,
       8.97326097e-06, 8.97326097e-06, 8.97326097e-06, 8.97326097e-06,
       4.95542253e-07, 4.95542253e-07, 4.95542253e-07, 4.95542253e-07,
       2.41369077e-08, 2.41369077e-08, 2.41369077e-08, 2.41369077e-08,
       1.02173681e-09, 1.02173681e-09, 1.02173681e-09, 1.02173681e-09,
       3.71041963e-11, 3.71041963e-11, 3.71041963e-11, 3.71041963e-11,
       1.14134185e-12, 1.14134185e-12, 1.14134185e-12, 1.14134185e-12,
       2.93180081e-14, 2.93180081e-14, 2.93180081e-14, 2.93180081e-14,
       5.89861085e-16, 5.89861085e-16, 5.89861085e-16, 5.89861085e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999993, 0.99999993,
       0.99999993, 0.99999993, 0.9999987 , 0.9999987 , 0.9999987 ,
       0.9999987 , 0.99998065, 0.99998065, 0.99998065, 0.99998065,
       0.99977012, 0.99977012, 0.99977012, 0.99977012, 0.9978949 ,
       0.9978949 , 0.9978949 , 0.9978949 , 0.98581938, 0.98581938,
       0.98581938, 0.98581938, 0.93364034, 0.93364034, 0.93364034,
       0.93364034, 0.79223561, 0.79223561, 0.79223561, 0.79223561,
       0.58787464, 0.58787464, 0.58787464, 0.58787464, 0.49421357,
       0.49421357, 0.49421357, 0.49421357, 0.47736962, 0.47736962,
       0.47736962, 0.47736962, 0.46789435, 0.46789435, 0.46789435,
       0.46789435, 0.42797779, 0.42797779, 0.42797779, 0.42797779,
       0.30606771, 0.30606771, 0.30606771, 0.30606771, 0.14410239,
       0.14410239, 0.14410239, 0.14410239, 0.10398792, 0.10398792,
       0.10398792, 0.10398792, 0.10028892, 0.10028892, 0.10028892,
       0.10028892, 0.10001931, 0.10001931, 0.10001931, 0.10001931,
       0.10000119, 0.10000119, 0.10000119, 0.10000119, 0.10000007,
       0.10000007, 0.10000007, 0.10000007, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999986, 0.99999986,
       0.99999986, 0.99999986, 0.99999778, 0.99999778, 0.99999778,
       0.99999778, 0.99997175, 0.99997175, 0.99997175, 0.99997175,
       0.99971141, 0.99971141, 0.99971141, 0.99971141, 0.99770946,
       0.99770946, 0.99770946, 0.99770946, 0.98648851, 0.98648851,
       0.98648851, 0.98648851, 0.94358959, 0.94358959, 0.94358959,
       0.94358959, 0.83747957, 0.83747957, 0.83747957, 0.83747957,
       0.69607636, 0.69607636, 0.69607636, 0.69607636, 0.61195392,
       0.61195392, 0.61195392, 0.61195392, 0.5520745 , 0.5520745 ,
       0.5520745 , 0.5520745 , 0.48227586, 0.48227586, 0.48227586,
       0.48227586, 0.39628276, 0.39628276, 0.39628276, 0.39628276,
       0.30461516, 0.30461516, 0.30461516, 0.30461516, 0.20942901,
       0.20942901, 0.20942901, 0.20942901, 0.14069158, 0.14069158,
       0.14069158, 0.14069158, 0.12652847, 0.12652847, 0.12652847,
       0.12652847, 0.1251159 , 0.1251159 , 0.1251159 , 0.1251159 ,
       0.12500801, 0.12500801, 0.12500801, 0.12500801, 0.12500051,
       0.12500051, 0.12500051, 0.12500051, 0.12500003, 0.12500003,
       0.12500003, 0.12500003, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000169e-01, 7.50000169e-01, 7.50000169e-01, 7.50000169e-01,
       7.50002624e-01, 7.50002624e-01, 7.50002624e-01, 7.50002624e-01,
       7.50033404e-01, 7.50033404e-01, 7.50033404e-01, 7.50033404e-01,
       7.50341048e-01, 7.50341048e-01, 7.50341048e-01, 7.50341048e-01,
       7.52703614e-01, 7.52703614e-01, 7.52703614e-01, 7.52703614e-01,
       7.65969457e-01, 7.65969457e-01, 7.65969457e-01, 7.65969457e-01,
       8.17910409e-01, 8.17910409e-01, 8.17910409e-01, 8.17910409e-01,
       9.59019483e-01, 9.59019483e-01, 9.59019483e-01, 9.59019483e-01,
       1.16435988e+00, 1.16435988e+00, 1.16435988e+00, 1.16435988e+00,
       1.32431238e+00, 1.32431238e+00, 1.32431238e+00, 1.32431238e+00,
       1.37819363e+00, 1.37819363e+00, 1.37819363e+00, 1.37819363e+00,
       1.37548447e+00, 1.37548447e+00, 1.37548447e+00, 1.37548447e+00,
       1.34495171e+00, 1.34495171e+00, 1.34495171e+00, 1.34495171e+00,
       1.21521933e+00, 1.21521933e+00, 1.21521933e+00, 1.21521933e+00,
       7.56439760e-01, 7.56439760e-01, 7.56439760e-01, 7.56439760e-01,
       1.54532788e-01, 1.54532788e-01, 1.54532788e-01, 1.54532788e-01,
       1.38332523e-02, 1.38332523e-02, 1.38332523e-02, 1.38332523e-02,
       9.98607774e-04, 9.98607774e-04, 9.98607774e-04, 9.98607774e-04,
       6.81041170e-05, 6.81041170e-05, 6.81041170e-05, 6.81041170e-05,
       4.33839800e-06, 4.33839800e-06, 4.33839800e-06, 4.33839800e-06,
       2.53281003e-07, 2.53281003e-07, 2.53281003e-07, 2.53281003e-07,
       1.33255506e-08, 1.33255506e-08, 1.33255506e-08, 1.33255506e-08,
       6.23193675e-10, 6.23193675e-10, 6.23193675e-10, 6.23193675e-10,
       2.56186446e-11, 2.56186446e-11, 2.56186446e-11, 2.56186446e-11,
       9.16383815e-13, 9.16383815e-13, 9.16383815e-13, 9.16383815e-13,
       2.82273423e-14, 2.82273423e-14, 2.82273423e-14, 2.82273423e-14,
       7.11936272e-16, 7.11936272e-16, 7.11936272e-16, 7.11936272e-16,
       9.95777976e-18, 9.95777976e-18, 9.95777976e-18, 9.95777976e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.9999998 , 0.9999998 ,
       0.9999998 , 0.9999998 , 0.9999969 , 0.9999969 , 0.9999969 ,
       0.9999969 , 0.99996048, 0.99996048, 0.99996048, 0.99996048,
       0.99959652, 0.99959652, 0.99959652, 0.99959652, 0.99680533,
       0.99680533, 0.99680533, 0.99680533, 0.98127177, 0.98127177,
       0.98127177, 0.98127177, 0.92282751, 0.92282751, 0.92282751,
       0.92282751, 0.78204719, 0.78204719, 0.78204719, 0.78204719,
       0.59144542, 0.59144542, 0.59144542, 0.59144542, 0.49225455,
       0.49225455, 0.49225455, 0.49225455, 0.47625652, 0.47625652,
       0.47625652, 0.47625652, 0.47479773, 0.47479773, 0.47479773,
       0.47479773, 0.46075469, 0.46075469, 0.46075469, 0.46075469,
       0.4019023 , 0.4019023 , 0.4019023 , 0.4019023 , 0.25005069,
       0.25005069, 0.25005069, 0.25005069, 0.1222868 , 0.1222868 ,
       0.1222868 , 0.1222868 , 0.10183971, 0.10183971, 0.10183971,
       0.10183971, 0.10013213, 0.10013213, 0.10013213, 0.10013213,
       0.10000901, 0.10000901, 0.10000901, 0.10000901, 0.10000057,
       0.10000057, 0.10000057, 0.10000057, 0.10000003, 0.10000003,
       0.10000003, 0.10000003, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999965, 0.99999965,
       0.99999965, 0.99999965, 0.99999524, 0.99999524, 0.99999524,
       0.99999524, 0.99994721, 0.99994721, 0.99994721, 0.99994721,
       0.99952776, 0.99952776, 0.99952776, 0.99952776, 0.99670338,
       0.99670338, 0.99670338, 0.99670338, 0.98280363, 0.98280363,
       0.98280363, 0.98280363, 0.93577386, 0.93577386, 0.93577386,
       0.93577386, 0.83041599, 0.83041599, 0.83041599, 0.83041599,
       0.69625631, 0.69625631, 0.69625631, 0.69625631, 0.61829217,
       0.61829217, 0.61829217, 0.61829217, 0.5699253 , 0.5699253 ,
       0.5699253 , 0.5699253 , 0.51291693, 0.51291693, 0.51291693,
       0.51291693, 0.43877311, 0.43877311, 0.43877311, 0.43877311,
       0.35520766, 0.35520766, 0.35520766, 0.35520766, 0.27305597,
       0.27305597, 0.27305597, 0.27305597, 0.18148452, 0.18148452,
       0.18148452, 0.18148452, 0.13315019, 0.13315019, 0.13315019,
       0.13315019, 0.12571382, 0.12571382, 0.12571382, 0.12571382,
       0.12505333, 0.12505333, 0.12505333, 0.12505333, 0.12500372,
       0.12500372, 0.12500372, 0.12500372, 0.12500024, 0.12500024,
       0.12500024, 0.12500024, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
       7.50000419e-01, 7.50000419e-01, 7.50000419e-01, 7.50000419e-01,
       7.50005630e-01, 7.50005630e-01, 7.50005630e-01, 7.50005630e-01,
       7.50062433e-01, 7.50062433e-01, 7.50062433e-01, 7.50062433e-01,
       7.50558196e-01, 7.50558196e-01, 7.50558196e-01, 7.50558196e-01,
       7.53894015e-01, 7.53894015e-01, 7.53894015e-01, 7.53894015e-01,
       7.70379540e-01, 7.70379540e-01, 7.70379540e-01, 7.70379540e-01,
       8.27772252e-01, 8.27772252e-01, 8.27772252e-01, 8.27772252e-01,
       9.68662085e-01, 9.68662085e-01, 9.68662085e-01, 9.68662085e-01,
       1.16220491e+00, 1.16220491e+00, 1.16220491e+00, 1.16220491e+00,
       1.31086380e+00, 1.31086380e+00, 1.31086380e+00, 1.31086380e+00,
       1.36872585e+00, 1.36872585e+00, 1.36872585e+00, 1.36872585e+00,
       1.37564389e+00, 1.37564389e+00, 1.37564389e+00, 1.37564389e+00,
       1.36763431e+00, 1.36763431e+00, 1.36763431e+00, 1.36763431e+00,
       1.32344547e+00, 1.32344547e+00, 1.32344547e+00, 1.32344547e+00,
       1.12324529e+00, 1.12324529e+00, 1.12324529e+00, 1.12324529e+00,
       5.43452950e-01, 5.43452950e-01, 5.43452950e-01, 5.43452950e-01,
       7.89030941e-02, 7.89030941e-02, 7.89030941e-02, 7.89030941e-02,
       6.32477098e-03, 6.32477098e-03, 6.32477098e-03, 6.32477098e-03,
       4.56774221e-04, 4.56774221e-04, 4.56774221e-04, 4.56774221e-04,
       3.16014322e-05, 3.16014322e-05, 3.16014322e-05, 3.16014322e-05,
       2.06840337e-06, 2.06840337e-06, 2.06840337e-06, 2.06840337e-06,
       1.25987808e-07, 1.25987808e-07, 1.25987808e-07, 1.25987808e-07,
       7.03125054e-09, 7.03125054e-09, 7.03125054e-09, 7.03125054e-09,
       3.55048102e-10, 3.55048102e-10, 3.55048102e-10, 3.55048102e-10,
       1.60552001e-11, 1.60552001e-11, 1.60552001e-11, 1.60552001e-11,
       6.44472443e-13, 6.44472443e-13, 6.44472443e-13, 6.44472443e-13,
       2.27342322e-14, 2.27342322e-14, 2.27342322e-14, 2.27342322e-14,
       6.57996181e-16, 6.57996181e-16, 6.57996181e-16, 6.57996181e-16,
       2.02110955e-17, 2.02110955e-17, 2.02110955e-17, 2.02110955e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.9999995 , 0.9999995 ,
       0.9999995 , 0.9999995 , 0.99999334, 0.99999334, 0.99999334,
       0.99999334, 0.99992613, 0.99992613, 0.99992613, 0.99992613,
       0.9993397 , 0.9993397 , 0.9993397 , 0.9993397 , 0.99540189,
       0.99540189, 0.99540189, 0.99540189, 0.97616471, 0.97616471,
       0.97616471, 0.97616471, 0.91214742, 0.91214742, 0.91214742,
       0.91214742, 0.77293438, 0.77293438, 0.77293438, 0.77293438,
       0.59602991, 0.59602991, 0.59602991, 0.59602991, 0.49258015,
       0.49258015, 0.49258015, 0.49258015, 0.47304087, 0.47304087,
       0.47304087, 0.47304087, 0.47487876, 0.47487876, 0.47487876,
       0.47487876, 0.47229223, 0.47229223, 0.47229223, 0.47229223,
       0.44924829, 0.44924829, 0.44924829, 0.44924829, 0.3670158 ,
       0.3670158 , 0.3670158 , 0.3670158 , 0.1964563 , 0.1964563 ,
       0.1964563 , 0.1964563 , 0.11088441, 0.11088441, 0.11088441,
       0.11088441, 0.10083843, 0.10083843, 0.10083843, 0.10083843,
       0.10006043, 0.10006043, 0.10006043, 0.10006043, 0.10000418,
       0.10000418, 0.10000418, 0.10000418, 0.10000027, 0.10000027,
       0.10000027, 0.10000027, 0.10000002, 0.10000002, 0.10000002,
       0.10000002, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999994,
       0.99999994, 0.99999994, 0.99999994, 0.99999921, 0.99999921,
       0.99999921, 0.99999921, 0.99999063, 0.99999063, 0.99999063,
       0.99999063, 0.99990804, 0.99990804, 0.99990804, 0.99990804,
       0.99926917, 0.99926917, 0.99926917, 0.99926917, 0.99545263,
       0.99545263, 0.99545263, 0.99545263, 0.97875109, 0.97875109,
       0.97875109, 0.97875109, 0.92808061, 0.92808061, 0.92808061,
       0.92808061, 0.82401271, 0.82401271, 0.82401271, 0.82401271,
       0.69646404, 0.69646404, 0.69646404, 0.69646404, 0.62232848,
       0.62232848, 0.62232848, 0.62232848, 0.58232539, 0.58232539,
       0.58232539, 0.58232539, 0.53664687, 0.53664687, 0.53664687,
       0.53664687, 0.47382656, 0.47382656, 0.47382656, 0.47382656,
       0.3966429 , 0.3966429 , 0.3966429 , 0.3966429 , 0.32215049,
       0.32215049, 0.32215049, 0.32215049, 0.24536837, 0.24536837,
       0.24536837, 0.24536837, 0.15939671, 0.15939671, 0.15939671,
       0.15939671, 0.1290282 , 0.1290282 , 0.1290282 , 0.1290282 ,
       0.12533162, 0.12533162, 0.12533162, 0.12533162, 0.12502449,
       0.12502449, 0.12502449, 0.12502449, 0.12500172, 0.12500172,
       0.12500172, 0.12500172, 0.12500012, 0.12500012, 0.12500012,
       0.12500012, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000067e-01, 7.50000067e-01, 7.50000067e-01, 7.50000067e-01,
       7.50000937e-01, 7.50000937e-01, 7.50000937e-01, 7.50000937e-01,
       7.50011082e-01, 7.50011082e-01, 7.50011082e-01, 7.50011082e-01,
       7.50108766e-01, 7.50108766e-01, 7.50108766e-01, 7.50108766e-01,
       7.50863989e-01, 7.50863989e-01, 7.50863989e-01, 7.50863989e-01,
       7.55375416e-01, 7.55375416e-01, 7.55375416e-01, 7.55375416e-01,
       7.75249150e-01, 7.75249150e-01, 7.75249150e-01, 7.75249150e-01,
       8.37539996e-01, 8.37539996e-01, 8.37539996e-01, 8.37539996e-01,
       9.77371489e-01, 9.77371489e-01, 9.77371489e-01, 9.77371489e-01,
       1.16096785e+00, 1.16096785e+00, 1.16096785e+00, 1.16096785e+00,
       1.30163748e+00, 1.30163748e+00, 1.30163748e+00, 1.30163748e+00,
       1.35906515e+00, 1.35906515e+00, 1.35906515e+00, 1.35906515e+00,
       1.37165137e+00, 1.37165137e+00, 1.37165137e+00, 1.37165137e+00,
       1.37159981e+00, 1.37159981e+00, 1.37159981e+00, 1.37159981e+00,
       1.36020817e+00, 1.36020817e+00, 1.36020817e+00, 1.36020817e+00,
       1.28954477e+00, 1.28954477e+00, 1.28954477e+00, 1.28954477e+00,
       9.92965165e-01, 9.92965165e-01, 9.92965165e-01, 9.92965165e-01,
       3.41054294e-01, 3.41054294e-01, 3.41054294e-01, 3.41054294e-01,
       3.78450976e-02, 3.78450976e-02, 3.78450976e-02, 3.78450976e-02,
       2.89520706e-03, 2.89520706e-03, 2.89520706e-03, 2.89520706e-03,
       2.08927779e-04, 2.08927779e-04, 2.08927779e-04, 2.08927779e-04,
       1.46114029e-05, 1.46114029e-05, 1.46114029e-05, 1.46114029e-05,
       9.77146281e-07, 9.77146281e-07, 9.77146281e-07, 9.77146281e-07,
       6.15180946e-08, 6.15180946e-08, 6.15180946e-08, 6.15180946e-08,
       3.59623288e-09, 3.59623288e-09, 3.59623288e-09, 3.59623288e-09,
       1.92933425e-10, 1.92933425e-10, 1.92933425e-10, 1.92933425e-10,
       9.40773578e-12, 9.40773578e-12, 9.40773578e-12, 9.40773578e-12,
       4.13570502e-13, 4.13570502e-13, 4.13570502e-13, 4.13570502e-13,
       1.62288270e-14, 1.62288270e-14, 1.62288270e-14, 1.62288270e-14,
       5.61211316e-16, 5.61211316e-16, 5.61211316e-16, 5.61211316e-16,
       1.04414501e-17, 1.04414501e-17, 1.04414501e-17, 1.04414501e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999992,
       0.99999992, 0.99999992, 0.99999992, 0.99999889, 0.99999889,
       0.99999889, 0.99999889, 0.99998689, 0.99998689, 0.99998689,
       0.99998689, 0.99987131, 0.99987131, 0.99987131, 0.99987131,
       0.99897815, 0.99897815, 0.99897815, 0.99897815, 0.99365816,
       0.99365816, 0.99365816, 0.99365816, 0.9705574 , 0.9705574 ,
       0.9705574 , 0.9705574 , 0.90168105, 0.90168105, 0.90168105,
       0.90168105, 0.76473302, 0.76473302, 0.76473302, 0.76473302,
       0.60049273, 0.60049273, 0.60049273, 0.60049273, 0.49550855,
       0.49550855, 0.49550855, 0.49550855, 0.47006662, 0.47006662,
       0.47006662, 0.47006662, 0.47260804, 0.47260804, 0.47260804,
       0.47260804, 0.47428975, 0.47428975, 0.47428975, 0.47428975,
       0.46714499, 0.46714499, 0.46714499, 0.46714499, 0.43304518,
       0.43304518, 0.43304518, 0.43304518, 0.32159783, 0.32159783,
       0.32159783, 0.32159783, 0.15419082, 0.15419082, 0.15419082,
       0.15419082, 0.1050973 , 0.1050973 , 0.1050973 , 0.1050973 ,
       0.10038332, 0.10038332, 0.10038332, 0.10038332, 0.10002764,
       0.10002764, 0.10002764, 0.10002764, 0.10000193, 0.10000193,
       0.10000193, 0.10000193, 0.10000013, 0.10000013, 0.10000013,
       0.10000013, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999987,
       0.99999987, 0.99999987, 0.99999987, 0.99999837, 0.99999837,
       0.99999837, 0.99999837, 0.9999828 , 0.9999828 , 0.9999828 ,
       0.9999828 , 0.99984871, 0.99984871, 0.99984871, 0.99984871,
       0.99891955, 0.99891955, 0.99891955, 0.99891955, 0.99394315,
       0.99394315, 0.99394315, 0.99394315, 0.97437567, 0.97437567,
       0.97437567, 0.97437567, 0.92055976, 0.92055976, 0.92055976,
       0.92055976, 0.81822558, 0.81822558, 0.81822558, 0.81822558,
       0.69670438, 0.69670438, 0.69670438, 0.69670438, 0.62488661,
       0.62488661, 0.62488661, 0.62488661, 0.59118008, 0.59118008,
       0.59118008, 0.59118008, 0.5544861 , 0.5544861 , 0.5544861 ,
       0.5544861 , 0.50269605, 0.50269605, 0.50269605, 0.50269605,
       0.4331649 , 0.4331649 , 0.4331649 , 0.4331649 , 0.36021979,
       0.36021979, 0.36021979, 0.36021979, 0.29637809, 0.29637809,
       0.29637809, 0.29637809, 0.21820395, 0.21820395, 0.21820395,
       0.21820395, 0.14411847, 0.14411847, 0.14411847, 0.14411847,
       0.126943  , 0.126943  , 0.126943  , 0.126943  , 0.12515306,
       0.12515306, 0.12515306, 0.12515306, 0.12501123, 0.12501123,
       0.12501123, 0.12501123, 0.1250008 , 0.1250008 , 0.1250008 ,
       0.1250008 , 0.12500005, 0.12500005, 0.12500005, 0.12500005,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
       7.50000154e-01, 7.50000154e-01, 7.50000154e-01, 7.50000154e-01,
       7.50001925e-01, 7.50001925e-01, 7.50001925e-01, 7.50001925e-01,
       7.50020345e-01, 7.50020345e-01, 7.50020345e-01, 7.50020345e-01,
       7.50178950e-01, 7.50178950e-01, 7.50178950e-01, 7.50178950e-01,
       7.51277500e-01, 7.51277500e-01, 7.51277500e-01, 7.51277500e-01,
       7.57165560e-01, 7.57165560e-01, 7.57165560e-01, 7.57165560e-01,
       7.80529643e-01, 7.80529643e-01, 7.80529643e-01, 7.80529643e-01,
       8.47148531e-01, 8.47148531e-01, 8.47148531e-01, 8.47148531e-01,
       9.85270426e-01, 9.85270426e-01, 9.85270426e-01, 9.85270426e-01,
       1.15957712e+00, 1.15957712e+00, 1.15957712e+00, 1.15957712e+00,
       1.29566032e+00, 1.29566032e+00, 1.29566032e+00, 1.29566032e+00,
       1.35118587e+00, 1.35118587e+00, 1.35118587e+00, 1.35118587e+00,
       1.36601672e+00, 1.36601672e+00, 1.36601672e+00, 1.36601672e+00,
       1.36997305e+00, 1.36997305e+00, 1.36997305e+00, 1.36997305e+00,
       1.36942484e+00, 1.36942484e+00, 1.36942484e+00, 1.36942484e+00,
       1.34862905e+00, 1.34862905e+00, 1.34862905e+00, 1.34862905e+00,
       1.23673227e+00, 1.23673227e+00, 1.23673227e+00, 1.23673227e+00,
       8.18685529e-01, 8.18685529e-01, 8.18685529e-01, 8.18685529e-01,
       1.89365930e-01, 1.89365930e-01, 1.89365930e-01, 1.89365930e-01,
       1.77483277e-02, 1.77483277e-02, 1.77483277e-02, 1.77483277e-02,
       1.32231275e-03, 1.32231275e-03, 1.32231275e-03, 1.32231275e-03,
       9.55485885e-05, 9.55485885e-05, 9.55485885e-05, 9.55485885e-05,
       6.74007898e-06, 6.74007898e-06, 6.74007898e-06, 6.74007898e-06,
       4.58238639e-07, 4.58238639e-07, 4.58238639e-07, 4.58238639e-07,
       2.96179808e-08, 2.96179808e-08, 2.96179808e-08, 2.96179808e-08,
       1.79683460e-09, 1.79683460e-09, 1.79683460e-09, 1.79683460e-09,
       1.01205791e-10, 1.01205791e-10, 1.01205791e-10, 1.01205791e-10,
       5.24439143e-12, 5.24439143e-12, 5.24439143e-12, 5.24439143e-12,
       2.48169579e-13, 2.48169579e-13, 2.48169579e-13, 2.48169579e-13,
       1.06030558e-14, 1.06030558e-14, 1.06030558e-14, 1.06030558e-14,
       3.88917738e-16, 3.88917738e-16, 3.88917738e-16, 3.88917738e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999982,
       0.99999982, 0.99999982, 0.99999982, 0.99999772, 0.99999772,
       0.99999772, 0.99999772, 0.99997593, 0.99997593, 0.99997593,
       0.99997593, 0.99978828, 0.99978828, 0.99978828, 0.99978828,
       0.99848943, 0.99848943, 0.99848943, 0.99848943, 0.99155515,
       0.99155515, 0.99155515, 0.99155515, 0.964514  , 0.964514  ,
       0.964514  , 0.964514  , 0.89148856, 0.89148856, 0.89148856,
       0.89148856, 0.75731665, 0.75731665, 0.75731665, 0.75731665,
       0.6041739 , 0.6041739 , 0.6041739 , 0.6041739 , 0.50038286,
       0.50038286, 0.50038286, 0.50038286, 0.46850918, 0.46850918,
       0.46850918, 0.46850918, 0.46942557, 0.46942557, 0.46942557,
       0.46942557, 0.47328763, 0.47328763, 0.47328763, 0.47328763,
       0.47194986, 0.47194986, 0.47194986, 0.47194986, 0.46019101,
       0.46019101, 0.46019101, 0.46019101, 0.41012287, 0.41012287,
       0.41012287, 0.41012287, 0.26737713, 0.26737713, 0.26737713,
       0.26737713, 0.12780983, 0.12780983, 0.12780983, 0.12780983,
       0.1023651 , 0.1023651 , 0.1023651 , 0.1023651 , 0.10017499,
       0.10017499, 0.10017499, 0.10017499, 0.10001264, 0.10001264,
       0.10001264, 0.10001264, 0.10000089, 0.10000089, 0.10000089,
       0.10000089, 0.10000006, 0.10000006, 0.10000006, 0.10000006,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999972,
       0.99999972, 0.99999972, 0.99999972, 0.99999688, 0.99999688,
       0.99999688, 0.99999688, 0.99997019, 0.99997019, 0.99997019,
       0.99997019, 0.99976264, 0.99976264, 0.99976264, 0.99976264,
       0.99846262, 0.99846262, 0.99846262, 0.99846262, 0.9921662 ,
       0.9921662 , 0.9921662 , 0.9921662 , 0.96972408, 0.96972408,
       0.96972408, 0.96972408, 0.91324871, 0.91324871, 0.91324871,
       0.91324871, 0.81299809, 0.81299809, 0.81299809, 0.81299809,
       0.69707716, 0.69707716, 0.69707716, 0.69707716, 0.6262992 ,
       0.6262992 , 0.6262992 , 0.6262992 , 0.59760474, 0.59760474,
       0.59760474, 0.59760474, 0.56779664, 0.56779664, 0.56779664,
       0.56779664, 0.52592744, 0.52592744, 0.52592744, 0.52592744,
       0.46563753, 0.46563753, 0.46563753, 0.46563753, 0.39326426,
       0.39326426, 0.39326426, 0.39326426, 0.33284785, 0.33284785,
       0.33284785, 0.33284785, 0.27504145, 0.27504145, 0.27504145,
       0.27504145, 0.19106843, 0.19106843, 0.19106843, 0.19106843,
       0.13511522, 0.13511522, 0.13511522, 0.13511522, 0.12591513,
       0.12591513, 0.12591513, 0.12591513, 0.12507031, 0.12507031,
       0.12507031, 0.12507031, 0.12500515, 0.12500515, 0.12500515,
       0.12500515, 0.12500037, 0.12500037, 0.12500037, 0.12500037,
       0.12500003, 0.12500003, 0.12500003, 0.12500003, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000329e-01, 7.50000329e-01, 7.50000329e-01, 7.50000329e-01,
       7.50003695e-01, 7.50003695e-01, 7.50003695e-01, 7.50003695e-01,
       7.50035264e-01, 7.50035264e-01, 7.50035264e-01, 7.50035264e-01,
       7.50280759e-01, 7.50280759e-01, 7.50280759e-01, 7.50280759e-01,
       7.51818086e-01, 7.51818086e-01, 7.51818086e-01, 7.51818086e-01,
       7.59276172e-01, 7.59276172e-01, 7.59276172e-01, 7.59276172e-01,
       7.86169462e-01, 7.86169462e-01, 7.86169462e-01, 7.86169462e-01,
       8.56546408e-01, 8.56546408e-01, 8.56546408e-01, 8.56546408e-01,
       9.92456196e-01, 9.92456196e-01, 9.92456196e-01, 9.92456196e-01,
       1.15763323e+00, 1.15763323e+00, 1.15763323e+00, 1.15763323e+00,
       1.29146040e+00, 1.29146040e+00, 1.29146040e+00, 1.29146040e+00,
       1.34573538e+00, 1.34573538e+00, 1.34573538e+00, 1.34573538e+00,
       1.36098136e+00, 1.36098136e+00, 1.36098136e+00, 1.36098136e+00,
       1.36604284e+00, 1.36604284e+00, 1.36604284e+00, 1.36604284e+00,
       1.36966028e+00, 1.36966028e+00, 1.36966028e+00, 1.36966028e+00,
       1.36622633e+00, 1.36622633e+00, 1.36622633e+00, 1.36622633e+00,
       1.32998311e+00, 1.32998311e+00, 1.32998311e+00, 1.32998311e+00,
       1.15597656e+00, 1.15597656e+00, 1.15597656e+00, 1.15597656e+00,
       6.12942776e-01, 6.12942776e-01, 6.12942776e-01, 6.12942776e-01,
       9.84564756e-02, 9.84564756e-02, 9.84564756e-02, 9.84564756e-02,
       8.15622587e-03, 8.15622587e-03, 8.15622587e-03, 8.15622587e-03,
       6.03159348e-04, 6.03159348e-04, 6.03159348e-04, 6.03159348e-04,
       4.37065832e-05, 4.37065832e-05, 4.37065832e-05, 4.37065832e-05,
       3.10316624e-06, 3.10316624e-06, 3.10316624e-06, 3.10316624e-06,
       2.13754454e-07, 2.13754454e-07, 2.13754454e-07, 2.13754454e-07,
       1.41094631e-08, 1.41094631e-08, 1.41094631e-08, 1.41094631e-08,
       8.82092666e-10, 8.82092666e-10, 8.82092666e-10, 8.82092666e-10,
       5.16973157e-11, 5.16973157e-11, 5.16973157e-11, 5.16973157e-11,
       2.81588859e-12, 2.81588859e-12, 2.81588859e-12, 2.81588859e-12,
       1.41485550e-13, 1.41485550e-13, 1.41485550e-13, 1.41485550e-13,
       6.51607025e-15, 6.51607025e-15, 6.51607025e-15, 6.51607025e-15,
       2.40152978e-16, 2.40152978e-16, 2.40152978e-16, 2.40152978e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999961,
       0.99999961, 0.99999961, 0.99999961, 0.99999563, 0.99999563,
       0.99999563, 0.99999563, 0.99995828, 0.99995828, 0.99995828,
       0.99995828, 0.99966785, 0.99966785, 0.99966785, 0.99966785,
       0.99785087, 0.99785087, 0.99785087, 0.99785087, 0.98908149,
       0.98908149, 0.98908149, 0.98908149, 0.9581009 , 0.9581009 ,
       0.9581009 , 0.9581009 , 0.88161392, 0.88161392, 0.88161392,
       0.88161392, 0.75058451, 0.75058451, 0.75058451, 0.75058451,
       0.60688233, 0.60688233, 0.60688233, 0.60688233, 0.50620558,
       0.50620558, 0.50620558, 0.50620558, 0.46870616, 0.46870616,
       0.46870616, 0.46870616, 0.46692176, 0.46692176, 0.46692176,
       0.46692176, 0.47084207, 0.47084207, 0.47084207, 0.47084207,
       0.47212989, 0.47212989, 0.47212989, 0.47212989, 0.46881527,
       0.46881527, 0.46881527, 0.46881527, 0.45065004, 0.45065004,
       0.45065004, 0.45065004, 0.37876151, 0.37876151, 0.37876151,
       0.37876151, 0.21224192, 0.21224192, 0.21224192, 0.21224192,
       0.11373333, 0.11373333, 0.11373333, 0.11373333, 0.10108205,
       0.10108205, 0.10108205, 0.10108205, 0.1000798 , 0.1000798 ,
       0.1000798 , 0.1000798 , 0.10000578, 0.10000578, 0.10000578,
       0.10000578, 0.10000041, 0.10000041, 0.10000041, 0.10000041,
       0.10000003, 0.10000003, 0.10000003, 0.10000003, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999945,
       0.99999945, 0.99999945, 0.99999945, 0.99999434, 0.99999434,
       0.99999434, 0.99999434, 0.99995077, 0.99995077, 0.99995077,
       0.99995077, 0.99964227, 0.99964227, 0.99964227, 0.99964227,
       0.99788241, 0.99788241, 0.99788241, 0.99788241, 0.99011845,
       0.99011845, 0.99011845, 0.99011845, 0.96484327, 0.96484327,
       0.96484327, 0.96484327, 0.90617454, 0.90617454, 0.90617454,
       0.90617454, 0.80826973, 0.80826973, 0.80826973, 0.80826973,
       0.69774371, 0.69774371, 0.69774371, 0.69774371, 0.62678051,
       0.62678051, 0.62678051, 0.62678051, 0.60206381, 0.60206381,
       0.60206381, 0.60206381, 0.57792713, 0.57792713, 0.57792713,
       0.57792713, 0.54425972, 0.54425972, 0.54425972, 0.54425972,
       0.49346931, 0.49346931, 0.49346931, 0.49346931, 0.42544549,
       0.42544549, 0.42544549, 0.42544549, 0.36171435, 0.36171435,
       0.36171435, 0.36171435, 0.31197099, 0.31197099, 0.31197099,
       0.31197099, 0.25437815, 0.25437815, 0.25437815, 0.25437815,
       0.16685114, 0.16685114, 0.16685114, 0.16685114, 0.13005985,
       0.13005985, 0.13005985, 0.13005985, 0.1254259 , 0.1254259 ,
       0.1254259 , 0.1254259 , 0.12503221, 0.12503221, 0.12503221,
       0.12503221, 0.12500236, 0.12500236, 0.12500236, 0.12500236,
       0.12500017, 0.12500017, 0.12500017, 0.12500017, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000004e-01, 7.50000004e-01, 7.50000004e-01, 7.50000004e-01,
       7.50000056e-01, 7.50000056e-01, 7.50000056e-01, 7.50000056e-01,
       7.50000657e-01, 7.50000657e-01, 7.50000657e-01, 7.50000657e-01,
       7.50006699e-01, 7.50006699e-01, 7.50006699e-01, 7.50006699e-01,
       7.50058238e-01, 7.50058238e-01, 7.50058238e-01, 7.50058238e-01,
       7.50423153e-01, 7.50423153e-01, 7.50423153e-01, 7.50423153e-01,
       7.52504789e-01, 7.52504789e-01, 7.52504789e-01, 7.52504789e-01,
       7.61712941e-01, 7.61712941e-01, 7.61712941e-01, 7.61712941e-01,
       7.92115818e-01, 7.92115818e-01, 7.92115818e-01, 7.92115818e-01,
       8.65693722e-01, 8.65693722e-01, 8.65693722e-01, 8.65693722e-01,
       9.99009811e-01, 9.99009811e-01, 9.99009811e-01, 9.99009811e-01,
       1.15520654e+00, 1.15520654e+00, 1.15520654e+00, 1.15520654e+00,
       1.28768450e+00, 1.28768450e+00, 1.28768450e+00, 1.28768450e+00,
       1.34268320e+00, 1.34268320e+00, 1.34268320e+00, 1.34268320e+00,
       1.35715119e+00, 1.35715119e+00, 1.35715119e+00, 1.35715119e+00,
       1.36145245e+00, 1.36145245e+00, 1.36145245e+00, 1.36145245e+00,
       1.36744320e+00, 1.36744320e+00, 1.36744320e+00, 1.36744320e+00,
       1.36938027e+00, 1.36938027e+00, 1.36938027e+00, 1.36938027e+00,
       1.36032906e+00, 1.36032906e+00, 1.36032906e+00, 1.36032906e+00,
       1.30083630e+00, 1.30083630e+00, 1.30083630e+00, 1.30083630e+00,
       1.03904720e+00, 1.03904720e+00, 1.03904720e+00, 1.03904720e+00,
       4.03867617e-01, 4.03867617e-01, 4.03867617e-01, 4.03867617e-01,
       4.78324169e-02, 4.78324169e-02, 4.78324169e-02, 4.78324169e-02,
       3.73133151e-03, 3.73133151e-03, 3.73133151e-03, 3.73133151e-03,
       2.75051151e-04, 2.75051151e-04, 2.75051151e-04, 2.75051151e-04,
       1.99786506e-05, 1.99786506e-05, 1.99786506e-05, 1.99786506e-05,
       1.42705014e-06, 1.42705014e-06, 1.42705014e-06, 1.42705014e-06,
       9.93370281e-08, 9.93370281e-08, 9.93370281e-08, 9.93370281e-08,
       6.66943143e-09, 6.66943143e-09, 6.66943143e-09, 6.66943143e-09,
       4.27344831e-10, 4.27344831e-10, 4.27344831e-10, 4.27344831e-10,
       2.58814547e-11, 2.58814547e-11, 2.58814547e-11, 2.58814547e-11,
       1.46936578e-12, 1.46936578e-12, 1.46936578e-12, 1.46936578e-12,
       7.76106587e-14, 7.76106587e-14, 7.76106587e-14, 7.76106587e-14,
       3.75314846e-15, 3.75314846e-15, 3.75314846e-15, 3.75314846e-15,
       1.59879132e-16, 1.59879132e-16, 1.59879132e-16, 1.59879132e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999922,
       0.99999922, 0.99999922, 0.99999922, 0.99999207, 0.99999207,
       0.99999207, 0.99999207, 0.99993109, 0.99993109, 0.99993109,
       0.99993109, 0.99949942, 0.99949942, 0.99949942, 0.99949942,
       0.9970403 , 0.9970403 , 0.9970403 , 0.9970403 , 0.98623335,
       0.98623335, 0.98623335, 0.98623335, 0.95138454, 0.95138454,
       0.95138454, 0.95138454, 0.87208823, 0.87208823, 0.87208823,
       0.87208823, 0.74445435, 0.74445435, 0.74445435, 0.74445435,
       0.60875561, 0.60875561, 0.60875561, 0.60875561, 0.51204856,
       0.51204856, 0.51204856, 0.51204856, 0.47069723, 0.47069723,
       0.47069723, 0.47069723, 0.46531969, 0.46531969, 0.46531969,
       0.46531969, 0.46797682, 0.46797682, 0.46797682, 0.46797682,
       0.47094798, 0.47094798, 0.47094798, 0.47094798, 0.47050583,
       0.47050583, 0.47050583, 0.47050583, 0.4648433 , 0.4648433 ,
       0.4648433 , 0.4648433 , 0.43679273, 0.43679273, 0.43679273,
       0.43679273, 0.33696764, 0.33696764, 0.33696764, 0.33696764,
       0.16596212, 0.16596212, 0.16596212, 0.16596212, 0.10647712,
       0.10647712, 0.10647712, 0.10647712, 0.10049417, 0.10049417,
       0.10049417, 0.10049417, 0.10003639, 0.10003639, 0.10003639,
       0.10003639, 0.10000264, 0.10000264, 0.10000264, 0.10000264,
       0.10000019, 0.10000019, 0.10000019, 0.10000019, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 , 0.99999895,
       0.99999895, 0.99999895, 0.99999895, 0.99999022, 0.99999022,
       0.99999022, 0.99999022, 0.99992199, 0.99992199, 0.99992199,
       0.99992199, 0.99947912, 0.99947912, 0.99947912, 0.99947912,
       0.99716379, 0.99716379, 0.99716379, 0.99716379, 0.98780171,
       0.98780171, 0.98780171, 0.98780171, 0.95977919, 0.95977919,
       0.95977919, 0.95977919, 0.899356  , 0.899356  , 0.899356  ,
       0.899356  , 0.80398103, 0.80398103, 0.80398103, 0.80398103,
       0.69885064, 0.69885064, 0.69885064, 0.69885064, 0.62663048,
       0.62663048, 0.62663048, 0.62663048, 0.60456203, 0.60456203,
       0.60456203, 0.60456203, 0.58574218, 0.58574218, 0.58574218,
       0.58574218, 0.55889671, 0.55889671, 0.55889671, 0.55889671,
       0.51652074, 0.51652074, 0.51652074, 0.51652074, 0.45677399,
       0.45677399, 0.45677399, 0.45677399, 0.38843992, 0.38843992,
       0.38843992, 0.38843992, 0.33857154, 0.33857154, 0.33857154,
       0.33857154, 0.2958245 , 0.2958245 , 0.2958245 , 0.2958245 ,
       0.23037144, 0.23037144, 0.23037144, 0.23037144, 0.14866712,
       0.14866712, 0.14866712, 0.14866712, 0.12746378, 0.12746378,
       0.12746378, 0.12746378, 0.12519715, 0.12519715, 0.12519715,
       0.12519715, 0.12501472, 0.12501472, 0.12501472, 0.12501472,
       0.12500108, 0.12500108, 0.12500108, 0.12500108, 0.12500008,
       0.12500008, 0.12500008, 0.12500008, 0.12500001, 0.12500001,
       0.12500001, 0.12500001, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000115e-01, 7.50000115e-01, 7.50000115e-01, 7.50000115e-01,
       7.50001238e-01, 7.50001238e-01, 7.50001238e-01, 7.50001238e-01,
       7.50011569e-01, 7.50011569e-01, 7.50011569e-01, 7.50011569e-01,
       7.50092289e-01, 7.50092289e-01, 7.50092289e-01, 7.50092289e-01,
       7.50616160e-01, 7.50616160e-01, 7.50616160e-01, 7.50616160e-01,
       7.53355737e-01, 7.53355737e-01, 7.53355737e-01, 7.53355737e-01,
       7.64475707e-01, 7.64475707e-01, 7.64475707e-01, 7.64475707e-01,
       7.98316114e-01, 7.98316114e-01, 7.98316114e-01, 7.98316114e-01,
       8.74560291e-01, 8.74560291e-01, 8.74560291e-01, 8.74560291e-01,
       1.00500047e+00, 1.00500047e+00, 1.00500047e+00, 1.00500047e+00,
       1.15260232e+00, 1.15260232e+00, 1.15260232e+00, 1.15260232e+00,
       1.28340256e+00, 1.28340256e+00, 1.28340256e+00, 1.28340256e+00,
       1.34114330e+00, 1.34114330e+00, 1.34114330e+00, 1.34114330e+00,
       1.35501138e+00, 1.35501138e+00, 1.35501138e+00, 1.35501138e+00,
       1.35810478e+00, 1.35810478e+00, 1.35810478e+00, 1.35810478e+00,
       1.36336774e+00, 1.36336774e+00, 1.36336774e+00, 1.36336774e+00,
       1.36847879e+00, 1.36847879e+00, 1.36847879e+00, 1.36847879e+00,
       1.36811377e+00, 1.36811377e+00, 1.36811377e+00, 1.36811377e+00,
       1.35072599e+00, 1.35072599e+00, 1.35072599e+00, 1.35072599e+00,
       1.25426560e+00, 1.25426560e+00, 1.25426560e+00, 1.25426560e+00,
       8.79763139e-01, 8.79763139e-01, 8.79763139e-01, 8.79763139e-01,
       2.32057473e-01, 2.32057473e-01, 2.32057473e-01, 2.32057473e-01,
       2.26258785e-02, 2.26258785e-02, 2.26258785e-02, 2.26258785e-02,
       1.70706147e-03, 1.70706147e-03, 1.70706147e-03, 1.70706147e-03,
       1.25313284e-04, 1.25313284e-04, 1.25313284e-04, 1.25313284e-04,
       9.12735833e-06, 9.12735833e-06, 9.12735833e-06, 9.12735833e-06,
       6.55213907e-07, 6.55213907e-07, 6.55213907e-07, 6.55213907e-07,
       4.60110799e-08, 4.60110799e-08, 4.60110799e-08, 4.60110799e-08,
       3.13257583e-09, 3.13257583e-09, 3.13257583e-09, 3.13257583e-09,
       2.04833966e-10, 2.04833966e-10, 2.04833966e-10, 2.04833966e-10,
       1.27491473e-11, 1.27491473e-11, 1.27491473e-11, 1.27491473e-11,
       7.49384168e-13, 7.49384168e-13, 7.49384168e-13, 7.49384168e-13,
       4.12715433e-14, 4.12715433e-14, 4.12715433e-14, 4.12715433e-14,
       2.08438071e-15, 2.08438071e-15, 2.08438071e-15, 2.08438071e-15,
       6.95966513e-17, 6.95966513e-17, 6.95966513e-17, 6.95966513e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999986, 0.99999986, 0.99999986, 0.99999986, 0.99999854,
       0.99999854, 0.99999854, 0.99999854, 0.99998631, 0.99998631,
       0.99998631, 0.99998631, 0.99989081, 0.99989081, 0.99989081,
       0.99989081, 0.99927118, 0.99927118, 0.99927118, 0.99927118,
       0.99603677, 0.99603677, 0.99603677, 0.99603677, 0.98301421,
       0.98301421, 0.98301421, 0.98301421, 0.94442958, 0.94442958,
       0.94442958, 0.94442958, 0.86293221, 0.86293221, 0.86293221,
       0.86293221, 0.73885742, 0.73885742, 0.73885742, 0.73885742,
       0.61009357, 0.61009357, 0.61009357, 0.61009357, 0.51726091,
       0.51726091, 0.51726091, 0.51726091, 0.47391825, 0.47391825,
       0.47391825, 0.47391825, 0.46487842, 0.46487842, 0.46487842,
       0.46487842, 0.46589916, 0.46589916, 0.46589916, 0.46589916,
       0.46870505, 0.46870505, 0.46870505, 0.46870505, 0.47008932,
       0.47008932, 0.47008932, 0.47008932, 0.4686757 , 0.4686757 ,
       0.4686757 , 0.4686757 , 0.45927249, 0.45927249, 0.45927249,
       0.45927249, 0.41693776, 0.41693776, 0.41693776, 0.41693776,
       0.28500491, 0.28500491, 0.28500491, 0.28500491, 0.13470714,
       0.13470714, 0.13470714, 0.13470714, 0.10302215, 0.10302215,
       0.10302215, 0.10302215, 0.10022593, 0.10022593, 0.10022593,
       0.10022593, 0.10001658, 0.10001658, 0.10001658, 0.10001658,
       0.10000121, 0.10000121, 0.10000121, 0.10000121, 0.10000009,
       0.10000009, 0.10000009, 0.10000009, 0.10000001, 0.10000001,
       0.10000001, 0.10000001, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999981, 0.99999981, 0.99999981, 0.99999981, 0.99999812,
       0.99999812, 0.99999812, 0.99999812, 0.99998381, 0.99998381,
       0.99998381, 0.99998381, 0.99988072, 0.99988072, 0.99988072,
       0.99988072, 0.99926394, 0.99926394, 0.99926394, 0.99926394,
       0.99629293, 0.99629293, 0.99629293, 0.99629293, 0.98522251,
       0.98522251, 0.98522251, 0.98522251, 0.95457584, 0.95457584,
       0.95457584, 0.95457584, 0.89280503, 0.89280503, 0.89280503,
       0.89280503, 0.80007672, 0.80007672, 0.80007672, 0.80007672,
       0.70045666, 0.70045666, 0.70045666, 0.70045666, 0.62631673,
       0.62631673, 0.62631673, 0.62631673, 0.60514204, 0.60514204,
       0.60514204, 0.60514204, 0.59141774, 0.59141774, 0.59141774,
       0.59141774, 0.57060546, 0.57060546, 0.57060546, 0.57060546,
       0.53581477, 0.53581477, 0.53581477, 0.53581477, 0.48414835,
       0.48414835, 0.48414835, 0.48414835, 0.41731063, 0.41731063,
       0.41731063, 0.41731063, 0.36078704, 0.36078704, 0.36078704,
       0.36078704, 0.32184882, 0.32184882, 0.32184882, 0.32184882,
       0.28122767, 0.28122767, 0.28122767, 0.28122767, 0.20285998,
       0.20285998, 0.20285998, 0.20285998, 0.13769277, 0.13769277,
       0.13769277, 0.13769277, 0.12617394, 0.12617394, 0.12617394,
       0.12617394, 0.12509074, 0.12509074, 0.12509074, 0.12509074,
       0.12500673, 0.12500673, 0.12500673, 0.12500673, 0.12500049,
       0.12500049, 0.12500049, 0.12500049, 0.12500004, 0.12500004,
       0.12500004, 0.12500004, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000020e-01, 7.50000020e-01, 7.50000020e-01, 7.50000020e-01,
       7.50000224e-01, 7.50000224e-01, 7.50000224e-01, 7.50000224e-01,
       7.50002223e-01, 7.50002223e-01, 7.50002223e-01, 7.50002223e-01,
       7.50019160e-01, 7.50019160e-01, 7.50019160e-01, 7.50019160e-01,
       7.50141119e-01, 7.50141119e-01, 7.50141119e-01, 7.50141119e-01,
       7.50870743e-01, 7.50870743e-01, 7.50870743e-01, 7.50870743e-01,
       7.54387642e-01, 7.54387642e-01, 7.54387642e-01, 7.54387642e-01,
       7.67558867e-01, 7.67558867e-01, 7.67558867e-01, 7.67558867e-01,
       8.04718986e-01, 8.04718986e-01, 8.04718986e-01, 8.04718986e-01,
       8.83124089e-01, 8.83124089e-01, 8.83124089e-01, 8.83124089e-01,
       1.01048782e+00, 1.01048782e+00, 1.01048782e+00, 1.01048782e+00,
       1.15015373e+00, 1.15015373e+00, 1.15015373e+00, 1.15015373e+00,
       1.27828995e+00, 1.27828995e+00, 1.27828995e+00, 1.27828995e+00,
       1.33996420e+00, 1.33996420e+00, 1.33996420e+00, 1.33996420e+00,
       1.35434258e+00, 1.35434258e+00, 1.35434258e+00, 1.35434258e+00,
       1.35651250e+00, 1.35651250e+00, 1.35651250e+00, 1.35651250e+00,
       1.35943170e+00, 1.35943170e+00, 1.35943170e+00, 1.35943170e+00,
       1.36562928e+00, 1.36562928e+00, 1.36562928e+00, 1.36562928e+00,
       1.36871828e+00, 1.36871828e+00, 1.36871828e+00, 1.36871828e+00,
       1.36559918e+00, 1.36559918e+00, 1.36559918e+00, 1.36559918e+00,
       1.33410068e+00, 1.33410068e+00, 1.33410068e+00, 1.33410068e+00,
       1.18316118e+00, 1.18316118e+00, 1.18316118e+00, 1.18316118e+00,
       6.83501416e-01, 6.83501416e-01, 6.83501416e-01, 6.83501416e-01,
       1.23082855e-01, 1.23082855e-01, 1.23082855e-01, 1.23082855e-01,
       1.05135867e-02, 1.05135867e-02, 1.05135867e-02, 1.05135867e-02,
       7.79480203e-04, 7.79480203e-04, 7.79480203e-04, 7.79480203e-04,
       5.71875744e-05, 5.71875744e-05, 5.71875744e-05, 5.71875744e-05,
       4.16908647e-06, 4.16908647e-06, 4.16908647e-06, 4.16908647e-06,
       3.00491897e-07, 3.00491897e-07, 3.00491897e-07, 3.00491897e-07,
       2.12578537e-08, 2.12578537e-08, 2.12578537e-08, 2.12578537e-08,
       1.46423018e-09, 1.46423018e-09, 1.46423018e-09, 1.46423018e-09,
       9.73781859e-11, 9.73781859e-11, 9.73781859e-11, 9.73781859e-11,
       6.20162096e-12, 6.20162096e-12, 6.20162096e-12, 6.20162096e-12,
       3.75332869e-13, 3.75332869e-13, 3.75332869e-13, 3.75332869e-13,
       2.14560454e-14, 2.14560454e-14, 2.14560454e-14, 2.14560454e-14,
       1.07221018e-15, 1.07221018e-15, 1.07221018e-15, 1.07221018e-15,
       3.44235441e-17, 3.44235441e-17, 3.44235441e-17, 3.44235441e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999737,
       0.99999737, 0.99999737, 0.99999737, 0.99997733, 0.99997733,
       0.99997733, 0.99997733, 0.99983304, 0.99983304, 0.99983304,
       0.99983304, 0.9989702 , 0.9989702 , 0.9989702 , 0.9989702 ,
       0.99482119, 0.99482119, 0.99482119, 0.99482119, 0.97943416,
       0.97943416, 0.97943416, 0.97943416, 0.93729763, 0.93729763,
       0.93729763, 0.93729763, 0.85415822, 0.85415822, 0.85415822,
       0.85415822, 0.73373529, 0.73373529, 0.73373529, 0.73373529,
       0.6112099 , 0.6112099 , 0.6112099 , 0.6112099 , 0.52160141,
       0.52160141, 0.52160141, 0.52160141, 0.47759878, 0.47759878,
       0.47759878, 0.47759878, 0.465481  , 0.465481  , 0.465481  ,
       0.465481  , 0.46501776, 0.46501776, 0.46501776, 0.46501776,
       0.46641955, 0.46641955, 0.46641955, 0.46641955, 0.46863112,
       0.46863112, 0.46863112, 0.46863112, 0.46903125, 0.46903125,
       0.46903125, 0.46903125, 0.466292  , 0.466292  , 0.466292  ,
       0.466292  , 0.45159727, 0.45159727, 0.45159727, 0.45159727,
       0.38874303, 0.38874303, 0.38874303, 0.38874303, 0.22928284,
       0.22928284, 0.22928284, 0.22928284, 0.11739066, 0.11739066,
       0.11739066, 0.11739066, 0.10139613, 0.10139613, 0.10139613,
       0.10139613, 0.10010314, 0.10010314, 0.10010314, 0.10010314,
       0.10000757, 0.10000757, 0.10000757, 0.10000757, 0.10000055,
       0.10000055, 0.10000055, 0.10000055, 0.10000004, 0.10000004,
       0.10000004, 0.10000004, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
       0.99999965, 0.99999965, 0.99999965, 0.99999965, 0.99999676,
       0.99999676, 0.99999676, 0.99999676, 0.99997414, 0.99997414,
       0.99997414, 0.99997414, 0.99982322, 0.99982322, 0.99982322,
       0.99982322, 0.99898687, 0.99898687, 0.99898687, 0.99898687,
       0.99525772, 0.99525772, 0.99525772, 0.99525772, 0.98239165,
       0.98239165, 0.98239165, 0.98239165, 0.94927458, 0.94927458,
       0.94927458, 0.94927458, 0.88652829, 0.88652829, 0.88652829,
       0.88652829, 0.79650788, 0.79650788, 0.79650788, 0.79650788,
       0.70249376, 0.70249376, 0.70249376, 0.70249376, 0.62636848,
       0.62636848, 0.62636848, 0.62636848, 0.60412838, 0.60412838,
       0.60412838, 0.60412838, 0.59491245, 0.59491245, 0.59491245,
       0.59491245, 0.57973366, 0.57973366, 0.57973366, 0.57973366,
       0.55197703, 0.55197703, 0.55197703, 0.55197703, 0.50772236,
       0.50772236, 0.50772236, 0.50772236, 0.44720509, 0.44720509,
       0.44720509, 0.44720509, 0.38317069, 0.38317069, 0.38317069,
       0.38317069, 0.34144572, 0.34144572, 0.34144572, 0.34144572,
       0.30939376, 0.30939376, 0.30939376, 0.30939376, 0.26448525,
       0.26448525, 0.26448525, 0.26448525, 0.17617514, 0.17617514,
       0.17617514, 0.17617514, 0.1314537 , 0.1314537 , 0.1314537 ,
       0.1314537 , 0.1255488 , 0.1255488 , 0.1255488 , 0.1255488 ,
       0.12504168, 0.12504168, 0.12504168, 0.12504168, 0.12500308,
       0.12500308, 0.12500308, 0.12500308, 0.12500022, 0.12500022,
       0.12500022, 0.12500022, 0.12500002, 0.12500002, 0.12500002,
       0.12500002, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000040e-01, 7.50000040e-01, 7.50000040e-01, 7.50000040e-01,
       7.50000416e-01, 7.50000416e-01, 7.50000416e-01, 7.50000416e-01,
       7.50003829e-01, 7.50003829e-01, 7.50003829e-01, 7.50003829e-01,
       7.50030595e-01, 7.50030595e-01, 7.50030595e-01, 7.50030595e-01,
       7.50209148e-01, 7.50209148e-01, 7.50209148e-01, 7.50209148e-01,
       7.51198600e-01, 7.51198600e-01, 7.51198600e-01, 7.51198600e-01,
       7.55615304e-01, 7.55615304e-01, 7.55615304e-01, 7.55615304e-01,
       7.70951868e-01, 7.70951868e-01, 7.70951868e-01, 7.70951868e-01,
       8.11275275e-01, 8.11275275e-01, 8.11275275e-01, 8.11275275e-01,
       8.91370127e-01, 8.91370127e-01, 8.91370127e-01, 8.91370127e-01,
       1.01552397e+00, 1.01552397e+00, 1.01552397e+00, 1.01552397e+00,
       1.14807632e+00, 1.14807632e+00, 1.14807632e+00, 1.14807632e+00,
       1.27251928e+00, 1.27251928e+00, 1.27251928e+00, 1.27251928e+00,
       1.33824106e+00, 1.33824106e+00, 1.33824106e+00, 1.33824106e+00,
       1.35468133e+00, 1.35468133e+00, 1.35468133e+00, 1.35468133e+00,
       1.35603990e+00, 1.35603990e+00, 1.35603990e+00, 1.35603990e+00,
       1.35749304e+00, 1.35749304e+00, 1.35749304e+00, 1.35749304e+00,
       1.36161701e+00, 1.36161701e+00, 1.36161701e+00, 1.36161701e+00,
       1.36709517e+00, 1.36709517e+00, 1.36709517e+00, 1.36709517e+00,
       1.36853942e+00, 1.36853942e+00, 1.36853942e+00, 1.36853942e+00,
       1.35998310e+00, 1.35998310e+00, 1.35998310e+00, 1.35998310e+00,
       1.30814871e+00, 1.30814871e+00, 1.30814871e+00, 1.30814871e+00,
       1.07919686e+00, 1.07919686e+00, 1.07919686e+00, 1.07919686e+00,
       4.71939660e-01, 4.71939660e-01, 4.71939660e-01, 4.71939660e-01,
       6.10545409e-02, 6.10545409e-02, 6.10545409e-02, 6.10545409e-02,
       4.82456880e-03, 4.82456880e-03, 4.82456880e-03, 4.82456880e-03,
       3.56247646e-04, 3.56247646e-04, 3.56247646e-04, 3.56247646e-04,
       2.61067770e-05, 2.61067770e-05, 2.61067770e-05, 2.61067770e-05,
       1.90472760e-06, 1.90472760e-06, 1.90472760e-06, 1.90472760e-06,
       1.37703296e-07, 1.37703296e-07, 1.37703296e-07, 1.37703296e-07,
       9.80046714e-09, 9.80046714e-09, 9.80046714e-09, 9.80046714e-09,
       6.81680766e-10, 6.81680766e-10, 6.81680766e-10, 6.81680766e-10,
       4.59859347e-11, 4.59859347e-11, 4.59859347e-11, 4.59859347e-11,
       2.98599883e-12, 2.98599883e-12, 2.98599883e-12, 2.98599883e-12,
       1.85306740e-13, 1.85306740e-13, 1.85306740e-13, 1.85306740e-13,
       1.08045186e-14, 1.08045186e-14, 1.08045186e-14, 1.08045186e-14,
       5.92240191e-16, 5.92240191e-16, 5.92240191e-16, 5.92240191e-16,
       3.36083066e-17, 3.36083066e-17, 3.36083066e-17, 3.36083066e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999995, 0.99999995, 0.99999995, 0.99999995,
       0.99999951, 0.99999951, 0.99999951, 0.99999951, 0.99999547,
       0.99999547, 0.99999547, 0.99999547, 0.9999638 , 0.9999638 ,
       0.9999638 , 0.9999638 , 0.99975256, 0.99975256, 0.99975256,
       0.99975256, 0.99858272, 0.99858272, 0.99858272, 0.99858272,
       0.99337694, 0.99337694, 0.99337694, 0.99337694, 0.97550929,
       0.97550929, 0.97550929, 0.97550929, 0.93004626, 0.93004626,
       0.93004626, 0.93004626, 0.84577195, 0.84577195, 0.84577195,
       0.84577195, 0.72903811, 0.72903811, 0.72903811, 0.72903811,
       0.61232549, 0.61232549, 0.61232549, 0.61232549, 0.52517321,
       0.52517321, 0.52517321, 0.52517321, 0.48111312, 0.48111312,
       0.48111312, 0.48111312, 0.46690051, 0.46690051, 0.46690051,
       0.46690051, 0.46488503, 0.46488503, 0.46488503, 0.46488503,
       0.46527105, 0.46527105, 0.46527105, 0.46527105, 0.46650029,
       0.46650029, 0.46650029, 0.46650029, 0.46823227, 0.46823227,
       0.46823227, 0.46823227, 0.46775485, 0.46775485, 0.46775485,
       0.46775485, 0.46346347, 0.46346347, 0.46346347, 0.46346347,
       0.43993022, 0.43993022, 0.43993022, 0.43993022, 0.35059336,
       0.35059336, 0.35059336, 0.35059336, 0.17933862, 0.17933862,
       0.17933862, 0.17933862, 0.10832159, 0.10832159, 0.10832159,
       0.10832159, 0.1006392 , 0.1006392 , 0.1006392 , 0.1006392 ,
       0.10004713, 0.10004713, 0.10004713, 0.10004713, 0.10000345,
       0.10000345, 0.10000345, 0.10000345, 0.10000025, 0.10000025,
       0.10000025, 0.10000025, 0.10000002, 0.10000002, 0.10000002,
       0.10000002, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999937, 0.99999937, 0.99999937, 0.99999937, 0.99999463,
       0.99999463, 0.99999463, 0.99999463, 0.99996001, 0.99996001,
       0.99996001, 0.99996001, 0.99974513, 0.99974513, 0.99974513,
       0.99974513, 0.99863764, 0.99863764, 0.99863764, 0.99863764,
       0.99404812, 0.99404812, 0.99404812, 0.99404812, 0.97932361,
       0.97932361, 0.97932361, 0.97932361, 0.94391361, 0.94391361,
       0.94391361, 0.94391361, 0.88052889, 0.88052889, 0.88052889,
       0.88052889, 0.7932456 , 0.7932456 , 0.7932456 , 0.7932456 ,
       0.70476828, 0.70476828, 0.70476828, 0.70476828, 0.62723661,
       0.62723661, 0.62723661, 0.62723661, 0.60206706, 0.60206706,
       0.60206706, 0.60206706, 0.5963246 , 0.5963246 , 0.5963246 ,
       0.5963246 , 0.58637919, 0.58637919, 0.58637919, 0.58637919,
       0.56513598, 0.56513598, 0.56513598, 0.56513598, 0.52823708,
       0.52823708, 0.52823708, 0.52823708, 0.47484775, 0.47484775,
       0.47484775, 0.47484775, 0.40888641, 0.40888641, 0.40888641,
       0.40888641, 0.35916094, 0.35916094, 0.35916094, 0.35916094,
       0.32770215, 0.32770215, 0.32770215, 0.32770215, 0.29918377,
       0.29918377, 0.29918377, 0.29918377, 0.24277737, 0.24277737,
       0.24277737, 0.24277737, 0.1544822 , 0.1544822 , 0.1544822 ,
       0.1544822 , 0.12813873, 0.12813873, 0.12813873, 0.12813873,
       0.12525473, 0.12525473, 0.12525473, 0.12525473, 0.12501909,
       0.12501909, 0.12501909, 0.12501909, 0.12500141, 0.12500141,
       0.12500141, 0.12500141, 0.1250001 , 0.1250001 , 0.1250001 ,
       0.1250001 , 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
       7.50000076e-01, 7.50000076e-01, 7.50000076e-01, 7.50000076e-01,
       7.50000743e-01, 7.50000743e-01, 7.50000743e-01, 7.50000743e-01,
       7.50006355e-01, 7.50006355e-01, 7.50006355e-01, 7.50006355e-01,
       7.50047312e-01, 7.50047312e-01, 7.50047312e-01, 7.50047312e-01,
       7.50301532e-01, 7.50301532e-01, 7.50301532e-01, 7.50301532e-01,
       7.51611926e-01, 7.51611926e-01, 7.51611926e-01, 7.51611926e-01,
       7.57051218e-01, 7.57051218e-01, 7.57051218e-01, 7.57051218e-01,
       7.74639815e-01, 7.74639815e-01, 7.74639815e-01, 7.74639815e-01,
       8.17938711e-01, 8.17938711e-01, 8.17938711e-01, 8.17938711e-01,
       8.99300214e-01, 8.99300214e-01, 8.99300214e-01, 8.99300214e-01,
       1.02004865e+00, 1.02004865e+00, 1.02004865e+00, 1.02004865e+00,
       1.14652531e+00, 1.14652531e+00, 1.14652531e+00, 1.14652531e+00,
       1.26652821e+00, 1.26652821e+00, 1.26652821e+00, 1.26652821e+00,
       1.33548200e+00, 1.33548200e+00, 1.33548200e+00, 1.33548200e+00,
       1.35534630e+00, 1.35534630e+00, 1.35534630e+00, 1.35534630e+00,
       1.35643148e+00, 1.35643148e+00, 1.35643148e+00, 1.35643148e+00,
       1.35688841e+00, 1.35688841e+00, 1.35688841e+00, 1.35688841e+00,
       1.35905944e+00, 1.35905944e+00, 1.35905944e+00, 1.35905944e+00,
       1.36376675e+00, 1.36376675e+00, 1.36376675e+00, 1.36376675e+00,
       1.36790199e+00, 1.36790199e+00, 1.36790199e+00, 1.36790199e+00,
       1.36676900e+00, 1.36676900e+00, 1.36676900e+00, 1.36676900e+00,
       1.35107712e+00, 1.35107712e+00, 1.35107712e+00, 1.35107712e+00,
       1.26776498e+00, 1.26776498e+00, 1.26776498e+00, 1.26776498e+00,
       9.35091603e-01, 9.35091603e-01, 9.35091603e-01, 9.35091603e-01,
       2.80578131e-01, 2.80578131e-01, 2.80578131e-01, 2.80578131e-01,
       2.89234526e-02, 2.89234526e-02, 2.89234526e-02, 2.89234526e-02,
       2.21034091e-03, 2.21034091e-03, 2.21034091e-03, 2.21034091e-03,
       1.62586243e-04, 1.62586243e-04, 1.62586243e-04, 1.62586243e-04,
       1.19199001e-05, 1.19199001e-05, 1.19199001e-05, 1.19199001e-05,
       8.70329480e-07, 8.70329480e-07, 8.70329480e-07, 8.70329480e-07,
       6.30649885e-08, 6.30649885e-08, 6.30649885e-08, 6.30649885e-08,
       4.51037180e-09, 4.51037180e-09, 4.51037180e-09, 4.51037180e-09,
       3.16293216e-10, 3.16293216e-10, 3.16293216e-10, 3.16293216e-10,
       2.15961374e-11, 2.15961374e-11, 2.15961374e-11, 2.15961374e-11,
       1.42561215e-12, 1.42561215e-12, 1.42561215e-12, 1.42561215e-12,
       9.02795039e-14, 9.02795039e-14, 9.02795039e-14, 9.02795039e-14,
       5.44358060e-15, 5.44358060e-15, 5.44358060e-15, 5.44358060e-15,
       3.46618598e-16, 3.46618598e-16, 3.46618598e-16, 3.46618598e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999912, 0.99999912, 0.99999912, 0.99999912, 0.99999248,
       0.99999248, 0.99999248, 0.99999248, 0.99994402, 0.99994402,
       0.99994402, 0.99994402, 0.99964328, 0.99964328, 0.99964328,
       0.99964328, 0.99809443, 0.99809443, 0.99809443, 0.99809443,
       0.99169035, 0.99169035, 0.99169035, 0.99169035, 0.97126076,
       0.97126076, 0.97126076, 0.97126076, 0.92272829, 0.92272829,
       0.92272829, 0.92272829, 0.83776294, 0.83776294, 0.83776294,
       0.83776294, 0.72464681, 0.72464681, 0.72464681, 0.72464681,
       0.6136125 , 0.6136125 , 0.6136125 , 0.6136125 , 0.52827001,
       0.52827001, 0.52827001, 0.52827001, 0.48410084, 0.48410084,
       0.48410084, 0.48410084, 0.46873669, 0.46873669, 0.46873669,
       0.46873669, 0.465321  , 0.465321  , 0.465321  , 0.465321  ,
       0.46494758, 0.46494758, 0.46494758, 0.46494758, 0.46514031,
       0.46514031, 0.46514031, 0.46514031, 0.46651691, 0.46651691,
       0.46651691, 0.46651691, 0.46747205, 0.46747205, 0.46747205,
       0.46747205, 0.46667036, 0.46667036, 0.46667036, 0.46667036,
       0.45913733, 0.45913733, 0.45913733, 0.45913733, 0.42245963,
       0.42245963, 0.42245963, 0.42245963, 0.30188464, 0.30188464,
       0.30188464, 0.30188464, 0.14267451, 0.14267451, 0.14267451,
       0.14267451, 0.10387503, 0.10387503, 0.10387503, 0.10387503,
       0.10029258, 0.10029258, 0.10029258, 0.10029258, 0.10002151,
       0.10002151, 0.10002151, 0.10002151, 0.10000158, 0.10000158,
       0.10000158, 0.10000158, 0.10000012, 0.10000012, 0.10000012,
       0.10000012, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999988, 0.99999988, 0.99999988, 0.99999988,
       0.99999892, 0.99999892, 0.99999892, 0.99999892, 0.99999137,
       0.99999137, 0.99999137, 0.99999137, 0.9999399 , 0.9999399 ,
       0.9999399 , 0.9999399 , 0.99964148, 0.99964148, 0.99964148,
       0.99964148, 0.9982058 , 0.9982058 , 0.9982058 , 0.9982058 ,
       0.99265642, 0.99265642, 0.99265642, 0.99265642, 0.97603583,
       0.97603583, 0.97603583, 0.97603583, 0.93852726, 0.93852726,
       0.93852726, 0.93852726, 0.87480059, 0.87480059, 0.87480059,
       0.87480059, 0.79029824, 0.79029824, 0.79029824, 0.79029824,
       0.70698986, 0.70698986, 0.70698986, 0.70698986, 0.6291912 ,
       0.6291912 , 0.6291912 , 0.6291912 , 0.59965944, 0.59965944,
       0.59965944, 0.59965944, 0.59596883, 0.59596883, 0.59596883,
       0.59596883, 0.59053208, 0.59053208, 0.59053208, 0.59053208,
       0.5754485 , 0.5754485 , 0.5754485 , 0.5754485 , 0.54568684,
       0.54568684, 0.54568684, 0.54568684, 0.49942691, 0.49942691,
       0.49942691, 0.49942691, 0.43715677, 0.43715677, 0.43715677,
       0.43715677, 0.3785361 , 0.3785361 , 0.3785361 , 0.3785361 ,
       0.34229804, 0.34229804, 0.34229804, 0.34229804, 0.31792866,
       0.31792866, 0.31792866, 0.31792866, 0.28869213, 0.28869213,
       0.28869213, 0.28869213, 0.21502361, 0.21502361, 0.21502361,
       0.21502361, 0.14073628, 0.14073628, 0.14073628, 0.14073628,
       0.12650253, 0.12650253, 0.12650253, 0.12650253, 0.12511712,
       0.12511712, 0.12511712, 0.12511712, 0.12500873, 0.12500873,
       0.12500873, 0.12500873, 0.12500064, 0.12500064, 0.12500064,
       0.12500064, 0.12500005, 0.12500005, 0.12500005, 0.12500005,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000014e-01, 7.50000014e-01, 7.50000014e-01, 7.50000014e-01,
       7.50000141e-01, 7.50000141e-01, 7.50000141e-01, 7.50000141e-01,
       7.50001276e-01, 7.50001276e-01, 7.50001276e-01, 7.50001276e-01,
       7.50010210e-01, 7.50010210e-01, 7.50010210e-01, 7.50010210e-01,
       7.50071106e-01, 7.50071106e-01, 7.50071106e-01, 7.50071106e-01,
       7.50424168e-01, 7.50424168e-01, 7.50424168e-01, 7.50424168e-01,
       7.52123167e-01, 7.52123167e-01, 7.52123167e-01, 7.52123167e-01,
       7.58705271e-01, 7.58705271e-01, 7.58705271e-01, 7.58705271e-01,
       7.78604138e-01, 7.78604138e-01, 7.78604138e-01, 7.78604138e-01,
       8.24667213e-01, 8.24667213e-01, 8.24667213e-01, 8.24667213e-01,
       9.06930229e-01, 9.06930229e-01, 9.06930229e-01, 9.06930229e-01,
       1.02400230e+00, 1.02400230e+00, 1.02400230e+00, 1.02400230e+00,
       1.14543639e+00, 1.14543639e+00, 1.14543639e+00, 1.14543639e+00,
       1.26083347e+00, 1.26083347e+00, 1.26083347e+00, 1.26083347e+00,
       1.33169331e+00, 1.33169331e+00, 1.33169331e+00, 1.33169331e+00,
       1.35558798e+00, 1.35558798e+00, 1.35558798e+00, 1.35558798e+00,
       1.35748922e+00, 1.35748922e+00, 1.35748922e+00, 1.35748922e+00,
       1.35707583e+00, 1.35707583e+00, 1.35707583e+00, 1.35707583e+00,
       1.35801616e+00, 1.35801616e+00, 1.35801616e+00, 1.35801616e+00,
       1.36080683e+00, 1.36080683e+00, 1.36080683e+00, 1.36080683e+00,
       1.36564217e+00, 1.36564217e+00, 1.36564217e+00, 1.36564217e+00,
       1.36731393e+00, 1.36731393e+00, 1.36731393e+00, 1.36731393e+00,
       1.36391260e+00, 1.36391260e+00, 1.36391260e+00, 1.36391260e+00,
       1.33675447e+00, 1.33675447e+00, 1.33675447e+00, 1.33675447e+00,
       1.20527086e+00, 1.20527086e+00, 1.20527086e+00, 1.20527086e+00,
       7.48851135e-01, 7.48851135e-01, 7.48851135e-01, 7.48851135e-01,
       1.51176427e-01, 1.51176427e-01, 1.51176427e-01, 1.51176427e-01,
       1.35019359e-02, 1.35019359e-02, 1.35019359e-02, 1.35019359e-02,
       1.00744606e-03, 1.00744606e-03, 1.00744606e-03, 1.00744606e-03,
       7.41979754e-05, 7.41979754e-05, 7.41979754e-05, 7.41979754e-05,
       5.44259245e-06, 5.44259245e-06, 5.44259245e-06, 5.44259245e-06,
       3.97695182e-07, 3.97695182e-07, 3.97695182e-07, 3.97695182e-07,
       2.88737197e-08, 2.88737197e-08, 2.88737197e-08, 2.88737197e-08,
       2.07323036e-09, 2.07323036e-09, 2.07323036e-09, 2.07323036e-09,
       1.46378112e-10, 1.46378112e-10, 1.46378112e-10, 1.46378112e-10,
       1.00972396e-11, 1.00972396e-11, 1.00972396e-11, 1.00972396e-11,
       6.75961800e-13, 6.75961800e-13, 6.75961800e-13, 6.75961800e-13,
       4.36475480e-14, 4.36475480e-14, 4.36475480e-14, 4.36475480e-14,
       2.72468011e-15, 2.72468011e-15, 2.72468011e-15, 2.72468011e-15,
       1.63168395e-16, 1.63168395e-16, 1.63168395e-16, 1.63168395e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999983, 0.99999983, 0.99999983, 0.99999983,
       0.99999849, 0.99999849, 0.99999849, 0.99999849, 0.99998792,
       0.99998792, 0.99998792, 0.99998792, 0.99991587, 0.99991587,
       0.99991587, 0.99991587, 0.99949823, 0.99949823, 0.99949823,
       0.99949823, 0.9974908 , 0.9974908 , 0.9974908 , 0.9974908 ,
       0.98975108, 0.98975108, 0.98975108, 0.98975108, 0.96671385,
       0.96671385, 0.96671385, 0.96671385, 0.91539051, 0.91539051,
       0.91539051, 0.91539051, 0.83010759, 0.83010759, 0.83010759,
       0.83010759, 0.72047423, 0.72047423, 0.72047423, 0.72047423,
       0.61506756, 0.61506756, 0.61506756, 0.61506756, 0.53125219,
       0.53125219, 0.53125219, 0.53125219, 0.48653051, 0.48653051,
       0.48653051, 0.48653051, 0.47051006, 0.47051006, 0.47051006,
       0.47051006, 0.46624138, 0.46624138, 0.46624138, 0.46624138,
       0.46510466, 0.46510466, 0.46510466, 0.46510466, 0.46465008,
       0.46465008, 0.46465008, 0.46465008, 0.4649645 , 0.4649645 ,
       0.4649645 , 0.4649645 , 0.46635721, 0.46635721, 0.46635721,
       0.46635721, 0.4669385 , 0.4669385 , 0.4669385 , 0.4669385 ,
       0.46507386, 0.46507386, 0.46507386, 0.46507386, 0.45256509,
       0.45256509, 0.45256509, 0.45256509, 0.39724826, 0.39724826,
       0.39724826, 0.39724826, 0.24626608, 0.24626608, 0.24626608,
       0.24626608, 0.12167041, 0.12167041, 0.12167041, 0.12167041,
       0.10179518, 0.10179518, 0.10179518, 0.10179518, 0.10013331,
       0.10013331, 0.10013331, 0.10013331, 0.10000982, 0.10000982,
       0.10000982, 0.10000982, 0.10000072, 0.10000072, 0.10000072,
       0.10000072, 0.10000005, 0.10000005, 0.10000005, 0.10000005,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999979, 0.99999979, 0.99999979, 0.99999979,
       0.99999821, 0.99999821, 0.99999821, 0.99999821, 0.99998654,
       0.99998654, 0.99998654, 0.99998654, 0.99991195, 0.99991195,
       0.99991195, 0.99991195, 0.99950669, 0.99950669, 0.99950669,
       0.99950669, 0.99768098, 0.99768098, 0.99768098, 0.99768098,
       0.99107741, 0.99107741, 0.99107741, 0.99107741, 0.97254809,
       0.97254809, 0.97254809, 0.97254809, 0.93314576, 0.93314576,
       0.93314576, 0.93314576, 0.86931013, 0.86931013, 0.86931013,
       0.86931013, 0.78745561, 0.78745561, 0.78745561, 0.78745561,
       0.70912742, 0.70912742, 0.70912742, 0.70912742, 0.63224649,
       0.63224649, 0.63224649, 0.63224649, 0.59761707, 0.59761707,
       0.59761707, 0.59761707, 0.59438022, 0.59438022, 0.59438022,
       0.59438022, 0.5922818 , 0.5922818 , 0.5922818 , 0.5922818 ,
       0.58292186, 0.58292186, 0.58292186, 0.58292186, 0.56012924,
       0.56012924, 0.56012924, 0.56012924, 0.52108056, 0.52108056,
       0.52108056, 0.52108056, 0.46554919, 0.46554919, 0.46554919,
       0.46554919, 0.40122218, 0.40122218, 0.40122218, 0.40122218,
       0.35684472, 0.35684472, 0.35684472, 0.35684472, 0.33092508,
       0.33092508, 0.33092508, 0.33092508, 0.3109016 , 0.3109016 ,
       0.3109016 , 0.3109016 , 0.2745178 , 0.2745178 , 0.2745178 ,
       0.2745178 , 0.18574868, 0.18574868, 0.18574868, 0.18574868,
       0.13312446, 0.13312446, 0.13312446, 0.13312446, 0.12570243,
       0.12570243, 0.12570243, 0.12570243, 0.12505374, 0.12505374,
       0.12505374, 0.12505374, 0.12500399, 0.12500399, 0.12500399,
       0.12500399, 0.12500029, 0.12500029, 0.12500029, 0.12500029,
       0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000026e-01, 7.50000026e-01, 7.50000026e-01, 7.50000026e-01,
       7.50000249e-01, 7.50000249e-01, 7.50000249e-01, 7.50000249e-01,
       7.50002122e-01, 7.50002122e-01, 7.50002122e-01, 7.50002122e-01,
       7.50015931e-01, 7.50015931e-01, 7.50015931e-01, 7.50015931e-01,
       7.50104174e-01, 7.50104174e-01, 7.50104174e-01, 7.50104174e-01,
       7.50583657e-01, 7.50583657e-01, 7.50583657e-01, 7.50583657e-01,
       7.52744722e-01, 7.52744722e-01, 7.52744722e-01, 7.52744722e-01,
       7.60584516e-01, 7.60584516e-01, 7.60584516e-01, 7.60584516e-01,
       7.82823347e-01, 7.82823347e-01, 7.82823347e-01, 7.82823347e-01,
       8.31422691e-01, 8.31422691e-01, 8.31422691e-01, 8.31422691e-01,
       9.14253491e-01, 9.14253491e-01, 9.14253491e-01, 9.14253491e-01,
       1.02753151e+00, 1.02753151e+00, 1.02753151e+00, 1.02753151e+00,
       1.14446418e+00, 1.14446418e+00, 1.14446418e+00, 1.14446418e+00,
       1.25572429e+00, 1.25572429e+00, 1.25572429e+00, 1.25572429e+00,
       1.32726860e+00, 1.32726860e+00, 1.32726860e+00, 1.32726860e+00,
       1.35494148e+00, 1.35494148e+00, 1.35494148e+00, 1.35494148e+00,
       1.35862615e+00, 1.35862615e+00, 1.35862615e+00, 1.35862615e+00,
       1.35792280e+00, 1.35792280e+00, 1.35792280e+00, 1.35792280e+00,
       1.35790930e+00, 1.35790930e+00, 1.35790930e+00, 1.35790930e+00,
       1.35939545e+00, 1.35939545e+00, 1.35939545e+00, 1.35939545e+00,
       1.36269094e+00, 1.36269094e+00, 1.36269094e+00, 1.36269094e+00,
       1.36606975e+00, 1.36606975e+00, 1.36606975e+00, 1.36606975e+00,
       1.36643658e+00, 1.36643658e+00, 1.36643658e+00, 1.36643658e+00,
       1.35906893e+00, 1.35906893e+00, 1.35906893e+00, 1.35906893e+00,
       1.31349500e+00, 1.31349500e+00, 1.31349500e+00, 1.31349500e+00,
       1.11168051e+00, 1.11168051e+00, 1.11168051e+00, 1.11168051e+00,
       5.39000363e-01, 5.39000363e-01, 5.39000363e-01, 5.39000363e-01,
       7.70165641e-02, 7.70165641e-02, 7.70165641e-02, 7.70165641e-02,
       6.19417821e-03, 6.19417821e-03, 6.19417821e-03, 6.19417821e-03,
       4.59703599e-04, 4.59703599e-04, 4.59703599e-04, 4.59703599e-04,
       3.38422021e-05, 3.38422021e-05, 3.38422021e-05, 3.38422021e-05,
       2.48403190e-06, 2.48403190e-06, 2.48403190e-06, 2.48403190e-06,
       1.81703671e-07, 1.81703671e-07, 1.81703671e-07, 1.81703671e-07,
       1.32143978e-08, 1.32143978e-08, 1.32143978e-08, 1.32143978e-08,
       9.51971465e-10, 9.51971465e-10, 9.51971465e-10, 9.51971465e-10,
       6.75952916e-11, 6.75952916e-11, 6.75952916e-11, 6.75952916e-11,
       4.70333296e-12, 4.70333296e-12, 4.70333296e-12, 4.70333296e-12,
       3.18764056e-13, 3.18764056e-13, 3.18764056e-13, 3.18764056e-13,
       2.09144307e-14, 2.09144307e-14, 2.09144307e-14, 2.09144307e-14,
       1.34091434e-15, 1.34091434e-15, 1.34091434e-15, 1.34091434e-15,
       7.02262902e-17, 7.02262902e-17, 7.02262902e-17, 7.02262902e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
       0.99999749, 0.99999749, 0.99999749, 0.99999749, 0.99998115,
       0.99998115, 0.99998115, 0.99998115, 0.99987675, 0.99987675,
       0.99987675, 0.99987675, 0.99930963, 0.99930963, 0.99930963,
       0.99930963, 0.9967574 , 0.9967574 , 0.9967574 , 0.9967574 ,
       0.98755235, 0.98755235, 0.98755235, 0.98755235, 0.961897  ,
       0.961897  , 0.961897  , 0.961897  , 0.90807418, 0.90807418,
       0.90807418, 0.90807418, 0.82280457, 0.82280457, 0.82280457,
       0.82280457, 0.71660108, 0.71660108, 0.71660108, 0.71660108,
       0.61647152, 0.61647152, 0.61647152, 0.61647152, 0.53433754,
       0.53433754, 0.53433754, 0.53433754, 0.48862858, 0.48862858,
       0.48862858, 0.48862858, 0.47191446, 0.47191446, 0.47191446,
       0.47191446, 0.46731186, 0.46731186, 0.46731186, 0.46731186,
       0.46568567, 0.46568567, 0.46568567, 0.46568567, 0.46466716,
       0.46466716, 0.46466716, 0.46466716, 0.46428833, 0.46428833,
       0.46428833, 0.46428833, 0.46483777, 0.46483777, 0.46483777,
       0.46483777, 0.46633071, 0.46633071, 0.46633071, 0.46633071,
       0.46626754, 0.46626754, 0.46626754, 0.46626754, 0.46271596,
       0.46271596, 0.46271596, 0.46271596, 0.44260208, 0.44260208,
       0.44260208, 0.44260208, 0.36235029, 0.36235029, 0.36235029,
       0.36235029, 0.19361303, 0.19361303, 0.19361303, 0.19361303,
       0.11058547, 0.11058547, 0.11058547, 0.11058547, 0.10082107,
       0.10082107, 0.10082107, 0.10082107, 0.10006082, 0.10006082,
       0.10006082, 0.10006082, 0.10000448, 0.10000448, 0.10000448,
       0.10000448, 0.10000033, 0.10000033, 0.10000033, 0.10000033,
       0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999996, 0.99999996, 0.99999996,
       0.99999996, 0.99999964, 0.99999964, 0.99999964, 0.99999964,
       0.99999711, 0.99999711, 0.99999711, 0.99999711, 0.99997953,
       0.99997953, 0.99997953, 0.99997953, 0.99987394, 0.99987394,
       0.99987394, 0.99987394, 0.99933463, 0.99933463, 0.99933463,
       0.99933463, 0.99705312, 0.99705312, 0.99705312, 0.99705312,
       0.98930851, 0.98930851, 0.98930851, 0.98930851, 0.96888183,
       0.96888183, 0.96888183, 0.96888183, 0.92779564, 0.92779564,
       0.92779564, 0.92779564, 0.86405491, 0.86405491, 0.86405491,
       0.86405491, 0.78470523, 0.78470523, 0.78470523, 0.78470523,
       0.71095409, 0.71095409, 0.71095409, 0.71095409, 0.63622824,
       0.63622824, 0.63622824, 0.63622824, 0.59650729, 0.59650729,
       0.59650729, 0.59650729, 0.59187689, 0.59187689, 0.59187689,
       0.59187689, 0.59231137, 0.59231137, 0.59231137, 0.59231137,
       0.58763049, 0.58763049, 0.58763049, 0.58763049, 0.57146876,
       0.57146876, 0.57146876, 0.57146876, 0.53974952, 0.53974952,
       0.53974952, 0.53974952, 0.49128145, 0.49128145, 0.49128145,
       0.49128145, 0.4279453 , 0.4279453 , 0.4279453 , 0.4279453 ,
       0.37383925, 0.37383925, 0.37383925, 0.37383925, 0.34208564,
       0.34208564, 0.34208564, 0.34208564, 0.32336538, 0.32336538,
       0.32336538, 0.32336538, 0.30459933, 0.30459933, 0.30459933,
       0.30459933, 0.25375017, 0.25375017, 0.25375017, 0.25375017,
       0.1610919 , 0.1610919 , 0.1610919 , 0.1610919 , 0.12897793,
       0.12897793, 0.12897793, 0.12897793, 0.12532639, 0.12532639,
       0.12532639, 0.12532639, 0.1250246 , 0.1250246 , 0.1250246 ,
       0.1250246 , 0.12500182, 0.12500182, 0.12500182, 0.12500182,
       0.12500013, 0.12500013, 0.12500013, 0.12500013, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000048e-01, 7.50000048e-01, 7.50000048e-01, 7.50000048e-01,
       7.50000428e-01, 7.50000428e-01, 7.50000428e-01, 7.50000428e-01,
       7.50003425e-01, 7.50003425e-01, 7.50003425e-01, 7.50003425e-01,
       7.50024215e-01, 7.50024215e-01, 7.50024215e-01, 7.50024215e-01,
       7.50149149e-01, 7.50149149e-01, 7.50149149e-01, 7.50149149e-01,
       7.50787259e-01, 7.50787259e-01, 7.50787259e-01, 7.50787259e-01,
       7.53488669e-01, 7.53488669e-01, 7.53488669e-01, 7.53488669e-01,
       7.62693058e-01, 7.62693058e-01, 7.62693058e-01, 7.62693058e-01,
       7.87273690e-01, 7.87273690e-01, 7.87273690e-01, 7.87273690e-01,
       8.38170390e-01, 8.38170390e-01, 8.38170390e-01, 8.38170390e-01,
       9.21264845e-01, 9.21264845e-01, 9.21264845e-01, 9.21264845e-01,
       1.03075711e+00, 1.03075711e+00, 1.03075711e+00, 1.03075711e+00,
       1.14341648e+00, 1.14341648e+00, 1.14341648e+00, 1.14341648e+00,
       1.25118970e+00, 1.25118970e+00, 1.25118970e+00, 1.25118970e+00,
       1.32270364e+00, 1.32270364e+00, 1.32270364e+00, 1.32270364e+00,
       1.35337313e+00, 1.35337313e+00, 1.35337313e+00, 1.35337313e+00,
       1.35937786e+00, 1.35937786e+00, 1.35937786e+00, 1.35937786e+00,
       1.35905340e+00, 1.35905340e+00, 1.35905340e+00, 1.35905340e+00,
       1.35850392e+00, 1.35850392e+00, 1.35850392e+00, 1.35850392e+00,
       1.35894967e+00, 1.35894967e+00, 1.35894967e+00, 1.35894967e+00,
       1.36090221e+00, 1.36090221e+00, 1.36090221e+00, 1.36090221e+00,
       1.36370505e+00, 1.36370505e+00, 1.36370505e+00, 1.36370505e+00,
       1.36598769e+00, 1.36598769e+00, 1.36598769e+00, 1.36598769e+00,
       1.36486873e+00, 1.36486873e+00, 1.36486873e+00, 1.36486873e+00,
       1.35070633e+00, 1.35070633e+00, 1.35070633e+00, 1.35070633e+00,
       1.27741452e+00, 1.27741452e+00, 1.27741452e+00, 1.27741452e+00,
       9.81464738e-01, 9.81464738e-01, 9.81464738e-01, 9.81464738e-01,
       3.36046188e-01, 3.36046188e-01, 3.36046188e-01, 3.36046188e-01,
       3.68463062e-02, 3.68463062e-02, 3.68463062e-02, 3.68463062e-02,
       2.83912454e-03, 2.83912454e-03, 2.83912454e-03, 2.83912454e-03,
       2.09688885e-04, 2.09688885e-04, 2.09688885e-04, 2.09688885e-04,
       1.54316406e-05, 1.54316406e-05, 1.54316406e-05, 1.54316406e-05,
       1.13356929e-06, 1.13356929e-06, 1.13356929e-06, 1.13356929e-06,
       8.29963615e-08, 8.29963615e-08, 8.29963615e-08, 8.29963615e-08,
       6.04553786e-09, 6.04553786e-09, 6.04553786e-09, 6.04553786e-09,
       4.36752195e-10, 4.36752195e-10, 4.36752195e-10, 4.36752195e-10,
       3.11603660e-11, 3.11603660e-11, 3.11603660e-11, 3.11603660e-11,
       2.18424142e-12, 2.18424142e-12, 2.18424142e-12, 2.18424142e-12,
       1.49600112e-13, 1.49600112e-13, 1.49600112e-13, 1.49600112e-13,
       9.91152530e-15, 9.91152530e-15, 9.91152530e-15, 9.91152530e-15,
       6.43616174e-16, 6.43616174e-16, 6.43616174e-16, 6.43616174e-16,
       3.40906797e-17, 3.40906797e-17, 3.40906797e-17, 3.40906797e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999994, 0.99999994, 0.99999994,
       0.99999994, 0.99999949, 0.99999949, 0.99999949, 0.99999949,
       0.99999595, 0.99999595, 0.99999595, 0.99999595, 0.99997135,
       0.99997135, 0.99997135, 0.99997135, 0.99982354, 0.99982354,
       0.99982354, 0.99982354, 0.9990689 , 0.9990689 , 0.9990689 ,
       0.9990689 , 0.99588029, 0.99588029, 0.99588029, 0.99588029,
       0.98509107, 0.98509107, 0.98509107, 0.98509107, 0.95684085,
       0.95684085, 0.95684085, 0.95684085, 0.90081585, 0.90081585,
       0.90081585, 0.90081585, 0.81585349, 0.81585349, 0.81585349,
       0.81585349, 0.71306117, 0.71306117, 0.71306117, 0.71306117,
       0.61770042, 0.61770042, 0.61770042, 0.61770042, 0.53754808,
       0.53754808, 0.53754808, 0.53754808, 0.49069344, 0.49069344,
       0.49069344, 0.49069344, 0.47291767, 0.47291767, 0.47291767,
       0.47291767, 0.46823402, 0.46823402, 0.46823402, 0.46823402,
       0.46647842, 0.46647842, 0.46647842, 0.46647842, 0.46510214,
       0.46510214, 0.46510214, 0.46510214, 0.46413565, 0.46413565,
       0.46413565, 0.46413565, 0.46395683, 0.46395683, 0.46395683,
       0.46395683, 0.46511952, 0.46511952, 0.46511952, 0.46511952,
       0.46605603, 0.46605603, 0.46605603, 0.46605603, 0.46541207,
       0.46541207, 0.46541207, 0.46541207, 0.45926933, 0.45926933,
       0.45926933, 0.45926933, 0.42726405, 0.42726405, 0.42726405,
       0.42726405, 0.31664309, 0.31664309, 0.31664309, 0.31664309,
       0.15234215, 0.15234215, 0.15234215, 0.15234215, 0.10495591,
       0.10495591, 0.10495591, 0.10495591, 0.10037589, 0.10037589,
       0.10037589, 0.10037589, 0.10002774, 0.10002774, 0.10002774,
       0.10002774, 0.10000204, 0.10000204, 0.10000204, 0.10000204,
       0.10000015, 0.10000015, 0.10000015, 0.10000015, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999993, 0.99999993, 0.99999993,
       0.99999993, 0.9999994 , 0.9999994 , 0.9999994 , 0.9999994 ,
       0.99999545, 0.99999545, 0.99999545, 0.99999545, 0.99996962,
       0.99996962, 0.99996962, 0.99996962, 0.99982324, 0.99982324,
       0.99982324, 0.99982324, 0.9991187 , 0.9991187 , 0.9991187 ,
       0.9991187 , 0.9963127 , 0.9963127 , 0.9963127 , 0.9963127 ,
       0.98734973, 0.98734973, 0.98734973, 0.98734973, 0.96505957,
       0.96505957, 0.96505957, 0.96505957, 0.92250062, 0.92250062,
       0.92250062, 0.92250062, 0.85904285, 0.85904285, 0.85904285,
       0.85904285, 0.78210563, 0.78210563, 0.78210563, 0.78210563,
       0.71214743, 0.71214743, 0.71214743, 0.71214743, 0.64091277,
       0.64091277, 0.64091277, 0.64091277, 0.5967045 , 0.5967045 ,
       0.5967045 , 0.5967045 , 0.58917295, 0.58917295, 0.58917295,
       0.58917295, 0.59108358, 0.59108358, 0.59108358, 0.59108358,
       0.58980314, 0.58980314, 0.58980314, 0.58980314, 0.57968492,
       0.57968492, 0.57968492, 0.57968492, 0.5552647 , 0.5552647 ,
       0.5552647 , 0.5552647 , 0.51411927, 0.51411927, 0.51411927,
       0.51411927, 0.45652797, 0.45652797, 0.45652797, 0.45652797,
       0.39426685, 0.39426685, 0.39426685, 0.39426685, 0.35435985,
       0.35435985, 0.35435985, 0.35435985, 0.33267462, 0.33267462,
       0.33267462, 0.33267462, 0.3183219 , 0.3183219 , 0.3183219 ,
       0.3183219 , 0.29605972, 0.29605972, 0.29605972, 0.29605972,
       0.22620934, 0.22620934, 0.22620934, 0.22620934, 0.1443368 ,
       0.1443368 , 0.1443368 , 0.1443368 , 0.12690967, 0.12690967,
       0.12690967, 0.12690967, 0.12515044, 0.12515044, 0.12515044,
       0.12515044, 0.12501125, 0.12501125, 0.12501125, 0.12501125,
       0.12500083, 0.12500083, 0.12500083, 0.12500083, 0.12500006,
       0.12500006, 0.12500006, 0.12500006, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000084e-01, 7.50000084e-01, 7.50000084e-01, 7.50000084e-01,
       7.50000712e-01, 7.50000712e-01, 7.50000712e-01, 7.50000712e-01,
       7.50005384e-01, 7.50005384e-01, 7.50005384e-01, 7.50005384e-01,
       7.50035944e-01, 7.50035944e-01, 7.50035944e-01, 7.50035944e-01,
       7.50209136e-01, 7.50209136e-01, 7.50209136e-01, 7.50209136e-01,
       7.51042813e-01, 7.51042813e-01, 7.51042813e-01, 7.51042813e-01,
       7.54366472e-01, 7.54366472e-01, 7.54366472e-01, 7.54366472e-01,
       7.65032020e-01, 7.65032020e-01, 7.65032020e-01, 7.65032020e-01,
       7.91929802e-01, 7.91929802e-01, 7.91929802e-01, 7.91929802e-01,
       8.44879000e-01, 8.44879000e-01, 8.44879000e-01, 8.44879000e-01,
       9.27961552e-01, 9.27961552e-01, 9.27961552e-01, 9.27961552e-01,
       1.03376284e+00, 1.03376284e+00, 1.03376284e+00, 1.03376284e+00,
       1.14223005e+00, 1.14223005e+00, 1.14223005e+00, 1.14223005e+00,
       1.24703626e+00, 1.24703626e+00, 1.24703626e+00, 1.24703626e+00,
       1.31835154e+00, 1.31835154e+00, 1.31835154e+00, 1.31835154e+00,
       1.35115729e+00, 1.35115729e+00, 1.35115729e+00, 1.35115729e+00,
       1.35952683e+00, 1.35952683e+00, 1.35952683e+00, 1.35952683e+00,
       1.36000050e+00, 1.36000050e+00, 1.36000050e+00, 1.36000050e+00,
       1.35946783e+00, 1.35946783e+00, 1.35946783e+00, 1.35946783e+00,
       1.35931504e+00, 1.35931504e+00, 1.35931504e+00, 1.35931504e+00,
       1.36014004e+00, 1.36014004e+00, 1.36014004e+00, 1.36014004e+00,
       1.36169449e+00, 1.36169449e+00, 1.36169449e+00, 1.36169449e+00,
       1.36442795e+00, 1.36442795e+00, 1.36442795e+00, 1.36442795e+00,
       1.36544109e+00, 1.36544109e+00, 1.36544109e+00, 1.36544109e+00,
       1.36179797e+00, 1.36179797e+00, 1.36179797e+00, 1.36179797e+00,
       1.33753550e+00, 1.33753550e+00, 1.33753550e+00, 1.33753550e+00,
       1.22289370e+00, 1.22289370e+00, 1.22289370e+00, 1.22289370e+00,
       8.07609730e-01, 8.07609730e-01, 8.07609730e-01, 8.07609730e-01,
       1.84578851e-01, 1.84578851e-01, 1.84578851e-01, 1.84578851e-01,
       1.72459356e-02, 1.72459356e-02, 1.72459356e-02, 1.72459356e-02,
       1.29636420e-03, 1.29636420e-03, 1.29636420e-03, 1.29636420e-03,
       9.56231757e-05, 9.56231757e-05, 9.56231757e-05, 9.56231757e-05,
       7.03861571e-06, 7.03861571e-06, 7.03861571e-06, 7.03861571e-06,
       5.17203032e-07, 5.17203032e-07, 5.17203032e-07, 5.17203032e-07,
       3.79012480e-08, 3.79012480e-08, 3.79012480e-08, 3.79012480e-08,
       2.76477945e-09, 2.76477945e-09, 2.76477945e-09, 2.76477945e-09,
       2.00229731e-10, 2.00229731e-10, 2.00229731e-10, 2.00229731e-10,
       1.43439296e-11, 1.43439296e-11, 1.43439296e-11, 1.43439296e-11,
       1.01180886e-12, 1.01180886e-12, 1.01180886e-12, 1.01180886e-12,
       6.98829576e-14, 6.98829576e-14, 6.98829576e-14, 6.98829576e-14,
       4.66606318e-15, 4.66606318e-15, 4.66606318e-15, 4.66606318e-15,
       3.37838020e-16, 3.37838020e-16, 3.37838020e-16, 3.37838020e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.9999999 , 0.9999999 , 0.9999999 ,
       0.9999999 , 0.99999916, 0.99999916, 0.99999916, 0.99999916,
       0.99999363, 0.99999363, 0.99999363, 0.99999363, 0.99995747,
       0.99995747, 0.99995747, 0.99995747, 0.99975257, 0.99975257,
       0.99975257, 0.99975257, 0.99876684, 0.99876684, 0.99876684,
       0.99876684, 0.99484634, 0.99484634, 0.99484634, 0.99484634,
       0.98236786, 0.98236786, 0.98236786, 0.98236786, 0.95157745,
       0.95157745, 0.95157745, 0.95157745, 0.89364753, 0.89364753,
       0.89364753, 0.89364753, 0.80925164, 0.80925164, 0.80925164,
       0.80925164, 0.70985244, 0.70985244, 0.70985244, 0.70985244,
       0.61872344, 0.61872344, 0.61872344, 0.61872344, 0.54078556,
       0.54078556, 0.54078556, 0.54078556, 0.49293771, 0.49293771,
       0.49293771, 0.49293771, 0.47368455, 0.47368455, 0.47368455,
       0.47368455, 0.46885678, 0.46885678, 0.46885678, 0.46885678,
       0.46721006, 0.46721006, 0.46721006, 0.46721006, 0.46578019,
       0.46578019, 0.46578019, 0.46578019, 0.46443757, 0.46443757,
       0.46443757, 0.46443757, 0.46363693, 0.46363693, 0.46363693,
       0.46363693, 0.46405796, 0.46405796, 0.46405796, 0.46405796,
       0.46529802, 0.46529802, 0.46529802, 0.46529802, 0.46568405,
       0.46568405, 0.46568405, 0.46568405, 0.46436586, 0.46436586,
       0.46436586, 0.46436586, 0.45372193, 0.45372193, 0.45372193,
       0.45372193, 0.40428218, 0.40428218, 0.40428218, 0.40428218,
       0.26242895, 0.26242895, 0.26242895, 0.26242895, 0.12688139,
       0.12688139, 0.12688139, 0.12688139, 0.10229679, 0.10229679,
       0.10229679, 0.10229679, 0.10017155, 0.10017155, 0.10017155,
       0.10017155, 0.10001265, 0.10001265, 0.10001265, 0.10001265,
       0.10000093, 0.10000093, 0.10000093, 0.10000093, 0.10000007,
       0.10000007, 0.10000007, 0.10000007, 0.10000001, 0.10000001,
       0.10000001, 0.10000001, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999988, 0.99999988, 0.99999988,
       0.99999988, 0.99999902, 0.99999902, 0.99999902, 0.99999902,
       0.99999302, 0.99999302, 0.99999302, 0.99999302, 0.99995587,
       0.99995587, 0.99995587, 0.99995587, 0.99975682, 0.99975682,
       0.99975682, 0.99975682, 0.99885188, 0.99885188, 0.99885188,
       0.99885188, 0.99545106, 0.99545106, 0.99545106, 0.99545106,
       0.98520362, 0.98520362, 0.98520362, 0.98520362, 0.96110441,
       0.96110441, 0.96110441, 0.96110441, 0.91728156, 0.91728156,
       0.91728156, 0.91728156, 0.85427981, 0.85427981, 0.85427981,
       0.85427981, 0.77971476, 0.77971476, 0.77971476, 0.77971476,
       0.71287025, 0.71287025, 0.71287025, 0.71287025, 0.64564457,
       0.64564457, 0.64564457, 0.64564457, 0.59826562, 0.59826562,
       0.59826562, 0.59826562, 0.58691045, 0.58691045, 0.58691045,
       0.58691045, 0.58906206, 0.58906206, 0.58906206, 0.58906206,
       0.59003485, 0.59003485, 0.59003485, 0.59003485, 0.58486504,
       0.58486504, 0.58486504, 0.58486504, 0.56744401, 0.56744401,
       0.56744401, 0.56744401, 0.53390234, 0.53390234, 0.53390234,
       0.53390234, 0.48345644, 0.48345644, 0.48345644, 0.48345644,
       0.41935629, 0.41935629, 0.41935629, 0.41935629, 0.3694156 ,
       0.3694156 , 0.3694156 , 0.3694156 , 0.34157081, 0.34157081,
       0.34157081, 0.34157081, 0.3267349 , 0.3267349 , 0.3267349 ,
       0.3267349 , 0.31430765, 0.31430765, 0.31430765, 0.31430765,
       0.28309759, 0.28309759, 0.28309759, 0.28309759, 0.19541361,
       0.19541361, 0.19541361, 0.19541361, 0.13508752, 0.13508752,
       0.13508752, 0.13508752, 0.12589416, 0.12589416, 0.12589416,
       0.12589416, 0.12506897, 0.12506897, 0.12506897, 0.12506897,
       0.12500514, 0.12500514, 0.12500514, 0.12500514, 0.12500038,
       0.12500038, 0.12500038, 0.12500038, 0.12500003, 0.12500003,
       0.12500003, 0.12500003, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
       7.50000144e-01, 7.50000144e-01, 7.50000144e-01, 7.50000144e-01,
       7.50001154e-01, 7.50001154e-01, 7.50001154e-01, 7.50001154e-01,
       7.50008260e-01, 7.50008260e-01, 7.50008260e-01, 7.50008260e-01,
       7.50052218e-01, 7.50052218e-01, 7.50052218e-01, 7.50052218e-01,
       7.50287727e-01, 7.50287727e-01, 7.50287727e-01, 7.50287727e-01,
       7.51358635e-01, 7.51358635e-01, 7.51358635e-01, 7.51358635e-01,
       7.55388706e-01, 7.55388706e-01, 7.55388706e-01, 7.55388706e-01,
       7.67599601e-01, 7.67599601e-01, 7.67599601e-01, 7.67599601e-01,
       7.96765297e-01, 7.96765297e-01, 7.96765297e-01, 7.96765297e-01,
       8.51520678e-01, 8.51520678e-01, 8.51520678e-01, 8.51520678e-01,
       9.34344216e-01, 9.34344216e-01, 9.34344216e-01, 9.34344216e-01,
       1.03659724e+00, 1.03659724e+00, 1.03659724e+00, 1.03659724e+00,
       1.14096365e+00, 1.14096365e+00, 1.14096365e+00, 1.14096365e+00,
       1.24306837e+00, 1.24306837e+00, 1.24306837e+00, 1.24306837e+00,
       1.31432670e+00, 1.31432670e+00, 1.31432670e+00, 1.31432670e+00,
       1.34867754e+00, 1.34867754e+00, 1.34867754e+00, 1.34867754e+00,
       1.35900751e+00, 1.35900751e+00, 1.35900751e+00, 1.35900751e+00,
       1.36059408e+00, 1.36059408e+00, 1.36059408e+00, 1.36059408e+00,
       1.36044668e+00, 1.36044668e+00, 1.36044668e+00, 1.36044668e+00,
       1.36010596e+00, 1.36010596e+00, 1.36010596e+00, 1.36010596e+00,
       1.36018463e+00, 1.36018463e+00, 1.36018463e+00, 1.36018463e+00,
       1.36083030e+00, 1.36083030e+00, 1.36083030e+00, 1.36083030e+00,
       1.36234837e+00, 1.36234837e+00, 1.36234837e+00, 1.36234837e+00,
       1.36463009e+00, 1.36463009e+00, 1.36463009e+00, 1.36463009e+00,
       1.36410988e+00, 1.36410988e+00, 1.36410988e+00, 1.36410988e+00,
       1.35701598e+00, 1.35701598e+00, 1.35701598e+00, 1.35701598e+00,
       1.31740523e+00, 1.31740523e+00, 1.31740523e+00, 1.31740523e+00,
       1.13985851e+00, 1.13985851e+00, 1.13985851e+00, 1.13985851e+00,
       6.02207928e-01, 6.02207928e-01, 6.02207928e-01, 6.02207928e-01,
       9.54826887e-02, 9.54826887e-02, 9.54826887e-02, 9.54826887e-02,
       7.91081899e-03, 7.91081899e-03, 7.91081899e-03, 7.91081899e-03,
       5.90658670e-04, 5.90658670e-04, 5.90658670e-04, 5.90658670e-04,
       4.36023608e-05, 4.36023608e-05, 4.36023608e-05, 4.36023608e-05,
       3.20991156e-06, 3.20991156e-06, 3.20991156e-06, 3.20991156e-06,
       2.35963719e-07, 2.35963719e-07, 2.35963719e-07, 2.35963719e-07,
       1.73040175e-08, 1.73040175e-08, 1.73040175e-08, 1.73040175e-08,
       1.26389111e-09, 1.26389111e-09, 1.26389111e-09, 1.26389111e-09,
       9.17314216e-11, 9.17314216e-11, 9.17314216e-11, 9.17314216e-11,
       6.59454231e-12, 6.59454231e-12, 6.59454231e-12, 6.59454231e-12,
       4.67644782e-13, 4.67644782e-13, 4.67644782e-13, 4.67644782e-13,
       3.25389011e-14, 3.25389011e-14, 3.25389011e-14, 3.25389011e-14,
       2.17274114e-15, 2.17274114e-15, 2.17274114e-15, 2.17274114e-15,
       1.63514197e-16, 1.63514197e-16, 1.63514197e-16, 1.63514197e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.99999983, 0.99999983, 0.99999983,
       0.99999983, 0.99999863, 0.99999863, 0.99999863, 0.99999863,
       0.99999023, 0.99999023, 0.99999023, 0.99999023, 0.99993822,
       0.99993822, 0.99993822, 0.99993822, 0.99965961, 0.99965961,
       0.99965961, 0.99965961, 0.99839366, 0.99839366, 0.99839366,
       0.99839366, 0.99364361, 0.99364361, 0.99364361, 0.99364361,
       0.9793869 , 0.9793869 , 0.9793869 , 0.9793869 , 0.94613945,
       0.94613945, 0.94613945, 0.94613945, 0.88659682, 0.88659682,
       0.88659682, 0.88659682, 0.80299287, 0.80299287, 0.80299287,
       0.80299287, 0.70694993, 0.70694993, 0.70694993, 0.70694993,
       0.61957684, 0.61957684, 0.61957684, 0.61957684, 0.54392052,
       0.54392052, 0.54392052, 0.54392052, 0.49542686, 0.49542686,
       0.49542686, 0.49542686, 0.47445103, 0.47445103, 0.47445103,
       0.47445103, 0.46915145, 0.46915145, 0.46915145, 0.46915145,
       0.46775039, 0.46775039, 0.46775039, 0.46775039, 0.4664833 ,
       0.4664833 , 0.4664833 , 0.4664833 , 0.46501843, 0.46501843,
       0.46501843, 0.46501843, 0.46374393, 0.46374393, 0.46374393,
       0.46374393, 0.46361884, 0.46361884, 0.46361884, 0.46361884,
       0.46424828, 0.46424828, 0.46424828, 0.46424828, 0.46530062,
       0.46530062, 0.46530062, 0.46530062, 0.46544329, 0.46544329,
       0.46544329, 0.46544329, 0.46257326, 0.46257326, 0.46257326,
       0.46257326, 0.44471278, 0.44471278, 0.44471278, 0.44471278,
       0.37244248, 0.37244248, 0.37244248, 0.37244248, 0.20801386,
       0.20801386, 0.20801386, 0.20801386, 0.11324933, 0.11324933,
       0.11324933, 0.11324933, 0.10104929, 0.10104929, 0.10104929,
       0.10104929, 0.10007815, 0.10007815, 0.10007815, 0.10007815,
       0.10000577, 0.10000577, 0.10000577, 0.10000577, 0.10000042,
       0.10000042, 0.10000042, 0.10000042, 0.10000003, 0.10000003,
       0.10000003, 0.10000003, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999998, 0.99999998,
       0.99999998, 0.99999998, 0.9999998 , 0.9999998 , 0.9999998 ,
       0.9999998 , 0.99999846, 0.99999846, 0.99999846, 0.99999846,
       0.99998952, 0.99998952, 0.99998952, 0.99998952, 0.99993714,
       0.99993714, 0.99993714, 0.99993714, 0.99967122, 0.99967122,
       0.99967122, 0.99967122, 0.99852689, 0.99852689, 0.99852689,
       0.99852689, 0.99446052, 0.99446052, 0.99446052, 0.99446052,
       0.98287516, 0.98287516, 0.98287516, 0.98287516, 0.95703951,
       0.95703951, 0.95703951, 0.95703951, 0.91215643, 0.91215643,
       0.91215643, 0.91215643, 0.8497645 , 0.8497645 , 0.8497645 ,
       0.8497645 , 0.77754676, 0.77754676, 0.77754676, 0.77754676,
       0.71330927, 0.71330927, 0.71330927, 0.71330927, 0.64997203,
       0.64997203, 0.64997203, 0.64997203, 0.60097098, 0.60097098,
       0.60097098, 0.60097098, 0.58535154, 0.58535154, 0.58535154,
       0.58535154, 0.58659819, 0.58659819, 0.58659819, 0.58659819,
       0.58934885, 0.58934885, 0.58934885, 0.58934885, 0.58736059,
       0.58736059, 0.58736059, 0.58736059, 0.57621724, 0.57621724,
       0.57621724, 0.57621724, 0.55034135, 0.55034135, 0.55034135,
       0.55034135, 0.50742676, 0.50742676, 0.50742676, 0.50742676,
       0.44761191, 0.44761191, 0.44761191, 0.44761191, 0.38816796,
       0.38816796, 0.38816796, 0.38816796, 0.35214391, 0.35214391,
       0.35214391, 0.35214391, 0.3335225 , 0.3335225 , 0.3335225 ,
       0.3335225 , 0.32286182, 0.32286182, 0.32286182, 0.32286182,
       0.30990165, 0.30990165, 0.30990165, 0.30990165, 0.26354073,
       0.26354073, 0.26354073, 0.26354073, 0.16798532, 0.16798532,
       0.16798532, 0.16798532, 0.1299533 , 0.1299533 , 0.1299533 ,
       0.1299533 , 0.12541416, 0.12541416, 0.12541416, 0.12541416,
       0.12503153, 0.12503153, 0.12503153, 0.12503153, 0.12500234,
       0.12500234, 0.12500234, 0.12500234, 0.12500017, 0.12500017,
       0.12500017, 0.12500017, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
       7.50000240e-01, 7.50000240e-01, 7.50000240e-01, 7.50000240e-01,
       7.50001825e-01, 7.50001825e-01, 7.50001825e-01, 7.50001825e-01,
       7.50012395e-01, 7.50012395e-01, 7.50012395e-01, 7.50012395e-01,
       7.50074381e-01, 7.50074381e-01, 7.50074381e-01, 7.50074381e-01,
       7.50389013e-01, 7.50389013e-01, 7.50389013e-01, 7.50389013e-01,
       7.51743396e-01, 7.51743396e-01, 7.51743396e-01, 7.51743396e-01,
       7.56564809e-01, 7.56564809e-01, 7.56564809e-01, 7.56564809e-01,
       7.70391197e-01, 7.70391197e-01, 7.70391197e-01, 7.70391197e-01,
       8.01753316e-01, 8.01753316e-01, 8.01753316e-01, 8.01753316e-01,
       8.58071057e-01, 8.58071057e-01, 8.58071057e-01, 8.58071057e-01,
       9.40417104e-01, 9.40417104e-01, 9.40417104e-01, 9.40417104e-01,
       1.03928138e+00, 1.03928138e+00, 1.03928138e+00, 1.03928138e+00,
       1.13970389e+00, 1.13970389e+00, 1.13970389e+00, 1.13970389e+00,
       1.23914812e+00, 1.23914812e+00, 1.23914812e+00, 1.23914812e+00,
       1.31054875e+00, 1.31054875e+00, 1.31054875e+00, 1.31054875e+00,
       1.34625395e+00, 1.34625395e+00, 1.34625395e+00, 1.34625395e+00,
       1.35799687e+00, 1.35799687e+00, 1.35799687e+00, 1.35799687e+00,
       1.36074574e+00, 1.36074574e+00, 1.36074574e+00, 1.36074574e+00,
       1.36111035e+00, 1.36111035e+00, 1.36111035e+00, 1.36111035e+00,
       1.36105209e+00, 1.36105209e+00, 1.36105209e+00, 1.36105209e+00,
       1.36078907e+00, 1.36078907e+00, 1.36078907e+00, 1.36078907e+00,
       1.36071354e+00, 1.36071354e+00, 1.36071354e+00, 1.36071354e+00,
       1.36126545e+00, 1.36126545e+00, 1.36126545e+00, 1.36126545e+00,
       1.36293306e+00, 1.36293306e+00, 1.36293306e+00, 1.36293306e+00,
       1.36391003e+00, 1.36391003e+00, 1.36391003e+00, 1.36391003e+00,
       1.36223548e+00, 1.36223548e+00, 1.36223548e+00, 1.36223548e+00,
       1.35001289e+00, 1.35001289e+00, 1.35001289e+00, 1.35001289e+00,
       1.28580407e+00, 1.28580407e+00, 1.28580407e+00, 1.28580407e+00,
       1.02083102e+00, 1.02083102e+00, 1.02083102e+00, 1.02083102e+00,
       3.92354167e-01, 3.92354167e-01, 3.92354167e-01, 3.92354167e-01,
       4.60233453e-02, 4.60233453e-02, 4.60233453e-02, 4.60233453e-02,
       3.61135389e-03, 3.61135389e-03, 3.61135389e-03, 3.61135389e-03,
       2.68870213e-04, 2.68870213e-04, 2.68870213e-04, 2.68870213e-04,
       1.98606715e-05, 1.98606715e-05, 1.98606715e-05, 1.98606715e-05,
       1.46364464e-06, 1.46364464e-06, 1.46364464e-06, 1.46364464e-06,
       1.07646738e-07, 1.07646738e-07, 1.07646738e-07, 1.07646738e-07,
       7.89913828e-09, 7.89913828e-09, 7.89913828e-09, 7.89913828e-09,
       5.77602003e-10, 5.77602003e-10, 5.77602003e-10, 5.77602003e-10,
       4.20009750e-11, 4.20009750e-11, 4.20009750e-11, 4.20009750e-11,
       3.02859296e-12, 3.02859296e-12, 3.02859296e-12, 3.02859296e-12,
       2.15774482e-13, 2.15774482e-13, 2.15774482e-13, 2.15774482e-13,
       1.50503680e-14, 1.50503680e-14, 1.50503680e-14, 1.50503680e-14,
       1.05328765e-15, 1.05328765e-15, 1.05328765e-15, 1.05328765e-15,
       5.90101831e-17, 5.90101831e-17, 5.90101831e-17, 5.90101831e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999997, 0.99999997,
       0.99999997, 0.99999997, 0.99999972, 0.99999972, 0.99999972,
       0.99999972, 0.99999784, 0.99999784, 0.99999784, 0.99999784,
       0.99998533, 0.99998533, 0.99998533, 0.99998533, 0.999912  ,
       0.999912  , 0.999912  , 0.999912  , 0.99953981, 0.99953981,
       0.99953981, 0.99953981, 0.99793921, 0.99793921, 0.99793921,
       0.99793921, 0.99226162, 0.99226162, 0.99226162, 0.99226162,
       0.97615575, 0.97615575, 0.97615575, 0.97615575, 0.94055943,
       0.94055943, 0.94055943, 0.94055943, 0.87968697, 0.87968697,
       0.87968697, 0.87968697, 0.7970675 , 0.7970675 , 0.7970675 ,
       0.7970675 , 0.7043173 , 0.7043173 , 0.7043173 , 0.7043173 ,
       0.62032421, 0.62032421, 0.62032421, 0.62032421, 0.54686006,
       0.54686006, 0.54686006, 0.54686006, 0.49810099, 0.49810099,
       0.49810099, 0.49810099, 0.47541418, 0.47541418, 0.47541418,
       0.47541418, 0.46923871, 0.46923871, 0.46923871, 0.46923871,
       0.46803173, 0.46803173, 0.46803173, 0.46803173, 0.46700788,
       0.46700788, 0.46700788, 0.46700788, 0.46571924, 0.46571924,
       0.46571924, 0.46571924, 0.4641767 , 0.4641767 , 0.4641767 ,
       0.4641767 , 0.46358808, 0.46358808, 0.46358808, 0.46358808,
       0.46369014, 0.46369014, 0.46369014, 0.46369014, 0.46447516,
       0.46447516, 0.46447516, 0.46447516, 0.46535017, 0.46535017,
       0.46535017, 0.46535017, 0.46498179, 0.46498179, 0.46498179,
       0.46498179, 0.45937493, 0.45937493, 0.45937493, 0.45937493,
       0.43093306, 0.43093306, 0.43093306, 0.43093306, 0.32993773,
       0.32993773, 0.32993773, 0.32993773, 0.16285786, 0.16285786,
       0.16285786, 0.16285786, 0.10621868, 0.10621868, 0.10621868,
       0.10621868, 0.10047825, 0.10047825, 0.10047825, 0.10047825,
       0.10003557, 0.10003557, 0.10003557, 0.10003557, 0.10000263,
       0.10000263, 0.10000263, 0.10000263, 0.10000019, 0.10000019,
       0.10000019, 0.10000019, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999996, 0.99999996,
       0.99999996, 0.99999996, 0.99999967, 0.99999967, 0.99999967,
       0.99999967, 0.99999762, 0.99999762, 0.99999762, 0.99999762,
       0.99998459, 0.99998459, 0.99998459, 0.99998459, 0.99991206,
       0.99991206, 0.99991206, 0.99991206, 0.99956257, 0.99956257,
       0.99956257, 0.99956257, 0.99813629, 0.99813629, 0.99813629,
       0.99813629, 0.99333466, 0.99333466, 0.99333466, 0.99333466,
       0.98037152, 0.98037152, 0.98037152, 0.98037152, 0.9528877 ,
       0.9528877 , 0.9528877 , 0.9528877 , 0.90714025, 0.90714025,
       0.90714025, 0.90714025, 0.84549133, 0.84549133, 0.84549133,
       0.84549133, 0.7755971 , 0.7755971 , 0.7755971 , 0.7755971 ,
       0.71345002, 0.71345002, 0.71345002, 0.71345002, 0.65381042,
       0.65381042, 0.65381042, 0.65381042, 0.60449037, 0.60449037,
       0.60449037, 0.60449037, 0.58459071, 0.58459071, 0.58459071,
       0.58459071, 0.58451904, 0.58451904, 0.58451904, 0.58451904,
       0.58778013, 0.58778013, 0.58778013, 0.58778013, 0.58801938,
       0.58801938, 0.58801938, 0.58801938, 0.58183243, 0.58183243,
       0.58183243, 0.58183243, 0.56319798, 0.56319798, 0.56319798,
       0.56319798, 0.52817231, 0.52817231, 0.52817231, 0.52817231,
       0.47570938, 0.47570938, 0.47570938, 0.47570938, 0.41147965,
       0.41147965, 0.41147965, 0.41147965, 0.36562289, 0.36562289,
       0.36562289, 0.36562289, 0.34085096, 0.34085096, 0.34085096,
       0.34085096, 0.32857429, 0.32857429, 0.32857429, 0.32857429,
       0.32046461, 0.32046461, 0.32046461, 0.32046461, 0.30277278,
       0.30277278, 0.30277278, 0.30277278, 0.23628223, 0.23628223,
       0.23628223, 0.23628223, 0.14837728, 0.14837728, 0.14837728,
       0.14837728, 0.12738162, 0.12738162, 0.12738162, 0.12738162,
       0.12519072, 0.12519072, 0.12519072, 0.12519072, 0.12501437,
       0.12501437, 0.12501437, 0.12501437, 0.12500107, 0.12500107,
       0.12500107, 0.12500107, 0.12500008, 0.12500008, 0.12500008,
       0.12500008, 0.12500001, 0.12500001, 0.12500001, 0.12500001,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
       7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
       7.50000390e-01, 7.50000390e-01, 7.50000390e-01, 7.50000390e-01,
       7.50002822e-01, 7.50002822e-01, 7.50002822e-01, 7.50002822e-01,
       7.50018229e-01, 7.50018229e-01, 7.50018229e-01, 7.50018229e-01,
       7.50104049e-01, 7.50104049e-01, 7.50104049e-01, 7.50104049e-01,
       7.50517585e-01, 7.50517585e-01, 7.50517585e-01, 7.50517585e-01,
       7.52205977e-01, 7.52205977e-01, 7.52205977e-01, 7.52205977e-01,
       7.57902857e-01, 7.57902857e-01, 7.57902857e-01, 7.57902857e-01,
       7.73399599e-01, 7.73399599e-01, 7.73399599e-01, 7.73399599e-01,
       8.06867047e-01, 8.06867047e-01, 8.06867047e-01, 8.06867047e-01,
       8.64509234e-01, 8.64509234e-01, 8.64509234e-01, 8.64509234e-01,
       9.46188008e-01, 9.46188008e-01, 9.46188008e-01, 9.46188008e-01,
       1.04182143e+00, 1.04182143e+00, 1.04182143e+00, 1.04182143e+00,
       1.13851947e+00, 1.13851947e+00, 1.13851947e+00, 1.13851947e+00,
       1.23521943e+00, 1.23521943e+00, 1.23521943e+00, 1.23521943e+00,
       1.30684121e+00, 1.30684121e+00, 1.30684121e+00, 1.30684121e+00,
       1.34402276e+00, 1.34402276e+00, 1.34402276e+00, 1.34402276e+00,
       1.35679818e+00, 1.35679818e+00, 1.35679818e+00, 1.35679818e+00,
       1.36042879e+00, 1.36042879e+00, 1.36042879e+00, 1.36042879e+00,
       1.36144375e+00, 1.36144375e+00, 1.36144375e+00, 1.36144375e+00,
       1.36176750e+00, 1.36176750e+00, 1.36176750e+00, 1.36176750e+00,
       1.36169308e+00, 1.36169308e+00, 1.36169308e+00, 1.36169308e+00,
       1.36111048e+00, 1.36111048e+00, 1.36111048e+00, 1.36111048e+00,
       1.36105105e+00, 1.36105105e+00, 1.36105105e+00, 1.36105105e+00,
       1.36162469e+00, 1.36162469e+00, 1.36162469e+00, 1.36162469e+00,
       1.36281678e+00, 1.36281678e+00, 1.36281678e+00, 1.36281678e+00,
       1.36293589e+00, 1.36293589e+00, 1.36293589e+00, 1.36293589e+00,
       1.35989169e+00, 1.35989169e+00, 1.35989169e+00, 1.35989169e+00,
       1.33857964e+00, 1.33857964e+00, 1.33857964e+00, 1.33857964e+00,
       1.23678480e+00, 1.23678480e+00, 1.23678480e+00, 1.23678480e+00,
       8.59426221e-01, 8.59426221e-01, 8.59426221e-01, 8.59426221e-01,
       2.22121850e-01, 2.22121850e-01, 2.22121850e-01, 2.22121850e-01,
       2.16158662e-02, 2.16158662e-02, 2.16158662e-02, 2.16158662e-02,
       1.64641832e-03, 1.64641832e-03, 1.64641832e-03, 1.64641832e-03,
       1.22204390e-04, 1.22204390e-04, 1.22204390e-04, 1.22204390e-04,
       9.04194482e-06, 9.04194482e-06, 9.04194482e-06, 9.04194482e-06,
       6.67040993e-07, 6.67040993e-07, 6.67040993e-07, 6.67040993e-07,
       4.90964691e-08, 4.90964691e-08, 4.90964691e-08, 4.90964691e-08,
       3.60523547e-09, 3.60523547e-09, 3.60523547e-09, 3.60523547e-09,
       2.63885888e-10, 2.63885888e-10, 2.63885888e-10, 2.63885888e-10,
       1.92204794e-11, 1.92204794e-11, 1.92204794e-11, 1.92204794e-11,
       1.38961104e-12, 1.38961104e-12, 1.38961104e-12, 1.38961104e-12,
       9.92868582e-14, 9.92868582e-14, 9.92868582e-14, 9.92868582e-14,
       7.03275916e-15, 7.03275916e-15, 7.03275916e-15, 7.03275916e-15,
       5.17027335e-16, 5.17027335e-16, 5.17027335e-16, 5.17027335e-16,
       3.42591394e-17, 3.42591394e-17, 3.42591394e-17, 3.42591394e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999994, 0.99999994,
       0.99999994, 0.99999994, 0.99999954, 0.99999954, 0.99999954,
       0.99999954, 0.99999666, 0.99999666, 0.99999666, 0.99999666,
       0.99997843, 0.99997843, 0.99997843, 0.99997843, 0.99987689,
       0.99987689, 0.99987689, 0.99987689, 0.99938776, 0.99938776,
       0.99938776, 0.99938776, 0.99739311, 0.99739311, 0.99739311,
       0.99739311, 0.99069162, 0.99069162, 0.99069162, 0.99069162,
       0.97268505, 0.97268505, 0.97268505, 0.97268505, 0.93486932,
       0.93486932, 0.93486932, 0.93486932, 0.87293717, 0.87293717,
       0.87293717, 0.87293717, 0.79146304, 0.79146304, 0.79146304,
       0.79146304, 0.70191535, 0.70191535, 0.70191535, 0.70191535,
       0.62102876, 0.62102876, 0.62102876, 0.62102876, 0.54957627,
       0.54957627, 0.54957627, 0.54957627, 0.50083599, 0.50083599,
       0.50083599, 0.50083599, 0.47665599, 0.47665599, 0.47665599,
       0.47665599, 0.46931339, 0.46931339, 0.46931339, 0.46931339,
       0.4680499 , 0.4680499 , 0.4680499 , 0.4680499 , 0.46732564,
       0.46732564, 0.46732564, 0.46732564, 0.46628964, 0.46628964,
       0.46628964, 0.46628964, 0.46482191, 0.46482191, 0.46482191,
       0.46482191, 0.46383924, 0.46383924, 0.46383924, 0.46383924,
       0.46359009, 0.46359009, 0.46359009, 0.46359009, 0.46381923,
       0.46381923, 0.46381923, 0.46381923, 0.46482679, 0.46482679,
       0.46482679, 0.46482679, 0.46530733, 0.46530733, 0.46530733,
       0.46530733, 0.46390266, 0.46390266, 0.46390266, 0.46390266,
       0.45436119, 0.45436119, 0.45436119, 0.45436119, 0.41039534,
       0.41039534, 0.41039534, 0.41039534, 0.27755879, 0.27755879,
       0.27755879, 0.27755879, 0.13288495, 0.13288495, 0.13288495,
       0.13288495, 0.10288468, 0.10288468, 0.10288468, 0.10288468,
       0.1002179 , 0.1002179 , 0.1002179 , 0.1002179 , 0.10001617,
       0.10001617, 0.10001617, 0.10001617, 0.1000012 , 0.1000012 ,
       0.1000012 , 0.1000012 , 0.10000009, 0.10000009, 0.10000009,
       0.10000009, 0.10000001, 0.10000001, 0.10000001, 0.10000001,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999993, 0.99999993,
       0.99999993, 0.99999993, 0.99999948, 0.99999948, 0.99999948,
       0.99999948, 0.99999639, 0.99999639, 0.99999639, 0.99999639,
       0.99997776, 0.99997776, 0.99997776, 0.99997776, 0.99987902,
       0.99987902, 0.99987902, 0.99987902, 0.99942658, 0.99942658,
       0.99942658, 0.99942658, 0.99767258, 0.99767258, 0.99767258,
       0.99767258, 0.99206839, 0.99206839, 0.99206839, 0.99206839,
       0.97770184, 0.97770184, 0.97770184, 0.97770184, 0.94867108,
       0.94867108, 0.94867108, 0.94867108, 0.90224525, 0.90224525,
       0.90224525, 0.90224525, 0.84145258, 0.84145258, 0.84145258,
       0.84145258, 0.77386505, 0.77386505, 0.77386505, 0.77386505,
       0.71340462, 0.71340462, 0.71340462, 0.71340462, 0.65703975,
       0.65703975, 0.65703975, 0.65703975, 0.60849329, 0.60849329,
       0.60849329, 0.60849329, 0.58468831, 0.58468831, 0.58468831,
       0.58468831, 0.58294187, 0.58294187, 0.58294187, 0.58294187,
       0.58573115, 0.58573115, 0.58573115, 0.58573115, 0.58763646,
       0.58763646, 0.58763646, 0.58763646, 0.58482843, 0.58482843,
       0.58482843, 0.58482843, 0.57251091, 0.57251091, 0.57251091,
       0.57251091, 0.54537817, 0.54537817, 0.54537817, 0.54537817,
       0.50073074, 0.50073074, 0.50073074, 0.50073074, 0.4391213 ,
       0.4391213 , 0.4391213 , 0.4391213 , 0.38293704, 0.38293704,
       0.38293704, 0.38293704, 0.35013347, 0.35013347, 0.35013347,
       0.35013347, 0.33368088, 0.33368088, 0.33368088, 0.33368088,
       0.32582494, 0.32582494, 0.32582494, 0.32582494, 0.31844833,
       0.31844833, 0.31844833, 0.31844833, 0.29046653, 0.29046653,
       0.29046653, 0.29046653, 0.20455633, 0.20455633, 0.20455633,
       0.20455633, 0.1372754 , 0.1372754 , 0.1372754 , 0.1372754 ,
       0.12612182, 0.12612182, 0.12612182, 0.12612182, 0.1250873 ,
       0.1250873 , 0.1250873 , 0.1250873 , 0.12500654, 0.12500654,
       0.12500654, 0.12500654, 0.12500049, 0.12500049, 0.12500049,
       0.12500049, 0.12500004, 0.12500004, 0.12500004, 0.12500004,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000010e-01, 7.50000010e-01, 7.50000010e-01, 7.50000010e-01,
       7.50000081e-01, 7.50000081e-01, 7.50000081e-01, 7.50000081e-01,
       7.50000620e-01, 7.50000620e-01, 7.50000620e-01, 7.50000620e-01,
       7.50004274e-01, 7.50004274e-01, 7.50004274e-01, 7.50004274e-01,
       7.50026313e-01, 7.50026313e-01, 7.50026313e-01, 7.50026313e-01,
       7.50143141e-01, 7.50143141e-01, 7.50143141e-01, 7.50143141e-01,
       7.50678514e-01, 7.50678514e-01, 7.50678514e-01, 7.50678514e-01,
       7.52755312e-01, 7.52755312e-01, 7.52755312e-01, 7.52755312e-01,
       7.59409383e-01, 7.59409383e-01, 7.59409383e-01, 7.59409383e-01,
       7.76615231e-01, 7.76615231e-01, 7.76615231e-01, 7.76615231e-01,
       8.12080151e-01, 8.12080151e-01, 8.12080151e-01, 8.12080151e-01,
       8.70817643e-01, 8.70817643e-01, 8.70817643e-01, 8.70817643e-01,
       9.51667486e-01, 9.51667486e-01, 9.51667486e-01, 9.51667486e-01,
       1.04421860e+00, 1.04421860e+00, 1.04421860e+00, 1.04421860e+00,
       1.13749267e+00, 1.13749267e+00, 1.13749267e+00, 1.13749267e+00,
       1.23129415e+00, 1.23129415e+00, 1.23129415e+00, 1.23129415e+00,
       1.30304219e+00, 1.30304219e+00, 1.30304219e+00, 1.30304219e+00,
       1.34192905e+00, 1.34192905e+00, 1.34192905e+00, 1.34192905e+00,
       1.35567521e+00, 1.35567521e+00, 1.35567521e+00, 1.35567521e+00,
       1.35980921e+00, 1.35980921e+00, 1.35980921e+00, 1.35980921e+00,
       1.36138601e+00, 1.36138601e+00, 1.36138601e+00, 1.36138601e+00,
       1.36219441e+00, 1.36219441e+00, 1.36219441e+00, 1.36219441e+00,
       1.36249996e+00, 1.36249996e+00, 1.36249996e+00, 1.36249996e+00,
       1.36190367e+00, 1.36190367e+00, 1.36190367e+00, 1.36190367e+00,
       1.36127546e+00, 1.36127546e+00, 1.36127546e+00, 1.36127546e+00,
       1.36128875e+00, 1.36128875e+00, 1.36128875e+00, 1.36128875e+00,
       1.36152144e+00, 1.36152144e+00, 1.36152144e+00, 1.36152144e+00,
       1.36239947e+00, 1.36239947e+00, 1.36239947e+00, 1.36239947e+00,
       1.36213183e+00, 1.36213183e+00, 1.36213183e+00, 1.36213183e+00,
       1.35586085e+00, 1.35586085e+00, 1.35586085e+00, 1.35586085e+00,
       1.32010356e+00, 1.32010356e+00, 1.32010356e+00, 1.32010356e+00,
       1.16287547e+00, 1.16287547e+00, 1.16287547e+00, 1.16287547e+00,
       6.61162492e-01, 6.61162492e-01, 6.61162492e-01, 6.61162492e-01,
       1.16351678e-01, 1.16351678e-01, 1.16351678e-01, 1.16351678e-01,
       9.97096672e-03, 9.97096672e-03, 9.97096672e-03, 9.97096672e-03,
       7.48552643e-04, 7.48552643e-04, 7.48552643e-04, 7.48552643e-04,
       5.55786565e-05, 5.55786565e-05, 5.55786565e-05, 5.55786565e-05,
       4.11419588e-06, 4.11419588e-06, 4.11419588e-06, 4.11419588e-06,
       3.03837917e-07, 3.03837917e-07, 3.03837917e-07, 3.03837917e-07,
       2.23849014e-08, 2.23849014e-08, 2.23849014e-08, 2.23849014e-08,
       1.64507675e-09, 1.64507675e-09, 1.64507675e-09, 1.64507675e-09,
       1.20527942e-10, 1.20527942e-10, 1.20527942e-10, 1.20527942e-10,
       8.79167161e-12, 8.79167161e-12, 8.79167161e-12, 8.79167161e-12,
       6.36916518e-13, 6.36916518e-13, 6.36916518e-13, 6.36916518e-13,
       4.58094779e-14, 4.58094779e-14, 4.58094779e-14, 4.58094779e-14,
       3.28064473e-15, 3.28064473e-15, 3.28064473e-15, 3.28064473e-15,
       2.21511670e-16, 2.21511670e-16, 2.21511670e-16, 2.21511670e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.9999999 , 0.9999999 ,
       0.9999999 , 0.9999999 , 0.99999927, 0.99999927, 0.99999927,
       0.99999927, 0.99999494, 0.99999494, 0.99999494, 0.99999494,
       0.99996887, 0.99996887, 0.99996887, 0.99996887, 0.99983065,
       0.99983065, 0.99983065, 0.99983065, 0.99919747, 0.99919747,
       0.99919747, 0.99919747, 0.99674497, 0.99674497, 0.99674497,
       0.99674497, 0.98892685, 0.98892685, 0.98892685, 0.98892685,
       0.96898818, 0.96898818, 0.96898818, 0.96898818, 0.92909988,
       0.92909988, 0.92909988, 0.92909988, 0.86636274, 0.86636274,
       0.86636274, 0.86636274, 0.7861649 , 0.7861649 , 0.7861649 ,
       0.7861649 , 0.69970743, 0.69970743, 0.69970743, 0.69970743,
       0.62175522, 0.62175522, 0.62175522, 0.62175522, 0.55208192,
       0.55208192, 0.55208192, 0.55208192, 0.50351395, 0.50351395,
       0.50351395, 0.50351395, 0.47813801, 0.47813801, 0.47813801,
       0.47813801, 0.46954374, 0.46954374, 0.46954374, 0.46954374,
       0.46791496, 0.46791496, 0.46791496, 0.46791496, 0.46740496,
       0.46740496, 0.46740496, 0.46740496, 0.466675  , 0.466675  ,
       0.466675  , 0.466675  , 0.46544862, 0.46544862, 0.46544862,
       0.46544862, 0.46432762, 0.46432762, 0.46432762, 0.46432762,
       0.46372285, 0.46372285, 0.46372285, 0.46372285, 0.46365147,
       0.46365147, 0.46365147, 0.46365147, 0.46418465, 0.46418465,
       0.46418465, 0.46418465, 0.46505548, 0.46505548, 0.46505548,
       0.46505548, 0.46493934, 0.46493934, 0.46493934, 0.46493934,
       0.46223591, 0.46223591, 0.46223591, 0.46223591, 0.44656565,
       0.44656565, 0.44656565, 0.44656565, 0.38108891, 0.38108891,
       0.38108891, 0.38108891, 0.22238569, 0.22238569, 0.22238569,
       0.22238569, 0.11633052, 0.11633052, 0.11633052, 0.11633052,
       0.10132364, 0.10132364, 0.10132364, 0.10132364, 0.10009904,
       0.10009904, 0.10009904, 0.10009904, 0.10000735, 0.10000735,
       0.10000735, 0.10000735, 0.10000054, 0.10000054, 0.10000054,
       0.10000054, 0.10000004, 0.10000004, 0.10000004, 0.10000004,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999989, 0.99999989,
       0.99999989, 0.99999989, 0.99999918, 0.99999918, 0.99999918,
       0.99999918, 0.99999463, 0.99999463, 0.99999463, 0.99999463,
       0.99996845, 0.99996845, 0.99996845, 0.99996845, 0.99983612,
       0.99983612, 0.99983612, 0.99983612, 0.9992586 , 0.9992586 ,
       0.9992586 , 0.9992586 , 0.99712842, 0.99712842, 0.99712842,
       0.99712842, 0.99065816, 0.99065816, 0.99065816, 0.99065816,
       0.97487697, 0.97487697, 0.97487697, 0.97487697, 0.94441074,
       0.94441074, 0.94441074, 0.94441074, 0.89748102, 0.89748102,
       0.89748102, 0.89748102, 0.83763755, 0.83763755, 0.83763755,
       0.83763755, 0.77233781, 0.77233781, 0.77233781, 0.77233781,
       0.7132907 , 0.7132907 , 0.7132907 , 0.7132907 , 0.65963706,
       0.65963706, 0.65963706, 0.65963706, 0.612651  , 0.612651  ,
       0.612651  , 0.612651  , 0.5857125 , 0.5857125 , 0.5857125 ,
       0.5857125 , 0.58169792, 0.58169792, 0.58169792, 0.58169792,
       0.5836328 , 0.5836328 , 0.5836328 , 0.5836328 , 0.58674094,
       0.58674094, 0.58674094, 0.58674094, 0.58596439, 0.58596439,
       0.58596439, 0.58596439, 0.57862616, 0.57862616, 0.57862616,
       0.57862616, 0.55885909, 0.55885909, 0.55885909, 0.55885909,
       0.52235302, 0.52235302, 0.52235302, 0.52235302, 0.46790255,
       0.46790255, 0.46790255, 0.46790255, 0.40461805, 0.40461805,
       0.40461805, 0.40461805, 0.36237207, 0.36237207, 0.36237207,
       0.36237207, 0.33984239, 0.33984239, 0.33984239, 0.33984239,
       0.32970398, 0.32970398, 0.32970398, 0.32970398, 0.32449566,
       0.32449566, 0.32449566, 0.32449566, 0.31491343, 0.31491343,
       0.31491343, 0.31491343, 0.2715366 , 0.2715366 , 0.2715366 ,
       0.2715366 , 0.17519676, 0.17519676, 0.17519676, 0.17519676,
       0.13110272, 0.13110272, 0.13110272, 0.13110272, 0.12551958,
       0.12551958, 0.12551958, 0.12551958, 0.12503987, 0.12503987,
       0.12503987, 0.12503987, 0.12500298, 0.12500298, 0.12500298,
       0.12500298, 0.12500022, 0.12500022, 0.12500022, 0.12500022,
       0.12500002, 0.12500002, 0.12500002, 0.12500002, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000016e-01, 7.50000016e-01, 7.50000016e-01, 7.50000016e-01,
       7.50000132e-01, 7.50000132e-01, 7.50000132e-01, 7.50000132e-01,
       7.50000966e-01, 7.50000966e-01, 7.50000966e-01, 7.50000966e-01,
       7.50006351e-01, 7.50006351e-01, 7.50006351e-01, 7.50006351e-01,
       7.50037333e-01, 7.50037333e-01, 7.50037333e-01, 7.50037333e-01,
       7.50193899e-01, 7.50193899e-01, 7.50193899e-01, 7.50193899e-01,
       7.50877324e-01, 7.50877324e-01, 7.50877324e-01, 7.50877324e-01,
       7.53400222e-01, 7.53400222e-01, 7.53400222e-01, 7.53400222e-01,
       7.61089231e-01, 7.61089231e-01, 7.61089231e-01, 7.61089231e-01,
       7.80026437e-01, 7.80026437e-01, 7.80026437e-01, 7.80026437e-01,
       8.17367158e-01, 8.17367158e-01, 8.17367158e-01, 8.17367158e-01,
       8.76981911e-01, 8.76981911e-01, 8.76981911e-01, 8.76981911e-01,
       9.56868187e-01, 9.56868187e-01, 9.56868187e-01, 9.56868187e-01,
       1.04646915e+00, 1.04646915e+00, 1.04646915e+00, 1.04646915e+00,
       1.13664890e+00, 1.13664890e+00, 1.13664890e+00, 1.13664890e+00,
       1.22747197e+00, 1.22747197e+00, 1.22747197e+00, 1.22747197e+00,
       1.29906860e+00, 1.29906860e+00, 1.29906860e+00, 1.29906860e+00,
       1.33980440e+00, 1.33980440e+00, 1.33980440e+00, 1.33980440e+00,
       1.35473761e+00, 1.35473761e+00, 1.35473761e+00, 1.35473761e+00,
       1.35912884e+00, 1.35912884e+00, 1.35912884e+00, 1.35912884e+00,
       1.36103279e+00, 1.36103279e+00, 1.36103279e+00, 1.36103279e+00,
       1.36224006e+00, 1.36224006e+00, 1.36224006e+00, 1.36224006e+00,
       1.36307271e+00, 1.36307271e+00, 1.36307271e+00, 1.36307271e+00,
       1.36277930e+00, 1.36277930e+00, 1.36277930e+00, 1.36277930e+00,
       1.36186954e+00, 1.36186954e+00, 1.36186954e+00, 1.36186954e+00,
       1.36140807e+00, 1.36140807e+00, 1.36140807e+00, 1.36140807e+00,
       1.36104332e+00, 1.36104332e+00, 1.36104332e+00, 1.36104332e+00,
       1.36139643e+00, 1.36139643e+00, 1.36139643e+00, 1.36139643e+00,
       1.36210857e+00, 1.36210857e+00, 1.36210857e+00, 1.36210857e+00,
       1.36065559e+00, 1.36065559e+00, 1.36065559e+00, 1.36065559e+00,
       1.34903815e+00, 1.34903815e+00, 1.34903815e+00, 1.34903815e+00,
       1.29211103e+00, 1.29211103e+00, 1.29211103e+00, 1.29211103e+00,
       1.05539569e+00, 1.05539569e+00, 1.05539569e+00, 1.05539569e+00,
       4.48123192e-01, 4.48123192e-01, 4.48123192e-01, 4.48123192e-01,
       5.68576756e-02, 5.68576756e-02, 5.68576756e-02, 5.68576756e-02,
       4.54568441e-03, 4.54568441e-03, 4.54568441e-03, 4.54568441e-03,
       3.40320288e-04, 3.40320288e-04, 3.40320288e-04, 3.40320288e-04,
       2.52658640e-05, 2.52658640e-05, 2.52658640e-05, 2.52658640e-05,
       1.87162703e-06, 1.87162703e-06, 1.87162703e-06, 1.87162703e-06,
       1.38344702e-07, 1.38344702e-07, 1.38344702e-07, 1.38344702e-07,
       1.02018842e-08, 1.02018842e-08, 1.02018842e-08, 1.02018842e-08,
       7.50419983e-10, 7.50419983e-10, 7.50419983e-10, 7.50419983e-10,
       5.50338981e-11, 5.50338981e-11, 5.50338981e-11, 5.50338981e-11,
       4.01951569e-12, 4.01951569e-12, 4.01951569e-12, 4.01951569e-12,
       2.91936804e-13, 2.91936804e-13, 2.91936804e-13, 2.91936804e-13,
       2.11199253e-14, 2.11199253e-14, 2.11199253e-14, 2.11199253e-14,
       1.47398293e-15, 1.47398293e-15, 1.47398293e-15, 1.47398293e-15,
       9.45362951e-17, 9.45362951e-17, 9.45362951e-17, 9.45362951e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999984, 0.99999984,
       0.99999984, 0.99999984, 0.99999886, 0.99999886, 0.99999886,
       0.99999886, 0.99999249, 0.99999249, 0.99999249, 0.99999249,
       0.99995583, 0.99995583, 0.99995583, 0.99995583, 0.9997706 ,
       0.9997706 , 0.9997706 , 0.9997706 , 0.99896245, 0.99896245,
       0.99896245, 0.99896245, 0.9959846 , 0.9959846 , 0.9959846 ,
       0.9959846 , 0.98696264, 0.98696264, 0.98696264, 0.98696264,
       0.96508085, 0.96508085, 0.96508085, 0.96508085, 0.92328027,
       0.92328027, 0.92328027, 0.92328027, 0.85997549, 0.85997549,
       0.85997549, 0.85997549, 0.78115703, 0.78115703, 0.78115703,
       0.78115703, 0.69766029, 0.69766029, 0.69766029, 0.69766029,
       0.62252492, 0.62252492, 0.62252492, 0.62252492, 0.55444993,
       0.55444993, 0.55444993, 0.55444993, 0.50606466, 0.50606466,
       0.50606466, 0.50606466, 0.4797491 , 0.4797491 , 0.4797491 ,
       0.4797491 , 0.47000142, 0.47000142, 0.47000142, 0.47000142,
       0.46778259, 0.46778259, 0.46778259, 0.46778259, 0.46731388,
       0.46731388, 0.46731388, 0.46731388, 0.46681772, 0.46681772,
       0.46681772, 0.46681772, 0.46594134, 0.46594134, 0.46594134,
       0.46594134, 0.46489255, 0.46489255, 0.46489255, 0.46489255,
       0.46406793, 0.46406793, 0.46406793, 0.46406793, 0.46371733,
       0.46371733, 0.46371733, 0.46371733, 0.46392827, 0.46392827,
       0.46392827, 0.46392827, 0.46457704, 0.46457704, 0.46457704,
       0.46457704, 0.4649299 , 0.4649299 , 0.4649299 , 0.4649299 ,
       0.464449  , 0.464449  , 0.464449  , 0.464449  , 0.45965373,
       0.45965373, 0.45965373, 0.45965373, 0.43413396, 0.43413396,
       0.43413396, 0.43413396, 0.3417067 , 0.3417067 , 0.3417067 ,
       0.3417067 , 0.17380695, 0.17380695, 0.17380695, 0.17380695,
       0.10772404, 0.10772404, 0.10772404, 0.10772404, 0.10060218,
       0.10060218, 0.10060218, 0.10060218, 0.10004502, 0.10004502,
       0.10004502, 0.10004502, 0.10000334, 0.10000334, 0.10000334,
       0.10000334, 0.10000025, 0.10000025, 0.10000025, 0.10000025,
       0.10000002, 0.10000002, 0.10000002, 0.10000002, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999982, 0.99999982,
       0.99999982, 0.99999982, 0.99999875, 0.99999875, 0.99999875,
       0.99999875, 0.99999216, 0.99999216, 0.99999216, 0.99999216,
       0.99995594, 0.99995594, 0.99995594, 0.99995594, 0.99978118,
       0.99978118, 0.99978118, 0.99978118, 0.99905363, 0.99905363,
       0.99905363, 0.99905363, 0.99649673, 0.99649673, 0.99649673,
       0.99649673, 0.98910195, 0.98910195, 0.98910195, 0.98910195,
       0.97190917, 0.97190917, 0.97190917, 0.97190917, 0.94012653,
       0.94012653, 0.94012653, 0.94012653, 0.89285479, 0.89285479,
       0.89285479, 0.89285479, 0.83403394, 0.83403394, 0.83403394,
       0.83403394, 0.77099739, 0.77099739, 0.77099739, 0.77099739,
       0.71316881, 0.71316881, 0.71316881, 0.71316881, 0.66167639,
       0.66167639, 0.66167639, 0.66167639, 0.61669901, 0.61669901,
       0.61669901, 0.61669901, 0.58751731, 0.58751731, 0.58751731,
       0.58751731, 0.58088401, 0.58088401, 0.58088401, 0.58088401,
       0.58197653, 0.58197653, 0.58197653, 0.58197653, 0.58530083,
       0.58530083, 0.58530083, 0.58530083, 0.58593749, 0.58593749,
       0.58593749, 0.58593749, 0.58219521, 0.58219521, 0.58219521,
       0.58219521, 0.56871482, 0.56871482, 0.56871482, 0.56871482,
       0.54028566, 0.54028566, 0.54028566, 0.54028566, 0.49391932,
       0.49391932, 0.49391932, 0.49391932, 0.43125951, 0.43125951,
       0.43125951, 0.43125951, 0.37842572, 0.37842572, 0.37842572,
       0.37842572, 0.34810948, 0.34810948, 0.34810948, 0.34810948,
       0.33368361, 0.33368361, 0.33368361, 0.33368361, 0.32786563,
       0.32786563, 0.32786563, 0.32786563, 0.32355452, 0.32355452,
       0.32355452, 0.32355452, 0.30821032, 0.30821032, 0.30821032,
       0.30821032, 0.24538437, 0.24538437, 0.24538437, 0.24538437,
       0.15274327, 0.15274327, 0.15274327, 0.15274327, 0.12792757,
       0.12792757, 0.12792757, 0.12792757, 0.12523902, 0.12523902,
       0.12523902, 0.12523902, 0.12501814, 0.12501814, 0.12501814,
       0.12501814, 0.12500135, 0.12500135, 0.12500135, 0.12500135,
       0.1250001 , 0.1250001 , 0.1250001 , 0.1250001 , 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000028e-01, 7.50000028e-01, 7.50000028e-01, 7.50000028e-01,
       7.50000211e-01, 7.50000211e-01, 7.50000211e-01, 7.50000211e-01,
       7.50001474e-01, 7.50001474e-01, 7.50001474e-01, 7.50001474e-01,
       7.50009273e-01, 7.50009273e-01, 7.50009273e-01, 7.50009273e-01,
       7.50052129e-01, 7.50052129e-01, 7.50052129e-01, 7.50052129e-01,
       7.50258907e-01, 7.50258907e-01, 7.50258907e-01, 7.50258907e-01,
       7.51119944e-01, 7.51119944e-01, 7.51119944e-01, 7.51119944e-01,
       7.54149241e-01, 7.54149241e-01, 7.54149241e-01, 7.54149241e-01,
       7.62945461e-01, 7.62945461e-01, 7.62945461e-01, 7.62945461e-01,
       7.83619793e-01, 7.83619793e-01, 7.83619793e-01, 7.83619793e-01,
       8.22703779e-01, 8.22703779e-01, 8.22703779e-01, 8.22703779e-01,
       8.82990632e-01, 8.82990632e-01, 8.82990632e-01, 8.82990632e-01,
       9.61803322e-01, 9.61803322e-01, 9.61803322e-01, 9.61803322e-01,
       1.04857800e+00, 1.04857800e+00, 1.04857800e+00, 1.04857800e+00,
       1.13591034e+00, 1.13591034e+00, 1.13591034e+00, 1.13591034e+00,
       1.22389255e+00, 1.22389255e+00, 1.22389255e+00, 1.22389255e+00,
       1.29496803e+00, 1.29496803e+00, 1.29496803e+00, 1.29496803e+00,
       1.33747715e+00, 1.33747715e+00, 1.33747715e+00, 1.33747715e+00,
       1.35392574e+00, 1.35392574e+00, 1.35392574e+00, 1.35392574e+00,
       1.35857156e+00, 1.35857156e+00, 1.35857156e+00, 1.35857156e+00,
       1.36055928e+00, 1.36055928e+00, 1.36055928e+00, 1.36055928e+00,
       1.36197585e+00, 1.36197585e+00, 1.36197585e+00, 1.36197585e+00,
       1.36328541e+00, 1.36328541e+00, 1.36328541e+00, 1.36328541e+00,
       1.36343618e+00, 1.36343618e+00, 1.36343618e+00, 1.36343618e+00,
       1.36275200e+00, 1.36275200e+00, 1.36275200e+00, 1.36275200e+00,
       1.36185315e+00, 1.36185315e+00, 1.36185315e+00, 1.36185315e+00,
       1.36106906e+00, 1.36106906e+00, 1.36106906e+00, 1.36106906e+00,
       1.36076174e+00, 1.36076174e+00, 1.36076174e+00, 1.36076174e+00,
       1.36153615e+00, 1.36153615e+00, 1.36153615e+00, 1.36153615e+00,
       1.36145251e+00, 1.36145251e+00, 1.36145251e+00, 1.36145251e+00,
       1.35798352e+00, 1.35798352e+00, 1.35798352e+00, 1.35798352e+00,
       1.33896458e+00, 1.33896458e+00, 1.33896458e+00, 1.33896458e+00,
       1.24901222e+00, 1.24901222e+00, 1.24901222e+00, 1.24901222e+00,
       9.05845095e-01, 9.05845095e-01, 9.05845095e-01, 9.05845095e-01,
       2.60939488e-01, 2.60939488e-01, 2.60939488e-01, 2.60939488e-01,
       2.66949863e-02, 2.66949863e-02, 2.66949863e-02, 2.66949863e-02,
       2.06759900e-03, 2.06759900e-03, 2.06759900e-03, 2.06759900e-03,
       1.54404335e-04, 1.54404335e-04, 1.54404335e-04, 1.54404335e-04,
       1.14811015e-05, 1.14811015e-05, 1.14811015e-05, 1.14811015e-05,
       8.51232178e-07, 8.51232178e-07, 8.51232178e-07, 8.51232178e-07,
       6.29700498e-08, 6.29700498e-08, 6.29700498e-08, 6.29700498e-08,
       4.64771793e-09, 4.64771793e-09, 4.64771793e-09, 4.64771793e-09,
       3.42187413e-10, 3.42187413e-10, 3.42187413e-10, 3.42187413e-10,
       2.51200466e-11, 2.51200466e-11, 2.51200466e-11, 2.51200466e-11,
       1.83703667e-12, 1.83703667e-12, 1.83703667e-12, 1.83703667e-12,
       1.33855888e-13, 1.33855888e-13, 1.33855888e-13, 1.33855888e-13,
       9.58591565e-15, 9.58591565e-15, 9.58591565e-15, 9.58591565e-15,
       6.58015436e-16, 6.58015436e-16, 6.58015436e-16, 6.58015436e-16,
       4.63362200e-17, 4.63362200e-17, 4.63362200e-17, 4.63362200e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.99999975, 0.99999975,
       0.99999975, 0.99999975, 0.99999826, 0.99999826, 0.99999826,
       0.99999826, 0.99998903, 0.99998903, 0.99998903, 0.99998903,
       0.99993832, 0.99993832, 0.99993832, 0.99993832, 0.9996937 ,
       0.9996937 , 0.9996937 , 0.9996937 , 0.9986757 , 0.9986757 ,
       0.9986757 , 0.9986757 , 0.99510219, 0.99510219, 0.99510219,
       0.99510219, 0.98479658, 0.98479658, 0.98479658, 0.98479658,
       0.96098067, 0.96098067, 0.96098067, 0.96098067, 0.91743778,
       0.91743778, 0.91743778, 0.91743778, 0.85378402, 0.85378402,
       0.85378402, 0.85378402, 0.7764234 , 0.7764234 , 0.7764234 ,
       0.7764234 , 0.69575388, 0.69575388, 0.69575388, 0.69575388,
       0.62328396, 0.62328396, 0.62328396, 0.62328396, 0.55678008,
       0.55678008, 0.55678008, 0.55678008, 0.50850264, 0.50850264,
       0.50850264, 0.50850264, 0.48137473, 0.48137473, 0.48137473,
       0.48137473, 0.47065375, 0.47065375, 0.47065375, 0.47065375,
       0.46777062, 0.46777062, 0.46777062, 0.46777062, 0.46716399,
       0.46716399, 0.46716399, 0.46716399, 0.46676886, 0.46676886,
       0.46676886, 0.46676886, 0.46619345, 0.46619345, 0.46619345,
       0.46619345, 0.46537137, 0.46537137, 0.46537137, 0.46537137,
       0.46458172, 0.46458172, 0.46458172, 0.46458172, 0.46395933,
       0.46395933, 0.46395933, 0.46395933, 0.46392493, 0.46392493,
       0.46392493, 0.46392493, 0.46425901, 0.46425901, 0.46425901,
       0.46425901, 0.46466477, 0.46466477, 0.46466477, 0.46466477,
       0.46482226, 0.46482226, 0.46482226, 0.46482226, 0.46376334,
       0.46376334, 0.46376334, 0.46376334, 0.45509168, 0.45509168,
       0.45509168, 0.45509168, 0.41543057, 0.41543057, 0.41543057,
       0.41543057, 0.29185634, 0.29185634, 0.29185634, 0.29185634,
       0.13928365, 0.13928365, 0.13928365, 0.13928365, 0.10357133,
       0.10357133, 0.10357133, 0.10357133, 0.10027368, 0.10027368,
       0.10027368, 0.10027368, 0.10002043, 0.10002043, 0.10002043,
       0.10002043, 0.10000152, 0.10000152, 0.10000152, 0.10000152,
       0.10000011, 0.10000011, 0.10000011, 0.10000011, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999996,
       0.99999996, 0.99999996, 0.99999996, 0.99999972, 0.99999972,
       0.99999972, 0.99999972, 0.99999813, 0.99999813, 0.99999813,
       0.99999813, 0.99998874, 0.99998874, 0.99998874, 0.99998874,
       0.99993939, 0.99993939, 0.99993939, 0.99993939, 0.99971172,
       0.99971172, 0.99971172, 0.99971172, 0.99880638, 0.99880638,
       0.99880638, 0.99880638, 0.99577085, 0.99577085, 0.99577085,
       0.99577085, 0.98739937, 0.98739937, 0.98739937, 0.98739937,
       0.96881177, 0.96881177, 0.96881177, 0.96881177, 0.93583686,
       0.93583686, 0.93583686, 0.93583686, 0.88837163, 0.88837163,
       0.88837163, 0.88837163, 0.83062885, 0.83062885, 0.83062885,
       0.83062885, 0.76981937, 0.76981937, 0.76981937, 0.76981937,
       0.71310496, 0.71310496, 0.71310496, 0.71310496, 0.66323748,
       0.66323748, 0.66323748, 0.66323748, 0.62045416, 0.62045416,
       0.62045416, 0.62045416, 0.58992516, 0.58992516, 0.58992516,
       0.58992516, 0.58052011, 0.58052011, 0.58052011, 0.58052011,
       0.58080503, 0.58080503, 0.58080503, 0.58080503, 0.58354665,
       0.58354665, 0.58354665, 0.58354665, 0.58540693, 0.58540693,
       0.58540693, 0.58540693, 0.58382526, 0.58382526, 0.58382526,
       0.58382526, 0.57540774, 0.57540774, 0.57540774, 0.57540774,
       0.55436649, 0.55436649, 0.55436649, 0.55436649, 0.51638779,
       0.51638779, 0.51638779, 0.51638779, 0.46017314, 0.46017314,
       0.46017314, 0.46017314, 0.39863657, 0.39863657, 0.39863657,
       0.39863657, 0.3593355 , 0.3593355 , 0.3593355 , 0.3593355 ,
       0.33897034, 0.33897034, 0.33897034, 0.33897034, 0.33057608,
       0.33057608, 0.33057608, 0.33057608, 0.32697565, 0.32697565,
       0.32697565, 0.32697565, 0.32222492, 0.32222492, 0.32222492,
       0.32222492, 0.29663114, 0.29663114, 0.29663114, 0.29663114,
       0.21326785, 0.21326785, 0.21326785, 0.21326785, 0.13963631,
       0.13963631, 0.13963631, 0.13963631, 0.12638405, 0.12638405,
       0.12638405, 0.12638405, 0.12510904, 0.12510904, 0.12510904,
       0.12510904, 0.12500824, 0.12500824, 0.12500824, 0.12500824,
       0.12500062, 0.12500062, 0.12500062, 0.12500062, 0.12500005,
       0.12500005, 0.12500005, 0.12500005, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000006e-01, 7.50000006e-01, 7.50000006e-01, 7.50000006e-01,
       7.50000045e-01, 7.50000045e-01, 7.50000045e-01, 7.50000045e-01,
       7.50000331e-01, 7.50000331e-01, 7.50000331e-01, 7.50000331e-01,
       7.50002210e-01, 7.50002210e-01, 7.50002210e-01, 7.50002210e-01,
       7.50013317e-01, 7.50013317e-01, 7.50013317e-01, 7.50013317e-01,
       7.50071715e-01, 7.50071715e-01, 7.50071715e-01, 7.50071715e-01,
       7.50341105e-01, 7.50341105e-01, 7.50341105e-01, 7.50341105e-01,
       7.51412648e-01, 7.51412648e-01, 7.51412648e-01, 7.51412648e-01,
       7.55010444e-01, 7.55010444e-01, 7.55010444e-01, 7.55010444e-01,
       7.64979298e-01, 7.64979298e-01, 7.64979298e-01, 7.64979298e-01,
       7.87380429e-01, 7.87380429e-01, 7.87380429e-01, 7.87380429e-01,
       8.28067152e-01, 8.28067152e-01, 8.28067152e-01, 8.28067152e-01,
       8.88835090e-01, 8.88835090e-01, 8.88835090e-01, 8.88835090e-01,
       9.66485823e-01, 9.66485823e-01, 9.66485823e-01, 9.66485823e-01,
       1.05055852e+00, 1.05055852e+00, 1.05055852e+00, 1.05055852e+00,
       1.13522481e+00, 1.13522481e+00, 1.13522481e+00, 1.13522481e+00,
       1.22058953e+00, 1.22058953e+00, 1.22058953e+00, 1.22058953e+00,
       1.29086599e+00, 1.29086599e+00, 1.29086599e+00, 1.29086599e+00,
       1.33487117e+00, 1.33487117e+00, 1.33487117e+00, 1.33487117e+00,
       1.35308250e+00, 1.35308250e+00, 1.35308250e+00, 1.35308250e+00,
       1.35819700e+00, 1.35819700e+00, 1.35819700e+00, 1.35819700e+00,
       1.36011186e+00, 1.36011186e+00, 1.36011186e+00, 1.36011186e+00,
       1.36156806e+00, 1.36156806e+00, 1.36156806e+00, 1.36156806e+00,
       1.36315058e+00, 1.36315058e+00, 1.36315058e+00, 1.36315058e+00,
       1.36379727e+00, 1.36379727e+00, 1.36379727e+00, 1.36379727e+00,
       1.36351067e+00, 1.36351067e+00, 1.36351067e+00, 1.36351067e+00,
       1.36261248e+00, 1.36261248e+00, 1.36261248e+00, 1.36261248e+00,
       1.36146436e+00, 1.36146436e+00, 1.36146436e+00, 1.36146436e+00,
       1.36063916e+00, 1.36063916e+00, 1.36063916e+00, 1.36063916e+00,
       1.36092008e+00, 1.36092008e+00, 1.36092008e+00, 1.36092008e+00,
       1.36127360e+00, 1.36127360e+00, 1.36127360e+00, 1.36127360e+00,
       1.36020110e+00, 1.36020110e+00, 1.36020110e+00, 1.36020110e+00,
       1.35450702e+00, 1.35450702e+00, 1.35450702e+00, 1.35450702e+00,
       1.32300030e+00, 1.32300030e+00, 1.32300030e+00, 1.32300030e+00,
       1.18237908e+00, 1.18237908e+00, 1.18237908e+00, 1.18237908e+00,
       7.15441717e-01, 7.15441717e-01, 7.15441717e-01, 7.15441717e-01,
       1.38769905e-01, 1.38769905e-01, 1.38769905e-01, 1.38769905e-01,
       1.23577720e-02, 1.23577720e-02, 1.23577720e-02, 1.23577720e-02,
       9.36224416e-04, 9.36224416e-04, 9.36224416e-04, 9.36224416e-04,
       7.00272710e-05, 7.00272710e-05, 7.00272710e-05, 7.00272710e-05,
       5.21364262e-06, 5.21364262e-06, 5.21364262e-06, 5.21364262e-06,
       3.86975587e-07, 3.86975587e-07, 3.86975587e-07, 3.86975587e-07,
       2.86533268e-08, 2.86533268e-08, 2.86533268e-08, 2.86533268e-08,
       2.11667470e-09, 2.11667470e-09, 2.11667470e-09, 2.11667470e-09,
       1.55981163e-10, 1.55981163e-10, 1.55981163e-10, 1.55981163e-10,
       1.14620004e-11, 1.14620004e-11, 1.14620004e-11, 1.14620004e-11,
       8.39464394e-13, 8.39464394e-13, 8.39464394e-13, 8.39464394e-13,
       6.10879150e-14, 6.10879150e-14, 6.10879150e-14, 6.10879150e-14,
       4.40544803e-15, 4.40544803e-15, 4.40544803e-15, 4.40544803e-15,
       3.15470277e-16, 3.15470277e-16, 3.15470277e-16, 3.15470277e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
       0.99999995, 0.99999995, 0.99999995, 0.99999961, 0.99999961,
       0.99999961, 0.99999961, 0.99999739, 0.99999739, 0.99999739,
       0.99999739, 0.99998424, 0.99998424, 0.99998424, 0.99998424,
       0.99991515, 0.99991515, 0.99991515, 0.99991515, 0.99959648,
       0.99959648, 0.99959648, 0.99959648, 0.99832987, 0.99832987,
       0.99832987, 0.99832987, 0.99408857, 0.99408857, 0.99408857,
       0.99408857, 0.98242851, 0.98242851, 0.98242851, 0.98242851,
       0.95670672, 0.95670672, 0.95670672, 0.95670672, 0.91159757,
       0.91159757, 0.91159757, 0.91159757, 0.8477941 , 0.8477941 ,
       0.8477941 , 0.8477941 , 0.77194869, 0.77194869, 0.77194869,
       0.77194869, 0.69397675, 0.69397675, 0.69397675, 0.69397675,
       0.62399737, 0.62399737, 0.62399737, 0.62399737, 0.55909955,
       0.55909955, 0.55909955, 0.55909955, 0.51089525, 0.51089525,
       0.51089525, 0.51089525, 0.48295725, 0.48295725, 0.48295725,
       0.48295725, 0.47140761, 0.47140761, 0.47140761, 0.47140761,
       0.46792021, 0.46792021, 0.46792021, 0.46792021, 0.46704157,
       0.46704157, 0.46704157, 0.46704157, 0.46664044, 0.46664044,
       0.46664044, 0.46664044, 0.46622055, 0.46622055, 0.46622055,
       0.46622055, 0.46568048, 0.46568048, 0.46568048, 0.46568048,
       0.46505167, 0.46505167, 0.46505167, 0.46505167, 0.46437416,
       0.46437416, 0.46437416, 0.46437416, 0.46411629, 0.46411629,
       0.46411629, 0.46411629, 0.46418296, 0.46418296, 0.46418296,
       0.46418296, 0.46437517, 0.46437517, 0.46437517, 0.46437517,
       0.46474262, 0.46474262, 0.46474262, 0.46474262, 0.4647905 ,
       0.4647905 , 0.4647905 , 0.4647905 , 0.46219808, 0.46219808,
       0.46219808, 0.46219808, 0.44788536, 0.44788536, 0.44788536,
       0.44788536, 0.38869085, 0.38869085, 0.38869085, 0.38869085,
       0.23647903, 0.23647903, 0.23647903, 0.23647903, 0.11972131,
       0.11972131, 0.11972131, 0.11972131, 0.10164215, 0.10164215,
       0.10164215, 0.10164215, 0.10012388, 0.10012388, 0.10012388,
       0.10012388, 0.10000926, 0.10000926, 0.10000926, 0.10000926,
       0.10000069, 0.10000069, 0.10000069, 0.10000069, 0.10000005,
       0.10000005, 0.10000005, 0.10000005, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999994,
       0.99999994, 0.99999994, 0.99999994, 0.99999957, 0.99999957,
       0.99999957, 0.99999957, 0.99999725, 0.99999725, 0.99999725,
       0.99999725, 0.99998408, 0.99998408, 0.99998408, 0.99998408,
       0.99991777, 0.99991777, 0.99991777, 0.99991777, 0.99962494,
       0.99962494, 0.99962494, 0.99962494, 0.99851137, 0.99851137,
       0.99851137, 0.99851137, 0.99494469, 0.99494469, 0.99494469,
       0.99494469, 0.98555163, 0.98555163, 0.98555163, 0.98555163,
       0.96559893, 0.96559893, 0.96559893, 0.96559893, 0.93155858,
       0.93155858, 0.93155858, 0.93155858, 0.88403476, 0.88403476,
       0.88403476, 0.88403476, 0.8274092 , 0.8274092 , 0.8274092 ,
       0.8274092 , 0.76877221, 0.76877221, 0.76877221, 0.76877221,
       0.71316056, 0.71316056, 0.71316056, 0.71316056, 0.66441163,
       0.66441163, 0.66441163, 0.66441163, 0.62379118, 0.62379118,
       0.62379118, 0.62379118, 0.59276036, 0.59276036, 0.59276036,
       0.59276036, 0.58060214, 0.58060214, 0.58060214, 0.58060214,
       0.58004359, 0.58004359, 0.58004359, 0.58004359, 0.58181969,
       0.58181969, 0.58181969, 0.58181969, 0.58456085, 0.58456085,
       0.58456085, 0.58456085, 0.58426133, 0.58426133, 0.58426133,
       0.58426133, 0.57952111, 0.57952111, 0.57952111, 0.57952111,
       0.56481381, 0.56481381, 0.56481381, 0.56481381, 0.53498407,
       0.53498407, 0.53498407, 0.53498407, 0.48707968, 0.48707968,
       0.48707968, 0.48707968, 0.4240172 , 0.4240172 , 0.4240172 ,
       0.4240172 , 0.37419742, 0.37419742, 0.37419742, 0.37419742,
       0.34640254, 0.34640254, 0.34640254, 0.34640254, 0.33383188,
       0.33383188, 0.33383188, 0.33383188, 0.32905424, 0.32905424,
       0.32905424, 0.32905424, 0.32677563, 0.32677563, 0.32677563,
       0.32677563, 0.31923078, 0.31923078, 0.31923078, 0.31923078,
       0.27840167, 0.27840167, 0.27840167, 0.27840167, 0.1822785 ,
       0.1822785 , 0.1822785 , 0.1822785 , 0.13240005, 0.13240005,
       0.13240005, 0.13240005, 0.12564148, 0.12564148, 0.12564148,
       0.12564148, 0.12504969, 0.12504969, 0.12504969, 0.12504969,
       0.12500374, 0.12500374, 0.12500374, 0.12500374, 0.12500028,
       0.12500028, 0.12500028, 0.12500028, 0.12500002, 0.12500002,
       0.12500002, 0.12500002, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000009e-01, 7.50000009e-01, 7.50000009e-01, 7.50000009e-01,
       7.50000072e-01, 7.50000072e-01, 7.50000072e-01, 7.50000072e-01,
       7.50000509e-01, 7.50000509e-01, 7.50000509e-01, 7.50000509e-01,
       7.50003258e-01, 7.50003258e-01, 7.50003258e-01, 7.50003258e-01,
       7.50018836e-01, 7.50018836e-01, 7.50018836e-01, 7.50018836e-01,
       7.50097297e-01, 7.50097297e-01, 7.50097297e-01, 7.50097297e-01,
       7.50443797e-01, 7.50443797e-01, 7.50443797e-01, 7.50443797e-01,
       7.51761984e-01, 7.51761984e-01, 7.51761984e-01, 7.51761984e-01,
       7.55991281e-01, 7.55991281e-01, 7.55991281e-01, 7.55991281e-01,
       7.67190124e-01, 7.67190124e-01, 7.67190124e-01, 7.67190124e-01,
       7.91292369e-01, 7.91292369e-01, 7.91292369e-01, 7.91292369e-01,
       8.33436036e-01, 8.33436036e-01, 8.33436036e-01, 8.33436036e-01,
       8.94508968e-01, 8.94508968e-01, 8.94508968e-01, 8.94508968e-01,
       9.70928324e-01, 9.70928324e-01, 9.70928324e-01, 9.70928324e-01,
       1.05242450e+00, 1.05242450e+00, 1.05242450e+00, 1.05242450e+00,
       1.13456684e+00, 1.13456684e+00, 1.13456684e+00, 1.13456684e+00,
       1.21752814e+00, 1.21752814e+00, 1.21752814e+00, 1.21752814e+00,
       1.28688080e+00, 1.28688080e+00, 1.28688080e+00, 1.28688080e+00,
       1.33202565e+00, 1.33202565e+00, 1.33202565e+00, 1.33202565e+00,
       1.35205511e+00, 1.35205511e+00, 1.35205511e+00, 1.35205511e+00,
       1.35794285e+00, 1.35794285e+00, 1.35794285e+00, 1.35794285e+00,
       1.35979765e+00, 1.35979765e+00, 1.35979765e+00, 1.35979765e+00,
       1.36117165e+00, 1.36117165e+00, 1.36117165e+00, 1.36117165e+00,
       1.36278081e+00, 1.36278081e+00, 1.36278081e+00, 1.36278081e+00,
       1.36384708e+00, 1.36384708e+00, 1.36384708e+00, 1.36384708e+00,
       1.36394428e+00, 1.36394428e+00, 1.36394428e+00, 1.36394428e+00,
       1.36340422e+00, 1.36340422e+00, 1.36340422e+00, 1.36340422e+00,
       1.36216954e+00, 1.36216954e+00, 1.36216954e+00, 1.36216954e+00,
       1.36091948e+00, 1.36091948e+00, 1.36091948e+00, 1.36091948e+00,
       1.36072488e+00, 1.36072488e+00, 1.36072488e+00, 1.36072488e+00,
       1.36080076e+00, 1.36080076e+00, 1.36080076e+00, 1.36080076e+00,
       1.36052967e+00, 1.36052967e+00, 1.36052967e+00, 1.36052967e+00,
       1.35904254e+00, 1.35904254e+00, 1.35904254e+00, 1.35904254e+00,
       1.34885124e+00, 1.34885124e+00, 1.34885124e+00, 1.34885124e+00,
       1.29744243e+00, 1.29744243e+00, 1.29744243e+00, 1.29744243e+00,
       1.08422445e+00, 1.08422445e+00, 1.08422445e+00, 1.08422445e+00,
       5.02990327e-01, 5.02990327e-01, 5.02990327e-01, 5.02990327e-01,
       6.93727442e-02, 6.93727442e-02, 6.93727442e-02, 6.93727442e-02,
       5.63191058e-03, 5.63191058e-03, 5.63191058e-03, 5.63191058e-03,
       4.24506091e-04, 4.24506091e-04, 4.24506091e-04, 4.24506091e-04,
       3.17404436e-05, 3.17404436e-05, 3.17404436e-05, 3.17404436e-05,
       2.36582375e-06, 2.36582375e-06, 2.36582375e-06, 2.36582375e-06,
       1.75833876e-07, 1.75833876e-07, 1.75833876e-07, 1.75833876e-07,
       1.30328080e-08, 1.30328080e-08, 1.30328080e-08, 1.30328080e-08,
       9.63639514e-10, 9.63639514e-10, 9.63639514e-10, 9.63639514e-10,
       7.10763736e-11, 7.10763736e-11, 7.10763736e-11, 7.10763736e-11,
       5.22825264e-12, 5.22825264e-12, 5.22825264e-12, 5.22825264e-12,
       3.83163730e-13, 3.83163730e-13, 3.83163730e-13, 3.83163730e-13,
       2.79726565e-14, 2.79726565e-14, 2.79726565e-14, 2.79726565e-14,
       2.02525897e-15, 2.02525897e-15, 2.02525897e-15, 2.02525897e-15,
       1.51631827e-16, 1.51631827e-16, 1.51631827e-16, 1.51631827e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999991,
       0.99999991, 0.99999991, 0.99999991, 0.9999994 , 0.9999994 ,
       0.9999994 , 0.9999994 , 0.99999614, 0.99999614, 0.99999614,
       0.99999614, 0.99997771, 0.99997771, 0.99997771, 0.99997771,
       0.99988488, 0.99988488, 0.99988488, 0.99988488, 0.99947502,
       0.99947502, 0.99947502, 0.99947502, 0.99791728, 0.99791728,
       0.99791728, 0.99791728, 0.99293536, 0.99293536, 0.99293536,
       0.99293536, 0.97986052, 0.97986052, 0.97986052, 0.97986052,
       0.95227911, 0.95227911, 0.95227911, 0.95227911, 0.90578254,
       0.90578254, 0.90578254, 0.90578254, 0.84200911, 0.84200911,
       0.84200911, 0.84200911, 0.76771824, 0.76771824, 0.76771824,
       0.76771824, 0.69232015, 0.69232015, 0.69232015, 0.69232015,
       0.62465064, 0.62465064, 0.62465064, 0.62465064, 0.56138795,
       0.56138795, 0.56138795, 0.56138795, 0.51330741, 0.51330741,
       0.51330741, 0.51330741, 0.4845093 , 0.4845093 , 0.4845093 ,
       0.4845093 , 0.47217185, 0.47217185, 0.47217185, 0.47217185,
       0.46819774, 0.46819774, 0.46819774, 0.46819774, 0.46701446,
       0.46701446, 0.46701446, 0.46701446, 0.46652199, 0.46652199,
       0.46652199, 0.46652199, 0.46611084, 0.46611084, 0.46611084,
       0.46611084, 0.46578348, 0.46578348, 0.46578348, 0.46578348,
       0.46535618, 0.46535618, 0.46535618, 0.46535618, 0.46482306,
       0.46482306, 0.46482306, 0.46482306, 0.46446841, 0.46446841,
       0.46446841, 0.46446841, 0.46430983, 0.46430983, 0.46430983,
       0.46430983, 0.46428048, 0.46428048, 0.46428048, 0.46428048,
       0.46452486, 0.46452486, 0.46452486, 0.46452486, 0.4649441 ,
       0.4649441 , 0.4649441 , 0.4649441 , 0.46428963, 0.46428963,
       0.46428963, 0.46428963, 0.45964556, 0.45964556, 0.45964556,
       0.45964556, 0.4368908 , 0.4368908 , 0.4368908 , 0.4368908 ,
       0.35200209, 0.35200209, 0.35200209, 0.35200209, 0.18536524,
       0.18536524, 0.18536524, 0.18536524, 0.10948877, 0.10948877,
       0.10948877, 0.10948877, 0.10074638, 0.10074638, 0.10074638,
       0.10074638, 0.10005616, 0.10005616, 0.10005616, 0.10005616,
       0.1000042 , 0.1000042 , 0.1000042 , 0.1000042 , 0.10000031,
       0.10000031, 0.10000031, 0.10000031, 0.10000002, 0.10000002,
       0.10000002, 0.10000002, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.9999999 ,
       0.9999999 , 0.9999999 , 0.9999999 , 0.99999935, 0.99999935,
       0.99999935, 0.99999935, 0.999996  , 0.999996  , 0.999996  ,
       0.999996  , 0.9999778 , 0.9999778 , 0.9999778 , 0.9999778 ,
       0.99988988, 0.99988988, 0.99988988, 0.99988988, 0.99951775,
       0.99951775, 0.99951775, 0.99951775, 0.99816293, 0.99816293,
       0.99816293, 0.99816293, 0.99401287, 0.99401287, 0.99401287,
       0.99401287, 0.98356146, 0.98356146, 0.98356146, 0.98356146,
       0.9622853 , 0.9622853 , 0.9622853 , 0.9622853 , 0.92730693,
       0.92730693, 0.92730693, 0.92730693, 0.87984577, 0.87984577,
       0.87984577, 0.87984577, 0.82436213, 0.82436213, 0.82436213,
       0.82436213, 0.76781991, 0.76781991, 0.76781991, 0.76781991,
       0.71338064, 0.71338064, 0.71338064, 0.71338064, 0.66530752,
       0.66530752, 0.66530752, 0.66530752, 0.62662899, 0.62662899,
       0.62662899, 0.62662899, 0.59584458, 0.59584458, 0.59584458,
       0.59584458, 0.58122522, 0.58122522, 0.58122522, 0.58122522,
       0.57945682, 0.57945682, 0.57945682, 0.57945682, 0.58056762,
       0.58056762, 0.58056762, 0.58056762, 0.58335259, 0.58335259,
       0.58335259, 0.58335259, 0.5840114 , 0.5840114 , 0.5840114 ,
       0.5840114 , 0.58173244, 0.58173244, 0.58173244, 0.58173244,
       0.57212127, 0.57212127, 0.57212127, 0.57212127, 0.54967525,
       0.54967525, 0.54967525, 0.54967525, 0.51027045, 0.51027045,
       0.51027045, 0.51027045, 0.45256286, 0.45256286, 0.45256286,
       0.45256286, 0.39319195, 0.39319195, 0.39319195, 0.39319195,
       0.35669662, 0.35669662, 0.35669662, 0.35669662, 0.33848333,
       0.33848333, 0.33848333, 0.33848333, 0.33098586, 0.33098586,
       0.33098586, 0.33098586, 0.32867169, 0.32867169, 0.32867169,
       0.32867169, 0.32673109, 0.32673109, 0.32673109, 0.32673109,
       0.31276146, 0.31276146, 0.31276146, 0.31276146, 0.25297057,
       0.25297057, 0.25297057, 0.25297057, 0.15774063, 0.15774063,
       0.15774063, 0.15774063, 0.12857133, 0.12857133, 0.12857133,
       0.12857133, 0.12529541, 0.12529541, 0.12529541, 0.12529541,
       0.12502259, 0.12502259, 0.12502259, 0.12502259, 0.1250017 ,
       0.1250017 , 0.1250017 , 0.1250017 , 0.12500013, 0.12500013,
       0.12500013, 0.12500013, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000015e-01, 7.50000015e-01, 7.50000015e-01, 7.50000015e-01,
       7.50000114e-01, 7.50000114e-01, 7.50000114e-01, 7.50000114e-01,
       7.50000768e-01, 7.50000768e-01, 7.50000768e-01, 7.50000768e-01,
       7.50004730e-01, 7.50004730e-01, 7.50004730e-01, 7.50004730e-01,
       7.50026264e-01, 7.50026264e-01, 7.50026264e-01, 7.50026264e-01,
       7.50130297e-01, 7.50130297e-01, 7.50130297e-01, 7.50130297e-01,
       7.50570647e-01, 7.50570647e-01, 7.50570647e-01, 7.50570647e-01,
       7.52174682e-01, 7.52174682e-01, 7.52174682e-01, 7.52174682e-01,
       7.57098423e-01, 7.57098423e-01, 7.57098423e-01, 7.57098423e-01,
       7.69575519e-01, 7.69575519e-01, 7.69575519e-01, 7.69575519e-01,
       7.95338848e-01, 7.95338848e-01, 7.95338848e-01, 7.95338848e-01,
       8.38790934e-01, 8.38790934e-01, 8.38790934e-01, 8.38790934e-01,
       9.00008072e-01, 9.00008072e-01, 9.00008072e-01, 9.00008072e-01,
       9.75143222e-01, 9.75143222e-01, 9.75143222e-01, 9.75143222e-01,
       1.05418743e+00, 1.05418743e+00, 1.05418743e+00, 1.05418743e+00,
       1.13392925e+00, 1.13392925e+00, 1.13392925e+00, 1.13392925e+00,
       1.21464803e+00, 1.21464803e+00, 1.21464803e+00, 1.21464803e+00,
       1.28307514e+00, 1.28307514e+00, 1.28307514e+00, 1.28307514e+00,
       1.32905104e+00, 1.32905104e+00, 1.32905104e+00, 1.32905104e+00,
       1.35077100e+00, 1.35077100e+00, 1.35077100e+00, 1.35077100e+00,
       1.35767915e+00, 1.35767915e+00, 1.35767915e+00, 1.35767915e+00,
       1.35963173e+00, 1.35963173e+00, 1.35963173e+00, 1.35963173e+00,
       1.36086885e+00, 1.36086885e+00, 1.36086885e+00, 1.36086885e+00,
       1.36233245e+00, 1.36233245e+00, 1.36233245e+00, 1.36233245e+00,
       1.36365306e+00, 1.36365306e+00, 1.36365306e+00, 1.36365306e+00,
       1.36410375e+00, 1.36410375e+00, 1.36410375e+00, 1.36410375e+00,
       1.36392708e+00, 1.36392708e+00, 1.36392708e+00, 1.36392708e+00,
       1.36298853e+00, 1.36298853e+00, 1.36298853e+00, 1.36298853e+00,
       1.36152724e+00, 1.36152724e+00, 1.36152724e+00, 1.36152724e+00,
       1.36088739e+00, 1.36088739e+00, 1.36088739e+00, 1.36088739e+00,
       1.36059622e+00, 1.36059622e+00, 1.36059622e+00, 1.36059622e+00,
       1.36030814e+00, 1.36030814e+00, 1.36030814e+00, 1.36030814e+00,
       1.36008913e+00, 1.36008913e+00, 1.36008913e+00, 1.36008913e+00,
       1.35711729e+00, 1.35711729e+00, 1.35711729e+00, 1.35711729e+00,
       1.33931866e+00, 1.33931866e+00, 1.33931866e+00, 1.33931866e+00,
       1.25869909e+00, 1.25869909e+00, 1.25869909e+00, 1.25869909e+00,
       9.47391457e-01, 9.47391457e-01, 9.47391457e-01, 9.47391457e-01,
       3.03306502e-01, 3.03306502e-01, 3.03306502e-01, 3.03306502e-01,
       3.27779884e-02, 3.27779884e-02, 3.27779884e-02, 3.27779884e-02,
       2.56194868e-03, 2.56194868e-03, 2.56194868e-03, 2.56194868e-03,
       1.92341225e-04, 1.92341225e-04, 1.92341225e-04, 1.92341225e-04,
       1.43841206e-05, 1.43841206e-05, 1.43841206e-05, 1.43841206e-05,
       1.07319292e-06, 1.07319292e-06, 1.07319292e-06, 1.07319292e-06,
       7.98515072e-08, 7.98515072e-08, 7.98515072e-08, 7.98515072e-08,
       5.92527078e-09, 5.92527078e-09, 5.92527078e-09, 5.92527078e-09,
       4.38545776e-10, 4.38545776e-10, 4.38545776e-10, 4.38545776e-10,
       3.23766591e-11, 3.23766591e-11, 3.23766591e-11, 3.23766591e-11,
       2.38365625e-12, 2.38365625e-12, 2.38365625e-12, 2.38365625e-12,
       1.74984281e-13, 1.74984281e-13, 1.74984281e-13, 1.74984281e-13,
       1.27988486e-14, 1.27988486e-14, 1.27988486e-14, 1.27988486e-14,
       9.36619527e-16, 9.36619527e-16, 9.36619527e-16, 9.36619527e-16,
       5.90078683e-17, 5.90078683e-17, 5.90078683e-17, 5.90078683e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999987,
       0.99999987, 0.99999987, 0.99999987, 0.99999909, 0.99999909,
       0.99999909, 0.99999909, 0.9999944 , 0.9999944 , 0.9999944 ,
       0.9999944 , 0.99996892, 0.99996892, 0.99996892, 0.99996892,
       0.99984584, 0.99984584, 0.99984584, 0.99984584, 0.99932502,
       0.99932502, 0.99932502, 0.99932502, 0.99743007, 0.99743007,
       0.99743007, 0.99743007, 0.99163522, 0.99163522, 0.99163522,
       0.99163522, 0.97709688, 0.97709688, 0.97709688, 0.97709688,
       0.94771858, 0.94771858, 0.94771858, 0.94771858, 0.90001323,
       0.90001323, 0.90001323, 0.90001323, 0.83643028, 0.83643028,
       0.83643028, 0.83643028, 0.76371797, 0.76371797, 0.76371797,
       0.76371797, 0.69077552, 0.69077552, 0.69077552, 0.69077552,
       0.62524441, 0.62524441, 0.62524441, 0.62524441, 0.56360708,
       0.56360708, 0.56360708, 0.56360708, 0.51576884, 0.51576884,
       0.51576884, 0.51576884, 0.48608775, 0.48608775, 0.48608775,
       0.48608775, 0.47290348, 0.47290348, 0.47290348, 0.47290348,
       0.46852795, 0.46852795, 0.46852795, 0.46852795, 0.46709417,
       0.46709417, 0.46709417, 0.46709417, 0.4664615 , 0.4664615 ,
       0.4664615 , 0.4664615 , 0.46595946, 0.46595946, 0.46595946,
       0.46595946, 0.46573483, 0.46573483, 0.46573483, 0.46573483,
       0.46549762, 0.46549762, 0.46549762, 0.46549762, 0.4651401 ,
       0.4651401 , 0.4651401 , 0.4651401 , 0.4648877 , 0.4648877 ,
       0.4648877 , 0.4648877 , 0.46460628, 0.46460628, 0.46460628,
       0.46460628, 0.46435859, 0.46435859, 0.46435859, 0.46435859,
       0.46443008, 0.46443008, 0.46443008, 0.46443008, 0.46484084,
       0.46484084, 0.46484084, 0.46484084, 0.46477421, 0.46477421,
       0.46477421, 0.46477421, 0.46345495, 0.46345495, 0.46345495,
       0.46345495, 0.45575261, 0.45575261, 0.45575261, 0.45575261,
       0.41991969, 0.41991969, 0.41991969, 0.41991969, 0.30495101,
       0.30495101, 0.30495101, 0.30495101, 0.14641294, 0.14641294,
       0.14641294, 0.14641294, 0.10439859, 0.10439859, 0.10439859,
       0.10439859, 0.10033916, 0.10033916, 0.10033916, 0.10033916,
       0.10002545, 0.10002545, 0.10002545, 0.10002545, 0.1000019 ,
       0.1000019 , 0.1000019 , 0.1000019 , 0.10000014, 0.10000014,
       0.10000014, 0.10000014, 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999985,
       0.99999985, 0.99999985, 0.99999985, 0.99999903, 0.99999903,
       0.99999903, 0.99999903, 0.99999428, 0.99999428, 0.99999428,
       0.99999428, 0.99996946, 0.99996946, 0.99996946, 0.99996946,
       0.99985432, 0.99985432, 0.99985432, 0.99985432, 0.99938676,
       0.99938676, 0.99938676, 0.99938676, 0.99775536, 0.99775536,
       0.99775536, 0.99775536, 0.99297081, 0.99297081, 0.99297081,
       0.99297081, 0.98143309, 0.98143309, 0.98143309, 0.98143309,
       0.95888578, 0.95888578, 0.95888578, 0.95888578, 0.9230955 ,
       0.9230955 , 0.9230955 , 0.9230955 , 0.87580507, 0.87580507,
       0.87580507, 0.87580507, 0.82147709, 0.82147709, 0.82147709,
       0.82147709, 0.76692374, 0.76692374, 0.76692374, 0.76692374,
       0.71378615, 0.71378615, 0.71378615, 0.71378615, 0.66604952,
       0.66604952, 0.66604952, 0.66604952, 0.62893204, 0.62893204,
       0.62893204, 0.62893204, 0.59898326, 0.59898326, 0.59898326,
       0.59898326, 0.58239235, 0.58239235, 0.58239235, 0.58239235,
       0.57906513, 0.57906513, 0.57906513, 0.57906513, 0.5796752 ,
       0.5796752 , 0.5796752 , 0.5796752 , 0.58197407, 0.58197407,
       0.58197407, 0.58197407, 0.58350893, 0.58350893, 0.58350893,
       0.58350893, 0.58262487, 0.58262487, 0.58262487, 0.58262487,
       0.5768568 , 0.5768568 , 0.5768568 , 0.5768568 , 0.56077107,
       0.56077107, 0.56077107, 0.56077107, 0.52949915, 0.52949915,
       0.52949915, 0.52949915, 0.48013846, 0.48013846, 0.48013846,
       0.48013846, 0.41713955, 0.41713955, 0.41713955, 0.41713955,
       0.37044721, 0.37044721, 0.37044721, 0.37044721, 0.34523075,
       0.34523075, 0.34523075, 0.34523075, 0.33369594, 0.33369594,
       0.33369594, 0.33369594, 0.32989191, 0.32989191, 0.32989191,
       0.32989191, 0.32903442, 0.32903442, 0.32903442, 0.32903442,
       0.32566179, 0.32566179, 0.32566179, 0.32566179, 0.30140914,
       0.30140914, 0.30140914, 0.30140914, 0.22161536, 0.22161536,
       0.22161536, 0.22161536, 0.142229  , 0.142229  , 0.142229  ,
       0.142229  , 0.12669189, 0.12669189, 0.12669189, 0.12669189,
       0.12513485, 0.12513485, 0.12513485, 0.12513485, 0.12501025,
       0.12501025, 0.12501025, 0.12501025, 0.12500077, 0.12500077,
       0.12500077, 0.12500077, 0.12500006, 0.12500006, 0.12500006,
       0.12500006, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000025e-01, 7.50000025e-01, 7.50000025e-01, 7.50000025e-01,
       7.50000176e-01, 7.50000176e-01, 7.50000176e-01, 7.50000176e-01,
       7.50001143e-01, 7.50001143e-01, 7.50001143e-01, 7.50001143e-01,
       7.50006765e-01, 7.50006765e-01, 7.50006765e-01, 7.50006765e-01,
       7.50036132e-01, 7.50036132e-01, 7.50036132e-01, 7.50036132e-01,
       7.50172369e-01, 7.50172369e-01, 7.50172369e-01, 7.50172369e-01,
       7.50725674e-01, 7.50725674e-01, 7.50725674e-01, 7.50725674e-01,
       7.52657561e-01, 7.52657561e-01, 7.52657561e-01, 7.52657561e-01,
       7.58337621e-01, 7.58337621e-01, 7.58337621e-01, 7.58337621e-01,
       7.72131336e-01, 7.72131336e-01, 7.72131336e-01, 7.72131336e-01,
       7.99502632e-01, 7.99502632e-01, 7.99502632e-01, 7.99502632e-01,
       8.44114177e-01, 8.44114177e-01, 8.44114177e-01, 8.44114177e-01,
       9.05331881e-01, 9.05331881e-01, 9.05331881e-01, 9.05331881e-01,
       9.79125457e-01, 9.79125457e-01, 9.79125457e-01, 9.79125457e-01,
       1.05587185e+00, 1.05587185e+00, 1.05587185e+00, 1.05587185e+00,
       1.13331506e+00, 1.13331506e+00, 1.13331506e+00, 1.13331506e+00,
       1.21189543e+00, 1.21189543e+00, 1.21189543e+00, 1.21189543e+00,
       1.27944869e+00, 1.27944869e+00, 1.27944869e+00, 1.27944869e+00,
       1.32606311e+00, 1.32606311e+00, 1.32606311e+00, 1.32606311e+00,
       1.34925512e+00, 1.34925512e+00, 1.34925512e+00, 1.34925512e+00,
       1.35728578e+00, 1.35728578e+00, 1.35728578e+00, 1.35728578e+00,
       1.35954920e+00, 1.35954920e+00, 1.35954920e+00, 1.35954920e+00,
       1.36069411e+00, 1.36069411e+00, 1.36069411e+00, 1.36069411e+00,
       1.36194086e+00, 1.36194086e+00, 1.36194086e+00, 1.36194086e+00,
       1.36330593e+00, 1.36330593e+00, 1.36330593e+00, 1.36330593e+00,
       1.36405650e+00, 1.36405650e+00, 1.36405650e+00, 1.36405650e+00,
       1.36415497e+00, 1.36415497e+00, 1.36415497e+00, 1.36415497e+00,
       1.36359348e+00, 1.36359348e+00, 1.36359348e+00, 1.36359348e+00,
       1.36234614e+00, 1.36234614e+00, 1.36234614e+00, 1.36234614e+00,
       1.36135889e+00, 1.36135889e+00, 1.36135889e+00, 1.36135889e+00,
       1.36073912e+00, 1.36073912e+00, 1.36073912e+00, 1.36073912e+00,
       1.36010502e+00, 1.36010502e+00, 1.36010502e+00, 1.36010502e+00,
       1.36015262e+00, 1.36015262e+00, 1.36015262e+00, 1.36015262e+00,
       1.35942760e+00, 1.35942760e+00, 1.35942760e+00, 1.35942760e+00,
       1.35349451e+00, 1.35349451e+00, 1.35349451e+00, 1.35349451e+00,
       1.32499316e+00, 1.32499316e+00, 1.32499316e+00, 1.32499316e+00,
       1.19968030e+00, 1.19968030e+00, 1.19968030e+00, 1.19968030e+00,
       7.65654632e-01, 7.65654632e-01, 7.65654632e-01, 7.65654632e-01,
       1.63013744e-01, 1.63013744e-01, 1.63013744e-01, 1.63013744e-01,
       1.51766301e-02, 1.51766301e-02, 1.51766301e-02, 1.51766301e-02,
       1.15961586e-03, 1.15961586e-03, 1.15961586e-03, 1.15961586e-03,
       8.71092067e-05, 8.71092067e-05, 8.71092067e-05, 8.71092067e-05,
       6.51852874e-06, 6.51852874e-06, 6.51852874e-06, 6.51852874e-06,
       4.86666078e-07, 4.86666078e-07, 4.86666078e-07, 4.86666078e-07,
       3.62471947e-08, 3.62471947e-08, 3.62471947e-08, 3.62471947e-08,
       2.69260253e-09, 2.69260253e-09, 2.69260253e-09, 2.69260253e-09,
       1.99494358e-10, 1.99494358e-10, 1.99494358e-10, 1.99494358e-10,
       1.47423360e-11, 1.47423360e-11, 1.47423360e-11, 1.47423360e-11,
       1.08650415e-12, 1.08650415e-12, 1.08650415e-12, 1.08650415e-12,
       7.98526879e-14, 7.98526879e-14, 7.98526879e-14, 7.98526879e-14,
       5.91227187e-15, 5.91227187e-15, 5.91227187e-15, 5.91227187e-15,
       3.97725372e-16, 3.97725372e-16, 3.97725372e-16, 3.97725372e-16,
       1.14152033e-17, 1.14152033e-17, 1.14152033e-17, 1.14152033e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999979,
       0.99999979, 0.99999979, 0.99999979, 0.99999865, 0.99999865,
       0.99999865, 0.99999865, 0.999992  , 0.999992  , 0.999992  ,
       0.999992  , 0.99995725, 0.99995725, 0.99995725, 0.99995725,
       0.99979607, 0.99979607, 0.99979607, 0.99979607, 0.99914172,
       0.99914172, 0.99914172, 0.99914172, 0.9968603 , 0.9968603 ,
       0.9968603 , 0.9968603 , 0.99018195, 0.99018195, 0.99018195,
       0.99018195, 0.97414391, 0.97414391, 0.97414391, 0.97414391,
       0.94304609, 0.94304609, 0.94304609, 0.94304609, 0.89430785,
       0.89430785, 0.89430785, 0.89430785, 0.83105531, 0.83105531,
       0.83105531, 0.83105531, 0.75992159, 0.75992159, 0.75992159,
       0.75992159, 0.68934729, 0.68934729, 0.68934729, 0.68934729,
       0.62578832, 0.62578832, 0.62578832, 0.62578832, 0.56572412,
       0.56572412, 0.56572412, 0.56572412, 0.51826812, 0.51826812,
       0.51826812, 0.51826812, 0.48775305, 0.48775305, 0.48775305,
       0.48775305, 0.47361881, 0.47361881, 0.47361881, 0.47361881,
       0.46884188, 0.46884188, 0.46884188, 0.46884188, 0.46724329,
       0.46724329, 0.46724329, 0.46724329, 0.46648424, 0.46648424,
       0.46648424, 0.46648424, 0.46584328, 0.46584328, 0.46584328,
       0.46584328, 0.46559981, 0.46559981, 0.46559981, 0.46559981,
       0.46550449, 0.46550449, 0.46550449, 0.46550449, 0.46529836,
       0.46529836, 0.46529836, 0.46529836, 0.46519784, 0.46519784,
       0.46519784, 0.46519784, 0.46501854, 0.46501854, 0.46501854,
       0.46501854, 0.4645934 , 0.4645934 , 0.4645934 , 0.4645934 ,
       0.4644984 , 0.4644984 , 0.4644984 , 0.4644984 , 0.4647448 ,
       0.4647448 , 0.4647448 , 0.4647448 , 0.46480417, 0.46480417,
       0.46480417, 0.46480417, 0.46452695, 0.46452695, 0.46452695,
       0.46452695, 0.46226705, 0.46226705, 0.46226705, 0.46226705,
       0.44923987, 0.44923987, 0.44923987, 0.44923987, 0.39520123,
       0.39520123, 0.39520123, 0.39520123, 0.25019732, 0.25019732,
       0.25019732, 0.25019732, 0.12347913, 0.12347913, 0.12347913,
       0.12347913, 0.10201923, 0.10201923, 0.10201923, 0.10201923,
       0.10015345, 0.10015345, 0.10015345, 0.10015345, 0.10001152,
       0.10001152, 0.10001152, 0.10001152, 0.10000086, 0.10000086,
       0.10000086, 0.10000086, 0.10000006, 0.10000006, 0.10000006,
       0.10000006, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999977,
       0.99999977, 0.99999977, 0.99999977, 0.99999859, 0.99999859,
       0.99999859, 0.99999859, 0.99999193, 0.99999193, 0.99999193,
       0.99999193, 0.99995852, 0.99995852, 0.99995852, 0.99995852,
       0.99980949, 0.99980949, 0.99980949, 0.99980949, 0.99922831,
       0.99922831, 0.99922831, 0.99922831, 0.99728299, 0.99728299,
       0.99728299, 0.99728299, 0.99181486, 0.99181486, 0.99181486,
       0.99181486, 0.97917208, 0.97917208, 0.97917208, 0.97917208,
       0.95541523, 0.95541523, 0.95541523, 0.95541523, 0.91893615,
       0.91893615, 0.91893615, 0.91893615, 0.87190997, 0.87190997,
       0.87190997, 0.87190997, 0.8187528 , 0.8187528 , 0.8187528 ,
       0.8187528 , 0.76602872, 0.76602872, 0.76602872, 0.76602872,
       0.7143833 , 0.7143833 , 0.7143833 , 0.7143833 , 0.66676801,
       0.66676801, 0.66676801, 0.66676801, 0.6307179 , 0.6307179 ,
       0.6307179 , 0.6307179 , 0.60198349, 0.60198349, 0.60198349,
       0.60198349, 0.58404794, 0.58404794, 0.58404794, 0.58404794,
       0.57892756, 0.57892756, 0.57892756, 0.57892756, 0.57904741,
       0.57904741, 0.57904741, 0.57904741, 0.58062787, 0.58062787,
       0.58062787, 0.58062787, 0.58283322, 0.58283322, 0.58283322,
       0.58283322, 0.58277091, 0.58277091, 0.58277091, 0.58277091,
       0.57963328, 0.57963328, 0.57963328, 0.57963328, 0.56873886,
       0.56873886, 0.56873886, 0.56873886, 0.54485283, 0.54485283,
       0.54485283, 0.54485283, 0.50395357, 0.50395357, 0.50395357,
       0.50395357, 0.44501153, 0.44501153, 0.44501153, 0.44501153,
       0.38825268, 0.38825268, 0.38825268, 0.38825268, 0.35468169,
       0.35468169, 0.35468169, 0.35468169, 0.33785192, 0.33785192,
       0.33785192, 0.33785192, 0.331301  , 0.331301  , 0.331301  ,
       0.331301  , 0.33001344, 0.33001344, 0.33001344, 0.33001344,
       0.32943388, 0.32943388, 0.32943388, 0.32943388, 0.32258242,
       0.32258242, 0.32258242, 0.32258242, 0.28431554, 0.28431554,
       0.28431554, 0.28431554, 0.1892955 , 0.1892955 , 0.1892955 ,
       0.1892955 , 0.1338258 , 0.1338258 , 0.1338258 , 0.1338258 ,
       0.12578276, 0.12578276, 0.12578276, 0.12578276, 0.1250613 ,
       0.1250613 , 0.1250613 , 0.1250613 , 0.12500465, 0.12500465,
       0.12500465, 0.12500465, 0.12500035, 0.12500035, 0.12500035,
       0.12500035, 0.12500003, 0.12500003, 0.12500003, 0.12500003,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000039e-01, 7.50000039e-01, 7.50000039e-01, 7.50000039e-01,
       7.50000267e-01, 7.50000267e-01, 7.50000267e-01, 7.50000267e-01,
       7.50001674e-01, 7.50001674e-01, 7.50001674e-01, 7.50001674e-01,
       7.50009545e-01, 7.50009545e-01, 7.50009545e-01, 7.50009545e-01,
       7.50049084e-01, 7.50049084e-01, 7.50049084e-01, 7.50049084e-01,
       7.50225416e-01, 7.50225416e-01, 7.50225416e-01, 7.50225416e-01,
       7.50913227e-01, 7.50913227e-01, 7.50913227e-01, 7.50913227e-01,
       7.53217421e-01, 7.53217421e-01, 7.53217421e-01, 7.53217421e-01,
       7.59713585e-01, 7.59713585e-01, 7.59713585e-01, 7.59713585e-01,
       7.74851816e-01, 7.74851816e-01, 7.74851816e-01, 7.74851816e-01,
       8.03766307e-01, 8.03766307e-01, 8.03766307e-01, 8.03766307e-01,
       8.49390171e-01, 8.49390171e-01, 8.49390171e-01, 8.49390171e-01,
       9.10489184e-01, 9.10489184e-01, 9.10489184e-01, 9.10489184e-01,
       9.82823141e-01, 9.82823141e-01, 9.82823141e-01, 9.82823141e-01,
       1.05751085e+00, 1.05751085e+00, 1.05751085e+00, 1.05751085e+00,
       1.13275935e+00, 1.13275935e+00, 1.13275935e+00, 1.13275935e+00,
       1.20924075e+00, 1.20924075e+00, 1.20924075e+00, 1.20924075e+00,
       1.27595955e+00, 1.27595955e+00, 1.27595955e+00, 1.27595955e+00,
       1.32313321e+00, 1.32313321e+00, 1.32313321e+00, 1.32313321e+00,
       1.34759687e+00, 1.34759687e+00, 1.34759687e+00, 1.34759687e+00,
       1.35670899e+00, 1.35670899e+00, 1.35670899e+00, 1.35670899e+00,
       1.35944955e+00, 1.35944955e+00, 1.35944955e+00, 1.35944955e+00,
       1.36061079e+00, 1.36061079e+00, 1.36061079e+00, 1.36061079e+00,
       1.36171079e+00, 1.36171079e+00, 1.36171079e+00, 1.36171079e+00,
       1.36290556e+00, 1.36290556e+00, 1.36290556e+00, 1.36290556e+00,
       1.36383904e+00, 1.36383904e+00, 1.36383904e+00, 1.36383904e+00,
       1.36419289e+00, 1.36419289e+00, 1.36419289e+00, 1.36419289e+00,
       1.36391125e+00, 1.36391125e+00, 1.36391125e+00, 1.36391125e+00,
       1.36302760e+00, 1.36302760e+00, 1.36302760e+00, 1.36302760e+00,
       1.36208548e+00, 1.36208548e+00, 1.36208548e+00, 1.36208548e+00,
       1.36114875e+00, 1.36114875e+00, 1.36114875e+00, 1.36114875e+00,
       1.36014308e+00, 1.36014308e+00, 1.36014308e+00, 1.36014308e+00,
       1.36010184e+00, 1.36010184e+00, 1.36010184e+00, 1.36010184e+00,
       1.35992178e+00, 1.35992178e+00, 1.35992178e+00, 1.35992178e+00,
       1.35788212e+00, 1.35788212e+00, 1.35788212e+00, 1.35788212e+00,
       1.34841935e+00, 1.34841935e+00, 1.34841935e+00, 1.34841935e+00,
       1.30264541e+00, 1.30264541e+00, 1.30264541e+00, 1.30264541e+00,
       1.10947676e+00, 1.10947676e+00, 1.10947676e+00, 1.10947676e+00,
       5.55338397e-01, 5.55338397e-01, 5.55338397e-01, 5.55338397e-01,
       8.31514874e-02, 8.31514874e-02, 8.31514874e-02, 8.31514874e-02,
       6.89643013e-03, 6.89643013e-03, 6.89643013e-03, 6.89643013e-03,
       5.24246789e-04, 5.24246789e-04, 5.24246789e-04, 5.24246789e-04,
       3.94230246e-05, 3.94230246e-05, 3.94230246e-05, 3.94230246e-05,
       2.95275452e-06, 2.95275452e-06, 2.95275452e-06, 2.95275452e-06,
       2.20643830e-07, 2.20643830e-07, 2.20643830e-07, 2.20643830e-07,
       1.64480940e-08, 1.64480940e-08, 1.64480940e-08, 1.64480940e-08,
       1.22307279e-09, 1.22307279e-09, 1.22307279e-09, 1.22307279e-09,
       9.07116089e-11, 9.07116089e-11, 9.07116089e-11, 9.07116089e-11,
       6.71020267e-12, 6.71020267e-12, 6.71020267e-12, 6.71020267e-12,
       4.95019676e-13, 4.95019676e-13, 4.95019676e-13, 4.95019676e-13,
       3.65542843e-14, 3.65542843e-14, 3.65542843e-14, 3.65542843e-14,
       2.62269446e-15, 2.62269446e-15, 2.62269446e-15, 2.62269446e-15,
       1.74466545e-16, 1.74466545e-16, 1.74466545e-16, 1.74466545e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999968,
       0.99999968, 0.99999968, 0.99999968, 0.99999802, 0.99999802,
       0.99999802, 0.99999802, 0.99998871, 0.99998871, 0.99998871,
       0.99998871, 0.99994192, 0.99994192, 0.99994192, 0.99994192,
       0.99973332, 0.99973332, 0.99973332, 0.99973332, 0.99892001,
       0.99892001, 0.99892001, 0.99892001, 0.99620009, 0.99620009,
       0.99620009, 0.99620009, 0.98857069, 0.98857069, 0.98857069,
       0.98857069, 0.97100982, 0.97100982, 0.97100982, 0.97100982,
       0.93828248, 0.93828248, 0.93828248, 0.93828248, 0.88868204,
       0.88868204, 0.88868204, 0.88868204, 0.82587279, 0.82587279,
       0.82587279, 0.82587279, 0.75627712, 0.75627712, 0.75627712,
       0.75627712, 0.68804743, 0.68804743, 0.68804743, 0.68804743,
       0.62631819, 0.62631819, 0.62631819, 0.62631819, 0.56772481,
       0.56772481, 0.56772481, 0.56772481, 0.52076656, 0.52076656,
       0.52076656, 0.52076656, 0.48953753, 0.48953753, 0.48953753,
       0.48953753, 0.47437293, 0.47437293, 0.47437293, 0.47437293,
       0.46911158, 0.46911158, 0.46911158, 0.46911158, 0.46740275,
       0.46740275, 0.46740275, 0.46740275, 0.46657107, 0.46657107,
       0.46657107, 0.46657107, 0.46582165, 0.46582165, 0.46582165,
       0.46582165, 0.46543932, 0.46543932, 0.46543932, 0.46543932,
       0.4654086 , 0.4654086 , 0.4654086 , 0.4654086 , 0.46534166,
       0.46534166, 0.46534166, 0.46534166, 0.46535445, 0.46535445,
       0.46535445, 0.46535445, 0.4653544 , 0.4653544 , 0.4653544 ,
       0.4653544 , 0.46497431, 0.46497431, 0.46497431, 0.46497431,
       0.46469511, 0.46469511, 0.46469511, 0.46469511, 0.46475993,
       0.46475993, 0.46475993, 0.46475993, 0.464781  , 0.464781  ,
       0.464781  , 0.464781  , 0.46475951, 0.46475951, 0.46475951,
       0.46475951, 0.46429906, 0.46429906, 0.46429906, 0.46429906,
       0.45994624, 0.45994624, 0.45994624, 0.45994624, 0.43907961,
       0.43907961, 0.43907961, 0.43907961, 0.36134325, 0.36134325,
       0.36134325, 0.36134325, 0.19702827, 0.19702827, 0.19702827,
       0.19702827, 0.11146119, 0.11146119, 0.11146119, 0.11146119,
       0.1009144 , 0.1009144 , 0.1009144 , 0.1009144 , 0.10006936,
       0.10006936, 0.10006936, 0.10006936, 0.10000522, 0.10000522,
       0.10000522, 0.10000522, 0.10000039, 0.10000039, 0.10000039,
       0.10000039, 0.10000003, 0.10000003, 0.10000003, 0.10000003,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999966,
       0.99999966, 0.99999966, 0.99999966, 0.99999796, 0.99999796,
       0.99999796, 0.99999796, 0.99998877, 0.99998877, 0.99998877,
       0.99998877, 0.99994431, 0.99994431, 0.99994431, 0.99994431,
       0.99975356, 0.99975356, 0.99975356, 0.99975356, 0.99903846,
       0.99903846, 0.99903846, 0.99903846, 0.99674028, 0.99674028,
       0.99674028, 0.99674028, 0.9905424 , 0.9905424 , 0.9905424 ,
       0.9905424 , 0.97678524, 0.97678524, 0.97678524, 0.97678524,
       0.95188827, 0.95188827, 0.95188827, 0.95188827, 0.91483889,
       0.91483889, 0.91483889, 0.91483889, 0.86814947, 0.86814947,
       0.86814947, 0.86814947, 0.81614043, 0.81614043, 0.81614043,
       0.81614043, 0.76514638, 0.76514638, 0.76514638, 0.76514638,
       0.71513541, 0.71513541, 0.71513541, 0.71513541, 0.66759433,
       0.66759433, 0.66759433, 0.66759433, 0.63206294, 0.63206294,
       0.63206294, 0.63206294, 0.60467247, 0.60467247, 0.60467247,
       0.60467247, 0.58608604, 0.58608604, 0.58608604, 0.58608604,
       0.57910917, 0.57910917, 0.57910917, 0.57910917, 0.57863491,
       0.57863491, 0.57863491, 0.57863491, 0.57958226, 0.57958226,
       0.57958226, 0.57958226, 0.58186037, 0.58186037, 0.58186037,
       0.58186037, 0.58254066, 0.58254066, 0.58254066, 0.58254066,
       0.58105548, 0.58105548, 0.58105548, 0.58105548, 0.5741289 ,
       0.5741289 , 0.5741289 , 0.5741289 , 0.55663703, 0.55663703,
       0.55663703, 0.55663703, 0.52383547, 0.52383547, 0.52383547,
       0.52383547, 0.47295059, 0.47295059, 0.47295059, 0.47295059,
       0.41066789, 0.41066789, 0.41066789, 0.41066789, 0.36741736,
       0.36741736, 0.36741736, 0.36741736, 0.34401862, 0.34401862,
       0.34401862, 0.34401862, 0.33359114, 0.33359114, 0.33359114,
       0.33359114, 0.33073618, 0.33073618, 0.33073618, 0.33073618,
       0.33046507, 0.33046507, 0.33046507, 0.33046507, 0.32945985,
       0.32945985, 0.32945985, 0.32945985, 0.31646094, 0.31646094,
       0.31646094, 0.31646094, 0.25979697, 0.25979697, 0.25979697,
       0.25979697, 0.16286529, 0.16286529, 0.16286529, 0.16286529,
       0.12929032, 0.12929032, 0.12929032, 0.12929032, 0.12536025,
       0.12536025, 0.12536025, 0.12536025, 0.1250278 , 0.1250278 ,
       0.1250278 , 0.1250278 , 0.1250021 , 0.1250021 , 0.1250021 ,
       0.1250021 , 0.12500016, 0.12500016, 0.12500016, 0.12500016,
       0.12500001, 0.12500001, 0.12500001, 0.12500001, 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000008e-01, 7.50000008e-01, 7.50000008e-01, 7.50000008e-01,
       7.50000061e-01, 7.50000061e-01, 7.50000061e-01, 7.50000061e-01,
       7.50000400e-01, 7.50000400e-01, 7.50000400e-01, 7.50000400e-01,
       7.50002418e-01, 7.50002418e-01, 7.50002418e-01, 7.50002418e-01,
       7.50013293e-01, 7.50013293e-01, 7.50013293e-01, 7.50013293e-01,
       7.50065892e-01, 7.50065892e-01, 7.50065892e-01, 7.50065892e-01,
       7.50291602e-01, 7.50291602e-01, 7.50291602e-01, 7.50291602e-01,
       7.51137963e-01, 7.51137963e-01, 7.51137963e-01, 7.51137963e-01,
       7.53860931e-01, 7.53860931e-01, 7.53860931e-01, 7.53860931e-01,
       7.61229895e-01, 7.61229895e-01, 7.61229895e-01, 7.61229895e-01,
       7.77729726e-01, 7.77729726e-01, 7.77729726e-01, 7.77729726e-01,
       8.08112566e-01, 8.08112566e-01, 8.08112566e-01, 8.08112566e-01,
       8.54605431e-01, 8.54605431e-01, 8.54605431e-01, 8.54605431e-01,
       9.15480064e-01, 9.15480064e-01, 9.15480064e-01, 9.15480064e-01,
       9.86288872e-01, 9.86288872e-01, 9.86288872e-01, 9.86288872e-01,
       1.05903455e+00, 1.05903455e+00, 1.05903455e+00, 1.05903455e+00,
       1.13226352e+00, 1.13226352e+00, 1.13226352e+00, 1.13226352e+00,
       1.20670021e+00, 1.20670021e+00, 1.20670021e+00, 1.20670021e+00,
       1.27256005e+00, 1.27256005e+00, 1.27256005e+00, 1.27256005e+00,
       1.32027206e+00, 1.32027206e+00, 1.32027206e+00, 1.32027206e+00,
       1.34589382e+00, 1.34589382e+00, 1.34589382e+00, 1.34589382e+00,
       1.35597341e+00, 1.35597341e+00, 1.35597341e+00, 1.35597341e+00,
       1.35925362e+00, 1.35925362e+00, 1.35925362e+00, 1.35925362e+00,
       1.36055940e+00, 1.36055940e+00, 1.36055940e+00, 1.36055940e+00,
       1.36160216e+00, 1.36160216e+00, 1.36160216e+00, 1.36160216e+00,
       1.36259868e+00, 1.36259868e+00, 1.36259868e+00, 1.36259868e+00,
       1.36352978e+00, 1.36352978e+00, 1.36352978e+00, 1.36352978e+00,
       1.36408956e+00, 1.36408956e+00, 1.36408956e+00, 1.36408956e+00,
       1.36400563e+00, 1.36400563e+00, 1.36400563e+00, 1.36400563e+00,
       1.36344216e+00, 1.36344216e+00, 1.36344216e+00, 1.36344216e+00,
       1.36276431e+00, 1.36276431e+00, 1.36276431e+00, 1.36276431e+00,
       1.36178307e+00, 1.36178307e+00, 1.36178307e+00, 1.36178307e+00,
       1.36049076e+00, 1.36049076e+00, 1.36049076e+00, 1.36049076e+00,
       1.36016799e+00, 1.36016799e+00, 1.36016799e+00, 1.36016799e+00,
       1.36000464e+00, 1.36000464e+00, 1.36000464e+00, 1.36000464e+00,
       1.35908609e+00, 1.35908609e+00, 1.35908609e+00, 1.35908609e+00,
       1.35614599e+00, 1.35614599e+00, 1.35614599e+00, 1.35614599e+00,
       1.34038610e+00, 1.34038610e+00, 1.34038610e+00, 1.34038610e+00,
       1.26724046e+00, 1.26724046e+00, 1.26724046e+00, 1.26724046e+00,
       9.82640800e-01, 9.82640800e-01, 9.82640800e-01, 9.82640800e-01,
       3.48788395e-01, 3.48788395e-01, 3.48788395e-01, 3.48788395e-01,
       3.96209590e-02, 3.96209590e-02, 3.96209590e-02, 3.96209590e-02,
       3.13229418e-03, 3.13229418e-03, 3.13229418e-03, 3.13229418e-03,
       2.36909021e-04, 2.36909021e-04, 2.36909021e-04, 2.36909021e-04,
       1.78221789e-05, 1.78221789e-05, 1.78221789e-05, 1.78221789e-05,
       1.33690626e-06, 1.33690626e-06, 1.33690626e-06, 1.33690626e-06,
       9.99987457e-08, 9.99987457e-08, 9.99987457e-08, 9.99987457e-08,
       7.46125178e-09, 7.46125178e-09, 7.46125178e-09, 7.46125178e-09,
       5.55345318e-10, 5.55345318e-10, 5.55345318e-10, 5.55345318e-10,
       4.12297396e-11, 4.12297396e-11, 4.12297396e-11, 4.12297396e-11,
       3.05298490e-12, 3.05298490e-12, 3.05298490e-12, 3.05298490e-12,
       2.25630808e-13, 2.25630808e-13, 2.25630808e-13, 2.25630808e-13,
       1.65496825e-14, 1.65496825e-14, 1.65496825e-14, 1.65496825e-14,
       1.18089382e-15, 1.18089382e-15, 1.18089382e-15, 1.18089382e-15,
       7.03960128e-17, 7.03960128e-17, 7.03960128e-17, 7.03960128e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999993, 0.99999993, 0.99999993, 0.99999993, 0.99999953,
       0.99999953, 0.99999953, 0.99999953, 0.99999714, 0.99999714,
       0.99999714, 0.99999714, 0.99998427, 0.99998427, 0.99998427,
       0.99998427, 0.99992204, 0.99992204, 0.99992204, 0.99992204,
       0.99965503, 0.99965503, 0.99965503, 0.99965503, 0.99865441,
       0.99865441, 0.99865441, 0.99865441, 0.99544177, 0.99544177,
       0.99544177, 0.99544177, 0.98679799, 0.98679799, 0.98679799,
       0.98679799, 0.96770449, 0.96770449, 0.96770449, 0.96770449,
       0.93344814, 0.93344814, 0.93344814, 0.93344814, 0.88314892,
       0.88314892, 0.88314892, 0.88314892, 0.82088008, 0.82088008,
       0.82088008, 0.82088008, 0.75281451, 0.75281451, 0.75281451,
       0.75281451, 0.68680422, 0.68680422, 0.68680422, 0.68680422,
       0.62684396, 0.62684396, 0.62684396, 0.62684396, 0.56962935,
       0.56962935, 0.56962935, 0.56962935, 0.5232226 , 0.5232226 ,
       0.5232226 , 0.5232226 , 0.49143435, 0.49143435, 0.49143435,
       0.49143435, 0.47522501, 0.47522501, 0.47522501, 0.47522501,
       0.46935729, 0.46935729, 0.46935729, 0.46935729, 0.46752687,
       0.46752687, 0.46752687, 0.46752687, 0.46668373, 0.46668373,
       0.46668373, 0.46668373, 0.46587781, 0.46587781, 0.46587781,
       0.46587781, 0.46533792, 0.46533792, 0.46533792, 0.46533792,
       0.46526321, 0.46526321, 0.46526321, 0.46526321, 0.46529401,
       0.46529401, 0.46529401, 0.46529401, 0.46538814, 0.46538814,
       0.46538814, 0.46538814, 0.46554165, 0.46554165, 0.46554165,
       0.46554165, 0.4653427 , 0.4653427 , 0.4653427 , 0.4653427 ,
       0.46500494, 0.46500494, 0.46500494, 0.46500494, 0.4649203 ,
       0.4649203 , 0.4649203 , 0.4649203 , 0.46481236, 0.46481236,
       0.46481236, 0.46481236, 0.4648016 , 0.4648016 , 0.4648016 ,
       0.4648016 , 0.46486006, 0.46486006, 0.46486006, 0.46486006,
       0.46351591, 0.46351591, 0.46351591, 0.46351591, 0.45617693,
       0.45617693, 0.45617693, 0.45617693, 0.42387417, 0.42387417,
       0.42387417, 0.42387417, 0.31662409, 0.31662409, 0.31662409,
       0.31662409, 0.15467947, 0.15467947, 0.15467947, 0.15467947,
       0.10533579, 0.10533579, 0.10533579, 0.10533579, 0.10041475,
       0.10041475, 0.10041475, 0.10041475, 0.10003134, 0.10003134,
       0.10003134, 0.10003134, 0.10000236, 0.10000236, 0.10000236,
       0.10000236, 0.10000018, 0.10000018, 0.10000018, 0.10000018,
       0.10000001, 0.10000001, 0.10000001, 0.10000001, 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.9999995 ,
       0.9999995 , 0.9999995 , 0.9999995 , 0.99999709, 0.99999709,
       0.99999709, 0.99999709, 0.99998454, 0.99998454, 0.99998454,
       0.99998454, 0.99992608, 0.99992608, 0.99992608, 0.99992608,
       0.99968447, 0.99968447, 0.99968447, 0.99968447, 0.99881309,
       0.99881309, 0.99881309, 0.99881309, 0.9961219 , 0.9961219 ,
       0.9961219 , 0.9961219 , 0.98915182, 0.98915182, 0.98915182,
       0.98915182, 0.9742804 , 0.9742804 , 0.9742804 , 0.9742804 ,
       0.94831908, 0.94831908, 0.94831908, 0.94831908, 0.91081218,
       0.91081218, 0.91081218, 0.91081218, 0.86452304, 0.86452304,
       0.86452304, 0.86452304, 0.81364869, 0.81364869, 0.81364869,
       0.81364869, 0.76425007, 0.76425007, 0.76425007, 0.76425007,
       0.71596964, 0.71596964, 0.71596964, 0.71596964, 0.66862165,
       0.66862165, 0.66862165, 0.66862165, 0.63309882, 0.63309882,
       0.63309882, 0.63309882, 0.60692411, 0.60692411, 0.60692411,
       0.60692411, 0.58834503, 0.58834503, 0.58834503, 0.58834503,
       0.5797179 , 0.5797179 , 0.5797179 , 0.5797179 , 0.57833736,
       0.57833736, 0.57833736, 0.57833736, 0.57885427, 0.57885427,
       0.57885427, 0.57885427, 0.58070829, 0.58070829, 0.58070829,
       0.58070829, 0.5821418 , 0.5821418 , 0.5821418 , 0.5821418 ,
       0.58161437, 0.58161437, 0.58161437, 0.58161437, 0.57752342,
       0.57752342, 0.57752342, 0.57752342, 0.56529572, 0.56529572,
       0.56529572, 0.56529572, 0.53988046, 0.53988046, 0.53988046,
       0.53988046, 0.49734652, 0.49734652, 0.49734652, 0.49734652,
       0.43756408, 0.43756408, 0.43756408, 0.43756408, 0.38405097,
       0.38405097, 0.38405097, 0.38405097, 0.35274026, 0.35274026,
       0.35274026, 0.35274026, 0.33729664, 0.33729664, 0.33729664,
       0.33729664, 0.33184586, 0.33184586, 0.33184586, 0.33184586,
       0.3308689 , 0.3308689 , 0.3308689 , 0.3308689 , 0.33116014,
       0.33116014, 0.33116014, 0.33116014, 0.3284959 , 0.3284959 ,
       0.3284959 , 0.3284959 , 0.305514  , 0.305514  , 0.305514  ,
       0.305514  , 0.22909354, 0.22909354, 0.22909354, 0.22909354,
       0.14525793, 0.14525793, 0.14525793, 0.14525793, 0.12704227,
       0.12704227, 0.12704227, 0.12704227, 0.12516466, 0.12516466,
       0.12516466, 0.12516466, 0.12501259, 0.12501259, 0.12501259,
       0.12501259, 0.12500095, 0.12500095, 0.12500095, 0.12500095,
       0.12500007, 0.12500007, 0.12500007, 0.12500007, 0.12500001,
       0.12500001, 0.12500001, 0.12500001, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
       7.50000093e-01, 7.50000093e-01, 7.50000093e-01, 7.50000093e-01,
       7.50000591e-01, 7.50000591e-01, 7.50000591e-01, 7.50000591e-01,
       7.50003448e-01, 7.50003448e-01, 7.50003448e-01, 7.50003448e-01,
       7.50018287e-01, 7.50018287e-01, 7.50018287e-01, 7.50018287e-01,
       7.50087467e-01, 7.50087467e-01, 7.50087467e-01, 7.50087467e-01,
       7.50373360e-01, 7.50373360e-01, 7.50373360e-01, 7.50373360e-01,
       7.51404804e-01, 7.51404804e-01, 7.51404804e-01, 7.51404804e-01,
       7.54594512e-01, 7.54594512e-01, 7.54594512e-01, 7.54594512e-01,
       7.62888923e-01, 7.62888923e-01, 7.62888923e-01, 7.62888923e-01,
       7.80756528e-01, 7.80756528e-01, 7.80756528e-01, 7.80756528e-01,
       8.12524446e-01, 8.12524446e-01, 8.12524446e-01, 8.12524446e-01,
       8.59748156e-01, 8.59748156e-01, 8.59748156e-01, 8.59748156e-01,
       9.20303317e-01, 9.20303317e-01, 9.20303317e-01, 9.20303317e-01,
       9.89569875e-01, 9.89569875e-01, 9.89569875e-01, 9.89569875e-01,
       1.06043656e+00, 1.06043656e+00, 1.06043656e+00, 1.06043656e+00,
       1.13178235e+00, 1.13178235e+00, 1.13178235e+00, 1.13178235e+00,
       1.20428722e+00, 1.20428722e+00, 1.20428722e+00, 1.20428722e+00,
       1.26922681e+00, 1.26922681e+00, 1.26922681e+00, 1.26922681e+00,
       1.31744793e+00, 1.31744793e+00, 1.31744793e+00, 1.31744793e+00,
       1.34420543e+00, 1.34420543e+00, 1.34420543e+00, 1.34420543e+00,
       1.35515354e+00, 1.35515354e+00, 1.35515354e+00, 1.35515354e+00,
       1.35893569e+00, 1.35893569e+00, 1.35893569e+00, 1.35893569e+00,
       1.36047087e+00, 1.36047087e+00, 1.36047087e+00, 1.36047087e+00,
       1.36156372e+00, 1.36156372e+00, 1.36156372e+00, 1.36156372e+00,
       1.36242402e+00, 1.36242402e+00, 1.36242402e+00, 1.36242402e+00,
       1.36322740e+00, 1.36322740e+00, 1.36322740e+00, 1.36322740e+00,
       1.36389115e+00, 1.36389115e+00, 1.36389115e+00, 1.36389115e+00,
       1.36394778e+00, 1.36394778e+00, 1.36394778e+00, 1.36394778e+00,
       1.36363338e+00, 1.36363338e+00, 1.36363338e+00, 1.36363338e+00,
       1.36317823e+00, 1.36317823e+00, 1.36317823e+00, 1.36317823e+00,
       1.36245466e+00, 1.36245466e+00, 1.36245466e+00, 1.36245466e+00,
       1.36111329e+00, 1.36111329e+00, 1.36111329e+00, 1.36111329e+00,
       1.36045029e+00, 1.36045029e+00, 1.36045029e+00, 1.36045029e+00,
       1.36011173e+00, 1.36011173e+00, 1.36011173e+00, 1.36011173e+00,
       1.35943008e+00, 1.35943008e+00, 1.35943008e+00, 1.35943008e+00,
       1.35849429e+00, 1.35849429e+00, 1.35849429e+00, 1.35849429e+00,
       1.35337432e+00, 1.35337432e+00, 1.35337432e+00, 1.35337432e+00,
       1.32699322e+00, 1.32699322e+00, 1.32699322e+00, 1.32699322e+00,
       1.21392814e+00, 1.21392814e+00, 1.21392814e+00, 1.21392814e+00,
       8.11305629e-01, 8.11305629e-01, 8.11305629e-01, 8.11305629e-01,
       1.91993018e-01, 1.91993018e-01, 1.91993018e-01, 1.91993018e-01,
       1.84260657e-02, 1.84260657e-02, 1.84260657e-02, 1.84260657e-02,
       1.41864065e-03, 1.41864065e-03, 1.41864065e-03, 1.41864065e-03,
       1.07039498e-04, 1.07039498e-04, 1.07039498e-04, 1.07039498e-04,
       8.05698302e-06, 8.05698302e-06, 8.05698302e-06, 8.05698302e-06,
       6.04942296e-07, 6.04942296e-07, 6.04942296e-07, 6.04942296e-07,
       4.53003318e-08, 4.53003318e-08, 4.53003318e-08, 4.53003318e-08,
       3.38340676e-09, 3.38340676e-09, 3.38340676e-09, 3.38340676e-09,
       2.52067618e-10, 2.52067618e-10, 2.52067618e-10, 2.52067618e-10,
       1.87321914e-11, 1.87321914e-11, 1.87321914e-11, 1.87321914e-11,
       1.38872868e-12, 1.38872868e-12, 1.38872868e-12, 1.38872868e-12,
       1.02623229e-13, 1.02623229e-13, 1.02623229e-13, 1.02623229e-13,
       7.45434898e-15, 7.45434898e-15, 7.45434898e-15, 7.45434898e-15,
       5.62547042e-16, 5.62547042e-16, 5.62547042e-16, 5.62547042e-16,
       3.42190912e-17, 3.42190912e-17, 3.42190912e-17, 3.42190912e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999989, 0.99999989, 0.99999989, 0.99999989, 0.9999993 ,
       0.9999993 , 0.9999993 , 0.9999993 , 0.99999592, 0.99999592,
       0.99999592, 0.99999592, 0.99997836, 0.99997836, 0.99997836,
       0.99997836, 0.99989651, 0.99989651, 0.99989651, 0.99989651,
       0.99955833, 0.99955833, 0.99955833, 0.99955833, 0.99833914,
       0.99833914, 0.99833914, 0.99833914, 0.994578  , 0.994578  ,
       0.994578  , 0.994578  , 0.98486191, 0.98486191, 0.98486191,
       0.98486191, 0.96423927, 0.96423927, 0.96423927, 0.96423927,
       0.92856276, 0.92856276, 0.92856276, 0.92856276, 0.87771963,
       0.87771963, 0.87771963, 0.87771963, 0.81607625, 0.81607625,
       0.81607625, 0.81607625, 0.74954761, 0.74954761, 0.74954761,
       0.74954761, 0.68560013, 0.68560013, 0.68560013, 0.68560013,
       0.62733728, 0.62733728, 0.62733728, 0.62733728, 0.57145736,
       0.57145736, 0.57145736, 0.57145736, 0.52561297, 0.52561297,
       0.52561297, 0.52561297, 0.4934087 , 0.4934087 , 0.4934087 ,
       0.4934087 , 0.4762095 , 0.4762095 , 0.4762095 , 0.4762095 ,
       0.46962957, 0.46962957, 0.46962957, 0.46962957, 0.46760322,
       0.46760322, 0.46760322, 0.46760322, 0.46677931, 0.46677931,
       0.46677931, 0.46677931, 0.46598101, 0.46598101, 0.46598101,
       0.46598101, 0.4653201 , 0.4653201 , 0.4653201 , 0.4653201 ,
       0.46512805, 0.46512805, 0.46512805, 0.46512805, 0.46518516,
       0.46518516, 0.46518516, 0.46518516, 0.46533628, 0.46533628,
       0.46533628, 0.46533628, 0.46560697, 0.46560697, 0.46560697,
       0.46560697, 0.46556363, 0.46556363, 0.46556363, 0.46556363,
       0.46534283, 0.46534283, 0.46534283, 0.46534283, 0.46521233,
       0.46521233, 0.46521233, 0.46521233, 0.46494555, 0.46494555,
       0.46494555, 0.46494555, 0.46485571, 0.46485571, 0.46485571,
       0.46485571, 0.46502167, 0.46502167, 0.46502167, 0.46502167,
       0.46460407, 0.46460407, 0.46460407, 0.46460407, 0.46217056,
       0.46217056, 0.46217056, 0.46217056, 0.4504888 , 0.4504888 ,
       0.4504888 , 0.4504888 , 0.40110266, 0.40110266, 0.40110266,
       0.40110266, 0.26313779, 0.26313779, 0.26313779, 0.26313779,
       0.12803042, 0.12803042, 0.12803042, 0.12803042, 0.1024553 ,
       0.1024553 , 0.1024553 , 0.1024553 , 0.10018774, 0.10018774,
       0.10018774, 0.10018774, 0.10001416, 0.10001416, 0.10001416,
       0.10001416, 0.10000107, 0.10000107, 0.10000107, 0.10000107,
       0.10000008, 0.10000008, 0.10000008, 0.10000008, 0.10000001,
       0.10000001, 0.10000001, 0.10000001, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999988, 0.99999988, 0.99999988, 0.99999988, 0.99999927,
       0.99999927, 0.99999927, 0.99999927, 0.9999959 , 0.9999959 ,
       0.9999959 , 0.9999959 , 0.99997898, 0.99997898, 0.99997898,
       0.99997898, 0.99990291, 0.99990291, 0.99990291, 0.99990291,
       0.99959993, 0.99959993, 0.99959993, 0.99959993, 0.99854785,
       0.99854785, 0.99854785, 0.99854785, 0.99542289, 0.99542289,
       0.99542289, 0.99542289, 0.98764264, 0.98764264, 0.98764264,
       0.98764264, 0.97166631, 0.97166631, 0.97166631, 0.97166631,
       0.94472122, 0.94472122, 0.94472122, 0.94472122, 0.90686323,
       0.90686323, 0.90686323, 0.90686323, 0.86103104, 0.86103104,
       0.86103104, 0.86103104, 0.81128459, 0.81128459, 0.81128459,
       0.81128459, 0.76333114, 0.76333114, 0.76333114, 0.76333114,
       0.71681296, 0.71681296, 0.71681296, 0.71681296, 0.66988534,
       0.66988534, 0.66988534, 0.66988534, 0.63398635, 0.63398635,
       0.63398635, 0.63398635, 0.60868419, 0.60868419, 0.60868419,
       0.60868419, 0.59062344, 0.59062344, 0.59062344, 0.59062344,
       0.58075915, 0.58075915, 0.58075915, 0.58075915, 0.57821989,
       0.57821989, 0.57821989, 0.57821989, 0.57834671, 0.57834671,
       0.57834671, 0.57834671, 0.57958969, 0.57958969, 0.57958969,
       0.57958969, 0.58156325, 0.58156325, 0.58156325, 0.58156325,
       0.58167402, 0.58167402, 0.58167402, 0.58167402, 0.57949654,
       0.57949654, 0.57949654, 0.57949654, 0.57136665, 0.57136665,
       0.57136665, 0.57136665, 0.55237715, 0.55237715, 0.55237715,
       0.55237715, 0.5178861 , 0.5178861 , 0.5178861 , 0.5178861 ,
       0.46556784, 0.46556784, 0.46556784, 0.46556784, 0.40490108,
       0.40490108, 0.40490108, 0.40490108, 0.36456809, 0.36456809,
       0.36456809, 0.36456809, 0.34291316, 0.34291316, 0.34291316,
       0.34291316, 0.33384449, 0.33384449, 0.33384449, 0.33384449,
       0.33130867, 0.33130867, 0.33130867, 0.33130867, 0.33149943,
       0.33149943, 0.33149943, 0.33149943, 0.33184294, 0.33184294,
       0.33184294, 0.33184294, 0.32533092, 0.32533092, 0.32533092,
       0.32533092, 0.28902333, 0.28902333, 0.28902333, 0.28902333,
       0.1964541 , 0.1964541 , 0.1964541 , 0.1964541 , 0.13545621,
       0.13545621, 0.13545621, 0.13545621, 0.12594954, 0.12594954,
       0.12594954, 0.12594954, 0.12507487, 0.12507487, 0.12507487,
       0.12507487, 0.1250057 , 0.1250057 , 0.1250057 , 0.1250057 ,
       0.12500043, 0.12500043, 0.12500043, 0.12500043, 0.12500003,
       0.12500003, 0.12500003, 0.12500003, 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000021e-01, 7.50000021e-01, 7.50000021e-01, 7.50000021e-01,
       7.50000140e-01, 7.50000140e-01, 7.50000140e-01, 7.50000140e-01,
       7.50000861e-01, 7.50000861e-01, 7.50000861e-01, 7.50000861e-01,
       7.50004854e-01, 7.50004854e-01, 7.50004854e-01, 7.50004854e-01,
       7.50024870e-01, 7.50024870e-01, 7.50024870e-01, 7.50024870e-01,
       7.50114879e-01, 7.50114879e-01, 7.50114879e-01, 7.50114879e-01,
       7.50473401e-01, 7.50473401e-01, 7.50473401e-01, 7.50473401e-01,
       7.51718892e-01, 7.51718892e-01, 7.51718892e-01, 7.51718892e-01,
       7.55424229e-01, 7.55424229e-01, 7.55424229e-01, 7.55424229e-01,
       7.64691790e-01, 7.64691790e-01, 7.64691790e-01, 7.64691790e-01,
       7.83922560e-01, 7.83922560e-01, 7.83922560e-01, 7.83922560e-01,
       8.16985524e-01, 8.16985524e-01, 8.16985524e-01, 8.16985524e-01,
       8.64808121e-01, 8.64808121e-01, 8.64808121e-01, 8.64808121e-01,
       9.24958686e-01, 9.24958686e-01, 9.24958686e-01, 9.24958686e-01,
       9.92693337e-01, 9.92693337e-01, 9.92693337e-01, 9.92693337e-01,
       1.06173967e+00, 1.06173967e+00, 1.06173967e+00, 1.06173967e+00,
       1.13129021e+00, 1.13129021e+00, 1.13129021e+00, 1.13129021e+00,
       1.20198744e+00, 1.20198744e+00, 1.20198744e+00, 1.20198744e+00,
       1.26595672e+00, 1.26595672e+00, 1.26595672e+00, 1.26595672e+00,
       1.31461852e+00, 1.31461852e+00, 1.31461852e+00, 1.31461852e+00,
       1.34253734e+00, 1.34253734e+00, 1.34253734e+00, 1.34253734e+00,
       1.35432704e+00, 1.35432704e+00, 1.35432704e+00, 1.35432704e+00,
       1.35852967e+00, 1.35852967e+00, 1.35852967e+00, 1.35852967e+00,
       1.36029446e+00, 1.36029446e+00, 1.36029446e+00, 1.36029446e+00,
       1.36153027e+00, 1.36153027e+00, 1.36153027e+00, 1.36153027e+00,
       1.36236269e+00, 1.36236269e+00, 1.36236269e+00, 1.36236269e+00,
       1.36299920e+00, 1.36299920e+00, 1.36299920e+00, 1.36299920e+00,
       1.36365952e+00, 1.36365952e+00, 1.36365952e+00, 1.36365952e+00,
       1.36380842e+00, 1.36380842e+00, 1.36380842e+00, 1.36380842e+00,
       1.36364674e+00, 1.36364674e+00, 1.36364674e+00, 1.36364674e+00,
       1.36337979e+00, 1.36337979e+00, 1.36337979e+00, 1.36337979e+00,
       1.36291780e+00, 1.36291780e+00, 1.36291780e+00, 1.36291780e+00,
       1.36179759e+00, 1.36179759e+00, 1.36179759e+00, 1.36179759e+00,
       1.36099880e+00, 1.36099880e+00, 1.36099880e+00, 1.36099880e+00,
       1.36037766e+00, 1.36037766e+00, 1.36037766e+00, 1.36037766e+00,
       1.35961227e+00, 1.35961227e+00, 1.35961227e+00, 1.35961227e+00,
       1.35921926e+00, 1.35921926e+00, 1.35921926e+00, 1.35921926e+00,
       1.35759675e+00, 1.35759675e+00, 1.35759675e+00, 1.35759675e+00,
       1.34828922e+00, 1.34828922e+00, 1.34828922e+00, 1.34828922e+00,
       1.30681890e+00, 1.30681890e+00, 1.30681890e+00, 1.30681890e+00,
       1.13247598e+00, 1.13247598e+00, 1.13247598e+00, 1.13247598e+00,
       6.05650926e-01, 6.05650926e-01, 6.05650926e-01, 6.05650926e-01,
       9.87277152e-02, 9.87277152e-02, 9.87277152e-02, 9.87277152e-02,
       8.39794778e-03, 8.39794778e-03, 8.39794778e-03, 8.39794778e-03,
       6.41036738e-04, 6.41036738e-04, 6.41036738e-04, 6.41036738e-04,
       4.83799215e-05, 4.83799215e-05, 4.83799215e-05, 4.83799215e-05,
       3.64189070e-06, 3.64189070e-06, 3.64189070e-06, 3.64189070e-06,
       2.73646970e-07, 2.73646970e-07, 2.73646970e-07, 2.73646970e-07,
       2.05122779e-08, 2.05122779e-08, 2.05122779e-08, 2.05122779e-08,
       1.53361037e-09, 1.53361037e-09, 1.53361037e-09, 1.53361037e-09,
       1.14368647e-10, 1.14368647e-10, 1.14368647e-10, 1.14368647e-10,
       8.50778657e-12, 8.50778657e-12, 8.50778657e-12, 8.50778657e-12,
       6.31241749e-13, 6.31241749e-13, 6.31241749e-13, 6.31241749e-13,
       4.65959457e-14, 4.65959457e-14, 4.65959457e-14, 4.65959457e-14,
       3.44111781e-15, 3.44111781e-15, 3.44111781e-15, 3.44111781e-15,
       2.44715227e-16, 2.44715227e-16, 2.44715227e-16, 2.44715227e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999998, 0.99999998, 0.99999998, 0.99999998,
       0.99999983, 0.99999983, 0.99999983, 0.99999983, 0.99999898,
       0.99999898, 0.99999898, 0.99999898, 0.99999426, 0.99999426,
       0.99999426, 0.99999426, 0.99997057, 0.99997057, 0.99997057,
       0.99997057, 0.99986408, 0.99986408, 0.99986408, 0.99986408,
       0.99944001, 0.99944001, 0.99944001, 0.99944001, 0.99796817,
       0.99796817, 0.99796817, 0.99796817, 0.99360189, 0.99360189,
       0.99360189, 0.99360189, 0.98276203, 0.98276203, 0.98276203,
       0.98276203, 0.96062669, 0.96062669, 0.96062669, 0.96062669,
       0.92364506, 0.92364506, 0.92364506, 0.92364506, 0.87240348,
       0.87240348, 0.87240348, 0.87240348, 0.81145937, 0.81145937,
       0.81145937, 0.81145937, 0.74647243, 0.74647243, 0.74647243,
       0.74647243, 0.68444299, 0.68444299, 0.68444299, 0.68444299,
       0.62778294, 0.62778294, 0.62778294, 0.62778294, 0.5732094 ,
       0.5732094 , 0.5732094 , 0.5732094 , 0.52793038, 0.52793038,
       0.52793038, 0.52793038, 0.49541854, 0.49541854, 0.49541854,
       0.49541854, 0.47732601, 0.47732601, 0.47732601, 0.47732601,
       0.46998067, 0.46998067, 0.46998067, 0.46998067, 0.46765631,
       0.46765631, 0.46765631, 0.46765631, 0.46682798, 0.46682798,
       0.46682798, 0.46682798, 0.46608977, 0.46608977, 0.46608977,
       0.46608977, 0.4653755 , 0.4653755 , 0.4653755 , 0.4653755 ,
       0.46504229, 0.46504229, 0.46504229, 0.46504229, 0.46505976,
       0.46505976, 0.46505976, 0.46505976, 0.46523378, 0.46523378,
       0.46523378, 0.46523378, 0.46557421, 0.46557421, 0.46557421,
       0.46557421, 0.4656599 , 0.4656599 , 0.4656599 , 0.4656599 ,
       0.46558172, 0.46558172, 0.46558172, 0.46558172, 0.46553439,
       0.46553439, 0.46553439, 0.46553439, 0.46520836, 0.46520836,
       0.46520836, 0.46520836, 0.46498438, 0.46498438, 0.46498438,
       0.46498438, 0.46510742, 0.46510742, 0.46510742, 0.46510742,
       0.46494014, 0.46494014, 0.46494014, 0.46494014, 0.46413174,
       0.46413174, 0.46413174, 0.46413174, 0.46026772, 0.46026772,
       0.46026772, 0.46026772, 0.44125804, 0.44125804, 0.44125804,
       0.44125804, 0.36962649, 0.36962649, 0.36962649, 0.36962649,
       0.20878392, 0.20878392, 0.20878392, 0.20878392, 0.11372397,
       0.11372397, 0.11372397, 0.11372397, 0.10111414, 0.10111414,
       0.10111414, 0.10111414, 0.10008482, 0.10008482, 0.10008482,
       0.10008482, 0.1000064 , 0.1000064 , 0.1000064 , 0.1000064 ,
       0.10000048, 0.10000048, 0.10000048, 0.10000048, 0.10000004,
       0.10000004, 0.10000004, 0.10000004, 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999997, 0.99999997, 0.99999997, 0.99999997,
       0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999895,
       0.99999895, 0.99999895, 0.99999895, 0.99999429, 0.99999429,
       0.99999429, 0.99999429, 0.99997173, 0.99997173, 0.99997173,
       0.99997173, 0.99987376, 0.99987376, 0.99987376, 0.99987376,
       0.99949743, 0.99949743, 0.99949743, 0.99949743, 0.99823832,
       0.99823832, 0.99823832, 0.99823832, 0.99463867, 0.99463867,
       0.99463867, 0.99463867, 0.98601545, 0.98601545, 0.98601545,
       0.98601545, 0.96895243, 0.96895243, 0.96895243, 0.96895243,
       0.94110753, 0.94110753, 0.94110753, 0.94110753, 0.90299803,
       0.90299803, 0.90299803, 0.90299803, 0.85767273, 0.85767273,
       0.85767273, 0.85767273, 0.80904917, 0.80904917, 0.80904917,
       0.80904917, 0.76239648, 0.76239648, 0.76239648, 0.76239648,
       0.71749093, 0.71749093, 0.71749093, 0.71749093, 0.67147851,
       0.67147851, 0.67147851, 0.67147851, 0.63489   , 0.63489   ,
       0.63489   , 0.63489   , 0.60997929, 0.60997929, 0.60997929,
       0.60997929, 0.59272294, 0.59272294, 0.59272294, 0.59272294,
       0.58215958, 0.58215958, 0.58215958, 0.58215958, 0.57835617,
       0.57835617, 0.57835617, 0.57835617, 0.57803304, 0.57803304,
       0.57803304, 0.57803304, 0.57873351, 0.57873351, 0.57873351,
       0.57873351, 0.58068604, 0.58068604, 0.58068604, 0.58068604,
       0.58148766, 0.58148766, 0.58148766, 0.58148766, 0.58048792,
       0.58048792, 0.58048792, 0.58048792, 0.57541107, 0.57541107,
       0.57541107, 0.57541107, 0.56176436, 0.56176436, 0.56176436,
       0.56176436, 0.53464163, 0.53464163, 0.53464163, 0.53464163,
       0.49054306, 0.49054306, 0.49054306, 0.49054306, 0.43056034,
       0.43056034, 0.43056034, 0.43056034, 0.38004005, 0.38004005,
       0.38004005, 0.38004005, 0.35093816, 0.35093816, 0.35093816,
       0.35093816, 0.33716902, 0.33716902, 0.33716902, 0.33716902,
       0.33218768, 0.33218768, 0.33218768, 0.33218768, 0.33163645,
       0.33163645, 0.33163645, 0.33163645, 0.33249535, 0.33249535,
       0.33249535, 0.33249535, 0.33172011, 0.33172011, 0.33172011,
       0.33172011, 0.3191431 , 0.3191431 , 0.3191431 , 0.3191431 ,
       0.2660949 , 0.2660949 , 0.2660949 , 0.2660949 , 0.16817172,
       0.16817172, 0.16817172, 0.16817172, 0.13009983, 0.13009983,
       0.13009983, 0.13009983, 0.12543611, 0.12543611, 0.12543611,
       0.12543611, 0.12503393, 0.12503393, 0.12503393, 0.12503393,
       0.12500258, 0.12500258, 0.12500258, 0.12500258, 0.12500019,
       0.12500019, 0.12500019, 0.12500019, 0.12500001, 0.12500001,
       0.12500001, 0.12500001, 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000005e-01, 7.50000005e-01, 7.50000005e-01, 7.50000005e-01,
       7.50000032e-01, 7.50000032e-01, 7.50000032e-01, 7.50000032e-01,
       7.50000208e-01, 7.50000208e-01, 7.50000208e-01, 7.50000208e-01,
       7.50001239e-01, 7.50001239e-01, 7.50001239e-01, 7.50001239e-01,
       7.50006753e-01, 7.50006753e-01, 7.50006753e-01, 7.50006753e-01,
       7.50033455e-01, 7.50033455e-01, 7.50033455e-01, 7.50033455e-01,
       7.50149366e-01, 7.50149366e-01, 7.50149366e-01, 7.50149366e-01,
       7.50594713e-01, 7.50594713e-01, 7.50594713e-01, 7.50594713e-01,
       7.52085532e-01, 7.52085532e-01, 7.52085532e-01, 7.52085532e-01,
       7.56355674e-01, 7.56355674e-01, 7.56355674e-01, 7.56355674e-01,
       7.66638355e-01, 7.66638355e-01, 7.66638355e-01, 7.66638355e-01,
       7.87217230e-01, 7.87217230e-01, 7.87217230e-01, 7.87217230e-01,
       8.21480083e-01, 8.21480083e-01, 8.21480083e-01, 8.21480083e-01,
       8.69776615e-01, 8.69776615e-01, 8.69776615e-01, 8.69776615e-01,
       9.29447294e-01, 9.29447294e-01, 9.29447294e-01, 9.29447294e-01,
       9.95674208e-01, 9.95674208e-01, 9.95674208e-01, 9.95674208e-01,
       1.06296792e+00, 1.06296792e+00, 1.06296792e+00, 1.06296792e+00,
       1.13078254e+00, 1.13078254e+00, 1.13078254e+00, 1.13078254e+00,
       1.19977119e+00, 1.19977119e+00, 1.19977119e+00, 1.19977119e+00,
       1.26275299e+00, 1.26275299e+00, 1.26275299e+00, 1.26275299e+00,
       1.31175348e+00, 1.31175348e+00, 1.31175348e+00, 1.31175348e+00,
       1.34085462e+00, 1.34085462e+00, 1.34085462e+00, 1.34085462e+00,
       1.35353646e+00, 1.35353646e+00, 1.35353646e+00, 1.35353646e+00,
       1.35810343e+00, 1.35810343e+00, 1.35810343e+00, 1.35810343e+00,
       1.36003123e+00, 1.36003123e+00, 1.36003123e+00, 1.36003123e+00,
       1.36143326e+00, 1.36143326e+00, 1.36143326e+00, 1.36143326e+00,
       1.36236200e+00, 1.36236200e+00, 1.36236200e+00, 1.36236200e+00,
       1.36287773e+00, 1.36287773e+00, 1.36287773e+00, 1.36287773e+00,
       1.36345264e+00, 1.36345264e+00, 1.36345264e+00, 1.36345264e+00,
       1.36363732e+00, 1.36363732e+00, 1.36363732e+00, 1.36363732e+00,
       1.36353697e+00, 1.36353697e+00, 1.36353697e+00, 1.36353697e+00,
       1.36343404e+00, 1.36343404e+00, 1.36343404e+00, 1.36343404e+00,
       1.36315760e+00, 1.36315760e+00, 1.36315760e+00, 1.36315760e+00,
       1.36232473e+00, 1.36232473e+00, 1.36232473e+00, 1.36232473e+00,
       1.36166019e+00, 1.36166019e+00, 1.36166019e+00, 1.36166019e+00,
       1.36084564e+00, 1.36084564e+00, 1.36084564e+00, 1.36084564e+00,
       1.35984618e+00, 1.35984618e+00, 1.35984618e+00, 1.35984618e+00,
       1.35955179e+00, 1.35955179e+00, 1.35955179e+00, 1.35955179e+00,
       1.35897144e+00, 1.35897144e+00, 1.35897144e+00, 1.35897144e+00,
       1.35552174e+00, 1.35552174e+00, 1.35552174e+00, 1.35552174e+00,
       1.34102919e+00, 1.34102919e+00, 1.34102919e+00, 1.34102919e+00,
       1.27545330e+00, 1.27545330e+00, 1.27545330e+00, 1.27545330e+00,
       1.01455011e+00, 1.01455011e+00, 1.01455011e+00, 1.01455011e+00,
       3.94082610e-01, 3.94082610e-01, 3.94082610e-01, 3.94082610e-01,
       4.73339439e-02, 4.73339439e-02, 4.73339439e-02, 4.73339439e-02,
       3.80163833e-03, 3.80163833e-03, 3.80163833e-03, 3.80163833e-03,
       2.89378256e-04, 2.89378256e-04, 2.89378256e-04, 2.89378256e-04,
       2.18495362e-05, 2.18495362e-05, 2.18495362e-05, 2.18495362e-05,
       1.64610353e-06, 1.64610353e-06, 1.64610353e-06, 1.64610353e-06,
       1.23761362e-07, 1.23761362e-07, 1.23761362e-07, 1.23761362e-07,
       9.28475911e-09, 9.28475911e-09, 9.28475911e-09, 9.28475911e-09,
       6.94864466e-10, 6.94864466e-10, 6.94864466e-10, 6.94864466e-10,
       5.18715247e-11, 5.18715247e-11, 5.18715247e-11, 5.18715247e-11,
       3.86232749e-12, 3.86232749e-12, 3.86232749e-12, 3.86232749e-12,
       2.86798402e-13, 2.86798402e-13, 2.86798402e-13, 2.86798402e-13,
       2.12511563e-14, 2.12511563e-14, 2.12511563e-14, 2.12511563e-14,
       1.51978465e-15, 1.51978465e-15, 1.51978465e-15, 1.51978465e-15,
       8.24527483e-17, 8.24527483e-17, 8.24527483e-17, 8.24527483e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999975, 0.99999975, 0.99999975, 0.99999975, 0.99999853,
       0.99999853, 0.99999853, 0.99999853, 0.99999201, 0.99999201,
       0.99999201, 0.99999201, 0.99996042, 0.99996042, 0.99996042,
       0.99996042, 0.99982328, 0.99982328, 0.99982328, 0.99982328,
       0.99929656, 0.99929656, 0.99929656, 0.99929656, 0.9975353 ,
       0.9975353 , 0.9975353 , 0.9975353 , 0.99250721, 0.99250721,
       0.99250721, 0.99250721, 0.98049952, 0.98049952, 0.98049952,
       0.98049952, 0.95688026, 0.95688026, 0.95688026, 0.95688026,
       0.91871272, 0.91871272, 0.91871272, 0.91871272, 0.86720806,
       0.86720806, 0.86720806, 0.86720806, 0.80702616, 0.80702616,
       0.80702616, 0.80702616, 0.74357673, 0.74357673, 0.74357673,
       0.74357673, 0.68334214, 0.68334214, 0.68334214, 0.68334214,
       0.62818486, 0.62818486, 0.62818486, 0.62818486, 0.57487936,
       0.57487936, 0.57487936, 0.57487936, 0.53017432, 0.53017432,
       0.53017432, 0.53017432, 0.49742975, 0.49742975, 0.49742975,
       0.49742975, 0.47854702, 0.47854702, 0.47854702, 0.47854702,
       0.47044075, 0.47044075, 0.47044075, 0.47044075, 0.46773171,
       0.46773171, 0.46773171, 0.46773171, 0.46683192, 0.46683192,
       0.46683192, 0.46683192, 0.46616185, 0.46616185, 0.46616185,
       0.46616185, 0.4654718 , 0.4654718 , 0.4654718 , 0.4654718 ,
       0.46502244, 0.46502244, 0.46502244, 0.46502244, 0.46495839,
       0.46495839, 0.46495839, 0.46495839, 0.46511062, 0.46511062,
       0.46511062, 0.46511062, 0.46546668, 0.46546668, 0.46546668,
       0.46546668, 0.46567427, 0.46567427, 0.46567427, 0.46567427,
       0.4656998 , 0.4656998 , 0.4656998 , 0.4656998 , 0.46577701,
       0.46577701, 0.46577701, 0.46577701, 0.46553312, 0.46553312,
       0.46553312, 0.46553312, 0.46520841, 0.46520841, 0.46520841,
       0.46520841, 0.46521622, 0.46521622, 0.46521622, 0.46521622,
       0.46509428, 0.46509428, 0.46509428, 0.46509428, 0.46477283,
       0.46477283, 0.46477283, 0.46477283, 0.46362484, 0.46362484,
       0.46362484, 0.46362484, 0.45682453, 0.45682453, 0.45682453,
       0.45682453, 0.42721627, 0.42721627, 0.42721627, 0.42721627,
       0.32761038, 0.32761038, 0.32761038, 0.32761038, 0.16329323,
       0.16329323, 0.16329323, 0.16329323, 0.1064006 , 0.1064006 ,
       0.1064006 , 0.1064006 , 0.10050349, 0.10050349, 0.10050349,
       0.10050349, 0.10003828, 0.10003828, 0.10003828, 0.10003828,
       0.10000289, 0.10000289, 0.10000289, 0.10000289, 0.10000022,
       0.10000022, 0.10000022, 0.10000022, 0.10000002, 0.10000002,
       0.10000002, 0.10000002, 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999974, 0.99999974, 0.99999974, 0.99999974, 0.99999851,
       0.99999851, 0.99999851, 0.99999851, 0.99999215, 0.99999215,
       0.99999215, 0.99999215, 0.99996236, 0.99996236, 0.99996236,
       0.99996236, 0.99983743, 0.99983743, 0.99983743, 0.99983743,
       0.99937421, 0.99937421, 0.99937421, 0.99937421, 0.99787995,
       0.99787995, 0.99787995, 0.99787995, 0.99376522, 0.99376522,
       0.99376522, 0.99376522, 0.98427193, 0.98427193, 0.98427193,
       0.98427193, 0.96614873, 0.96614873, 0.96614873, 0.96614873,
       0.93749002, 0.93749002, 0.93749002, 0.93749002, 0.89922146,
       0.89922146, 0.89922146, 0.89922146, 0.85444615, 0.85444615,
       0.85444615, 0.85444615, 0.80694026, 0.80694026, 0.80694026,
       0.80694026, 0.76147336, 0.76147336, 0.76147336, 0.76147336,
       0.71798649, 0.71798649, 0.71798649, 0.71798649, 0.67328624,
       0.67328624, 0.67328624, 0.67328624, 0.63596237, 0.63596237,
       0.63596237, 0.63596237, 0.61090962, 0.61090962, 0.61090962,
       0.61090962, 0.59448665, 0.59448665, 0.59448665, 0.59448665,
       0.58377912, 0.58377912, 0.58377912, 0.58377912, 0.57884073,
       0.57884073, 0.57884073, 0.57884073, 0.57784159, 0.57784159,
       0.57784159, 0.57784159, 0.57814677, 0.57814677, 0.57814677,
       0.57814677, 0.57965393, 0.57965393, 0.57965393, 0.57965393,
       0.58114142, 0.58114142, 0.58114142, 0.58114142, 0.58086906,
       0.58086906, 0.58086906, 0.58086906, 0.57793383, 0.57793383,
       0.57793383, 0.57793383, 0.56855027, 0.56855027, 0.56855027,
       0.56855027, 0.54788997, 0.54788997, 0.54788997, 0.54788997,
       0.51173387, 0.51173387, 0.51173387, 0.51173387, 0.45826092,
       0.45826092, 0.45826092, 0.45826092, 0.39944332, 0.39944332,
       0.39944332, 0.39944332, 0.36188141, 0.36188141, 0.36188141,
       0.36188141, 0.34228638, 0.34228638, 0.34228638, 0.34228638,
       0.33391914, 0.33391914, 0.33391914, 0.33391914, 0.33194109,
       0.33194109, 0.33194109, 0.33194109, 0.33247925, 0.33247925,
       0.33247925, 0.33247925, 0.33319907, 0.33319907, 0.33319907,
       0.33319907, 0.33042192, 0.33042192, 0.33042192, 0.33042192,
       0.30893759, 0.30893759, 0.30893759, 0.30893759, 0.23627498,
       0.23627498, 0.23627498, 0.23627498, 0.14849035, 0.14849035,
       0.14849035, 0.14849035, 0.12743542, 0.12743542, 0.12743542,
       0.12743542, 0.12519919, 0.12519919, 0.12519919, 0.12519919,
       0.12501533, 0.12501533, 0.12501533, 0.12501533, 0.12500116,
       0.12500116, 0.12500116, 0.12500116, 0.12500009, 0.12500009,
       0.12500009, 0.12500009, 0.12500001, 0.12500001, 0.12500001,
       0.12500001, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000001e-01, 7.50000001e-01, 7.50000001e-01, 7.50000001e-01,
       7.50000007e-01, 7.50000007e-01, 7.50000007e-01, 7.50000007e-01,
       7.50000049e-01, 7.50000049e-01, 7.50000049e-01, 7.50000049e-01,
       7.50000306e-01, 7.50000306e-01, 7.50000306e-01, 7.50000306e-01,
       7.50001762e-01, 7.50001762e-01, 7.50001762e-01, 7.50001762e-01,
       7.50009291e-01, 7.50009291e-01, 7.50009291e-01, 7.50009291e-01,
       7.50044538e-01, 7.50044538e-01, 7.50044538e-01, 7.50044538e-01,
       7.50192354e-01, 7.50192354e-01, 7.50192354e-01, 7.50192354e-01,
       7.50740552e-01, 7.50740552e-01, 7.50740552e-01, 7.50740552e-01,
       7.52510129e-01, 7.52510129e-01, 7.52510129e-01, 7.52510129e-01,
       7.57393863e-01, 7.57393863e-01, 7.57393863e-01, 7.57393863e-01,
       7.68727220e-01, 7.68727220e-01, 7.68727220e-01, 7.68727220e-01,
       7.90629207e-01, 7.90629207e-01, 7.90629207e-01, 7.90629207e-01,
       8.25993244e-01, 8.25993244e-01, 8.25993244e-01, 8.25993244e-01,
       8.74646375e-01, 8.74646375e-01, 8.74646375e-01, 8.74646375e-01,
       9.33771553e-01, 9.33771553e-01, 9.33771553e-01, 9.33771553e-01,
       9.98521665e-01, 9.98521665e-01, 9.98521665e-01, 9.98521665e-01,
       1.06413782e+00, 1.06413782e+00, 1.06413782e+00, 1.06413782e+00,
       1.13027656e+00, 1.13027656e+00, 1.13027656e+00, 1.13027656e+00,
       1.19762442e+00, 1.19762442e+00, 1.19762442e+00, 1.19762442e+00,
       1.25961704e+00, 1.25961704e+00, 1.25961704e+00, 1.25961704e+00,
       1.30884188e+00, 1.30884188e+00, 1.30884188e+00, 1.30884188e+00,
       1.33910827e+00, 1.33910827e+00, 1.33910827e+00, 1.33910827e+00,
       1.35277568e+00, 1.35277568e+00, 1.35277568e+00, 1.35277568e+00,
       1.35771893e+00, 1.35771893e+00, 1.35771893e+00, 1.35771893e+00,
       1.35973017e+00, 1.35973017e+00, 1.35973017e+00, 1.35973017e+00,
       1.36124410e+00, 1.36124410e+00, 1.36124410e+00, 1.36124410e+00,
       1.36234589e+00, 1.36234589e+00, 1.36234589e+00, 1.36234589e+00,
       1.36284576e+00, 1.36284576e+00, 1.36284576e+00, 1.36284576e+00,
       1.36330700e+00, 1.36330700e+00, 1.36330700e+00, 1.36330700e+00,
       1.36348314e+00, 1.36348314e+00, 1.36348314e+00, 1.36348314e+00,
       1.36337493e+00, 1.36337493e+00, 1.36337493e+00, 1.36337493e+00,
       1.36336149e+00, 1.36336149e+00, 1.36336149e+00, 1.36336149e+00,
       1.36324405e+00, 1.36324405e+00, 1.36324405e+00, 1.36324405e+00,
       1.36265870e+00, 1.36265870e+00, 1.36265870e+00, 1.36265870e+00,
       1.36215849e+00, 1.36215849e+00, 1.36215849e+00, 1.36215849e+00,
       1.36145357e+00, 1.36145357e+00, 1.36145357e+00, 1.36145357e+00,
       1.36027737e+00, 1.36027737e+00, 1.36027737e+00, 1.36027737e+00,
       1.35985957e+00, 1.35985957e+00, 1.35985957e+00, 1.35985957e+00,
       1.35950146e+00, 1.35950146e+00, 1.35950146e+00, 1.35950146e+00,
       1.35794105e+00, 1.35794105e+00, 1.35794105e+00, 1.35794105e+00,
       1.35302786e+00, 1.35302786e+00, 1.35302786e+00, 1.35302786e+00,
       1.32948395e+00, 1.32948395e+00, 1.32948395e+00, 1.32948395e+00,
       1.22656804e+00, 1.22656804e+00, 1.22656804e+00, 1.22656804e+00,
       8.53469650e-01, 8.53469650e-01, 8.53469650e-01, 8.53469650e-01,
       2.22591142e-01, 2.22591142e-01, 2.22591142e-01, 2.22591142e-01,
       2.20888528e-02, 2.20888528e-02, 2.20888528e-02, 2.20888528e-02,
       1.71922272e-03, 1.71922272e-03, 1.71922272e-03, 1.71922272e-03,
       1.30417470e-04, 1.30417470e-04, 1.30417470e-04, 1.30417470e-04,
       9.86300289e-06, 9.86300289e-06, 9.86300289e-06, 9.86300289e-06,
       7.43754125e-07, 7.43754125e-07, 7.43754125e-07, 7.43754125e-07,
       5.59602796e-08, 5.59602796e-08, 5.59602796e-08, 5.59602796e-08,
       4.20149858e-09, 4.20149858e-09, 4.20149858e-09, 4.20149858e-09,
       3.14719729e-10, 3.14719729e-10, 3.14719729e-10, 3.14719729e-10,
       2.35165721e-11, 2.35165721e-11, 2.35165721e-11, 2.35165721e-11,
       1.75282978e-12, 1.75282978e-12, 1.75282978e-12, 1.75282978e-12,
       1.30293969e-13, 1.30293969e-13, 1.30293969e-13, 1.30293969e-13,
       9.55439487e-15, 9.55439487e-15, 9.55439487e-15, 9.55439487e-15,
       6.56847280e-16, 6.56847280e-16, 6.56847280e-16, 6.56847280e-16,
       3.41706842e-17, 3.41706842e-17, 3.41706842e-17, 3.41706842e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999964, 0.99999964, 0.99999964, 0.99999964, 0.99999792,
       0.99999792, 0.99999792, 0.99999792, 0.99998901, 0.99998901,
       0.99998901, 0.99998901, 0.9999473 , 0.9999473 , 0.9999473 ,
       0.9999473 , 0.99977243, 0.99977243, 0.99977243, 0.99977243,
       0.99912413, 0.99912413, 0.99912413, 0.99912413, 0.99703423,
       0.99703423, 0.99703423, 0.99703423, 0.99128845, 0.99128845,
       0.99128845, 0.99128845, 0.97807702, 0.97807702, 0.97807702,
       0.97807702, 0.95301417, 0.95301417, 0.95301417, 0.95301417,
       0.91378216, 0.91378216, 0.91378216, 0.91378216, 0.86213936,
       0.86213936, 0.86213936, 0.86213936, 0.80277216, 0.80277216,
       0.80277216, 0.80277216, 0.7408459 , 0.7408459 , 0.7408459 ,
       0.7408459 , 0.68230078, 0.68230078, 0.68230078, 0.68230078,
       0.62855672, 0.62855672, 0.62855672, 0.62855672, 0.5764662 ,
       0.5764662 , 0.5764662 , 0.5764662 , 0.53234585, 0.53234585,
       0.53234585, 0.53234585, 0.49942183, 0.49942183, 0.49942183,
       0.49942183, 0.47983443, 0.47983443, 0.47983443, 0.47983443,
       0.47100923, 0.47100923, 0.47100923, 0.47100923, 0.46787142,
       0.46787142, 0.46787142, 0.46787142, 0.46682295, 0.46682295,
       0.46682295, 0.46682295, 0.46618014, 0.46618014, 0.46618014,
       0.46618014, 0.46556219, 0.46556219, 0.46556219, 0.46556219,
       0.46506118, 0.46506118, 0.46506118, 0.46506118, 0.46489673,
       0.46489673, 0.46489673, 0.46489673, 0.46500213, 0.46500213,
       0.46500213, 0.46500213, 0.46532374, 0.46532374, 0.46532374,
       0.46532374, 0.46561466, 0.46561466, 0.46561466, 0.46561466,
       0.46573189, 0.46573189, 0.46573189, 0.46573189, 0.46592128,
       0.46592128, 0.46592128, 0.46592128, 0.46578294, 0.46578294,
       0.46578294, 0.46578294, 0.46549998, 0.46549998, 0.46549998,
       0.46549998, 0.46541691, 0.46541691, 0.46541691, 0.46541691,
       0.46523714, 0.46523714, 0.46523714, 0.46523714, 0.46502176,
       0.46502176, 0.46502176, 0.46502176, 0.46475263, 0.46475263,
       0.46475263, 0.46475263, 0.46237713, 0.46237713, 0.46237713,
       0.46237713, 0.45142205, 0.45142205, 0.45142205, 0.45142205,
       0.40654284, 0.40654284, 0.40654284, 0.40654284, 0.27563326,
       0.27563326, 0.27563326, 0.27563326, 0.13295938, 0.13295938,
       0.13295938, 0.13295938, 0.1029486 , 0.1029486 , 0.1029486 ,
       0.1029486 , 0.10022754, 0.10022754, 0.10022754, 0.10022754,
       0.10001725, 0.10001725, 0.10001725, 0.10001725, 0.1000013 ,
       0.1000013 , 0.1000013 , 0.1000013 , 0.1000001 , 0.1000001 ,
       0.1000001 , 0.1000001 , 0.10000001, 0.10000001, 0.10000001,
       0.10000001, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999994, 0.99999994, 0.99999994, 0.99999994,
       0.99999962, 0.99999962, 0.99999962, 0.99999962, 0.99999791,
       0.99999791, 0.99999791, 0.99999791, 0.99998931, 0.99998931,
       0.99998931, 0.99998931, 0.99995038, 0.99995038, 0.99995038,
       0.99995038, 0.99979255, 0.99979255, 0.99979255, 0.99979255,
       0.99922731, 0.99922731, 0.99922731, 0.99922731, 0.99746821,
       0.99746821, 0.99746821, 0.99746821, 0.99279908, 0.99279908,
       0.99279908, 0.99279908, 0.98241481, 0.98241481, 0.98241481,
       0.98241481, 0.96326558, 0.96326558, 0.96326558, 0.96326558,
       0.93387982, 0.93387982, 0.93387982, 0.93387982, 0.89553728,
       0.89553728, 0.89553728, 0.89553728, 0.85134817, 0.85134817,
       0.85134817, 0.85134817, 0.80495162, 0.80495162, 0.80495162,
       0.80495162, 0.76058273, 0.76058273, 0.76058273, 0.76058273,
       0.71835604, 0.71835604, 0.71835604, 0.71835604, 0.67514463,
       0.67514463, 0.67514463, 0.67514463, 0.63729119, 0.63729119,
       0.63729119, 0.63729119, 0.61162641, 0.61162641, 0.61162641,
       0.61162641, 0.59582875, 0.59582875, 0.59582875, 0.59582875,
       0.58543448, 0.58543448, 0.58543448, 0.58543448, 0.57967261,
       0.57967261, 0.57967261, 0.57967261, 0.57782428, 0.57782428,
       0.57782428, 0.57782428, 0.57777383, 0.57777383, 0.57777383,
       0.57777383, 0.57870314, 0.57870314, 0.57870314, 0.57870314,
       0.58056833, 0.58056833, 0.58056833, 0.58056833, 0.58087553,
       0.58087553, 0.58087553, 0.58087553, 0.57939156, 0.57939156,
       0.57939156, 0.57939156, 0.57325442, 0.57325442, 0.57325442,
       0.57325442, 0.55803941, 0.55803941, 0.55803941, 0.55803941,
       0.52921033, 0.52921033, 0.52921033, 0.52921033, 0.4837152 ,
       0.4837152 , 0.4837152 , 0.4837152 , 0.42371397, 0.42371397,
       0.42371397, 0.42371397, 0.376212  , 0.376212  , 0.376212  ,
       0.376212  , 0.34965307, 0.34965307, 0.34965307, 0.34965307,
       0.33690123, 0.33690123, 0.33690123, 0.33690123, 0.33265682,
       0.33265682, 0.33265682, 0.33265682, 0.33246875, 0.33246875,
       0.33246875, 0.33246875, 0.33332651, 0.33332651, 0.33332651,
       0.33332651, 0.33357826, 0.33357826, 0.33357826, 0.33357826,
       0.32736337, 0.32736337, 0.32736337, 0.32736337, 0.29324759,
       0.29324759, 0.29324759, 0.29324759, 0.20348887, 0.20348887,
       0.20348887, 0.20348887, 0.13723772, 0.13723772, 0.13723772,
       0.13723772, 0.12613944, 0.12613944, 0.12613944, 0.12613944,
       0.12509047, 0.12509047, 0.12509047, 0.12509047, 0.12500693,
       0.12500693, 0.12500693, 0.12500693, 0.12500053, 0.12500053,
       0.12500053, 0.12500053, 0.12500004, 0.12500004, 0.12500004,
       0.12500004, 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000011e-01, 7.50000011e-01, 7.50000011e-01, 7.50000011e-01,
       7.50000073e-01, 7.50000073e-01, 7.50000073e-01, 7.50000073e-01,
       7.50000444e-01, 7.50000444e-01, 7.50000444e-01, 7.50000444e-01,
       7.50002476e-01, 7.50002476e-01, 7.50002476e-01, 7.50002476e-01,
       7.50012648e-01, 7.50012648e-01, 7.50012648e-01, 7.50012648e-01,
       7.50058710e-01, 7.50058710e-01, 7.50058710e-01, 7.50058710e-01,
       7.50245463e-01, 7.50245463e-01, 7.50245463e-01, 7.50245463e-01,
       7.50914434e-01, 7.50914434e-01, 7.50914434e-01, 7.50914434e-01,
       7.52998113e-01, 7.52998113e-01, 7.52998113e-01, 7.52998113e-01,
       7.58543146e-01, 7.58543146e-01, 7.58543146e-01, 7.58543146e-01,
       7.70955766e-01, 7.70955766e-01, 7.70955766e-01, 7.70955766e-01,
       7.94146625e-01, 7.94146625e-01, 7.94146625e-01, 7.94146625e-01,
       8.30511067e-01, 8.30511067e-01, 8.30511067e-01, 8.30511067e-01,
       8.79411509e-01, 8.79411509e-01, 8.79411509e-01, 8.79411509e-01,
       9.37934877e-01, 9.37934877e-01, 9.37934877e-01, 9.37934877e-01,
       1.00124282e+00, 1.00124282e+00, 1.00124282e+00, 1.00124282e+00,
       1.06525741e+00, 1.06525741e+00, 1.06525741e+00, 1.06525741e+00,
       1.12978836e+00, 1.12978836e+00, 1.12978836e+00, 1.12978836e+00,
       1.19554873e+00, 1.19554873e+00, 1.19554873e+00, 1.19554873e+00,
       1.25655219e+00, 1.25655219e+00, 1.25655219e+00, 1.25655219e+00,
       1.30588997e+00, 1.30588997e+00, 1.30588997e+00, 1.30588997e+00,
       1.33725902e+00, 1.33725902e+00, 1.33725902e+00, 1.33725902e+00,
       1.35200167e+00, 1.35200167e+00, 1.35200167e+00, 1.35200167e+00,
       1.35740137e+00, 1.35740137e+00, 1.35740137e+00, 1.35740137e+00,
       1.35945680e+00, 1.35945680e+00, 1.35945680e+00, 1.35945680e+00,
       1.36098916e+00, 1.36098916e+00, 1.36098916e+00, 1.36098916e+00,
       1.36225665e+00, 1.36225665e+00, 1.36225665e+00, 1.36225665e+00,
       1.36284870e+00, 1.36284870e+00, 1.36284870e+00, 1.36284870e+00,
       1.36323230e+00, 1.36323230e+00, 1.36323230e+00, 1.36323230e+00,
       1.36337379e+00, 1.36337379e+00, 1.36337379e+00, 1.36337379e+00,
       1.36322082e+00, 1.36322082e+00, 1.36322082e+00, 1.36322082e+00,
       1.36321667e+00, 1.36321667e+00, 1.36321667e+00, 1.36321667e+00,
       1.36320442e+00, 1.36320442e+00, 1.36320442e+00, 1.36320442e+00,
       1.36283306e+00, 1.36283306e+00, 1.36283306e+00, 1.36283306e+00,
       1.36246959e+00, 1.36246959e+00, 1.36246959e+00, 1.36246959e+00,
       1.36197500e+00, 1.36197500e+00, 1.36197500e+00, 1.36197500e+00,
       1.36085259e+00, 1.36085259e+00, 1.36085259e+00, 1.36085259e+00,
       1.36028892e+00, 1.36028892e+00, 1.36028892e+00, 1.36028892e+00,
       1.35984919e+00, 1.35984919e+00, 1.35984919e+00, 1.35984919e+00,
       1.35883540e+00, 1.35883540e+00, 1.35883540e+00, 1.35883540e+00,
       1.35714143e+00, 1.35714143e+00, 1.35714143e+00, 1.35714143e+00,
       1.34894991e+00, 1.34894991e+00, 1.34894991e+00, 1.34894991e+00,
       1.31073945e+00, 1.31073945e+00, 1.31073945e+00, 1.31073945e+00,
       1.15250494e+00, 1.15250494e+00, 1.15250494e+00, 1.15250494e+00,
       6.53937892e-01, 6.53937892e-01, 6.53937892e-01, 6.53937892e-01,
       1.15935794e-01, 1.15935794e-01, 1.15935794e-01, 1.15935794e-01,
       1.01224064e-02, 1.01224064e-02, 1.01224064e-02, 1.01224064e-02,
       7.75605173e-04, 7.75605173e-04, 7.75605173e-04, 7.75605173e-04,
       5.88223629e-05, 5.88223629e-05, 5.88223629e-05, 5.88223629e-05,
       4.44985365e-06, 4.44985365e-06, 4.44985365e-06, 4.44985365e-06,
       3.35889504e-07, 3.35889504e-07, 3.35889504e-07, 3.35889504e-07,
       2.52955860e-08, 2.52955860e-08, 2.52955860e-08, 2.52955860e-08,
       1.90071378e-09, 1.90071378e-09, 1.90071378e-09, 1.90071378e-09,
       1.42497338e-10, 1.42497338e-10, 1.42497338e-10, 1.42497338e-10,
       1.06576856e-11, 1.06576856e-11, 1.06576856e-11, 1.06576856e-11,
       7.95109096e-13, 7.95109096e-13, 7.95109096e-13, 7.95109096e-13,
       5.90704393e-14, 5.90704393e-14, 5.90704393e-14, 5.90704393e-14,
       4.31701064e-15, 4.31701064e-15, 4.31701064e-15, 4.31701064e-15,
       3.15002440e-16, 3.15002440e-16, 3.15002440e-16, 3.15002440e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999947, 0.99999947, 0.99999947, 0.99999947, 0.99999707,
       0.99999707, 0.99999707, 0.99999707, 0.99998504, 0.99998504,
       0.99998504, 0.99998504, 0.99993054, 0.99993054, 0.99993054,
       0.99993054, 0.9997096 , 0.9997096 , 0.9997096 , 0.9997096 ,
       0.99891859, 0.99891859, 0.99891859, 0.99891859, 0.99645866,
       0.99645866, 0.99645866, 0.99645866, 0.98994093, 0.98994093,
       0.98994093, 0.98994093, 0.97549864, 0.97549864, 0.97549864,
       0.97549864, 0.94904306, 0.94904306, 0.94904306, 0.94904306,
       0.90886853, 0.90886853, 0.90886853, 0.90886853, 0.85720188,
       0.85720188, 0.85720188, 0.85720188, 0.79869209, 0.79869209,
       0.79869209, 0.79869209, 0.73826586, 0.73826586, 0.73826586,
       0.73826586, 0.68131655, 0.68131655, 0.68131655, 0.68131655,
       0.62890962, 0.62890962, 0.62890962, 0.62890962, 0.57797733,
       0.57797733, 0.57797733, 0.57797733, 0.53444855, 0.53444855,
       0.53444855, 0.53444855, 0.5013871 , 0.5013871 , 0.5013871 ,
       0.5013871 , 0.48115492, 0.48115492, 0.48115492, 0.48115492,
       0.47166155, 0.47166155, 0.47166155, 0.47166155, 0.468095  ,
       0.468095  , 0.468095  , 0.468095  , 0.46684318, 0.46684318,
       0.46684318, 0.46684318, 0.46616211, 0.46616211, 0.46616211,
       0.46616211, 0.46561043, 0.46561043, 0.46561043, 0.46561043,
       0.46512576, 0.46512576, 0.46512576, 0.46512576, 0.46487872,
       0.46487872, 0.46487872, 0.46487872, 0.46492772, 0.46492772,
       0.46492772, 0.46492772, 0.4651844 , 0.4651844 , 0.4651844 ,
       0.4651844 , 0.4655066 , 0.4655066 , 0.4655066 , 0.4655066 ,
       0.46569201, 0.46569201, 0.46569201, 0.46569201, 0.46598138,
       0.46598138, 0.46598138, 0.46598138, 0.46594011, 0.46594011,
       0.46594011, 0.46594011, 0.4657527 , 0.4657527 , 0.4657527 ,
       0.4657527 , 0.4656862 , 0.4656862 , 0.4656862 , 0.4656862 ,
       0.46543641, 0.46543641, 0.46543641, 0.46543641, 0.46518651,
       0.46518651, 0.46518651, 0.46518651, 0.46517111, 0.46517111,
       0.46517111, 0.46517111, 0.46429022, 0.46429022, 0.46429022,
       0.46429022, 0.46039234, 0.46039234, 0.46039234, 0.46039234,
       0.44325735, 0.44325735, 0.44325735, 0.44325735, 0.37715612,
       0.37715612, 0.37715612, 0.37715612, 0.22068217, 0.22068217,
       0.22068217, 0.22068217, 0.11627314, 0.11627314, 0.11627314,
       0.11627314, 0.10134388, 0.10134388, 0.10134388, 0.10134388,
       0.10010262, 0.10010262, 0.10010262, 0.10010262, 0.10000778,
       0.10000778, 0.10000778, 0.10000778, 0.10000059, 0.10000059,
       0.10000059, 0.10000059, 0.10000004, 0.10000004, 0.10000004,
       0.10000004, 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999991, 0.99999991, 0.99999991, 0.99999991,
       0.99999946, 0.99999946, 0.99999946, 0.99999946, 0.99999709,
       0.99999709, 0.99999709, 0.99999709, 0.9999856 , 0.9999856 ,
       0.9999856 , 0.9999856 , 0.9999352 , 0.9999352 , 0.9999352 ,
       0.9999352 , 0.99973758, 0.99973758, 0.99973758, 0.99973758,
       0.99905358, 0.99905358, 0.99905358, 0.99905358, 0.99699862,
       0.99699862, 0.99699862, 0.99699862, 0.99173748, 0.99173748,
       0.99173748, 0.99173748, 0.98044778, 0.98044778, 0.98044778,
       0.98044778, 0.96031352, 0.96031352, 0.96031352, 0.96031352,
       0.93028712, 0.93028712, 0.93028712, 0.93028712, 0.89194825,
       0.89194825, 0.89194825, 0.89194825, 0.84837482, 0.84837482,
       0.84837482, 0.84837482, 0.80307475, 0.80307475, 0.80307475,
       0.80307475, 0.75973657, 0.75973657, 0.75973657, 0.75973657,
       0.71864049, 0.71864049, 0.71864049, 0.71864049, 0.6769383 ,
       0.6769383 , 0.6769383 , 0.6769383 , 0.63889909, 0.63889909,
       0.63889909, 0.63889909, 0.61229773, 0.61229773, 0.61229773,
       0.61229773, 0.59674677, 0.59674677, 0.59674677, 0.59674677,
       0.58694413, 0.58694413, 0.58694413, 0.58694413, 0.58077655,
       0.58077655, 0.58077655, 0.58077655, 0.57805601, 0.57805601,
       0.57805601, 0.57805601, 0.57755678, 0.57755678, 0.57755678,
       0.57755678, 0.57803073, 0.57803073, 0.57803073, 0.57803073,
       0.57971225, 0.57971225, 0.57971225, 0.57971225, 0.5806943 ,
       0.5806943 , 0.5806943 , 0.5806943 , 0.58009671, 0.58009671,
       0.58009671, 0.58009671, 0.57636073, 0.57636073, 0.57636073,
       0.57636073, 0.5655678 , 0.5655678 , 0.5655678 , 0.5655678 ,
       0.54322304, 0.54322304, 0.54322304, 0.54322304, 0.50551025,
       0.50551025, 0.50551025, 0.50551025, 0.45076947, 0.45076947,
       0.45076947, 0.45076947, 0.39435096, 0.39435096, 0.39435096,
       0.39435096, 0.3597402 , 0.3597402 , 0.3597402 , 0.3597402 ,
       0.34154439, 0.34154439, 0.34154439, 0.34154439, 0.33413329,
       0.33413329, 0.33413329, 0.33413329, 0.33272707, 0.33272707,
       0.33272707, 0.33272707, 0.33306897, 0.33306897, 0.33306897,
       0.33306897, 0.33417837, 0.33417837, 0.33417837, 0.33417837,
       0.33342156, 0.33342156, 0.33342156, 0.33342156, 0.32134726,
       0.32134726, 0.32134726, 0.32134726, 0.27151457, 0.27151457,
       0.27151457, 0.27151457, 0.17391339, 0.17391339, 0.17391339,
       0.17391339, 0.131043  , 0.131043  , 0.131043  , 0.131043  ,
       0.12552415, 0.12552415, 0.12552415, 0.12552415, 0.12504101,
       0.12504101, 0.12504101, 0.12504101, 0.12500313, 0.12500313,
       0.12500313, 0.12500313, 0.12500024, 0.12500024, 0.12500024,
       0.12500024, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000003e-01, 7.50000003e-01, 7.50000003e-01, 7.50000003e-01,
       7.50000017e-01, 7.50000017e-01, 7.50000017e-01, 7.50000017e-01,
       7.50000108e-01, 7.50000108e-01, 7.50000108e-01, 7.50000108e-01,
       7.50000636e-01, 7.50000636e-01, 7.50000636e-01, 7.50000636e-01,
       7.50003442e-01, 7.50003442e-01, 7.50003442e-01, 7.50003442e-01,
       7.50017043e-01, 7.50017043e-01, 7.50017043e-01, 7.50017043e-01,
       7.50076668e-01, 7.50076668e-01, 7.50076668e-01, 7.50076668e-01,
       7.50310517e-01, 7.50310517e-01, 7.50310517e-01, 7.50310517e-01,
       7.51120114e-01, 7.51120114e-01, 7.51120114e-01, 7.51120114e-01,
       7.53554867e-01, 7.53554867e-01, 7.53554867e-01, 7.53554867e-01,
       7.59807118e-01, 7.59807118e-01, 7.59807118e-01, 7.59807118e-01,
       7.73320214e-01, 7.73320214e-01, 7.73320214e-01, 7.73320214e-01,
       7.97757265e-01, 7.97757265e-01, 7.97757265e-01, 7.97757265e-01,
       8.35020634e-01, 8.35020634e-01, 8.35020634e-01, 8.35020634e-01,
       8.84067394e-01, 8.84067394e-01, 8.84067394e-01, 8.84067394e-01,
       9.41941415e-01, 9.41941415e-01, 9.41941415e-01, 9.41941415e-01,
       1.00384428e+00, 1.00384428e+00, 1.00384428e+00, 1.00384428e+00,
       1.06633018e+00, 1.06633018e+00, 1.06633018e+00, 1.06633018e+00,
       1.12932515e+00, 1.12932515e+00, 1.12932515e+00, 1.12932515e+00,
       1.19354968e+00, 1.19354968e+00, 1.19354968e+00, 1.19354968e+00,
       1.25356360e+00, 1.25356360e+00, 1.25356360e+00, 1.25356360e+00,
       1.30291531e+00, 1.30291531e+00, 1.30291531e+00, 1.30291531e+00,
       1.33529031e+00, 1.33529031e+00, 1.33529031e+00, 1.33529031e+00,
       1.35115947e+00, 1.35115947e+00, 1.35115947e+00, 1.35115947e+00,
       1.35713174e+00, 1.35713174e+00, 1.35713174e+00, 1.35713174e+00,
       1.35925965e+00, 1.35925965e+00, 1.35925965e+00, 1.35925965e+00,
       1.36072477e+00, 1.36072477e+00, 1.36072477e+00, 1.36072477e+00,
       1.36208351e+00, 1.36208351e+00, 1.36208351e+00, 1.36208351e+00,
       1.36283213e+00, 1.36283213e+00, 1.36283213e+00, 1.36283213e+00,
       1.36320426e+00, 1.36320426e+00, 1.36320426e+00, 1.36320426e+00,
       1.36331504e+00, 1.36331504e+00, 1.36331504e+00, 1.36331504e+00,
       1.36312690e+00, 1.36312690e+00, 1.36312690e+00, 1.36312690e+00,
       1.36305072e+00, 1.36305072e+00, 1.36305072e+00, 1.36305072e+00,
       1.36308238e+00, 1.36308238e+00, 1.36308238e+00, 1.36308238e+00,
       1.36286521e+00, 1.36286521e+00, 1.36286521e+00, 1.36286521e+00,
       1.36262787e+00, 1.36262787e+00, 1.36262787e+00, 1.36262787e+00,
       1.36231759e+00, 1.36231759e+00, 1.36231759e+00, 1.36231759e+00,
       1.36138818e+00, 1.36138818e+00, 1.36138818e+00, 1.36138818e+00,
       1.36084001e+00, 1.36084001e+00, 1.36084001e+00, 1.36084001e+00,
       1.36024205e+00, 1.36024205e+00, 1.36024205e+00, 1.36024205e+00,
       1.35931961e+00, 1.35931961e+00, 1.35931961e+00, 1.35931961e+00,
       1.35862778e+00, 1.35862778e+00, 1.35862778e+00, 1.35862778e+00,
       1.35576681e+00, 1.35576681e+00, 1.35576681e+00, 1.35576681e+00,
       1.34188087e+00, 1.34188087e+00, 1.34188087e+00, 1.34188087e+00,
       1.28237194e+00, 1.28237194e+00, 1.28237194e+00, 1.28237194e+00,
       1.04403836e+00, 1.04403836e+00, 1.04403836e+00, 1.04403836e+00,
       4.40023066e-01, 4.40023066e-01, 4.40023066e-01, 4.40023066e-01,
       5.63022869e-02, 5.63022869e-02, 5.63022869e-02, 5.63022869e-02,
       4.58333546e-03, 4.58333546e-03, 4.58333546e-03, 4.58333546e-03,
       3.49968099e-04, 3.49968099e-04, 3.49968099e-04, 3.49968099e-04,
       2.65258651e-05, 2.65258651e-05, 2.65258651e-05, 2.65258651e-05,
       2.00742922e-06, 2.00742922e-06, 2.00742922e-06, 2.00742922e-06,
       1.51640690e-07, 1.51640690e-07, 1.51640690e-07, 1.51640690e-07,
       1.14299111e-08, 1.14299111e-08, 1.14299111e-08, 1.14299111e-08,
       8.59588993e-10, 8.59588993e-10, 8.59588993e-10, 8.59588993e-10,
       6.44987274e-11, 6.44987274e-11, 6.44987274e-11, 6.44987274e-11,
       4.82824703e-12, 4.82824703e-12, 4.82824703e-12, 4.82824703e-12,
       3.60377106e-13, 3.60377106e-13, 3.60377106e-13, 3.60377106e-13,
       2.67995136e-14, 2.67995136e-14, 2.67995136e-14, 2.67995136e-14,
       1.97682800e-15, 1.97682800e-15, 1.97682800e-15, 1.97682800e-15,
       1.51415324e-16, 1.51415324e-16, 1.51415324e-16, 1.51415324e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.99999987, 0.99999987, 0.99999987, 0.99999987,
       0.99999925, 0.99999925, 0.99999925, 0.99999925, 0.99999593,
       0.99999593, 0.99999593, 0.99999593, 0.99997983, 0.99997983,
       0.99997983, 0.99997983, 0.99990929, 0.99990929, 0.99990929,
       0.99990929, 0.99963266, 0.99963266, 0.99963266, 0.99963266,
       0.99867551, 0.99867551, 0.99867551, 0.99867551, 0.99580237,
       0.99580237, 0.99580237, 0.99580237, 0.98846096, 0.98846096,
       0.98846096, 0.98846096, 0.97276987, 0.97276987, 0.97276987,
       0.97276987, 0.94498179, 0.94498179, 0.94498179, 0.94498179,
       0.90398561, 0.90398561, 0.90398561, 0.90398561, 0.85239877,
       0.85239877, 0.85239877, 0.85239877, 0.79478009, 0.79478009,
       0.79478009, 0.79478009, 0.73582397, 0.73582397, 0.73582397,
       0.73582397, 0.68038471, 0.68038471, 0.68038471, 0.68038471,
       0.62924921, 0.62924921, 0.62924921, 0.62924921, 0.57942336,
       0.57942336, 0.57942336, 0.57942336, 0.53648813, 0.53648813,
       0.53648813, 0.53648813, 0.50332705, 0.50332705, 0.50332705,
       0.50332705, 0.48248881, 0.48248881, 0.48248881, 0.48248881,
       0.47236439, 0.47236439, 0.47236439, 0.47236439, 0.46839479,
       0.46839479, 0.46839479, 0.46839479, 0.46692446, 0.46692446,
       0.46692446, 0.46692446, 0.46614238, 0.46614238, 0.46614238,
       0.46614238, 0.46561056, 0.46561056, 0.46561056, 0.46561056,
       0.4651818 , 0.4651818 , 0.4651818 , 0.4651818 , 0.46489012,
       0.46489012, 0.46489012, 0.46489012, 0.46489108, 0.46489108,
       0.46489108, 0.46489108, 0.4650843 , 0.4650843 , 0.4650843 ,
       0.4650843 , 0.46537787, 0.46537787, 0.46537787, 0.46537787,
       0.46560331, 0.46560331, 0.46560331, 0.46560331, 0.46596369,
       0.46596369, 0.46596369, 0.46596369, 0.46601669, 0.46601669,
       0.46601669, 0.46601669, 0.46592137, 0.46592137, 0.46592137,
       0.46592137, 0.46593666, 0.46593666, 0.46593666, 0.46593666,
       0.46569284, 0.46569284, 0.46569284, 0.46569284, 0.46537354,
       0.46537354, 0.46537354, 0.46537354, 0.46539853, 0.46539853,
       0.46539853, 0.46539853, 0.46498145, 0.46498145, 0.46498145,
       0.46498145, 0.46356472, 0.46356472, 0.46356472, 0.46356472,
       0.45748027, 0.45748027, 0.45748027, 0.45748027, 0.43042442,
       0.43042442, 0.43042442, 0.43042442, 0.33773594, 0.33773594,
       0.33773594, 0.33773594, 0.1723474 , 0.1723474 , 0.1723474 ,
       0.1723474 , 0.10764844, 0.10764844, 0.10764844, 0.10764844,
       0.10060719, 0.10060719, 0.10060719, 0.10060719, 0.1000463 ,
       0.1000463 , 0.1000463 , 0.1000463 , 0.10000351, 0.10000351,
       0.10000351, 0.10000351, 0.10000027, 0.10000027, 0.10000027,
       0.10000027, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}], 'minmod_hllc': [{'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999993, 0.99999993, 0.99999993, 0.99999993,
       0.99999956, 0.99999956, 0.99999956, 0.99999956, 0.99999758,
       0.99999758, 0.99999758, 0.99999758, 0.99998782, 0.99998782,
       0.99998782, 0.99998782, 0.99994422, 0.99994422, 0.99994422,
       0.99994422, 0.99977003, 0.99977003, 0.99977003, 0.99977003,
       0.99915542, 0.99915542, 0.99915542, 0.99915542, 0.99727188,
       0.99727188, 0.99727188, 0.99727188, 0.99234954, 0.99234954,
       0.99234954, 0.99234954, 0.98156538, 0.98156538, 0.98156538,
       0.98156538, 0.96194746, 0.96194746, 0.96194746, 0.96194746,
       0.93218276, 0.93218276, 0.93218276, 0.93218276, 0.8936786 ,
       0.8936786 , 0.8936786 , 0.8936786 , 0.84954127, 0.84954127,
       0.84954127, 0.84954127, 0.80317128, 0.80317128, 0.80317128,
       0.80317128, 0.75830147, 0.75830147, 0.75830147, 0.75830147,
       0.71601042, 0.71601042, 0.71601042, 0.71601042, 0.67327991,
       0.67327991, 0.67327991, 0.67327991, 0.63607874, 0.63607874,
       0.63607874, 0.63607874, 0.61091745, 0.61091745, 0.61091745,
       0.61091745, 0.59673414, 0.59673414, 0.59673414, 0.59673414,
       0.58738935, 0.58738935, 0.58738935, 0.58738935, 0.58067077,
       0.58067077, 0.58067077, 0.58067077, 0.57738951, 0.57738951,
       0.57738951, 0.57738951, 0.57684123, 0.57684123, 0.57684123,
       0.57684123, 0.57741731, 0.57741731, 0.57741731, 0.57741731,
       0.57933199, 0.57933199, 0.57933199, 0.57933199, 0.5807667 ,
       0.5807667 , 0.5807667 , 0.5807667 , 0.58038131, 0.58038131,
       0.58038131, 0.58038131, 0.57694171, 0.57694171, 0.57694171,
       0.57694171, 0.56652927, 0.56652927, 0.56652927, 0.56652927,
       0.54427792, 0.54427792, 0.54427792, 0.54427792, 0.50574245,
       0.50574245, 0.50574245, 0.50574245, 0.44917162, 0.44917162,
       0.44917162, 0.44917162, 0.39267489, 0.39267489, 0.39267489,
       0.39267489, 0.35904482, 0.35904482, 0.35904482, 0.35904482,
       0.34183176, 0.34183176, 0.34183176, 0.34183176, 0.33519947,
       0.33519947, 0.33519947, 0.33519947, 0.33392488, 0.33392488,
       0.33392488, 0.33392488, 0.33443666, 0.33443666, 0.33443666,
       0.33443666, 0.33522049, 0.33522049, 0.33522049, 0.33522049,
       0.33404885, 0.33404885, 0.33404885, 0.33404885, 0.32180389,
       0.32180389, 0.32180389, 0.32180389, 0.27211543, 0.27211543,
       0.27211543, 0.27211543, 0.17353096, 0.17353096, 0.17353096,
       0.17353096, 0.13090219, 0.13090219, 0.13090219, 0.13090219,
       0.12548944, 0.12548944, 0.12548944, 0.12548944, 0.12503725,
       0.12503725, 0.12503725, 0.12503725, 0.12500281, 0.12500281,
       0.12500281, 0.12500281, 0.12500021, 0.12500021, 0.12500021,
       0.12500021, 0.12500002, 0.12500002, 0.12500002, 0.12500002,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ,
       0.125     , 0.125     , 0.125     , 0.125     , 0.125     ]), 'vx': array([7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000000e-01, 7.50000000e-01, 7.50000000e-01, 7.50000000e-01,
       7.50000002e-01, 7.50000002e-01, 7.50000002e-01, 7.50000002e-01,
       7.50000013e-01, 7.50000013e-01, 7.50000013e-01, 7.50000013e-01,
       7.50000087e-01, 7.50000087e-01, 7.50000087e-01, 7.50000087e-01,
       7.50000519e-01, 7.50000519e-01, 7.50000519e-01, 7.50000519e-01,
       7.50002860e-01, 7.50002860e-01, 7.50002860e-01, 7.50002860e-01,
       7.50014413e-01, 7.50014413e-01, 7.50014413e-01, 7.50014413e-01,
       7.50065997e-01, 7.50065997e-01, 7.50065997e-01, 7.50065997e-01,
       7.50272133e-01, 7.50272133e-01, 7.50272133e-01, 7.50272133e-01,
       7.50999658e-01, 7.50999658e-01, 7.50999658e-01, 7.50999658e-01,
       7.53231583e-01, 7.53231583e-01, 7.53231583e-01, 7.53231583e-01,
       7.59081507e-01, 7.59081507e-01, 7.59081507e-01, 7.59081507e-01,
       7.71986731e-01, 7.71986731e-01, 7.71986731e-01, 7.71986731e-01,
       7.95781524e-01, 7.95781524e-01, 7.95781524e-01, 7.95781524e-01,
       8.32680719e-01, 8.32680719e-01, 8.32680719e-01, 8.32680719e-01,
       8.81876321e-01, 8.81876321e-01, 8.81876321e-01, 8.81876321e-01,
       9.40397529e-01, 9.40397529e-01, 9.40397529e-01, 9.40397529e-01,
       1.00383705e+00, 1.00383705e+00, 1.00383705e+00, 1.00383705e+00,
       1.06846436e+00, 1.06846436e+00, 1.06846436e+00, 1.06846436e+00,
       1.13364194e+00, 1.13364194e+00, 1.13364194e+00, 1.13364194e+00,
       1.19966388e+00, 1.19966388e+00, 1.19966388e+00, 1.19966388e+00,
       1.25823577e+00, 1.25823577e+00, 1.25823577e+00, 1.25823577e+00,
       1.30460285e+00, 1.30460285e+00, 1.30460285e+00, 1.30460285e+00,
       1.33510884e+00, 1.33510884e+00, 1.33510884e+00, 1.33510884e+00,
       1.35096608e+00, 1.35096608e+00, 1.35096608e+00, 1.35096608e+00,
       1.35752911e+00, 1.35752911e+00, 1.35752911e+00, 1.35752911e+00,
       1.36008887e+00, 1.36008887e+00, 1.36008887e+00, 1.36008887e+00,
       1.36168158e+00, 1.36168158e+00, 1.36168158e+00, 1.36168158e+00,
       1.36273536e+00, 1.36273536e+00, 1.36273536e+00, 1.36273536e+00,
       1.36310325e+00, 1.36310325e+00, 1.36310325e+00, 1.36310325e+00,
       1.36308266e+00, 1.36308266e+00, 1.36308266e+00, 1.36308266e+00,
       1.36292459e+00, 1.36292459e+00, 1.36292459e+00, 1.36292459e+00,
       1.36276796e+00, 1.36276796e+00, 1.36276796e+00, 1.36276796e+00,
       1.36261137e+00, 1.36261137e+00, 1.36261137e+00, 1.36261137e+00,
       1.36242480e+00, 1.36242480e+00, 1.36242480e+00, 1.36242480e+00,
       1.36240105e+00, 1.36240105e+00, 1.36240105e+00, 1.36240105e+00,
       1.36236978e+00, 1.36236978e+00, 1.36236978e+00, 1.36236978e+00,
       1.36206049e+00, 1.36206049e+00, 1.36206049e+00, 1.36206049e+00,
       1.36120137e+00, 1.36120137e+00, 1.36120137e+00, 1.36120137e+00,
       1.36080070e+00, 1.36080070e+00, 1.36080070e+00, 1.36080070e+00,
       1.36024607e+00, 1.36024607e+00, 1.36024607e+00, 1.36024607e+00,
       1.35960979e+00, 1.35960979e+00, 1.35960979e+00, 1.35960979e+00,
       1.35845878e+00, 1.35845878e+00, 1.35845878e+00, 1.35845878e+00,
       1.35582525e+00, 1.35582525e+00, 1.35582525e+00, 1.35582525e+00,
       1.34268743e+00, 1.34268743e+00, 1.34268743e+00, 1.34268743e+00,
       1.28409176e+00, 1.28409176e+00, 1.28409176e+00, 1.28409176e+00,
       1.04736551e+00, 1.04736551e+00, 1.04736551e+00, 1.04736551e+00,
       4.29328817e-01, 4.29328817e-01, 4.29328817e-01, 4.29328817e-01,
       5.19371545e-02, 5.19371545e-02, 5.19371545e-02, 5.19371545e-02,
       4.15794051e-03, 4.15794051e-03, 4.15794051e-03, 4.15794051e-03,
       3.15435852e-04, 3.15435852e-04, 3.15435852e-04, 3.15435852e-04,
       2.37540443e-05, 2.37540443e-05, 2.37540443e-05, 2.37540443e-05,
       1.78468394e-06, 1.78468394e-06, 1.78468394e-06, 1.78468394e-06,
       1.33840550e-07, 1.33840550e-07, 1.33840550e-07, 1.33840550e-07,
       1.00204015e-08, 1.00204015e-08, 1.00204015e-08, 1.00204015e-08,
       7.48783638e-10, 7.48783638e-10, 7.48783638e-10, 7.48783638e-10,
       5.58269795e-11, 5.58269795e-11, 5.58269795e-11, 5.58269795e-11,
       4.15162222e-12, 4.15162222e-12, 4.15162222e-12, 4.15162222e-12,
       3.07872093e-13, 3.07872093e-13, 3.07872093e-13, 3.07872093e-13,
       2.27463383e-14, 2.27463383e-14, 2.27463383e-14, 2.27463383e-14,
       1.62261633e-15, 1.62261633e-15, 1.62261633e-15, 1.62261633e-15,
       1.00069544e-16, 1.00069544e-16, 1.00069544e-16, 1.00069544e-16,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999998, 0.99999998, 0.99999998,
       0.99999998, 0.9999999 , 0.9999999 , 0.9999999 , 0.9999999 ,
       0.99999939, 0.99999939, 0.99999939, 0.99999939, 0.99999662,
       0.99999662, 0.99999662, 0.99999662, 0.99998295, 0.99998295,
       0.99998295, 0.99998295, 0.99992191, 0.99992191, 0.99992191,
       0.99992191, 0.99967806, 0.99967806, 0.99967806, 0.99967806,
       0.9988179 , 0.9988179 , 0.9988179 , 0.9988179 , 0.99618367,
       0.99618367, 0.99618367, 0.99618367, 0.9893114 , 0.9893114 ,
       0.9893114 , 0.9893114 , 0.97431068, 0.97431068, 0.97431068,
       0.97431068, 0.94720653, 0.94720653, 0.94720653, 0.94720653,
       0.90652171, 0.90652171, 0.90652171, 0.90652171, 0.85466372,
       0.85466372, 0.85466372, 0.85466372, 0.79629842, 0.79629842,
       0.79629842, 0.79629842, 0.73604968, 0.73604968, 0.73604968,
       0.73604968, 0.67878231, 0.67878231, 0.67878231, 0.67878231,
       0.6256561 , 0.6256561 , 0.6256561 , 0.6256561 , 0.57494258,
       0.57494258, 0.57494258, 0.57494258, 0.533212  , 0.533212  ,
       0.533212  , 0.533212  , 0.50207587, 0.50207587, 0.50207587,
       0.50207587, 0.48250309, 0.48250309, 0.48250309, 0.48250309,
       0.47250947, 0.47250947, 0.47250947, 0.47250947, 0.46817049,
       0.46817049, 0.46817049, 0.46817049, 0.46640112, 0.46640112,
       0.46640112, 0.46640112, 0.46567017, 0.46567017, 0.46567017,
       0.46567017, 0.46537494, 0.46537494, 0.46537494, 0.46537494,
       0.4652207 , 0.4652207 , 0.4652207 , 0.4652207 , 0.46520697,
       0.46520697, 0.46520697, 0.46520697, 0.46526117, 0.46526117,
       0.46526117, 0.46526117, 0.46535935, 0.46535935, 0.46535935,
       0.46535935, 0.46554981, 0.46554981, 0.46554981, 0.46554981,
       0.46588653, 0.46588653, 0.46588653, 0.46588653, 0.46609435,
       0.46609435, 0.46609435, 0.46609435, 0.46609123, 0.46609123,
       0.46609123, 0.46609123, 0.46609313, 0.46609313, 0.46609313,
       0.46609313, 0.4660888 , 0.4660888 , 0.4660888 , 0.4660888 ,
       0.46579135, 0.46579135, 0.46579135, 0.46579135, 0.46552363,
       0.46552363, 0.46552363, 0.46552363, 0.46536737, 0.46536737,
       0.46536737, 0.46536737, 0.46516396, 0.46516396, 0.46516396,
       0.46516396, 0.46370822, 0.46370822, 0.46370822, 0.46370822,
       0.45758086, 0.45758086, 0.45758086, 0.45758086, 0.43124529,
       0.43124529, 0.43124529, 0.43124529, 0.33859453, 0.33859453,
       0.33859453, 0.33859453, 0.17013955, 0.17013955, 0.17013955,
       0.17013955, 0.10699674, 0.10699674, 0.10699674, 0.10699674,
       0.10055056, 0.10055056, 0.10055056, 0.10055056, 0.10004173,
       0.10004173, 0.10004173, 0.10004173, 0.10000314, 0.10000314,
       0.10000314, 0.10000314, 0.10000024, 0.10000024, 0.10000024,
       0.10000024, 0.10000002, 0.10000002, 0.10000002, 0.10000002,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ,
       0.1       , 0.1       , 0.1       , 0.1       , 0.1       ])}]}
345 plot, anim = run_and_plot(cases, 2, "minmod_hll")
  • Test 2 - t=0.15 (Last Step)
running none hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  16.45 ms                            [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 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     : 1192.00 ns (0.2%)
   patch tree reduce : 1382.00 ns (0.2%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.2%)
   LB compute        : 605.70 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 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     : 13.25 us   (2.8%)
   patch tree reduce : 2.66 us    (0.6%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 451.84 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.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    | 2.6954e+05 | 65536 |      2 | 2.431e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 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     : 6.83 us    (1.6%)
   patch tree reduce : 1892.00 ns (0.4%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.3%)
   LB compute        : 398.69 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (71.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.3918e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.14645968702501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.3%)
   LB compute        : 315.12 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (69.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.5430e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.56379632283789 (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     : 6.80 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 303.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5012e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.17234458390034 (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     : 6.78 us    (2.2%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 290.18 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7039e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.07085867145256 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 276.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (61.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6749e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.79932776144804 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008527901453342196, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 277.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9828e+05 | 65536 |      2 | 1.645e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.31453612925668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010233481744010635, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 297.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1377e+05 | 65536 |      2 | 1.584e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.76628654562981 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 290.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6709e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.76155131513336 (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     : 7.31 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 285.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4725e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.903178789142224 (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     : 6.59 us    (1.6%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 1201.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 384.09 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.77 us    (69.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.5784e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.89510310042273 (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     : 6.76 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 297.57 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.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.5585e+05 | 65536 |      2 | 1.842e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.340061772843264 (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     : 6.86 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 279.86 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4758e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.93437120493984 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.50 us    (0.8%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 282.78 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (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    | 3.3235e+05 | 65536 |      2 | 1.972e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.137726808648726 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 259.05 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3316e+05 | 65536 |      2 | 1.967e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.213445544719065 (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     : 6.21 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 289.10 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (59.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2348e+05 | 65536 |      2 | 2.026e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.30704448950072 (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     : 6.63 us    (0.9%)
   patch tree reduce : 2.48 us    (0.3%)
   gen split merge   : 1092.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.2%)
   LB compute        : 701.58 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.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.2316e+05 | 65536 |      2 | 2.028e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.27694106898015 (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     : 6.07 us    (1.7%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 344.34 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2003e+05 | 65536 |      2 | 2.048e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.98385508264085 (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     : 6.32 us    (1.7%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.4%)
   LB compute        : 341.20 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.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.1394e+05 | 65536 |      2 | 1.583e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.781974422486385 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 270.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2139e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.4799227437108 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.7%)
   patch tree reduce : 2.68 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 352.65 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3926e+05 | 65536 |      2 | 1.932e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.785099515743333 (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     : 6.18 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 269.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (62.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.4438e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.63442789068035 (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.92 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 280.58 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5504e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.63268130073827 (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     : 6.90 us    (2.0%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 313.55 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.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.5856e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.96262950154368 (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.90 us    (1.9%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 282.74 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5988e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.08632895455368 (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     : 6.54 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 244.05 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.5417e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.55101769751813 (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     : 7.15 us    (2.7%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 245.14 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (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.5697e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.81358999949831 (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     : 7.18 us    (2.4%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1572.00 ns (0.5%)
   LB compute        : 273.25 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (65.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4467e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.661656685857174 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 282.07 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2564e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.878368883580734 (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.37 us    (2.4%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 243.09 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4911e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.07731662237326 (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     : 6.98 us    (2.1%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 304.84 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4525e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.715832125169406 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 287.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4109e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.325427824584374 (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     : 6.73 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 277.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3897e+05 | 65536 |      2 | 1.933e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.75842097313901 (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     : 6.45 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.3%)
   LB compute        : 288.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (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    | 3.4673e+05 | 65536 |      2 | 1.890e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.485580679435486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 262.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.9%)
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    | 3.4162e+05 | 65536 |      2 | 1.918e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.00634908352858 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 293.27 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.6%)
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    | 3.2377e+05 | 65536 |      2 | 2.024e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.33380642881904 (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     : 6.94 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 331.24 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.2%)
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    | 3.5559e+05 | 65536 |      2 | 1.843e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.3149464249249 (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     : 6.40 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.4%)
   LB compute        : 306.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (61.4%)
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    | 3.7703e+05 | 65536 |      2 | 1.738e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.32438923798011 (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     : 6.21 us    (2.1%)
   patch tree reduce : 1892.00 ns (0.6%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.61 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.3%)
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.7092e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.12028197486554 (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.81 us    (2.5%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 245.62 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.7%)
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.6546e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.609453281617554 (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     : 6.46 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 246.73 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (61.6%)
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.5891e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.995172289340736 (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     : 6.43 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 304.53 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.3%)
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.5388e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.52423646499952 (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     : 6.54 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 289.83 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.2%)
Info: cfl dt = 0.001705580290839242                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9156e+05 | 65536 |      2 | 1.674e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.685169505266614 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 268.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (62.2%)
Info: cfl dt = 0.0017055802911424558                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0437e+05 | 65536 |      2 | 1.621e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.88549768636665 (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     : 6.57 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 322.59 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.8%)
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.4828e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.99962088786815 (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     : 6.17 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 243.31 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.9%)
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.6820e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.86624606011437 (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     : 6.65 us    (2.5%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 239.99 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (64.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    | 3.4491e+05 | 65536 |      2 | 1.900e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.31492256967183 (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     : 6.32 us    (2.0%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 290.31 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.5%)
Info: cfl dt = 0.0017055803064120302                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3971e+05 | 65536 |      2 | 1.929e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.827675479585057 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 266.26 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.1%)
Info: cfl dt = 0.0017055803242095387                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4233e+05 | 65536 |      2 | 1.914e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.07337118627455 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 267.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.8%)
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.5259e+05 | 65536 |      2 | 1.859e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.03418693412473 (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     : 6.34 us    (2.3%)
   patch tree reduce : 1763.00 ns (0.7%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 249.58 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (60.0%)
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    | 3.9302e+05 | 65536 |      2 | 1.668e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.82203107072415 (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     : 7.02 us    (2.6%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 251.83 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (61.9%)
Info: cfl dt = 0.001705580548945427                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6888e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.929553235177785 (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     : 6.67 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 252.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (58.4%)
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    | 4.6149e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.23760297117368 (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     : 6.45 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 264.50 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (56.2%)
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    | 4.1119e+05 | 65536 |      2 | 1.594e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.52481747243185 (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     : 7.25 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1261.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 283.35 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.7%)
Info: cfl dt = 0.0017055817822700953                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9229e+05 | 65536 |      2 | 1.671e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.75421218356773 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09210133755218355, dt = 0.0017055817822700953
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (1.2%)
   patch tree reduce : 2.20 us    (0.4%)
   gen split merge   : 1161.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.2%)
   LB compute        : 576.07 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (65.8%)
Info: cfl dt = 0.0017055828251449233                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6412e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.483730452468194 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 263.34 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.2%)
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.1084e+05 | 65536 |      2 | 1.595e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.49146131688621 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1402.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 272.38 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (61.3%)
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.3110e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.39036331362681 (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.14 us    (1.7%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 347.00 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.6%)
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.4357e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.5583854628069 (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     : 6.78 us    (2.0%)
   patch tree reduce : 2.60 us    (0.8%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 301.27 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.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.2135e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.47711704085835 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062926484117171, dt = 0.0017055970627363154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.8%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 340.40 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (67.2%)
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.4655e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.83788473027983 (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     : 6.51 us    (1.2%)
   patch tree reduce : 2.26 us    (0.4%)
   gen split merge   : 1131.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.2%)
   LB compute        : 500.93 us  (95.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (68.2%)
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.5533e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.66067145996763 (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     : 6.62 us    (2.0%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 306.88 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.9%)
Info: cfl dt = 0.0017056364530162373                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9346e+05 | 65536 |      2 | 1.666e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.864023275497416 (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     : 6.29 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 311.02 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (66.1%)
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    | 4.3310e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.57869687774197 (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.80 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 276.61 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (61.2%)
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.2702e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.00951777497937 (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     : 6.40 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 244.78 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.3%)
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.6071e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.16711864454041 (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     : 6.38 us    (2.0%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 298.26 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
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.6142e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.23498496152416 (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     : 7.36 us    (2.7%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 250.75 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (53.4%)
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.6568e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.63525717011206 (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     : 6.80 us    (2.5%)
   patch tree reduce : 2.38 us    (0.9%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 247.49 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.6%)
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.6509e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.58175399272727 (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.29 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 242.53 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (62.0%)
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.6232e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.325024139907406 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1241.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 246.97 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.2%)
Info: cfl dt = 0.0017062938278914004                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4764e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.9531620527082 (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.62 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 244.93 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.7%)
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.5026e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.20310575694072 (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.98 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 297.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (65.2%)
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    | 3.1105e+05 | 65536 |      2 | 2.107e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.15831369218571 (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     : 6.06 us    (1.6%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 348.37 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.0%)
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    | 2.8642e+05 | 65536 |      2 | 2.288e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 26.853313548049613 (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     : 6.09 us    (1.6%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 1393.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 354.23 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.6%)
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    | 3.5689e+05 | 65536 |      2 | 1.836e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.46711831054335 (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     : 6.48 us    (2.0%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 297.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (65.1%)
Info: cfl dt = 0.0017079383387594703                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2649e+05 | 65536 |      2 | 2.007e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.622888209183767 (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     : 6.90 us    (0.5%)
   patch tree reduce : 1973.00 ns (0.1%)
   gen split merge   : 1012.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.1%)
   LB compute        : 1331.50 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (70.7%)
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    | 3.1326e+05 | 65536 |      2 | 2.092e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.39013464657072 (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     : 6.19 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 351.61 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.2%)
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.3095e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.4448714348074 (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     : 6.26 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 313.72 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.7%)
Info: cfl dt = 0.001709890489345935                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4923e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.17628705497796 (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     : 6.46 us    (2.2%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 277.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.2%)
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.5410e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.65197830650024 (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.36 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 273.44 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (57.9%)
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.5265e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.53782464436007 (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     : 6.67 us    (2.4%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 250.21 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.2%)
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    | 3.6639e+05 | 65536 |      2 | 1.789e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.451741930696684 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381847367244334, dt = 0.0017129076283758878
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 279.05 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.7%)
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.4068e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.46479888399422 (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     : 6.22 us    (2.0%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 292.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.3%)
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.5343e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.69656318386207 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 274.61 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (65.0%)
Info: cfl dt = 0.0017172742016303686                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6604e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.92163030533358 (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     : 6.31 us    (2.3%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 253.14 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.2%)
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.6793e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.140807382967935 (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     : 6.59 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 242.38 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.8%)
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.6620e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.02423435230267 (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     : 6.46 us    (2.1%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 284.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.2%)
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.1190e+05 | 65536 |      2 | 1.591e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.94151484343816 (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     : 6.45 us    (0.2%)
   patch tree reduce : 1953.00 ns (0.1%)
   gen split merge   : 1252.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.0%)
   LB compute        : 3.68 ms    (99.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (65.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.6187e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.43956163894115 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 123.76821922500001 (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  1944.23 us                          [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.23 us    (59.4%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1032.00 ns (0.3%)
   patch tree reduce : 1242.00 ns (0.4%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 327.19 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 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     : 12.96 us   (3.7%)
   patch tree reduce : 2.52 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 322.53 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3361e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 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     : 6.04 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 273.21 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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    | 4.7056e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.08733409369991 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 290.21 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (62.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.6952e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.989334663986966 (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     : 6.34 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 286.08 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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    | 3.4960e+05 | 65536 |      2 | 1.875e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.75458953776705 (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     : 6.91 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 266.76 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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.0752e+05 | 65536 |      2 | 1.608e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.18095062103388 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 263.25 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (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    | 4.6554e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.61622384355679 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008527901453342196, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.3%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 244.45 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (63.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5686e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.80317113643602 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010233481744010635, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 243.34 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (62.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5819e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.92762376442689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 1782.00 ns (0.6%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 266.68 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (50.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.7654e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.647531548359986 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013644642325347513, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.6%)
   patch tree reduce : 1753.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 236.43 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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    | 4.7485e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.489006725932946 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 278.19 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8869e+05 | 65536 |      2 | 1.686e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.41607729418793 (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     : 6.03 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 266.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1442e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.82703070096932 (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     : 6.57 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 284.03 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (61.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5468e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.599329886225995 (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     : 6.22 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 245.95 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (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    | 4.5214e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.360694763038985 (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     : 7.13 us    (2.7%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 241.31 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (59.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3647e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.89276159603586 (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     : 6.27 us    (2.4%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.6%)
   LB compute        : 242.37 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 4.5198e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.345930867866095 (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     : 6.42 us    (2.4%)
   patch tree reduce : 1692.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 248.80 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.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.5760e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.87279661219872 (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     : 6.19 us    (2.2%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 253.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (65.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.5909e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.012617529179245 (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     : 6.71 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.5%)
   LB compute        : 275.06 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (62.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5653e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.77282779467878 (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     : 6.52 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 271.20 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (63.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6400e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.47190303967975 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 246.12 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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    | 4.5616e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.73741780052912 (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     : 6.27 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 276.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (56.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.4118e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.334584481238664 (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.56 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 301.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (63.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3077e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.359310751099606 (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     : 6.44 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 244.88 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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    | 4.3927e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.15577029653094 (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     : 6.26 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 286.75 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.9259e+05 | 65536 |      2 | 1.669e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.78178325099643 (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     : 6.25 us    (2.3%)
   patch tree reduce : 1752.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1512.00 ns (0.6%)
   LB compute        : 249.14 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (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.5957e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.057144223215296 (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     : 6.78 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 267.45 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (64.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5933e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.03461252709437 (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     : 6.44 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 296.71 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (62.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4318e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.52207835793937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 289.49 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3136e+05 | 65536 |      2 | 1.978e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.045012427944094 (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.70 us    (1.9%)
   patch tree reduce : 1612.00 ns (0.5%)
   gen split merge   : 16.07 us   (4.6%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.4%)
   LB compute        : 310.80 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2970e+05 | 65536 |      2 | 1.988e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.889737077496743 (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     : 6.65 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 311.03 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4526e+05 | 65536 |      2 | 1.898e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.34756428194335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1732.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 309.54 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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    | 3.3912e+05 | 65536 |      2 | 1.933e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.772573059423056 (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     : 6.49 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.4%)
   LB compute        : 315.28 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (59.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2879e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.80475027047147 (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     : 6.75 us    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 307.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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    | 3.4088e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.93759957094788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 317.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (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    | 3.3787e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.65538908095969 (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     : 7.00 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 303.74 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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    | 3.4042e+05 | 65536 |      2 | 1.925e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.89415859012774 (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     : 6.74 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 330.87 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 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    | 3.3964e+05 | 65536 |      2 | 1.930e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.820617520845314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06140089046406381, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 307.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.3664e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.540051009623642 (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     : 6.56 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 313.54 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0741e+05 | 65536 |      2 | 1.609e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.170381435792024 (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     : 6.67 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 286.78 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2787e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.087370700804506 (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.20 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 287.54 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5514e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.642639723954034 (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     : 6.29 us    (1.9%)
   patch tree reduce : 1892.00 ns (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 311.93 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (65.5%)
Info: cfl dt = 0.0017055802906684398                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9895e+05 | 65536 |      2 | 1.643e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.37785697010634 (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     : 6.82 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 295.94 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (56.2%)
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.6112e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.20261981394817 (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     : 6.34 us    (1.7%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 350.85 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.5%)
Info: cfl dt = 0.0017055802906684504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2881e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.80634450577813 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07333995249874292, dt = 0.0017055802906684504
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 310.68 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (62.0%)
Info: cfl dt = 0.001705580290668476                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3595e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.47492220376551 (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     : 7.22 us    (1.5%)
   patch tree reduce : 2.20 us    (0.4%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.2%)
   LB compute        : 466.54 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.2%)
Info: cfl dt = 0.001705580290668554                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3498e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.384301632369503 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07675111308007984, dt = 0.001705580290668554
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 313.56 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (60.3%)
Info: cfl dt = 0.0017055802906687763                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3944e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.80252829855297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0784566933707484, dt = 0.0017055802906687763
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.7%)
   patch tree reduce : 2.13 us    (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 365.65 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.9%)
Info: cfl dt = 0.0017055802906693822                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3943e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.801757752999915 (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     : 6.44 us    (1.7%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 347.04 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.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    | 3.3675e+05 | 65536 |      2 | 1.946e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.55018559183924 (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     : 6.63 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 304.18 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
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    | 3.4224e+05 | 65536 |      2 | 1.915e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.064823345624 (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     : 6.71 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 328.99 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.3%)
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    | 3.3796e+05 | 65536 |      2 | 1.939e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.66332145482454 (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     : 6.88 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 343.40 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (57.9%)
Info: cfl dt = 0.0017055802907061882                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3422e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.313563873555132 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08698459482411672, dt = 0.0017055802907061882
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.6%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 361.92 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.0%)
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    | 3.3736e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.607507852780586 (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     : 6.59 us    (1.9%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 319.02 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.9%)
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    | 3.9503e+05 | 65536 |      2 | 1.659e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.010119310266546 (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     : 6.51 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 238.86 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (58.3%)
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.7040e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.07238181585582 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 289.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.0%)
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.4551e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.73963608588365 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 250.50 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (60.3%)
Info: cfl dt = 0.001705580292465543                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3689e+05 | 65536 |      2 | 1.945e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.563342528238678 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09551249627907167, dt = 0.001705580292465543
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 276.04 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.4%)
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    | 3.8434e+05 | 65536 |      2 | 1.705e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.00912129996224 (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     : 6.31 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 264.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.7%)
Info: cfl dt = 0.001705580297669714                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8322e+05 | 65536 |      2 | 1.710e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.90422862133752 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09892365686579493, dt = 0.001705580297669714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 284.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.3%)
Info: cfl dt = 0.0017055803040218658                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5726e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.840729156571 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10062923716346465, dt = 0.0017055803040218658
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.4%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1412.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 243.65 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (59.0%)
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    | 3.2644e+05 | 65536 |      2 | 2.008e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.58407429307142 (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     : 6.25 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 278.96 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (63.8%)
Info: cfl dt = 0.0017055803362700298                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5488e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.61762226114539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404039778308471, dt = 0.0017055803362700298
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 261.19 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.9%)
Info: cfl dt = 0.0017055803724717218                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1975e+05 | 65536 |      2 | 1.561e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.326881465128366 (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     : 6.76 us    (2.2%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 284.64 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (61.5%)
Info: cfl dt = 0.001705580434698187                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3892e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.12250495861009 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10745155849182646, dt = 0.001705580434698187
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 267.13 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.2%)
Info: cfl dt = 0.0017055805397597833                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4720e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.898631335754956 (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     : 6.21 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 273.38 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.0%)
Info: cfl dt = 0.0017055807141157196                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6104e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.19536373319326 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086271946628443, dt = 0.0017055807141157196
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 295.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (64.5%)
Info: cfl dt = 0.001705580998713724                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6726e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.77805775306266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256830018040015, dt = 0.001705580998713724
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 287.92 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.02 us    (87.7%)
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    | 3.4215e+05 | 65536 |      2 | 1.915e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.055919115839345 (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     : 6.94 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 346.64 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.6%)
Info: cfl dt = 0.0017055821790647279                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3600e+05 | 65536 |      2 | 1.950e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.48033532126983 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11597946263500743, dt = 0.0017055821790647279
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 20.51 us   (5.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 322.91 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (60.5%)
Info: cfl dt = 0.0017055833060424421                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1804e+05 | 65536 |      2 | 2.061e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.7976075429487 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768504481407216, dt = 0.0017055833060424421
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.6%)
   patch tree reduce : 2.38 us    (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 381.55 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.2%)
Info: cfl dt = 0.0017055850371140583                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5663e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.78149689780173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1193906281201146, dt = 0.0017055850371140583
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 331.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1932.00 ns (66.3%)
Info: cfl dt = 0.0017055876591026123                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6586e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.64634431761758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109621315722865, dt = 0.0017055876591026123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 297.19 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.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    | 3.8483e+05 | 65536 |      2 | 1.703e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.055006036600716 (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     : 6.71 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 287.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (62.3%)
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    | 3.5478e+05 | 65536 |      2 | 1.847e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.23934957813685 (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     : 6.27 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 283.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (60.4%)
Info: cfl dt = 0.0017056057636456693                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4303e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.138651044883176 (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.06 us    (1.6%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 349.88 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.7%)
Info: cfl dt = 0.00170561785319086                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3893e+05 | 65536 |      2 | 1.934e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.754745466725442 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1279185955107762, dt = 0.00170561785319086
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.2%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 262.96 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
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    | 3.4659e+05 | 65536 |      2 | 1.891e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.47330900699103 (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     : 6.59 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 306.91 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.5%)
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    | 3.4511e+05 | 65536 |      2 | 1.899e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.33458512371238 (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     : 6.91 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 294.36 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (66.0%)
Info: cfl dt = 0.0017056925221283386                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4411e+05 | 65536 |      2 | 1.905e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.241313203708174 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13303550749684084, dt = 0.0017056925221283386
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 276.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
Info: cfl dt = 0.001705738331552196                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4182e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.027125734277085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1347412000189692, dt = 0.001705738331552196
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.3%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 276.63 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (63.3%)
Info: cfl dt = 0.0017058004408294066                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4607e+05 | 65536 |      2 | 1.894e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.426816615230194 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13644693835052138, dt = 0.0017058004408294066
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 293.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.9%)
Info: cfl dt = 0.0017058837290848479                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4297e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.13748104343136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381527387913508, dt = 0.0017058837290848479
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 305.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.6%)
Info: cfl dt = 0.0017059942201429112                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5032e+05 | 65536 |      2 | 1.871e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.82755390185755 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13985862252043563, dt = 0.0017059942201429112
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 285.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (58.2%)
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    | 3.5029e+05 | 65536 |      2 | 1.871e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.8269683572763 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 262.51 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.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    | 3.4903e+05 | 65536 |      2 | 1.878e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.7113949085797 (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     : 6.16 us    (1.9%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 309.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (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    | 3.5121e+05 | 65536 |      2 | 1.866e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.91980278106654 (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     : 6.44 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 269.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (61.1%)
Info: cfl dt = 0.0017068783687916485                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5407e+05 | 65536 |      2 | 1.851e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.192108407096576 (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     : 7.09 us    (2.3%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 284.78 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.9%)
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.4968e+05 | 65536 |      2 | 1.874e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.786825921850415 (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     : 6.42 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 262.98 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.2%)
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    | 3.5364e+05 | 65536 |      2 | 1.853e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.265876725027322 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 139.07830213100002 (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  1821.55 us                          [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (53.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     : 1011.00 ns (0.3%)
   patch tree reduce : 1201.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 354.09 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 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=False
Info: time since start : 139.256962418 (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     : 9.64 us    (2.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.3%)
   LB compute        : 321.81 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.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.0776e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 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     : 6.79 us    (1.8%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 352.69 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3292e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.560807566428196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 300.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (65.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2483e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.80263628099505 (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     : 6.20 us    (2.1%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 267.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (55.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.7356e+05 | 65536 |      2 | 1.754e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.953109218286582 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 140.00825951500002 (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     : 9.81 us    (2.9%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 307.21 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6386e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.45925382029175 (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     : 6.65 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 15.13 us   (4.8%)
   LB compute        : 278.04 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6125e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.21482929007962 (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     : 6.28 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 232.33 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (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.5605e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.488460258869027 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 140.505574333 (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     : 8.62 us    (2.5%)
   patch tree reduce : 2.53 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 315.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (64.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4780e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.954730316351714 (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     : 6.58 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 302.77 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3336e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.6016855486214 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010911160581336878, dt = 0.00033883941866312203
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 276.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1346e+05 | 65536 |      2 | 1.585e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.695724973401958 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 141.040661215 (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     : 9.03 us    (2.2%)
   patch tree reduce : 2.68 us    (0.7%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 377.46 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (63.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4978e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.140396122395686 (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     : 6.49 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 266.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0713e+05 | 65536 |      2 | 1.610e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.14416639783732 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.4%)
   LB compute        : 262.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (61.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3853e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.162445644727505 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 141.567136385 (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     : 9.02 us    (2.0%)
   patch tree reduce : 2.36 us    (0.5%)
   gen split merge   : 981.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.3%)
   LB compute        : 419.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (65.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4774e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.94904091027976 (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.65 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 287.16 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.85 us   (94.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.3894e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.12397649855342 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 274.20 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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    | 3.2216e+05 | 65536 |      2 | 2.034e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.996331278519431 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 142.13704748 (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     : 8.60 us    (2.3%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 346.88 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6134e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.22346072352968 (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     : 6.53 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 311.68 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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.6340e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.41646572457541 (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     : 7.87 us    (2.1%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1553.00 ns (0.4%)
   LB compute        : 343.26 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.80 us    (66.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.5775e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.520165340116575 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 142.632327656 (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     : 9.79 us    (2.6%)
   patch tree reduce : 2.64 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 351.44 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.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.6020e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.116447939932534 (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     : 6.28 us    (2.3%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 251.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (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.6698e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.75136526974489 (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     : 6.30 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 233.32 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.6102e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.58104378895423 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 143.129209196 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.02625, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.21 us    (2.4%)
   patch tree reduce : 2.68 us    (0.8%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 310.49 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (64.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6745e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.79551138329319 (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     : 6.24 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 292.18 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.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.4102e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.319160939299714 (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     : 6.91 us    (2.2%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 292.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (64.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4056e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.200155017571761 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 143.638135334 (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     : 9.17 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 426.51 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.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.9361e+05 | 65536 |      2 | 1.665e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.87789830119489 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 262.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3079e+05 | 65536 |      2 | 1.981e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.99215032411631 (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     : 6.53 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 274.17 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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    | 3.3321e+05 | 65536 |      2 | 1.967e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.202104095364479 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 144.27021262600002 (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.92 us    (2.2%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 373.93 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (64.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5834e+05 | 65536 |      2 | 1.829e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.573351867631025 (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     : 6.49 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 290.13 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4355e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.556293137971636 (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.96 us    (2.0%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 319.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4793e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.337404896987271 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 144.814675131 (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     : 8.45 us    (2.2%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 354.66 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4811e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.98374794673308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03920558029066844, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 267.46 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (60.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4111e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.32741994368137 (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     : 6.49 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 274.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4752e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.329669670526146 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 145.326419079 (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     : 9.33 us    (2.6%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 335.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5249e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.39418946213512 (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     : 6.57 us    (2.1%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 288.99 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4262e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.46941097437047 (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     : 6.90 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 271.05 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.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.3312e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.061751159262379 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 145.839969958 (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     : 9.21 us    (2.5%)
   patch tree reduce : 2.57 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 344.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (61.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5118e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.27162582023324 (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     : 6.99 us    (2.7%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.5%)
   LB compute        : 239.79 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4443e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.63846930801991 (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     : 7.07 us    (2.5%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 264.77 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3586e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.251347411697315 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 146.39845239000002 (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     : 9.39 us    (2.6%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 329.50 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4585e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.77204746290523 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 260.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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    | 4.3918e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.14699406640389 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 260.58 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (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.5886e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.540678291087223 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 146.908961784 (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     : 8.24 us    (2.2%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 349.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (64.5%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4258e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.46536926338569 (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     : 6.18 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 285.92 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4121e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.336924789507925 (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     : 6.83 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 253.92 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (62.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5307e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.433027531219578 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 147.421836891 (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     : 8.92 us    (2.7%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 309.81 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.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.4422e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.61952203292922 (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     : 6.52 us    (2.4%)
   patch tree reduce : 1783.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 244.00 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.4209e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.41982962454077 (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     : 6.55 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 275.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.2079e+05 | 65536 |      2 | 2.043e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.970945519038842 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 147.99135608900002 (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     : 9.01 us    (2.2%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 379.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2414e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.737562230572024 (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     : 6.74 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 298.95 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (59.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1666e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.03690837463105 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06341116058133688, dt = 0.0003388394186631255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 292.67 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (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.2097e+05 | 65536 |      2 | 2.042e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.974169459838266 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 148.573486459 (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     : 9.23 us    (2.2%)
   patch tree reduce : 2.42 us    (0.6%)
   gen split merge   : 1021.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 396.63 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2088e+05 | 65536 |      2 | 2.042e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.06379256443776 (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     : 6.48 us    (1.6%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 375.20 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.7%)
Info: cfl dt = 0.0017055802906684396                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6409e+05 | 65536 |      2 | 1.800e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.11139129061911 (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     : 6.66 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 285.46 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.6%)
Info: cfl dt = 0.0017055802906684398                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2995e+05 | 65536 |      2 | 1.986e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.141428770479051 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 149.225069421 (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     : 9.20 us    (2.5%)
   patch tree reduce : 2.51 us    (0.7%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.3%)
   LB compute        : 345.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (61.5%)
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.4015e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.23816206653054 (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     : 6.21 us    (2.3%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 243.44 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (60.5%)
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.5718e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.833212737542055 (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     : 6.70 us    (2.5%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 249.71 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.9%)
Info: cfl dt = 0.00170558029066845                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4434e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.27057277479501 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 149.733151768 (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     : 9.18 us    (2.8%)
   patch tree reduce : 2.53 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 301.33 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (59.2%)
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    | 4.5130e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.28257014198888 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 268.91 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.9%)
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    | 4.4533e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.72338147450766 (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     : 6.49 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 273.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.13 us    (80.4%)
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.5179e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.409197834339556 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 150.24007167800002 (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.68 us    (2.3%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 354.19 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (60.8%)
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.5017e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.1761089848291 (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     : 6.55 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 286.42 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.9%)
Info: cfl dt = 0.0017055802906693282                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3499e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.75409139694339 (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     : 6.49 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 308.19 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (66.0%)
Info: cfl dt = 0.0017055802906695474                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1321e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.691137311236919 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 150.767096564 (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     : 8.79 us    (2.0%)
   patch tree reduce : 2.49 us    (0.6%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.3%)
   LB compute        : 404.51 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (68.2%)
Info: cfl dt = 0.001705580290671223                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3876e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.10763798837489 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08045558029066954, dt = 0.001705580290671223
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 262.45 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.6%)
Info: cfl dt = 0.0017055802906751835                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4725e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.90343244543229 (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     : 6.83 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 329.14 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (69.5%)
Info: cfl dt = 0.0017055802906766546                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3962e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.182732079397084 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 151.282513802 (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     : 9.00 us    (2.6%)
   patch tree reduce : 2.49 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 318.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (59.0%)
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    | 4.4808e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.980553962542444 (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     : 7.22 us    (1.8%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 373.59 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.7%)
Info: cfl dt = 0.0017055802907119265                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4657e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.83926137082149 (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     : 6.41 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 259.03 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.8%)
Info: cfl dt = 0.001705580290720382                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3239e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.04812836237616 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 151.799031353 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.08625, dt = 0.001705580290720382
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.7%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 325.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (67.0%)
Info: cfl dt = 0.0017055802907824482                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4857e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.02665848217377 (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     : 6.23 us    (1.8%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 314.66 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (65.0%)
Info: cfl dt = 0.0017055802909115413                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3818e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.053616333983506 (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     : 6.55 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 245.55 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.8%)
Info: cfl dt = 0.0017055802909539985                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5126e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.399288378560888 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 152.309248735 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.09, dt = 0.0017055802909539985
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.85 us    (2.5%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 331.43 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.9%)
Info: cfl dt = 0.001705580291260901                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4571e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.75905330412387 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09170558029095399, dt = 0.001705580291260901
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 266.71 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.6%)
Info: cfl dt = 0.001705580291865828                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4462e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.656774220947824 (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     : 6.91 us    (2.6%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1353.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 244.59 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (63.5%)
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.4640e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.308905641798749 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 152.81995761800002 (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     : 9.32 us    (2.7%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 317.42 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.3%)
Info: cfl dt = 0.0017055802934029458                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4934e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.09896189303413 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09545558029205482, dt = 0.0017055802934029458
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 277.39 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.3%)
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    | 4.6181e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.26731548177932 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 272.81 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (60.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.2155e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.846322770866412 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 153.346488235 (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     : 9.29 us    (2.5%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 338.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.2%)
Info: cfl dt = 0.0017055803020129441                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5965e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.06442982846702 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0992055802966895, dt = 0.0017055803020129441
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.6%)
   patch tree reduce : 2.51 us    (1.0%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.4%)
   LB compute        : 235.12 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.4%)
Info: cfl dt = 0.0017055803115789483                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4595e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.78134000739001 (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.48 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 272.63 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.3%)
Info: cfl dt = 0.0017055803143136746                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5082e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.391172280746574 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 153.85052771000002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.10124999999999999, dt = 0.0017055803143136746
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.51 us    (2.2%)
   patch tree reduce : 2.46 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 361.94 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.9%)
Info: cfl dt = 0.001705580333398912                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5875e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.9807956719641 (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.42 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 283.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.2%)
Info: cfl dt = 0.0017055803663408543                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5273e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.41623868039004 (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.98 us    (1.8%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 301.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.6%)
Info: cfl dt = 0.0017055803753998516                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5855e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.53490437319384 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 154.35224271500002 (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     : 9.39 us    (2.5%)
   patch tree reduce : 2.53 us    (0.7%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 355.45 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.1%)
Info: cfl dt = 0.001705580438043695                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5250e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.395299798449635 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10670558037539984, dt = 0.001705580438043695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 277.97 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.1%)
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    | 3.5984e+05 | 65536 |      2 | 1.821e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.713489719423364 (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     : 6.38 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 287.39 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 8.02 us    (2.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.5%)
Info: cfl dt = 0.0017055805698800715                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5818e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.528086932041003 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 154.91246676600002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.10875, dt = 0.0017055805698800715
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.70 us    (2.6%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 307.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.0%)
Info: cfl dt = 0.0017055807594724872                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5729e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.84378926886734 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11045558056988007, dt = 0.0017055807594724872
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.3%)
   patch tree reduce : 2.63 us    (1.0%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 251.45 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (63.4%)
Info: cfl dt = 0.001705581064168032                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3880e+05 | 65536 |      2 | 1.934e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.742738553137695 (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     : 6.72 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 266.96 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (59.6%)
Info: cfl dt = 0.0017055811423667506                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1660e+05 | 65536 |      2 | 2.070e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.892791105047612 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 155.526010434 (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     : 8.98 us    (2.1%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 393.63 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.7%)
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    | 4.3777e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.01462372853769 (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     : 6.47 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 293.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.4%)
Info: cfl dt = 0.0017055825031950488                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5029e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.18766799690383 (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     : 6.63 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 276.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (63.2%)
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    | 4.5254e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.423098366686617 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 156.03475354600002 (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     : 9.09 us    (2.3%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 363.44 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.6%)
Info: cfl dt = 0.0017055841029076466                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6058e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.151643795171324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11795558270932867, dt = 0.0017055841029076466
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 300.53 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.0%)
Info: cfl dt = 0.0017055862079691955                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3164e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.440357365769536 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 266.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.0%)
Info: cfl dt = 0.001705586716627705                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7326e+05 | 65536 |      2 | 1.756e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.9474033325578946 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 156.578605872 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.12, dt = 0.001705586716627705
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.49 us    (2.3%)
   patch tree reduce : 2.37 us    (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 352.49 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.4%)
Info: cfl dt = 0.00170559013387867                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5374e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.51114079539036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1217055867166277, dt = 0.00170559013387867
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 268.12 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (64.0%)
Info: cfl dt = 0.0017055951519962195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4575e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.76250041388052 (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     : 6.01 us    (2.0%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 272.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.0%)
Info: cfl dt = 0.001705596331541383                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3278e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.05502646663595 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 157.09236103700002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.12375, dt = 0.001705596331541383
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.07 us    (2.5%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 340.53 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.7%)
Info: cfl dt = 0.0017056042100471686                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5021e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.18108760900668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12545559633154138, dt = 0.0017056042100471686
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.6%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.6%)
   LB compute        : 237.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.5%)
Info: cfl dt = 0.0017056154737851938                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7463e+05 | 65536 |      2 | 1.749e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.10001005906612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12716120054158855, dt = 0.00033879945841144843
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.4%)
   patch tree reduce : 2.44 us    (0.9%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.5%)
   LB compute        : 241.41 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.6%)
Info: cfl dt = 0.0017056180527650242                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0312e+05 | 65536 |      2 | 1.626e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.502438814940103 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 157.64740697500002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.1275, dt = 0.0017056180527650242
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.24 us    (2.3%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 991.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 372.17 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.8%)
Info: cfl dt = 0.0017056351863912094                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4848e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.01962794894927 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12920561805276504, dt = 0.0017056351863912094
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.5%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 258.74 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (61.2%)
Info: cfl dt = 0.0017056590653762435                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6373e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.448744801427765 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 259.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.0%)
Info: cfl dt = 0.0017056643967931814                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5742e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.511720713370261 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 158.148694573 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.13125, dt = 0.0017056643967931814
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.3%)
   patch tree reduce : 2.39 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 382.11 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (61.8%)
Info: cfl dt = 0.0017056996427259861                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5796e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.90893466866631 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13295566439679318, dt = 0.0017056996427259861
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.29 us    (2.4%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 283.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (71.0%)
Info: cfl dt = 0.0017057475807917397                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2828e+05 | 65536 |      2 | 1.996e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.75920604158331 (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     : 6.44 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 295.94 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (61.7%)
Info: cfl dt = 0.0017057580261110798                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1995e+05 | 65536 |      2 | 2.048e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.951600438942091 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 158.767983391 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.135, dt = 0.0017057580261110798
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.89 us    (2.1%)
   patch tree reduce : 2.44 us    (0.6%)
   gen split merge   : 1041.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 391.20 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.5%)
Info: cfl dt = 0.0017058267759265753                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4874e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.047349569598445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1367057580261111, dt = 0.0017058267759265753
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.4%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 265.80 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (57.0%)
Info: cfl dt = 0.0017059181166186419                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3605e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.859828726434834 (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     : 6.45 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 271.75 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.2%)
Info: cfl dt = 0.0017059375494748695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8539e+05 | 65536 |      2 | 1.701e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.16425443080221 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 159.301158315 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.13874999999999998, dt = 0.0017059375494748695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.82 us    (2.3%)
   patch tree reduce : 2.42 us    (0.6%)
   gen split merge   : 1062.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 402.99 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (68.3%)
Info: cfl dt = 0.0017060649740358817                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9605e+05 | 65536 |      2 | 1.655e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.11389331469036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14045593754947486, dt = 0.0017060649740358817
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.53 us    (2.4%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 294.90 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.3%)
Info: cfl dt = 0.001706230490070304                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4887e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.06693370231667 (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     : 6.42 us    (1.8%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 334.07 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
Info: cfl dt = 0.0017062648765051938                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5595e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.46548459772804 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 159.830420218 (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.91 us    (2.3%)
   patch tree reduce : 2.45 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 355.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (71.6%)
Info: cfl dt = 0.0017064897180124724                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6427e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.51471116602475 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 263.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (65.3%)
Info: cfl dt = 0.0017067754813477338                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5820e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.95217910765916 (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     : 6.90 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.3%)
   LB compute        : 312.03 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.5%)
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    | 4.4434e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.231672508705778 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 160.33263915400002 (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     : 8.96 us    (2.3%)
   patch tree reduce : 2.50 us    (0.6%)
   gen split merge   : 17.69 us   (4.5%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 350.42 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.0%)
Info: cfl dt = 0.0017072117966448453                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5550e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.70715639790931 (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     : 6.63 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 253.84 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (59.5%)
Info: cfl dt = 0.001707682700707798                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5084e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.279744543765595 (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     : 6.69 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1432.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 268.61 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.4%)
Info: cfl dt = 0.0017077758010074246                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5405e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.379377340194377 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 160.83564697600002 (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  1953.31 us                          [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.14 us    (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     : 1062.00 ns (0.3%)
   patch tree reduce : 1342.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 294.46 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
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     : 13.29 us   (4.0%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 306.57 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.4425e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 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     : 6.35 us    (1.8%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 330.48 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2039e+05 | 65536 |      2 | 2.045e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.017559853615285 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017055802906684391, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 302.06 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.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.2064e+05 | 65536 |      2 | 2.044e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.040546058785853 (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     : 6.87 us    (2.0%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 329.02 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (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    | 3.1655e+05 | 65536 |      2 | 2.070e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.65751671035008 (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     : 6.05 us    (1.6%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 352.81 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.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.4658e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.83999950069646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0068223211626737565, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.6%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 235.59 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (63.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4312e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.51640743104504 (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     : 7.13 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 315.07 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3741e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.98108281520912 (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     : 22.08 us   (7.9%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 241.99 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (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.0170e+05 | 65536 |      2 | 1.631e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.63549937226173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011939062034679074, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 242.35 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7788e+05 | 65536 |      2 | 1.734e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.403740864187824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013644642325347513, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 246.24 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (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    | 3.7617e+05 | 65536 |      2 | 1.742e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.243609805759554 (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     : 6.42 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 297.52 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.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.4518e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.708960375196824 (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     : 6.25 us    (1.8%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 318.90 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1912.00 ns (64.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4720e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 32.52889266212534 (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     : 6.50 us    (2.0%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 301.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.9741e+05 | 65536 |      2 | 1.649e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.233425856082775 (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     : 6.20 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 260.91 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1281.00 ns (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.1053e+05 | 65536 |      2 | 1.596e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.46277135487169 (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     : 6.37 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 269.69 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (60.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3624e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.871266420068594 (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     : 6.43 us    (2.3%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 257.73 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (63.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2601e+05 | 65536 |      2 | 2.010e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.543703649856376 (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     : 6.18 us    (1.7%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 335.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2513e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.83091468199988 (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     : 6.22 us    (2.4%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 237.94 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (65.1%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3871e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.102937321957945 (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     : 6.62 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 261.24 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3770e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.00852503715729 (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     : 6.58 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 240.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4223e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.43266802165078 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.032406025522700346, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 268.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (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    | 3.2437e+05 | 65536 |      2 | 2.020e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.390484325017855 (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     : 6.44 us    (1.7%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 16.06 us   (4.3%)
   LB compute        : 339.62 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7345e+05 | 65536 |      2 | 1.755e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.98898752636398 (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.25 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 283.51 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (67.4%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4882e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.05003987920267 (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     : 6.49 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 238.79 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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    | 4.5084e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.238927068707824 (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     : 6.22 us    (2.1%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 271.04 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (70.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.4177e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.38962844076045 (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     : 6.46 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 236.56 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (59.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.4367e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.567635274923646 (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     : 6.34 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 250.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4620e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.80429177337362 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 262.58 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.2%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4047e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.26745938652913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04605066784804786, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 277.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (61.6%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4020e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.24230503907551 (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.82 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 268.51 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (63.8%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8315e+05 | 65536 |      2 | 1.710e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.897684957414185 (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     : 6.64 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 278.99 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3810e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.04566367078922 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.051167408720053174, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 285.47 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (62.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4117e+05 | 65536 |      2 | 1.921e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.9640280088614 (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     : 6.54 us    (1.2%)
   patch tree reduce : 2.00 us    (0.4%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.2%)
   LB compute        : 507.24 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.1136e+05 | 65536 |      2 | 1.593e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.540250109077874 (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     : 6.52 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 290.40 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1156e+05 | 65536 |      2 | 1.592e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.55874237729449 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05628414959205849, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 264.41 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.1242e+05 | 65536 |      2 | 1.589e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.639450462893784 (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     : 7.00 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 266.20 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.1677e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.047735236577864 (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     : 6.59 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1311.00 ns (0.5%)
   LB compute        : 268.36 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (63.9%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9638e+05 | 65536 |      2 | 1.653e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.13692002638147 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06140089046406381, dt = 0.0017055802906684391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 265.28 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (65.0%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4145e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.35922666108021 (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     : 6.66 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 273.39 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.7%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4333e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.53601224148904 (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     : 6.92 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1402.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 246.06 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.3%)
Info: cfl dt = 0.0017055802906684391                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4144e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.358473359415875 (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.37 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 260.04 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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    | 4.3105e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.38545294727466 (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     : 6.73 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 264.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.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.3789e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.02603562264656 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 261.35 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.2%)
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.4538e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.727651161721276 (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     : 6.61 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 288.82 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (62.0%)
Info: cfl dt = 0.0017055802906684504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3753e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.99268726038456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07333995249874292, dt = 0.0017055802906684504
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 266.02 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.5%)
Info: cfl dt = 0.0017055802906684762                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1850e+05 | 65536 |      2 | 2.058e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.84024018073836 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07504553278941137, dt = 0.0017055802906684762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.6%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1562.00 ns (0.4%)
   LB compute        : 355.07 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (69.1%)
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.3994e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.21857282228715 (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     : 6.67 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 265.81 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (60.0%)
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    | 3.6269e+05 | 65536 |      2 | 1.807e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 33.98028372110895 (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     : 6.76 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 245.25 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.6%)
Info: cfl dt = 0.001705580290669386                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2818e+05 | 65536 |      2 | 1.997e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 30.747174172401735 (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     : 6.98 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.5%)
   LB compute        : 253.33 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (64.4%)
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.4999e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.16006708276486 (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     : 6.44 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 273.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.5%)
Info: cfl dt = 0.0017055802906749116                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2954e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.243363204806776 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08357343424275754, dt = 0.0017055802906749116
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 319.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (66.0%)
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.3996e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.2197933881086 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 263.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (59.0%)
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.4576e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.76334278785776 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 265.77 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (59.5%)
Info: cfl dt = 0.0017055802907554839                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3902e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.131499116648655 (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     : 6.66 us    (2.3%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 272.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.6%)
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.3528e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.78166428448131 (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     : 6.37 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 287.09 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.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    | 4.2893e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.186124290555384 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09210133569644087, dt = 0.001705580291087342
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1191.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 322.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.6%)
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    | 3.1675e+05 | 65536 |      2 | 2.069e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.675989284969734 (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     : 6.31 us    (1.9%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 312.38 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.2%)
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    | 3.1610e+05 | 65536 |      2 | 2.073e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 29.615753612043516 (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     : 6.56 us    (1.7%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.4%)
   LB compute        : 357.78 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.3%)
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.4077e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.29604710081782 (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     : 7.13 us    (2.3%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1582.00 ns (0.5%)
   LB compute        : 292.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.6%)
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.3779e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.016658208965175 (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     : 6.32 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 275.26 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (63.9%)
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.3734e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.974061784461114 (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     : 6.32 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 250.22 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.8%)
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.5495e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.62457242505867 (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     : 6.88 us    (2.6%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.6%)
   LB compute        : 237.29 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (57.9%)
Info: cfl dt = 0.0017055803364159749                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4298e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.50315524808375 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10404039778325466, dt = 0.0017055803364159749
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 251.57 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (63.2%)
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.4389e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.588345645726285 (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     : 6.52 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 262.09 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (59.8%)
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.4319e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.52237462703557 (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     : 6.61 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 238.60 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.2%)
Info: cfl dt = 0.0017055805405387032                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7641e+05 | 65536 |      2 | 1.741e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 35.266343604188584 (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     : 6.23 us    (1.9%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 304.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.9%)
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.2156e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.49633916393464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11086271946809333, dt = 0.0017055807154278896
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 246.23 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.6%)
Info: cfl dt = 0.0017055810008860168                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2021e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.36932638774878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11256830018352122, dt = 0.0017055810008860168
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 262.66 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.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.4049e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.269205693968914 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 261.51 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (64.1%)
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    | 3.6941e+05 | 65536 |      2 | 1.774e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 34.60986843216634 (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     : 6.43 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 289.84 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.6%)
Info: cfl dt = 0.001705583314964165                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2357e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.684816634998654 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11768504482856307, dt = 0.001705583314964165
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.3%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 260.42 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (61.8%)
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.4016e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.238873049075366 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 261.98 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.1%)
Info: cfl dt = 0.001705587680256208                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1357e+05 | 65536 |      2 | 1.585e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.74798333134968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12109621319448344, dt = 0.001705587680256208
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 254.56 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (59.1%)
Info: cfl dt = 0.001705591608731515                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9409e+05 | 65536 |      2 | 1.663e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 36.92304047069874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12280180087473964, dt = 0.001705591608731515
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 286.13 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.7%)
Info: cfl dt = 0.001705597401201249                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1092e+05 | 65536 |      2 | 1.595e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.49939739015753 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12450739248347116, dt = 0.001705597401201249
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 259.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.3%)
Info: cfl dt = 0.0017056058328428956                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3592e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.472861027413188 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12621298988467242, dt = 0.0017056058328428956
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 241.60 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (51.3%)
Info: cfl dt = 0.0017056179530811249                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2909e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.2020311080329 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12791859571751532, dt = 0.0017056179530811249
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.5%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 254.56 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.5%)
Info: cfl dt = 0.001705635163560412                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3190e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.46548706634949 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12962421367059646, dt = 0.001705635163560412
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.4%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.5%)
   LB compute        : 253.70 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (63.2%)
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.2685e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.99306751110986 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13132984883415685, dt = 0.001705659311531861
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 297.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (59.9%)
Info: cfl dt = 0.001705692799520938                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2309e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.64129343424656 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1330355081456887, dt = 0.001705692799520938
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 266.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.3%)
Info: cfl dt = 0.0017057387114605878                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3013e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.30194834445879 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13474120094520964, dt = 0.0017057387114605878
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 288.99 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.3%)
Info: cfl dt = 0.0017058009545611527                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3771e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.01274384430997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13644693965667024, dt = 0.0017058009545611527
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 270.36 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (65.7%)
Info: cfl dt = 0.001705884415052715                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3504e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.76403863813948 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1381527406112314, dt = 0.001705884415052715
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 251.17 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.1%)
Info: cfl dt = 0.0017059951246116464                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3326e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.59934590660559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1398586250262841, dt = 0.0017059951246116464
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 268.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.6%)
Info: cfl dt = 0.0017061404328372685                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2845e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 40.15145730902163 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14156462015089574, dt = 0.0017061404328372685
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 267.50 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (57.5%)
Info: cfl dt = 0.0017063291796756363                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1566e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 38.955910482442874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.143270760583733, dt = 0.0017063291796756363
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 279.38 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (66.7%)
Info: cfl dt = 0.0017065718603250122                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1964e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.333805117517294 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14497708976340865, dt = 0.0017065718603250122
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 263.88 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (59.3%)
Info: cfl dt = 0.001706880774053235                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2335e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.68641428578692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14668366162373367, dt = 0.001706880774053235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 278.48 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (62.3%)
Info: cfl dt = 0.0017072701476703652                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1623e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 39.02664306734795 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1483905423977869, dt = 0.0016094576022130935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.3%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 250.64 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.1%)
Info: cfl dt = 0.001707722300260462                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2582e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 37.6466423034573 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 175.299097964 (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])}]}
348 plot, anim = run_and_plot(cases, 3, "minmod_hllc")
  • Test 3 - t=0.012 (Last Step)
running none hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  17.49 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.78 us    (51.8%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1172.00 ns (0.2%)
   patch tree reduce : 16.25 us   (3.0%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.3%)
   LB compute        : 505.74 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 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     : 12.97 us   (2.6%)
   patch tree reduce : 2.46 us    (0.5%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 467.11 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.2%)
Info: cfl dt = 0.00012527870714644892                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2281e+05 | 65536 |      2 | 2.941e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 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     : 7.21 us    (1.6%)
   patch tree reduce : 2.43 us    (0.5%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.2%)
   LB compute        : 437.73 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (67.5%)
Info: cfl dt = 0.00012194328524833338                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1855e+05 | 65536 |      2 | 1.566e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8803446872520415 (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.92 us    (1.6%)
   patch tree reduce : 2.36 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 399.30 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.4%)
Info: cfl dt = 0.00011872603833498025                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4150e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9574006430689685 (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     : 7.28 us    (2.0%)
   patch tree reduce : 2.51 us    (0.7%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 348.55 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (68.2%)
Info: cfl dt = 0.00011582136182458723                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1190e+05 | 65536 |      2 | 1.591e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.686338458401072 (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     : 6.79 us    (2.2%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 291.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (57.7%)
Info: cfl dt = 0.00011331937527520993                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2710e+05 | 65536 |      2 | 2.004e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.081107861206334 (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     : 7.05 us    (2.0%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 336.15 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.6%)
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    | 3.9203e+05 | 65536 |      2 | 1.672e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.440305371433073 (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     : 6.56 us    (1.8%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 331.83 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.8%)
Info: cfl dt = 0.0001093661346982433                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3971e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6856378457442194 (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     : 7.05 us    (2.3%)
   patch tree reduce : 2.62 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1552.00 ns (0.5%)
   LB compute        : 288.59 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.7%)
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.5113e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7102404827907867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008156432217666553, dt = 0.00010779301620595844
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 290.14 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.5%)
Info: cfl dt = 0.00010641928608971432                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5219e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.67755687397317 (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     : 6.56 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 234.63 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.5%)
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.4613e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.607995109663029 (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     : 6.39 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 283.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.2%)
Info: cfl dt = 0.00010412181761245932                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4729e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.584966612881021 (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.76 us    (2.3%)
   patch tree reduce : 2.40 us    (1.0%)
   gen split merge   : 1162.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 230.37 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (57.0%)
Info: cfl dt = 0.00010314418535258154                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3765e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.50318716789879 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012391830393075494, dt = 0.00010314418535258154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 282.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.1%)
Info: cfl dt = 0.00010225470808944258                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6000e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.606302150656656 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 265.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (59.8%)
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    | 4.5500e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.555771426563517 (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     : 6.38 us    (2.4%)
   patch tree reduce : 2.58 us    (1.0%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 241.01 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (45.7%)
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.7152e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.627433958226947 (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.52 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 291.04 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.7%)
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.6895e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5937355437619543 (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     : 6.76 us    (2.1%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 302.79 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.4%)
Info: cfl dt = 9.934006785392846e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9203e+05 | 65536 |      2 | 1.672e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1532508937745756 (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     : 6.29 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 252.64 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.2%)
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.0931e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.233548132307586 (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     : 6.96 us    (2.7%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.5%)
   LB compute        : 236.01 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.2%)
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.5678e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.477383513437948 (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     : 6.30 us    (2.3%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 249.11 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.3%)
Info: cfl dt = 9.762749344868406e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5510e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.454019350923016 (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.76 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.4%)
   LB compute        : 322.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.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.5485e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4393086525184127 (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     : 6.88 us    (2.4%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 269.92 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.5%)
Info: cfl dt = 9.66466826547552e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5755e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.441087973607631 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00223768450698276, dt = 9.66466826547552e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 294.94 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.0%)
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.4743e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3753648632625812 (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     : 6.76 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 247.86 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.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    | 3.8435e+05 | 65536 |      2 | 1.705e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0310202869321423 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002430527673439334, dt = 9.577034552609458e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.6%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 241.24 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.87 us    (62.9%)
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    | 3.4928e+05 | 65536 |      2 | 1.876e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.837518042605429 (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     : 6.95 us    (2.7%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 237.41 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (59.1%)
Info: cfl dt = 9.498345985165533e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5196e+05 | 65536 |      2 | 1.862e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.843800458836364 (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     : 7.18 us    (2.8%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 235.68 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (61.6%)
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.6043e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.402361127538404 (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     : 6.44 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1281.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 263.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (61.0%)
Info: cfl dt = 9.427420442175475e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2759e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2224423622649017 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028112677719395788, dt = 9.427420442175475e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 2.63 us    (0.8%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 297.93 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.0%)
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.3582e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.256967196752974 (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     : 6.39 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 247.23 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (59.9%)
Info: cfl dt = 9.363298724961119e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6530e+05 | 65536 |      2 | 1.794e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8851713567073494 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002999487597896607, dt = 9.363298724961119e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 276.54 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.5%)
Info: cfl dt = 9.333535314768472e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0797e+05 | 65536 |      2 | 1.606e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.09834394556965 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030931205851462184, dt = 9.333535314768472e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 304.51 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.7%)
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.4812e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.297537300713739 (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     : 7.23 us    (0.5%)
   patch tree reduce : 2.60 us    (0.2%)
   gen split merge   : 1172.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.1%)
   LB compute        : 1446.89 us (98.3%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.5%)
Info: cfl dt = 9.278166737417008e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9105e+05 | 65536 |      2 | 1.676e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9988465279040868 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003279507785969837, dt = 9.278166737417008e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.4%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 250.24 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (56.5%)
Info: cfl dt = 9.252406951761004e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8623e+05 | 65536 |      2 | 1.697e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.968477048894126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003372289453344007, dt = 9.252406951761004e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 251.17 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.4%)
Info: cfl dt = 9.227836587161003e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2719e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.171192123202851 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003464813522861617, dt = 9.227836587161003e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 322.68 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.8%)
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.4672e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.264417164124974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003557091888733227, dt = 9.204391733446075e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.4%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 267.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (59.4%)
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.4459e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.247894272195144 (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     : 6.14 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 266.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.4%)
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.5193e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2794359317971318 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003740955935365956, dt = 9.160644759788798e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 261.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
Info: cfl dt = 9.140235494727e-05                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4141e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.221209180559181 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003832562382963844, dt = 9.140235494727e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 246.95 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.0%)
Info: cfl dt = 9.120736778441642e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8811e+05 | 65536 |      2 | 1.689e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9486294590490294 (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     : 6.73 us    (2.6%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 240.13 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (55.4%)
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.6783e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3439189313408235 (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     : 6.26 us    (2.0%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 297.15 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.7%)
Info: cfl dt = 9.084292773674417e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5171e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.258507434102745 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00410619313915799, dt = 9.084292773674417e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 280.10 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.8%)
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.6081e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.299506010360205 (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     : 6.56 us    (2.5%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 236.37 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1373.00 ns (58.6%)
Info: cfl dt = 9.050983378275315e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4070e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6969383499587611 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004287708719401956, dt = 9.050983378275315e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 318.87 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.4%)
Info: cfl dt = 9.035411983983322e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4589e+05 | 65536 |      2 | 1.895e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7197253274143314 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004378218553184709, dt = 9.035411983983322e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 298.09 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.4%)
Info: cfl dt = 9.020517955268955e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4622e+05 | 65536 |      2 | 1.893e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7183725953305142 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004468572673024542, dt = 9.020517955268955e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.4%)
   patch tree reduce : 2.57 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 260.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.8%)
Info: cfl dt = 9.006270087519534e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3541e+05 | 65536 |      2 | 1.954e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6619838354211438 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004558777852577232, dt = 9.006270087519534e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.31 us    (2.5%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 267.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.5%)
Info: cfl dt = 8.992638945783673e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1965e+05 | 65536 |      2 | 2.050e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5814173443502415 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046488405534524276, dt = 8.992638945783673e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.8%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 339.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (57.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.2124e+05 | 65536 |      2 | 2.040e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5868688659595633 (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     : 6.66 us    (1.9%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 335.94 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (60.7%)
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.2258e+05 | 65536 |      2 | 2.032e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5911518738452708 (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     : 6.12 us    (1.9%)
   patch tree reduce : 17.30 us   (5.3%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 286.97 us  (88.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.2%)
Info: cfl dt = 8.955175495512559e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6105e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.271051242756066 (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     : 6.61 us    (2.0%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 303.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (57.7%)
Info: cfl dt = 8.943748102439046e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3811e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.155185056083063 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0050077858372727085, dt = 8.943748102439046e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 274.25 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.7%)
Info: cfl dt = 8.932812743167362e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5318e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2264621766630857 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 260.62 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.1%)
Info: cfl dt = 8.922348292158211e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5420e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2287502511321047 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005186551445728773, dt = 8.922348292158211e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 320.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.8%)
Info: cfl dt = 8.912334702706868e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4949e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.203038671113584 (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     : 6.69 us    (2.1%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 289.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.3%)
Info: cfl dt = 8.902752937391787e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5274e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.21648990961263 (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     : 6.75 us    (2.1%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 292.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (69.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    | 4.4024e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.152953973585595 (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     : 7.11 us    (2.4%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 268.91 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (60.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    | 4.4274e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1629731504353336 (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     : 7.20 us    (2.5%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 262.78 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.8%)
Info: cfl dt = 8.876422037058785e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6683e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.278376485417195 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005631709788046568, dt = 8.876422037058785e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.3%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 287.33 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (61.6%)
Info: cfl dt = 8.86839523271837e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5957e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2408503161344915 (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     : 22.10 us   (7.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 261.77 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (59.6%)
Info: cfl dt = 8.860718120336847e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6337e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2573193002236076 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00580915796074434, dt = 8.860718120336847e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 289.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.9%)
Info: cfl dt = 8.853376527164225e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6513e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2639678485566193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005897765141947708, dt = 8.853376527164225e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.9%)
   patch tree reduce : 2.60 us    (0.8%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 320.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.7%)
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.6226e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.248121716081233 (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     : 6.24 us    (1.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 292.67 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (64.3%)
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.4248e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1502009794811174 (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     : 6.62 us    (2.3%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 270.53 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.4%)
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.4641e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1676653121761076 (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     : 6.93 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 311.33 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (58.5%)
Info: cfl dt = 8.827103837586521e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3876e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.128977635626257 (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     : 6.88 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 271.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
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    | 4.3106e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0901792851227525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006339762305525737, dt = 8.821248704852441e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.5%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 244.23 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (57.9%)
Info: cfl dt = 8.815656457921915e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4793e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.170532453493707 (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     : 6.87 us    (2.7%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 233.71 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.6%)
Info: cfl dt = 8.810316763862651e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5501e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2034036440015377 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006516131357153481, dt = 8.810316763862651e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.5%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 250.87 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.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    | 4.5389e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.196691402051704 (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     : 6.60 us    (2.2%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 279.25 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.8%)
Info: cfl dt = 8.800355853939225e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4683e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1612264131223533 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0066922867220378926, dt = 8.800355853939225e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 283.43 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.19 us   (94.4%)
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.4882e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1696889246071875 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 261.55 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.4%)
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.3550e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1041614124910404 (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     : 7.30 us    (2.5%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 273.32 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.5%)
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.3982e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1239847262592444 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006956160357212804, dt = 8.787074133158679e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.1%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 268.67 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.1%)
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.3810e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1146601280250774 (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     : 6.72 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 267.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (59.8%)
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.4539e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.14888278286218 (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     : 6.29 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 304.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (62.8%)
Info: cfl dt = 8.775584754126193e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5201e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1798660249481325 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0072196539372607, dt = 8.775584754126193e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.6%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 232.85 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.2%)
Info: cfl dt = 8.772117902663718e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3916e+05 | 65536 |      2 | 1.932e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6349580606786485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007307409784801962, dt = 8.772117902663718e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 271.50 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.9%)
Info: cfl dt = 8.768820866995769e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3722e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6249358295582264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007395130963828599, dt = 8.768820866995769e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 262.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (60.2%)
Info: cfl dt = 8.765687055195054e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2524e+05 | 65536 |      2 | 2.015e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5666569188821784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007482819172498557, dt = 8.765687055195054e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 320.37 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (69.6%)
Info: cfl dt = 8.762710125682677e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0474e+05 | 65536 |      2 | 1.619e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.948901876022883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007570476043050507, dt = 8.762710125682677e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.4%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 269.97 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (59.8%)
Info: cfl dt = 8.759883976036588e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4976e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1649305238645 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007658103144307334, dt = 8.759883976036588e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 2.56 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 288.45 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (69.0%)
Info: cfl dt = 8.757202732461461e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4476e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1401612235241525 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0077457019840676995, dt = 8.757202732461461e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.44 us    (2.3%)
   patch tree reduce : 2.53 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 304.08 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.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    | 4.4974e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1634735119329496 (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     : 6.63 us    (1.9%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 320.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.8%)
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.8741e+05 | 65536 |      2 | 1.692e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8631076442042964 (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     : 6.87 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 264.14 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.9%)
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    | 4.4423e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.135731762537745 (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     : 6.73 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 243.22 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (61.6%)
Info: cfl dt = 8.747816805365116e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3441e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6073456090674918 (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     : 6.35 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 282.44 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.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.3045e+05 | 65536 |      2 | 1.983e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5879393478508832 (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     : 6.20 us    (1.7%)
   patch tree reduce : 2.53 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 338.39 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.2%)
Info: cfl dt = 8.743855789867165e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3785e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6231005973438677 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00827077883486441, dt = 8.743855789867165e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.1%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 311.51 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.5%)
Info: cfl dt = 8.742041681196493e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3684e+05 | 65536 |      2 | 1.946e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.617878030239343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008358217392763082, dt = 8.742041681196493e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.3%)
   patch tree reduce : 2.56 us    (0.9%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 278.58 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (56.3%)
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.3433e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6055000886000794 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 260.53 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.7%)
Info: cfl dt = 8.738724464109897e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2891e+05 | 65536 |      2 | 1.992e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5791836535997246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008533041135972256, dt = 8.738724464109897e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 263.40 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.7%)
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.2533e+05 | 65536 |      2 | 2.014e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5617107191285795 (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     : 7.02 us    (2.1%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 317.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (68.8%)
Info: cfl dt = 8.73579465452996e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3790e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.101701713621872 (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     : 7.04 us    (2.2%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 294.23 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.7%)
Info: cfl dt = 8.7344653505202e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3983e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.11060313795627 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008795158458199078, dt = 8.7344653505202e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.6%)
   patch tree reduce : 2.38 us    (0.9%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 244.18 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (61.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    | 4.4283e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1246800013738847 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 244.57 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.9%)
Info: cfl dt = 8.732059787929678e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2234e+05 | 65536 |      2 | 2.033e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5463393327879424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008969835327321925, dt = 8.732059787929678e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.5%)
   patch tree reduce : 2.52 us    (0.6%)
   gen split merge   : 1211.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 387.12 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.4%)
Info: cfl dt = 8.730976653939953e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9944e+05 | 65536 |      2 | 1.641e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9159775574213718 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009057155925201222, dt = 8.730976653939953e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.6%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 248.79 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.8%)
Info: cfl dt = 8.729968905531573e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6225e+05 | 65536 |      2 | 1.809e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7373590358636362 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009144465691740622, dt = 8.729968905531573e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 257.83 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.5%)
Info: cfl dt = 8.729033405008344e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3696e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.095469209112154 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009231765380795938, dt = 8.729033405008344e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.5%)
   patch tree reduce : 2.57 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 248.38 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (62.1%)
Info: cfl dt = 8.728167127183772e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5290e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.171679707289045 (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     : 6.59 us    (1.8%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 334.19 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.7%)
Info: cfl dt = 8.727367155498257e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1896e+05 | 65536 |      2 | 1.564e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.008736505345742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009406337386117859, dt = 8.727367155498257e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.57 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 284.10 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (59.4%)
Info: cfl dt = 8.72663067830014e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5056e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.16001292327331 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009493611057672841, dt = 8.72663067830014e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 281.54 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (57.5%)
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    | 4.2949e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.058846962165235 (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     : 6.70 us    (2.6%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 239.94 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.5%)
Info: cfl dt = 8.725337464050765e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5083e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1609536539453114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009668136914308645, dt = 8.725337464050765e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 299.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.6%)
Info: cfl dt = 8.724775596858477e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4834e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1488860523173217 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009755390288949152, dt = 8.724775596858477e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.5%)
   LB compute        : 254.91 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.2%)
Info: cfl dt = 8.724266957426127e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3481e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0838819381777807 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009842638044917737, dt = 8.724266957426127e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 256.44 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.8%)
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    | 3.2032e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5350731215263422 (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     : 6.54 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 312.74 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.3%)
Info: cfl dt = 8.723400095984954e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7505e+05 | 65536 |      2 | 1.747e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7973113410039327 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010017118806571123, dt = 8.723400095984954e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 268.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (57.3%)
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.4383e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.126792799707864 (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     : 6.48 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 241.62 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (65.3%)
Info: cfl dt = 8.722719186276549e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5597e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.184893591342111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010191583182050962, dt = 8.722719186276549e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.5%)
   patch tree reduce : 2.61 us    (1.0%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 249.65 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (61.1%)
Info: cfl dt = 8.722443286480211e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3588e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6093973255265184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010278810373913727, dt = 8.722443286480211e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.6%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 242.67 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (61.4%)
Info: cfl dt = 8.722207815076305e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1638e+05 | 65536 |      2 | 2.071e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.515912842575913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010366034806778529, dt = 8.722207815076305e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 303.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.0%)
Info: cfl dt = 8.722010906883284e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4585e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.136176404750713 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010453256884929292, dt = 8.722010906883284e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 257.18 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (53.7%)
Info: cfl dt = 8.721850766700673e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4545e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.134236191363232 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010540476993998125, dt = 8.721850766700673e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.9%)
   patch tree reduce : 2.62 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 323.85 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.7%)
Info: cfl dt = 8.721725667014773e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3009e+05 | 65536 |      2 | 1.985e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.581491181638715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010627695501665133, dt = 8.721725667014773e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.4%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 240.38 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (61.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    | 3.5802e+05 | 65536 |      2 | 1.830e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.715290850854835 (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     : 6.21 us    (1.9%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 300.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.5%)
Info: cfl dt = 8.721023117149361e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5030e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1573396449819113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010802127418498198, dt = 8.721023117149361e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 292.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.3%)
Info: cfl dt = 8.720626934646868e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3111e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0652998826635027 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010889337649669692, dt = 8.720626934646868e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 264.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.5%)
Info: cfl dt = 8.720275570138364e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4187e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1167123240799826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01097654391901616, dt = 8.720275570138364e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 268.38 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.8%)
Info: cfl dt = 8.719967184282732e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5914e+05 | 65536 |      2 | 1.825e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7203287508631913 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011063746674717543, dt = 8.719967184282732e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 243.84 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.6%)
Info: cfl dt = 8.719700001790935e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5591e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1838065573238916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01115094634656037, dt = 8.719700001790935e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.1%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 260.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (56.6%)
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    | 4.7008e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.251632780893527 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 257.69 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (56.2%)
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    | 4.6709e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.237244877088835 (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     : 6.04 us    (2.4%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 232.25 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.6%)
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    | 4.6302e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2177197562761695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011412530893771066, dt = 8.719128733171533e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 265.16 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.3%)
Info: cfl dt = 8.719009686068282e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8912e+05 | 65536 |      2 | 1.684e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.863709148211182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011499722181102782, dt = 8.719009686068282e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 276.72 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.1%)
Info: cfl dt = 8.718923762653743e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1053e+05 | 65536 |      2 | 1.596e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9662212695454386 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011586912277963466, dt = 8.718923762653743e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 270.31 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (59.6%)
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    | 4.6029e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.204545736130997 (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     : 6.67 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 287.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.2%)
Info: cfl dt = 8.718845476197027e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2441e+05 | 65536 |      2 | 2.020e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.55374380714877 (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     : 6.58 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 289.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.2%)
Info: cfl dt = 8.71885032558626e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3022e+05 | 65536 |      2 | 1.985e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.581562634407571 (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     : 7.05 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.3%)
   LB compute        : 307.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.4%)
Info: cfl dt = 8.718882755312888e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3204e+05 | 65536 |      2 | 1.974e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5902660237381303 (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     : 6.55 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 307.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.5%)
Info: cfl dt = 8.7189260948722e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2031e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1319414551542208 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 221.44059955100002 (s)                                   [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.16 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.27 us    (51.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     : 1953.00 ns (0.5%)
   patch tree reduce : 1552.00 ns (0.4%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 374.19 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.29 us    (0.9%)
Info: patch count stable after 1 runs npatch = 2                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.96 us   (3.2%)
   patch tree reduce : 2.88 us    (0.7%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.3%)
   LB compute        : 375.70 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (61.2%)
Info: cfl dt = 0.00012527870714644892                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1802e+05 | 65536 |      2 | 2.061e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00012527870714644892
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (1.7%)
   patch tree reduce : 2.41 us    (0.6%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 384.77 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.0%)
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.2841e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.948223344024101 (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.52 us    (1.8%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 331.31 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.2%)
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    | 3.2754e+05 | 65536 |      2 | 2.001e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.194013582002765 (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     : 6.75 us    (1.9%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 336.82 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.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.3846e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.817932219810211 (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     : 6.31 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 297.57 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.6%)
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.3888e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7225821894590942 (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     : 7.22 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 301.12 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (68.3%)
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.4931e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.713778872679222 (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     : 6.40 us    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 299.02 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.9%)
Info: cfl dt = 0.00010599979793972441                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3512e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5756774085576604 (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     : 6.25 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 272.41 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.5%)
Info: cfl dt = 0.00010440354420906809                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5505e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.649659987309714 (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     : 6.69 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 268.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.1%)
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.4933e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.576942450318838 (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     : 6.37 us    (2.4%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 239.16 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (59.6%)
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.4591e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.5190559738859353 (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     : 7.03 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 271.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.4%)
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.4525e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4802193859926622 (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     : 6.72 us    (2.5%)
   patch tree reduce : 1892.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 241.85 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.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.4822e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4660544753802087 (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     : 6.55 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 298.00 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (62.9%)
Info: cfl dt = 9.835343207164333e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9879e+05 | 65536 |      2 | 1.643e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1725164041824083 (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     : 6.59 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 270.67 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (62.9%)
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    | 4.4478e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4030219947425424 (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     : 6.39 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 286.83 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.9%)
Info: cfl dt = 9.70733968323717e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3906e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.355334128360779 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015048562307723053, dt = 9.70733968323717e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 257.60 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.9%)
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.4054e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.349132312416285 (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     : 6.29 us    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 298.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.7%)
Info: cfl dt = 9.608625760598223e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3414e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3027503355237973 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016984881644856095, dt = 9.608625760598223e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.5%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 240.75 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (62.0%)
Info: cfl dt = 9.564792091147684e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3188e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2795301449562153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017945744220915919, dt = 9.564792091147684e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 270.42 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 21.06 us   (6.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.8%)
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    | 3.4028e+05 | 65536 |      2 | 1.926e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7878767064416348 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018902223430030687, dt = 9.522665243729501e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.4%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 247.69 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.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.4286e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3165600795033865 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019854489954403637, dt = 9.481223484503838e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.90 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 922.00 ns  (0.3%)
   LB compute        : 295.05 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.5%)
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.6186e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.405478120723521 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002080261230285402, dt = 9.439966382495066e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 276.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (60.2%)
Info: cfl dt = 9.398782818609322e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1466e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1502433867905566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021746608941103527, dt = 9.398782818609322e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 268.82 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (61.1%)
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.5555e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.351976125170526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002268648722296446, dt = 9.35741275668243e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 298.45 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (65.2%)
Info: cfl dt = 9.312983741130983e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4376e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.281005758833625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023622228498632702, dt = 9.312983741130983e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 285.85 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.3%)
Info: cfl dt = 9.272135756662832e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3905e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2460725746549577 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00245535268727458, dt = 9.272135756662832e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 16.80 us   (4.7%)
   LB compute        : 317.60 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (65.1%)
Info: cfl dt = 9.234665527059427e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5118e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2979913216482113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025480740448412084, dt = 9.234665527059427e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 296.27 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.7%)
Info: cfl dt = 9.197703109568877e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4476e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.25616535136728 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002640420700111803, dt = 9.197703109568877e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 263.61 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (61.7%)
Info: cfl dt = 9.16067110765547e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5222e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.284831385185577 (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     : 6.19 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 287.36 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (61.0%)
Info: cfl dt = 9.125534611421453e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5997e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.314635369484412 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 253.11 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (59.2%)
Info: cfl dt = 9.092628172738182e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4690e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2402304942193045 (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     : 6.71 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 282.71 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.3%)
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.5373e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.266281052044266 (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     : 6.45 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 260.82 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (65.3%)
Info: cfl dt = 9.034562605544078e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5567e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.268344351622286 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0030968084842352603, dt = 9.034562605544078e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.7%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 338.44 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (64.3%)
Info: cfl dt = 9.009607849952474e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5217e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2440348363953566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031871541102907013, dt = 9.009607849952474e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 283.67 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.6%)
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    | 3.6711e+05 | 65536 |      2 | 1.785e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8168595774694982 (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     : 7.07 us    (2.1%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 315.55 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.7%)
Info: cfl dt = 8.967099010696914e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5335e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2381162387642446 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003367122078966745, dt = 8.967099010696914e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 310.72 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.1%)
Info: cfl dt = 8.949120248017741e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4873e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2103448008277087 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034567930690737143, dt = 8.949120248017741e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.5%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 253.00 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.1%)
Info: cfl dt = 8.933017427100763e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5080e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2160695981989074 (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.32 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 265.50 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (63.9%)
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    | 4.5330e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.224387100201492 (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     : 6.61 us    (2.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 248.59 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (62.3%)
Info: cfl dt = 8.905438701889205e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5183e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2135795972072847 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 282.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.4%)
Info: cfl dt = 8.893458114370353e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4404e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1721812955297146 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003813854249959219, dt = 8.893458114370353e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 271.04 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.1%)
Info: cfl dt = 8.882365119085722e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1887e+05 | 65536 |      2 | 2.055e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.557776492859421 (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     : 6.54 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 266.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (70.2%)
Info: cfl dt = 8.871958047026054e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4754e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1836283058897044 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00399161248229378, dt = 8.871958047026054e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.4%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 243.21 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (59.7%)
Info: cfl dt = 8.862054305489141e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4881e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1873032571568336 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00408033206276404, dt = 8.862054305489141e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.5%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 251.86 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.7%)
Info: cfl dt = 8.852511068037879e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5007e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1909599146290213 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0041689526058189316, dt = 8.852511068037879e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.4%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 252.09 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (50.7%)
Info: cfl dt = 8.843232096838793e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4944e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1855279037631816 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00425747771649931, dt = 8.843232096838793e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.3%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 252.30 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (63.5%)
Info: cfl dt = 8.834167036794524e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5450e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2078230780723533 (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.54 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 244.49 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.2%)
Info: cfl dt = 8.825306014102054e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4947e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1811566856921445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0044342517078356436, dt = 8.825306014102054e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 274.05 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.3%)
Info: cfl dt = 8.816671448112624e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5416e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.201728773992789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004522504767976664, dt = 8.816671448112624e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 267.58 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.3%)
Info: cfl dt = 8.808308578787945e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5258e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.191931162764118 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00461067148245779, dt = 8.808308578787945e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.94 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 256.40 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.7%)
Info: cfl dt = 8.800275859493844e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3809e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.119699356910192 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00469875456824567, dt = 8.800275859493844e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 292.89 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (63.7%)
Info: cfl dt = 8.792636345506915e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2462e+05 | 65536 |      2 | 2.019e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5692364315654752 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004786757326840608, dt = 8.792636345506915e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1593.00 ns (0.5%)
   LB compute        : 283.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.5%)
Info: cfl dt = 8.785446576674976e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0318e+05 | 65536 |      2 | 1.625e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9473330910062987 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004874683690295678, dt = 8.785446576674976e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.5%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 236.12 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (63.1%)
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    | 4.4744e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1593212767887486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004962538156062428, dt = 8.77875758194941e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 243.80 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (61.0%)
Info: cfl dt = 8.77260681326726e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5587e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1983308083418813 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005050325731881922, dt = 8.77260681326726e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 286.89 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.3%)
Info: cfl dt = 8.767014078881186e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3628e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1024046059097268 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005138051800014595, dt = 8.767014078881186e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 299.67 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.6%)
Info: cfl dt = 8.761980402256515e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3363e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0882816164554376 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0052257219408034065, dt = 8.761980402256515e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 291.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.1%)
Info: cfl dt = 8.757488866664063e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2182e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.030245653960981 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005313341744825972, dt = 8.757488866664063e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1382.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 254.63 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (64.1%)
Info: cfl dt = 8.75350692233837e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5362e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1821972279512485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005400916633492612, dt = 8.75350692233837e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 266.38 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.0%)
Info: cfl dt = 8.749989954904952e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3671e+05 | 65536 |      2 | 1.946e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6190472112766998 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005488451702715996, dt = 8.749989954904952e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.1%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 314.57 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.3%)
Info: cfl dt = 8.746885372376098e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2454e+05 | 65536 |      2 | 2.019e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5599164284786844 (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     : 6.89 us    (2.1%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 311.64 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (49.4%)
Info: cfl dt = 8.744136591402676e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6712e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2444159247872855 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005663420455988806, dt = 8.744136591402676e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.6%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.5%)
   LB compute        : 230.02 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.2%)
Info: cfl dt = 8.74167416273142e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4703e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.147213497052278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057508618219028335, dt = 8.74167416273142e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 246.64 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.8%)
Info: cfl dt = 8.739363525427659e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4627e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1429673836512615 (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.99 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 281.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (66.3%)
Info: cfl dt = 8.737180236574057e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0451e+05 | 65536 |      2 | 1.620e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9419353420610521 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005925672198784425, dt = 8.737180236574057e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 315.38 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.6%)
Info: cfl dt = 8.735106143345141e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0939e+05 | 65536 |      2 | 2.118e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4849310920569974 (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     : 7.16 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 284.98 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.0%)
Info: cfl dt = 8.73313106256497e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4727e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1461376482794288 (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     : 6.50 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 281.35 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (65.9%)
Info: cfl dt = 8.731253775091966e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4170e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.118942875167164 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006187726373209267, dt = 8.731253775091966e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 273.13 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.8%)
Info: cfl dt = 8.729482695650472e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3866e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.103888365561677 (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     : 6.41 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 285.21 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.8%)
Info: cfl dt = 8.727829567969003e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3866e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1035005207986166 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006362333737916691, dt = 8.727829567969003e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 259.80 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.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    | 4.5030e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.158873813645992 (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     : 6.14 us    (2.2%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 251.97 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (61.8%)
Info: cfl dt = 8.724934764850626e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5741e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1926014423662346 (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     : 9.35 us    (3.5%)
   patch tree reduce : 3.42 us    (1.3%)
   gen split merge   : 1693.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.19 us    (0.8%)
   LB compute        : 240.58 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.6%)
Info: cfl dt = 8.723720638102222e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4004e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1089894661776896 (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     : 6.49 us    (2.5%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 241.97 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.6%)
Info: cfl dt = 8.722676727468478e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5473e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.179120536115345 (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     : 6.56 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 290.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.7%)
Info: cfl dt = 8.721809383937703e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5044e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1582764788656745 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006798588442683715, dt = 8.721809383937703e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 245.89 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (61.1%)
Info: cfl dt = 8.72112024035518e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4465e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.130335319943049 (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     : 6.22 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 239.17 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (61.5%)
Info: cfl dt = 8.720605972674997e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3632e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.090244199219147 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006973017738926644, dt = 8.720605972674997e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 254.27 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.1%)
Info: cfl dt = 8.720258543136782e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4832e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.147639879365779 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0070602237986533934, dt = 8.720258543136782e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 242.43 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.4%)
Info: cfl dt = 8.720065857413108e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5355e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.17258188658245 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0071474263840847615, dt = 8.720065857413108e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 31.87 us   (10.5%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 256.25 us  (84.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.2%)
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    | 3.3175e+05 | 65536 |      2 | 1.975e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5890854690690401 (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     : 6.11 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 316.84 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.3%)
Info: cfl dt = 8.720082059053476e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6343e+05 | 65536 |      2 | 1.803e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.740826949452497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007321827169990451, dt = 8.720082059053476e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.4%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 244.12 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (58.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    | 4.5084e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.159581560010195 (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     : 6.69 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 271.63 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.3%)
Info: cfl dt = 8.720517292976696e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8109e+05 | 65536 |      2 | 1.720e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8254841559802093 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007496230550793842, dt = 8.720517292976696e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.7%)
   patch tree reduce : 2.45 us    (0.9%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 240.64 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.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    | 4.5739e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.191063857858258 (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     : 6.26 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 267.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.3%)
Info: cfl dt = 8.720958032590434e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4908e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.151309894444707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00767064422447488, dt = 8.720958032590434e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 246.26 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.1%)
Info: cfl dt = 8.72106093178788e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3929e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.104447156922862 (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     : 6.09 us    (2.4%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.5%)
   LB compute        : 231.73 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (58.9%)
Info: cfl dt = 8.721244935542794e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5421e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1759282452993807 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007845064414118664, dt = 8.721244935542794e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 241.63 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.1%)
Info: cfl dt = 8.72150138495626e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4786e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1455668334704283 (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     : 6.53 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1662.00 ns (0.6%)
   LB compute        : 239.22 us  (85.9%)
   LB move op cnt    : 0
   LB apply          : 20.56 us   (7.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.4%)
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.3963e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1062214186091044 (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     : 6.68 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 260.05 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (60.9%)
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.5295e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1701055262771747 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 264.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.9%)
Info: cfl dt = 8.722592097934234e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6295e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.218097470951776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008193932137016961, dt = 8.722592097934234e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 300.85 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.6%)
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.2946e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.057729037421364 (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     : 6.93 us    (2.3%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 282.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.4%)
Info: cfl dt = 8.723415969009605e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6002e+05 | 65536 |      2 | 1.820e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7251034232593123 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008368387999327778, dt = 8.723415969009605e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 265.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.1%)
Info: cfl dt = 8.723862774923204e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5956e+05 | 65536 |      2 | 1.823e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7229776667656023 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008455622159017875, dt = 8.723862774923204e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 264.57 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (61.8%)
Info: cfl dt = 8.724339105214602e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8354e+05 | 65536 |      2 | 1.709e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8380035060945652 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008542860786767107, dt = 8.724339105214602e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 279.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (63.4%)
Info: cfl dt = 8.72484897346446e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5903e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.199859584868328 (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     : 6.47 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 295.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
Info: cfl dt = 8.725395786423685e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3104e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.065837894049585 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008717352667553899, dt = 8.725395786423685e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.4%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 257.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (58.9%)
Info: cfl dt = 8.725982226301725e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4799e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.147223760564148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008804606625418135, dt = 8.725982226301725e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 262.60 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.9%)
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    | 3.1723e+05 | 65536 |      2 | 2.066e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5206079628303502 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008891866447681153, dt = 8.726610136377267e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 293.15 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.2%)
Info: cfl dt = 8.727280442898074e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4382e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.127538935850775 (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     : 6.37 us    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 268.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (59.1%)
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    | 3.7550e+05 | 65536 |      2 | 1.745e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8001748844329049 (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     : 6.85 us    (2.4%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 266.41 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (59.5%)
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    | 4.5757e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.193807502814015 (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     : 6.14 us    (2.2%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 254.85 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.3%)
Info: cfl dt = 8.729541156074399e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2646e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.044805324663405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0092409727575833, dt = 8.729541156074399e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 280.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.2%)
Info: cfl dt = 8.730372367395858e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5602e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1867506203159417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009328268169144043, dt = 8.730372367395858e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 236.04 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.4%)
Info: cfl dt = 8.731238145567088e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3396e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0811815655746386 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009415571892818001, dt = 8.731238145567088e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 277.49 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.3%)
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.4057e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1130647100613147 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009502884274273673, dt = 8.732127468108235e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 262.87 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (62.2%)
Info: cfl dt = 8.733054478710443e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3834e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.102570058957721 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009590205548954756, dt = 8.733054478710443e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 291.11 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (71.3%)
Info: cfl dt = 8.734011957762702e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5600e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1875092104702647 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00967753609374186, dt = 8.734011957762702e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 264.03 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.2%)
Info: cfl dt = 8.734995074679144e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4876e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1530118118886445 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 281.19 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (64.2%)
Info: cfl dt = 8.73600060573938e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5647e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1902546463148336 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009852226164066278, dt = 8.73600060573938e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 17.24 us   (5.5%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 277.92 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.3%)
Info: cfl dt = 8.737026424309855e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5324e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1750149080769856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009939586170123672, dt = 8.737026424309855e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 310.77 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.9%)
Info: cfl dt = 8.738070333473149e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3504e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6079849908928556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01002695643436677, dt = 8.738070333473149e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.7%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 366.43 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.3%)
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    | 3.8511e+05 | 65536 |      2 | 1.702e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8485039108042656 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010114337137701502, dt = 8.739131501291448e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 268.97 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.7%)
Info: cfl dt = 8.740210242693088e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5467e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1826744421266904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010201728452714416, dt = 8.740210242693088e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.6%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 237.41 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.0%)
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.2220e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0270368589847503 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010289130555141347, dt = 8.741308147365861e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 252.69 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.3%)
Info: cfl dt = 8.742430944622608e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3268e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0776284208432334 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010376543636615006, dt = 8.742430944622608e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 293.65 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.2%)
Info: cfl dt = 8.743580794273593e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4887e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.155644472593396 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010463967946061232, dt = 8.743580794273593e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 275.50 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.3%)
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.4599e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1420641918226484 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010551403754003968, dt = 8.744757556660001e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 239.76 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.8%)
Info: cfl dt = 8.745959536505092e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6765e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2464162775700443 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010638851329570568, dt = 8.745959536505092e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.1%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 273.78 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.1%)
Info: cfl dt = 8.747183960266661e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0375e+05 | 65536 |      2 | 1.623e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9397498864255918 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010726310924935619, dt = 8.747183960266661e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.7%)
   patch tree reduce : 1792.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 242.00 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.3%)
Info: cfl dt = 8.748427312450496e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4746e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1500210300123275 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010813782764538286, dt = 8.748427312450496e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 237.70 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (57.6%)
Info: cfl dt = 8.749686562038205e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7747e+05 | 65536 |      2 | 1.736e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8139850968574516 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01090126703766279, dt = 8.749686562038205e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 269.75 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.3%)
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    | 4.4843e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1553029271374315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010988763903283173, dt = 8.750965649549065e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 261.38 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (58.9%)
Info: cfl dt = 8.752244754234534e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7025e+05 | 65536 |      2 | 1.770e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7797869628051861 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011076273559778664, dt = 8.752244754234534e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 244.08 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.1%)
Info: cfl dt = 8.753528220074958e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6296e+05 | 65536 |      2 | 1.806e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.745021555720612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011163796007321009, dt = 8.753528220074958e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.4%)
   patch tree reduce : 1962.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 243.29 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1261.00 ns (53.6%)
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.9025e+05 | 65536 |      2 | 1.679e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8764813183579965 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011251331289521759, dt = 8.754816488813481e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 229.90 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (61.8%)
Info: cfl dt = 8.756107371734413e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5834e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2042176355282215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011338879454409893, dt = 8.756107371734413e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 305.90 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.9%)
Info: cfl dt = 8.757426230084379e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5320e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1798388524460823 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011426440528127238, dt = 8.757426230084379e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 283.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.6%)
Info: cfl dt = 8.758756026896923e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4480e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.139748131619324 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011514014790428082, dt = 8.758756026896923e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 236.53 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (61.0%)
Info: cfl dt = 8.760084378530697e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4455e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1388526819147624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01160160235069705, dt = 8.760084378530697e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.5%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 242.77 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (63.1%)
Info: cfl dt = 8.761402203782283e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0849e+05 | 65536 |      2 | 2.124e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4844908149856333 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011689203194482358, dt = 8.761402203782283e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.8%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.4%)
   LB compute        : 333.57 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.0%)
Info: cfl dt = 8.762705564043834e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4194e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1269493086269575 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01177681721652018, dt = 8.762705564043834e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.4%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 272.22 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
Info: cfl dt = 8.763997803071866e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2056e+05 | 65536 |      2 | 2.044e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5430232596633424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011864444272160619, dt = 8.763997803071866e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 306.61 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.1%)
Info: cfl dt = 8.765271486827176e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8099e+05 | 65536 |      2 | 1.720e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.834149555071584 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011952084250191338, dt = 4.7915749808662145e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 269.84 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (66.8%)
Info: cfl dt = 8.765951667778165e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4353e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.1674025130114827 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 242.479838757 (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  1964.26 us                          [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.49 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     : 1041.00 ns (0.3%)
   patch tree reduce : 1242.00 ns (0.4%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 342.12 us  (96.8%)
   LB move op cnt    : 0
   LB apply          : 3.19 us    (0.9%)
Info: patch count stable after 1 runs npatch = 2                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod 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     : 13.77 us   (3.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.3%)
   LB compute        : 319.61 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (61.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    | 4.3329e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 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     : 7.65 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 321.50 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (63.4%)
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.4727e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0780349698023883 (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.95 us    (2.6%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 245.41 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.2%)
Info: cfl dt = 0.00011718301918563436                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5500e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.04782237681918 (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     : 6.61 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 279.91 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (62.0%)
Info: cfl dt = 0.00011303765833387629                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4545e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.867412895223086 (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     : 6.56 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 239.20 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (60.9%)
Info: cfl dt = 0.0001096717358561042                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2205e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.620642119962681 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 261.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.3%)
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    | 3.6664e+05 | 65536 |      2 | 1.787e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2088228743559064 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 279.65 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (67.1%)
Info: cfl dt = 0.0001047357523269304                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4742e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.629054779849634 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006940852836816068, dt = 0.0001047357523269304
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 263.03 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.5%)
Info: cfl dt = 0.00010275836129966528                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2862e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4659828639009316 (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     : 6.74 us    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 319.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.7%)
Info: cfl dt = 0.00010093838217613247                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8090e+05 | 65536 |      2 | 1.721e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.150074100780385 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009015793973082025, dt = 0.00010093838217613247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 273.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.7%)
Info: cfl dt = 9.92821161030289e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3943e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4365102332976423 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001002517779484335, dt = 9.92821161030289e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 250.12 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (66.8%)
Info: cfl dt = 9.781253688156573e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4396e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.42121201451607 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001101799895587364, dt = 9.781253688156573e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 271.63 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (61.6%)
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.4588e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3957229550867454 (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     : 6.51 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1231.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 242.18 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.0%)
Info: cfl dt = 9.515124903138496e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5212e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.391655730907382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012959113071296063, dt = 9.515124903138496e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 314.56 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.0%)
Info: cfl dt = 9.42272688249683e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5592e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3830048205020056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013910625561609914, dt = 9.42272688249683e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.07 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 287.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.1%)
Info: cfl dt = 9.345804464402766e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4961e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3272270228801286 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014852898249859596, dt = 9.345804464402766e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1261.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 293.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.0%)
Info: cfl dt = 9.285856321597753e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8434e+05 | 65536 |      2 | 1.705e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9731350352897836 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015787478696299873, dt = 9.285856321597753e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 291.16 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (64.0%)
Info: cfl dt = 9.236852173515522e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5316e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3114923985044733 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016716064328459648, dt = 9.236852173515522e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.5%)
   LB compute        : 261.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.3%)
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.5508e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.309075877857636 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00176397495458112, dt = 9.201410536704986e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 297.74 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.0%)
Info: cfl dt = 9.163730568344315e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5606e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3051599331604664 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018559890599481699, dt = 9.163730568344315e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 280.16 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (65.9%)
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.5164e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.273437404539445 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001947626365631613, dt = 9.109931011426401e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.5%)
   LB compute        : 245.09 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (61.0%)
Info: cfl dt = 9.058898998533345e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0628e+05 | 65536 |      2 | 1.613e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0331110500369705 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002038725675745877, dt = 9.058898998533345e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 259.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.7%)
Info: cfl dt = 9.011113763576538e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4952e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2368978337851257 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021293146657312104, dt = 9.011113763576538e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 275.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (65.1%)
Info: cfl dt = 8.967033877089488e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5290e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.241820902934811 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002219425803366976, dt = 8.967033877089488e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 265.46 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.0%)
Info: cfl dt = 8.927006876295973e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4838e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2085979961339457 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002309096142137871, dt = 8.927006876295973e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 286.37 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.5%)
Info: cfl dt = 8.891246897792028e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2473e+05 | 65536 |      2 | 2.018e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5924162152683865 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023983662109008305, dt = 8.891246897792028e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 321.71 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.3%)
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.3988e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1483970253083315 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002487278679878751, dt = 8.859823285369457e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 316.25 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.7%)
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.3454e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.114819443776941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025758769127324456, dt = 8.832595674722342e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 292.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.0%)
Info: cfl dt = 8.809296079429369e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4782e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1727642309988884 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002664202869479669, dt = 8.809296079429369e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 271.48 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.6%)
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    | 4.4333e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.145331979679096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027522958302739625, dt = 8.789607199068497e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 274.01 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (63.6%)
Info: cfl dt = 8.773174525067891e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4081e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.128357798870454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0028401919022646473, dt = 8.773174525067891e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.6%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 238.35 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.5%)
Info: cfl dt = 8.759611795648598e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4465e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1428810742197553 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0029279236475153263, dt = 8.759611795648598e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 238.89 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (61.4%)
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.4475e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1400682786642053 (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     : 6.44 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 265.74 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (62.5%)
Info: cfl dt = 8.739547749644054e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4203e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.124271083823244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003103005070741844, dt = 8.739547749644054e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 248.85 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (57.6%)
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    | 4.4483e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1355403104410238 (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     : 6.44 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 269.88 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.2%)
Info: cfl dt = 8.726376393282223e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5162e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.166337600725509 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003277723401843333, dt = 8.726376393282223e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 238.82 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.9%)
Info: cfl dt = 8.72147732413459e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7279e+05 | 65536 |      2 | 1.758e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7869699638170344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033649871657761552, dt = 8.72147732413459e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 240.36 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (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    | 4.4040e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1098884346153075 (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     : 6.46 us    (2.6%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 228.19 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.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    | 4.3944e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1042573653946643 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035393747856086186, dt = 8.71354752228806e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 276.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.9%)
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.3273e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.07125823997804 (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     : 6.37 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 270.69 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (63.7%)
Info: cfl dt = 8.70674131860144e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1363e+05 | 65536 |      2 | 1.584e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.979043061230453 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 244.52 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.2%)
Info: cfl dt = 8.703478497678402e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0016e+05 | 65536 |      2 | 2.183e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4355874923334395 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038006784288579475, dt = 8.703478497678402e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.8%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 324.13 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.2%)
Info: cfl dt = 8.700273238483163e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9444e+05 | 65536 |      2 | 2.226e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4076874289315926 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0038877132138347313, dt = 8.700273238483163e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.6%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 375.35 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.8%)
Info: cfl dt = 8.697153114481726e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2454e+05 | 65536 |      2 | 2.019e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5510616618538906 (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     : 6.40 us    (1.8%)
   patch tree reduce : 1793.00 ns (0.5%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 336.29 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.2%)
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    | 3.2911e+05 | 65536 |      2 | 1.991e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5723193826635469 (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     : 6.62 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 277.36 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.6%)
Info: cfl dt = 8.691306630150777e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2498e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0296617717212344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004148629220506452, dt = 8.691306630150777e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 273.23 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (66.3%)
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.1229e+05 | 65536 |      2 | 2.099e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.490953753856611 (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     : 6.47 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 345.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.0%)
Info: cfl dt = 8.686349410697861e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0367e+05 | 65536 |      2 | 2.158e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4493417320498425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004322428609797749, dt = 8.686349410697861e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.7%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 355.22 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Info: cfl dt = 8.684496043784134e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1652e+05 | 65536 |      2 | 2.070e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5103150275445167 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004409292103904728, dt = 8.684496043784134e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 318.68 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (65.4%)
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    | 3.7692e+05 | 65536 |      2 | 1.739e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.798104063839014 (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     : 6.55 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 298.08 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.8%)
Info: cfl dt = 8.682134585737051e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6168e+05 | 65536 |      2 | 1.812e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7251315231417754 (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     : 6.73 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 263.13 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (57.2%)
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.5694e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.179254098178925 (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     : 6.63 us    (2.2%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 280.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.6%)
Info: cfl dt = 8.681488641487771e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7449e+05 | 65536 |      2 | 1.750e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7859085915045263 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004756605425777744, dt = 8.681488641487771e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 262.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.7%)
Info: cfl dt = 8.681727977092717e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3450e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.072097181332196 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004843420312192622, dt = 8.681727977092717e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.95 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 260.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.9%)
Info: cfl dt = 8.682280138964458e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4043e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1004346732993837 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004930237591963549, dt = 8.682280138964458e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 261.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (61.2%)
Info: cfl dt = 8.683092732621294e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4118e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1041402662321547 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005017060393353193, dt = 8.683092732621294e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 296.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.0%)
Info: cfl dt = 8.684113028126001e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3505e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0750810235005823 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005103891320679406, dt = 8.684113028126001e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 264.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.1%)
Info: cfl dt = 8.685291030986368e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4220e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1094444188699515 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005190732450960666, dt = 8.685291030986368e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.5%)
   LB compute        : 252.71 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.5%)
Info: cfl dt = 8.686582067120355e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2431e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0243793319900845 (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     : 6.93 us    (2.6%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 246.70 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (64.7%)
Info: cfl dt = 8.687977321167774e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4858e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.140502132359345 (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     : 6.28 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 272.20 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.7%)
Info: cfl dt = 8.689458894013918e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2225e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.015181823181314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005451330955153412, dt = 8.689458894013918e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.37 us    (2.8%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 244.90 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.5%)
Info: cfl dt = 8.690996931186986e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3697e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.085763170383691 (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     : 6.44 us    (1.0%)
   patch tree reduce : 2.32 us    (0.4%)
   gen split merge   : 1232.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 632.30 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.6%)
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.4907e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.143899917991266 (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     : 6.18 us    (2.3%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 244.21 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.5%)
Info: cfl dt = 8.694169490018779e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1423e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9779267071694333 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0057120612237049825, dt = 8.694169490018779e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 240.73 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1994.00 ns (64.6%)
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.4268e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.114176416192261 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00579900291860517, dt = 8.695787879913286e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 265.34 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.8%)
Info: cfl dt = 8.697421640689146e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0622e+05 | 65536 |      2 | 1.613e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9404010296946583 (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     : 6.84 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 269.08 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.2%)
Info: cfl dt = 8.69906014189377e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2140e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0132928620258457 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 267.83 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.1%)
Info: cfl dt = 8.700870606776872e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5580e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1780570022529937 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006059925615230132, dt = 8.700870606776872e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.3%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 247.48 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.5%)
Info: cfl dt = 8.702864796808555e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6451e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2201600116182942 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006146934321297901, dt = 8.702864796808555e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 1782.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 259.48 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.1%)
Info: cfl dt = 8.705039958846133e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3673e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0878412795687344 (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     : 6.32 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1593.00 ns (0.6%)
   LB compute        : 246.72 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.2%)
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    | 4.4606e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.132981527887995 (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     : 6.11 us    (2.2%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 261.38 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (62.6%)
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.5121e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1581975613124773 (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     : 6.25 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 258.84 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (62.0%)
Info: cfl dt = 8.71249906085787e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5122e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1588643877860276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495185983576526, dt = 8.71249906085787e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 297.81 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.1%)
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.3635e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.088341232683034 (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     : 6.51 us    (0.5%)
   patch tree reduce : 2.36 us    (0.2%)
   gen split merge   : 1162.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.1%)
   LB compute        : 1258.97 us (98.1%)
   LB move op cnt    : 0
   LB apply          : 4.89 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.74 us    (71.7%)
Info: cfl dt = 8.718024016663651e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3796e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0966997071505924 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006669463204936413, dt = 8.718024016663651e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 245.41 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.5%)
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    | 4.3778e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.096519585871665 (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.68 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 244.21 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.6%)
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    | 4.3956e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1054147014597975 (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     : 6.93 us    (2.6%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 240.84 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.2%)
Info: cfl dt = 8.722461417194882e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4492e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.131428631392761 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006931050003628688, dt = 8.722461417194882e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.6%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 237.83 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.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.4134e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.114644595933954 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 284.55 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.7%)
Info: cfl dt = 8.725112420766874e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4040e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.110452287369767 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007105512672778578, dt = 8.725112420766874e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 278.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.9%)
Info: cfl dt = 8.726431115475917e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3340e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0772337921150745 (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     : 6.43 us    (2.5%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 239.37 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (61.9%)
Info: cfl dt = 8.727761761486927e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4844e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1496264133452114 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007280028108141006, dt = 8.727761761486927e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.4%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 245.99 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.1%)
Info: cfl dt = 8.72909522565386e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4559e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1362871967057586 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007367305725755875, dt = 8.72909522565386e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 277.19 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.1%)
Info: cfl dt = 8.730405508969359e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3853e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1027704223607304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0074545966780124135, dt = 8.730405508969359e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 292.67 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.8%)
Info: cfl dt = 8.731704372382083e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3990e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.109637682750904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0075419007331021075, dt = 8.731704372382083e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.86 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 248.28 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.8%)
Info: cfl dt = 8.733130053383146e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4813e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.149417642275684 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007629217776825928, dt = 8.733130053383146e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.1%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 291.62 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.5%)
Info: cfl dt = 8.734652987469971e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4672e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1430074854716743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00771654907735976, dt = 8.734652987469971e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 282.26 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.4%)
Info: cfl dt = 8.736250753387335e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3978e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.110104165746503 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00780389560723446, dt = 8.736250753387335e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 302.58 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (64.6%)
Info: cfl dt = 8.736712785005195e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4333e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.127505092955699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007891258114768334, dt = 8.736712785005195e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 256.10 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (61.3%)
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.4783e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.149222554074624 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007978625242618385, dt = 8.736699199631566e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 265.17 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.6%)
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.3550e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.090051729629227 (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.16 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 258.64 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (60.8%)
Info: cfl dt = 8.736740590855765e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2465e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0379953999968343 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008153359262650595, dt = 8.736740590855765e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.5%)
   patch tree reduce : 2.53 us    (0.9%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 245.35 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (59.8%)
Info: cfl dt = 8.736808500422236e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3585e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0917697853434696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008240726668559153, dt = 8.736808500422236e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 285.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.6%)
Info: cfl dt = 8.7369035888658e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1438e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9886994363116288 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008328094753563374, dt = 8.7369035888658e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 266.45 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.9%)
Info: cfl dt = 8.736994402042445e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2242e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.027345679016139 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008415463789452033, dt = 8.736994402042445e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 252.27 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.5%)
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.3653e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0950692708650966 (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     : 6.69 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 243.88 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.2%)
Info: cfl dt = 8.736251837765799e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1789e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0056000751349994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008590202362506847, dt = 8.736251837765799e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.7%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 225.79 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.7%)
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.2433e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0363603154664904 (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     : 6.62 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 272.07 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.4%)
Info: cfl dt = 8.735336732799125e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2263e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0280513136246605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008764922327043689, dt = 8.735336732799125e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.4%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 236.72 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
Info: cfl dt = 8.735023928279213e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1534e+05 | 65536 |      2 | 2.078e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5131626476700677 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00885227569437168, dt = 8.735023928279213e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 320.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.4%)
Info: cfl dt = 8.734804225830183e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4989e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1587199278839564 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008939625933654471, dt = 8.734804225830183e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 284.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.9%)
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.4975e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1579904139862887 (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     : 6.11 us    (2.0%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 279.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.5%)
Info: cfl dt = 8.734527558465694e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7005e+05 | 65536 |      2 | 1.771e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.775516253804681 (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     : 6.36 us    (1.5%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 1211.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 396.71 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (69.3%)
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.9042e+05 | 65536 |      2 | 1.679e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8732468873712147 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009201665703075899, dt = 8.734452483351247e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.3%)
   patch tree reduce : 18.23 us   (6.2%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 257.59 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.9%)
Info: cfl dt = 8.734420248199669e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3591e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.091497374590173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009289010227909412, dt = 8.734420248199669e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 259.07 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.1%)
Info: cfl dt = 8.734430619049606e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3624e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.093080716450574 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009376354430391408, dt = 8.734430619049606e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 297.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (62.3%)
Info: cfl dt = 8.734482972092895e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0312e+05 | 65536 |      2 | 1.626e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.93416762017303 (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     : 6.40 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 281.56 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.5%)
Info: cfl dt = 8.734576424447764e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1802e+05 | 65536 |      2 | 2.061e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.525876472970163 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009551043566302833, dt = 8.734576424447764e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 307.48 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.9%)
Info: cfl dt = 8.734709939205363e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3540e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0890557943340866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00963838933054731, dt = 8.734709939205363e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.4%)
   LB compute        : 248.41 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.5%)
Info: cfl dt = 8.734882405392116e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3637e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0937426590655264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009725736429939364, dt = 8.734882405392116e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 295.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.0%)
Info: cfl dt = 8.735092692446169e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4420e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.131388963362093 (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     : 6.71 us    (2.4%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 251.39 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.0%)
Info: cfl dt = 8.735339684758034e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6363e+05 | 65536 |      2 | 1.802e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7448016807138027 (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     : 6.97 us    (2.6%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 244.57 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.0%)
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    | 3.1134e+05 | 65536 |      2 | 2.105e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4939711049274846 (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     : 6.83 us    (1.8%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 355.10 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (64.9%)
Info: cfl dt = 8.735939472914647e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6779e+05 | 65536 |      2 | 1.782e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7648675454442266 (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     : 6.45 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 258.22 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.5%)
Info: cfl dt = 8.736290173451259e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0890e+05 | 65536 |      2 | 1.603e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9622183684788144 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010162505195463523, dt = 8.736290173451259e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 261.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (62.2%)
Info: cfl dt = 8.736548510173812e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2012e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.016152352325879 (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     : 6.32 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 258.57 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.1%)
Info: cfl dt = 8.73660541251432e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1646e+05 | 65536 |      2 | 1.574e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9986690888068641 (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     : 6.46 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1472.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 266.03 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.9%)
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    | 2.8447e+05 | 65536 |      2 | 2.304e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3652047897742663 (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     : 6.60 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 302.51 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.1%)
Info: cfl dt = 8.736824045646857e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7600e+05 | 65536 |      2 | 1.743e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8044841172105606 (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     : 6.34 us    (2.1%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 286.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (64.1%)
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.3410e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0833629129722073 (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     : 6.64 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 297.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (59.5%)
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    | 3.3013e+05 | 65536 |      2 | 1.985e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5844191660700626 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010686704564634561, dt = 8.737125033224265e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 305.97 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.4%)
Info: cfl dt = 8.737309726353583e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3931e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6285027939590704 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010774075814966803, dt = 8.737309726353583e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.8%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1231.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.3%)
   LB compute        : 337.60 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.1%)
Info: cfl dt = 8.737518238953227e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3314e+05 | 65536 |      2 | 1.967e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.598902690939033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010861448912230339, dt = 8.737518238953227e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.7%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1312.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 370.08 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.0%)
Info: cfl dt = 8.73775094324501e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3132e+05 | 65536 |      2 | 1.978e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5902144981401767 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010948824094619872, dt = 8.73775094324501e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.6%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 381.90 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (71.8%)
Info: cfl dt = 8.738007971843367e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2676e+05 | 65536 |      2 | 2.006e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5683693412888386 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011036201604052323, dt = 8.738007971843367e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (1.8%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 354.70 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.5%)
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    | 3.1235e+05 | 65536 |      2 | 2.098e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4992460476448148 (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     : 6.62 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 347.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (71.4%)
Info: cfl dt = 8.738594615956994e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1358e+05 | 65536 |      2 | 1.585e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.985216089701037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011210964576434843, dt = 8.738594615956994e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 259.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.3%)
Info: cfl dt = 8.738923685910866e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5297e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1743863957958016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011298350522594413, dt = 8.738923685910866e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 255.12 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.2%)
Info: cfl dt = 8.739276039108813e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5191e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.169385591712605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011385739759453522, dt = 8.739276039108813e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 239.58 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.0%)
Info: cfl dt = 8.73965115011352e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1300e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9826669235989847 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011473132519844609, dt = 8.73965115011352e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1251.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 237.77 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.7%)
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    | 4.4225e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.123177695223091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011560529031345744, dt = 8.740048414257344e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 269.68 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.2%)
Info: cfl dt = 8.740467154430311e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6579e+05 | 65536 |      2 | 1.792e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7561977009591894 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011647929515488317, dt = 8.740467154430311e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 263.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (62.1%)
Info: cfl dt = 8.740906621442522e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4754e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1487868611703647 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01173533418703262, dt = 8.740906621442522e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 271.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.1%)
Info: cfl dt = 8.741380746024249e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5366e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.178242906070033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011822743253247045, dt = 8.741380746024249e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 2.61 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 301.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.2%)
Info: cfl dt = 8.741740739338656e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5127e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.166911123101895 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011910157060707287, dt = 8.741740739338656e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 299.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.0%)
Info: cfl dt = 8.741793697462328e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3524e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0900250201581874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011997574468100673, dt = 2.4255318993270103e-06
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 257.61 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.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    | 3.4006e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.04530956457279522 (tsim/hr)                          [amr::RAMSES][rank=0]
Info: time since start : 264.43968712000003 (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  1935.16 us                          [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.97 us    (54.2%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1172.00 ns (0.3%)
   patch tree reduce : 1563.00 ns (0.4%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 356.63 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: patch count stable after 1 runs npatch = 2                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 264.602958246 (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.97 us    (2.5%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.3%)
   LB compute        : 338.88 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.4%)
Info: cfl dt = 0.00012527870714644892                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1474e+05 | 65536 |      2 | 2.082e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00012527870714644892
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 308.91 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.3%)
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    | 3.3733e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3214395443885754 (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     : 6.28 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 288.83 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.9%)
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    | 3.8441e+05 | 65536 |      2 | 1.705e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.426630881364346 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 274.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (58.8%)
Info: cfl dt = 0.00010594199324641106                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2622e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4001613761445801 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 265.40265910600004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.00030000000000000003, dt = 0.00010594199324641106
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.10 us    (2.6%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 329.48 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
Info: cfl dt = 0.00010221985046710813                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1865e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.436333881994363 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00040594199324641106, dt = 0.00010221985046710813
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.5%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1533.00 ns (0.6%)
   LB compute        : 246.57 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (57.6%)
Info: cfl dt = 9.940743635085057e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2394e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.3804604586322826 (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     : 6.57 us    (1.2%)
   patch tree reduce : 1783.00 ns (0.3%)
   gen split merge   : 1022.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 543.54 us  (95.9%)
   LB move op cnt    : 0
   LB apply          : 4.75 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (68.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.7540e+05 | 65536 |      2 | 1.746e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8938268538423024 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 265.958361544 (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     : 8.74 us    (2.5%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 308.12 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.0%)
Info: cfl dt = 9.553994764088308e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4791e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.395171462506032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0006973470695172534, dt = 9.553994764088308e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.6%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 237.49 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (59.5%)
Info: cfl dt = 9.396019805026513e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2262e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2179597075022377 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007928870171581364, dt = 9.396019805026513e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.6%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 233.00 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (61.8%)
Info: cfl dt = 9.254291640036874e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3441e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.242153803812873 (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     : 6.70 us    (1.0%)
   patch tree reduce : 2.01 us    (0.3%)
   gen split merge   : 1182.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.2%)
   LB compute        : 649.69 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.5%)
Info: cfl dt = 9.234562915172376e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3679e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3155824882147988 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 266.63733527100004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0009000000000000001, dt = 9.234562915172376e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.57 us    (2.6%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 308.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (66.7%)
Info: cfl dt = 9.116049315871748e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4180e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2411161935832613 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.000992345629151724, dt = 9.116049315871748e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 240.03 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.5%)
Info: cfl dt = 9.032242978932553e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8959e+05 | 65536 |      2 | 1.682e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9508921101161816 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0010835061223104414, dt = 9.032242978932553e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.7%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.6%)
   LB compute        : 226.98 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (63.7%)
Info: cfl dt = 8.967266565412177e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4176e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1918396522495693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001173828552099767, dt = 2.6171447900233142e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.6%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 230.69 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.4%)
Info: cfl dt = 8.95148745074646e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7613e+05 | 65536 |      2 | 1.742e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.5407422387237175 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 267.35100885400004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0012000000000000001, dt = 8.95148745074646e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.95 us    (2.5%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 337.58 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.9%)
Info: cfl dt = 8.901914242865769e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4312e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1788852771680425 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0012895148745074648, dt = 8.901914242865769e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 264.11 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.6%)
Info: cfl dt = 8.86061467209516e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2884e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.096989778811472 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013785340169361225, dt = 8.86061467209516e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 267.51 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (61.6%)
Info: cfl dt = 8.783513275469647e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4267e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.154601728569855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001467140163657074, dt = 3.2859836342926003e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 266.99 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.2%)
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    | 3.8629e+05 | 65536 |      2 | 1.697e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6972657747546813 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 268.038667993 (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     : 8.76 us    (2.4%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 342.62 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (61.8%)
Info: cfl dt = 8.70476067154091e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4272e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.12945355044416 (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     : 6.42 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 230.49 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (62.8%)
Info: cfl dt = 8.677072304520434e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3851e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.096794266679556 (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     : 6.67 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 269.49 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.6%)
Info: cfl dt = 8.664004338829552e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3449e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.070991888614642 (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     : 6.67 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 259.10 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.6%)
Info: cfl dt = 8.658534043982387e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3934e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9320136850231813 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 268.705194595 (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     : 9.80 us    (2.6%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 355.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.33 us    (70.2%)
Info: cfl dt = 8.652201900075913e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4057e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0954857552682373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001886585340439824, dt = 8.652201900075913e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 296.42 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.1%)
Info: cfl dt = 8.648834556540598e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4164e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.099032010277847 (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     : 6.25 us    (2.2%)
   patch tree reduce : 1692.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.5%)
   LB compute        : 260.73 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (61.9%)
Info: cfl dt = 8.647392502852098e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1748e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9834101631570322 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0020595957050059894, dt = 4.040429499401095e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 246.40 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.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.3773e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9715394708101284 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 269.39309757300003 (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     : 9.40 us    (2.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 313.95 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (70.1%)
Info: cfl dt = 8.646568827585427e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4368e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1072830502917013 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0021864637745463594, dt = 8.646568827585427e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.4%)
   patch tree reduce : 1822.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 255.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (58.1%)
Info: cfl dt = 8.647084739651214e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3485e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.065386805470498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0022729294628222136, dt = 8.647084739651214e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1882.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 265.26 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (61.6%)
Info: cfl dt = 8.647625093329625e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4333e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.105795057678215 (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     : 6.62 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 248.88 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (62.1%)
Info: cfl dt = 8.647675832769331e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0784e+05 | 65536 |      2 | 2.129e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6865466041390955 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 270.13591127 (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     : 9.02 us    (2.3%)
   patch tree reduce : 2.44 us    (0.6%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 361.80 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (63.6%)
Info: cfl dt = 8.648121191276903e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9120e+05 | 65536 |      2 | 1.675e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8583339489929784 (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     : 6.27 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 247.94 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.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    | 4.3065e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0458046412344353 (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     : 6.50 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 283.70 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (61.1%)
Info: cfl dt = 8.649194018710041e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1970e+05 | 65536 |      2 | 2.050e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.518803262281717 (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     : 6.27 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 262.74 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.4%)
Info: cfl dt = 8.649745430796865e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0392e+05 | 65536 |      2 | 1.623e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8998642582086145 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 270.89095971200004 (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     : 8.87 us    (2.4%)
   patch tree reduce : 2.47 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 346.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.8%)
Info: cfl dt = 8.64896825280737e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4366e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.108006845095227 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027864974543079686, dt = 8.64896825280737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.8%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1542.00 ns (0.4%)
   LB compute        : 330.66 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.6%)
Info: cfl dt = 8.649624563934173e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4023e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.091561827225985 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002872987136836042, dt = 8.649624563934173e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 266.24 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.4%)
Info: cfl dt = 8.651969300185913e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4375e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.108441403217623 (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     : 6.42 us    (1.9%)
   patch tree reduce : 1623.00 ns (0.5%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 317.64 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.4%)
Info: cfl dt = 8.652841269271073e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1014e+05 | 65536 |      2 | 1.598e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9128272859252378 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 271.56523196700005 (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     : 8.88 us    (2.4%)
   patch tree reduce : 2.43 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 351.85 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.1%)
Info: cfl dt = 8.654453917460065e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3363e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0610977521519134 (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.32 us    (1.9%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 302.57 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 19.43 us   (5.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.4%)
Info: cfl dt = 8.65671423442124e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8473e+05 | 65536 |      2 | 1.703e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8290377412716723 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0031730729518673114, dt = 8.65671423442124e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 1633.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 268.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.44 us    (90.3%)
Info: cfl dt = 8.659655068753714e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7400e+05 | 65536 |      2 | 1.752e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.77848925324021 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003259640094211524, dt = 4.035990578847657e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 291.72 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.6%)
Info: cfl dt = 8.661194581361244e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3399e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9621606912397681 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 272.283375642 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0033000000000000004, dt = 8.661194581361244e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.37 us    (2.5%)
   patch tree reduce : 2.41 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 349.06 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.2%)
Info: cfl dt = 8.664739901468513e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3473e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.068314131733576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0033866119458136126, dt = 8.664739901468513e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.7%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 231.92 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.6%)
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.3528e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0717751871993904 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034732593448282977, dt = 8.670004704717195e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 292.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.10 us    (63.9%)
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    | 3.1623e+05 | 65536 |      2 | 2.072e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5060926503949927 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0035599593918754697, dt = 4.0040608124530634e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 305.23 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.3%)
Info: cfl dt = 8.679372556665296e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5765e+05 | 65536 |      2 | 1.832e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.786648044389615 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 273.047510921 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0036000000000000003, dt = 8.679372556665296e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.87 us    (2.3%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 355.34 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.3%)
Info: cfl dt = 8.686096404390896e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1850e+05 | 65536 |      2 | 1.566e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9953130129308774 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0036867937255666535, dt = 8.686096404390896e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 243.45 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (61.4%)
Info: cfl dt = 8.692889213445625e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2859e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0449853898271098 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0037736546896105626, dt = 8.692889213445625e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 241.21 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.5%)
Info: cfl dt = 8.69954462446715e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3270e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0661866873921966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003860583581745019, dt = 3.941641825498145e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.4%)
   LB compute        : 261.45 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.7%)
Info: cfl dt = 8.702470269050462e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2743e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9254838657302494 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 273.730043001 (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     : 9.26 us    (2.5%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 352.28 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (63.5%)
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    | 4.2050e+05 | 65536 |      2 | 1.559e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0101554594560422 (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     : 6.05 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.5%)
   LB compute        : 235.55 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.5%)
Info: cfl dt = 8.714632900268238e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2473e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0318546076903496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00407411183508417, dt = 8.714632900268238e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 242.56 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.0%)
Info: cfl dt = 8.717233868258081e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1301e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9771009522558691 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004161258164086853, dt = 3.874183591314785e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 268.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.1%)
Info: cfl dt = 8.718086054567651e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2314e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9005129394552371 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 274.423608369 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.004200000000000001, dt = 8.718086054567651e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.08 us    (2.7%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1161.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 307.67 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.3%)
Info: cfl dt = 8.719908754607113e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2172e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0195989534159873 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004287180860545677, dt = 8.719908754607113e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.4%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1523.00 ns (0.6%)
   LB compute        : 252.88 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (60.9%)
Info: cfl dt = 8.721600979997866e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2317e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0270006332755117 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004374379948091749, dt = 8.721600979997866e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 265.67 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (59.3%)
Info: cfl dt = 8.723204126841614e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2019e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.01311467905844 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004461595957891727, dt = 3.840404210827316e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 281.61 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (61.9%)
Info: cfl dt = 8.723886216303521e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0689e+05 | 65536 |      2 | 2.136e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6474056243024885 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 275.173495752 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0045000000000000005, dt = 8.723886216303521e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (2.1%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 384.83 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.3%)
Info: cfl dt = 8.725434464589254e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0997e+05 | 65536 |      2 | 1.599e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9646325852056536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004587238862163036, dt = 8.725434464589254e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 271.60 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.7%)
Info: cfl dt = 8.727052331685808e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0776e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9543999822626539 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0046744932068089285, dt = 8.727052331685808e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 285.60 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.8%)
Info: cfl dt = 8.728736138154766e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3313e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0763963775799934 (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     : 6.32 us    (2.4%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 236.14 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (64.7%)
Info: cfl dt = 8.729484564289757e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2808e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8991277885741076 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 275.865914668 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0048000000000000004, dt = 8.729484564289757e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.63 us    (2.3%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 346.79 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (64.2%)
Info: cfl dt = 8.731230521893499e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2187e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0229579653425573 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004887294845642898, dt = 8.731230521893499e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.5%)
   LB compute        : 246.57 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.0%)
Info: cfl dt = 8.732994411527102e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8473e+05 | 65536 |      2 | 1.703e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8452530220061667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004974607150861833, dt = 8.732994411527102e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 261.63 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.2%)
Info: cfl dt = 8.73230980034144e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0744e+05 | 65536 |      2 | 1.608e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.954563444678841 (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     : 6.40 us    (2.3%)
   patch tree reduce : 1663.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 261.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.7%)
Info: cfl dt = 8.732022280422373e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1762e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.873182664036101 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 276.601347535 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0051, dt = 8.732022280422373e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.63 us    (2.2%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 363.06 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
Info: cfl dt = 8.73131911171658e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2081e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0184850363991242 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005187320222804224, dt = 8.73131911171658e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 258.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.8%)
Info: cfl dt = 8.730684279559798e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2917e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.058395361361465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00527463341392139, dt = 8.730684279559798e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.3%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 254.07 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.7%)
Info: cfl dt = 8.730154286493676e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3039e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.064114862864855 (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     : 7.05 us    (2.6%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 244.95 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (56.2%)
Info: cfl dt = 8.7299859702493e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1712e+05 | 65536 |      2 | 1.571e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8720596989077659 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 277.29697206400004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0054, dt = 8.7299859702493e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.76 us    (2.5%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 325.46 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.2%)
Info: cfl dt = 8.729612276464052e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3162e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0698322189052933 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005487299859702493, dt = 8.729612276464052e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 240.73 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.6%)
Info: cfl dt = 8.729359715576613e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2570e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0413540257542384 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005574595982467134, dt = 8.729359715576613e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 1652.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 263.48 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.3%)
Info: cfl dt = 8.729236983959588e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2041e+05 | 65536 |      2 | 1.559e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.015933119590931 (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     : 6.45 us    (2.0%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 302.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (66.2%)
Info: cfl dt = 8.729253550429847e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3262e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9056694765586497 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 277.980959182 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0057, dt = 8.729253550429847e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.60 us    (2.5%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 321.12 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.6%)
Info: cfl dt = 8.729322330412918e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3026e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.063156337763939 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005787292535504298, dt = 8.729322330412918e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 259.50 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.5%)
Info: cfl dt = 8.729537723591171e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2474e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.03667275405382 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005874585758808427, dt = 8.729537723591171e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 242.10 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.1%)
Info: cfl dt = 8.729904279413475e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1518e+05 | 65536 |      2 | 1.579e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9908933664382735 (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     : 6.37 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 280.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (64.8%)
Info: cfl dt = 8.730126508294311e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0818e+05 | 65536 |      2 | 1.606e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8546977351235027 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 278.676730113 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006, dt = 8.730126508294311e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.88 us    (2.2%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 371.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1922.00 ns (61.5%)
Info: cfl dt = 8.730701095356109e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1971e+05 | 65536 |      2 | 1.561e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.012766680426661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006087301265082943, dt = 8.730701095356109e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 242.62 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.0%)
Info: cfl dt = 8.731453253979241e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2919e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0583441676714265 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006174608276036504, dt = 8.731453253979241e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 252.93 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.8%)
Info: cfl dt = 8.732400693377047e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1592e+05 | 65536 |      2 | 1.576e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9948997576972918 (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     : 6.43 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 278.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.6%)
Info: cfl dt = 8.732870256222189e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2238e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8834633001375878 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 279.372838562 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006300000000000001, dt = 8.732870256222189e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.00 us    (2.6%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 315.13 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (66.1%)
Info: cfl dt = 8.7340413618581e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2971e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.061386541677763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006387328702562223, dt = 8.7340413618581e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.1%)
   patch tree reduce : 1812.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 285.58 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (61.1%)
Info: cfl dt = 8.735336161977945e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0055e+05 | 65536 |      2 | 1.636e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9217215179472775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006474669116180804, dt = 8.735336161977945e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 266.98 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.0%)
Info: cfl dt = 8.736724728947535e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7855e+05 | 65536 |      2 | 1.731e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8164749102730875 (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     : 6.80 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 259.58 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (60.0%)
Info: cfl dt = 8.737335543853118e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3288e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9030619960189037 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 280.08319083000004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.006600000000000001, dt = 8.737335543853118e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.47 us    (2.6%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 333.84 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.4%)
Info: cfl dt = 8.738808823069244e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0279e+05 | 65536 |      2 | 1.627e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9331946023423272 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006687373355438532, dt = 8.738808823069244e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 255.82 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
Info: cfl dt = 8.740354583684669e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0415e+05 | 65536 |      2 | 1.622e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9400648751704992 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006774761443669224, dt = 8.740354583684669e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.5%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 240.33 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (65.5%)
Info: cfl dt = 8.742049944163726e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1483e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9917008426466163 (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     : 6.85 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 244.24 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (57.4%)
Info: cfl dt = 8.74277654356507e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9733e+05 | 65536 |      2 | 1.649e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8257803663715093 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 280.802969682 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.006900000000000001, dt = 8.74277654356507e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.62 us    (2.6%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 312.57 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.2%)
Info: cfl dt = 8.744473628748896e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9868e+05 | 65536 |      2 | 2.194e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4344247055255073 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069874277654356515, dt = 8.744473628748896e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (1.9%)
   patch tree reduce : 17.16 us   (4.9%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 315.25 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.2%)
Info: cfl dt = 8.746178803657986e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9458e+05 | 65536 |      2 | 1.661e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8953623698284474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007074872501723141, dt = 8.746178803657986e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 265.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.8%)
Info: cfl dt = 8.746563558385106e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0946e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9672128948331944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007162334289759721, dt = 3.766571024027988e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 242.70 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.8%)
Info: cfl dt = 8.746560851334685e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0796e+05 | 65536 |      2 | 1.606e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8440926927262887 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 281.577861725 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.007200000000000001, dt = 8.746560851334685e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.55 us    (2.6%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 309.79 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.4%)
Info: cfl dt = 8.746514606534937e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0407e+05 | 65536 |      2 | 1.622e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.941385435648966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007287465608513347, dt = 8.746514606534937e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 239.31 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (61.7%)
Info: cfl dt = 8.746475848359028e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1745e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.005676490779032 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007374930754578696, dt = 8.746475848359028e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 239.42 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.2%)
Info: cfl dt = 8.74646576091356e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1391e+05 | 65536 |      2 | 2.088e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5082229933397244 (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     : 6.82 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 298.55 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.0%)
Info: cfl dt = 8.746479259411267e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2035e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6617332733596905 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 282.380559531 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.007500000000000001, dt = 8.746479259411267e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.48 us    (2.4%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 368.42 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (65.4%)
Info: cfl dt = 8.746518173167396e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2466e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.040308895562895 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007587464792594113, dt = 8.746518173167396e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.5%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 241.93 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.8%)
Info: cfl dt = 8.746585126564726e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0716e+05 | 65536 |      2 | 1.610e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9562482462647854 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007674929974325787, dt = 8.746585126564726e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.5%)
   patch tree reduce : 1822.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 237.29 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.4%)
Info: cfl dt = 8.746614402024218e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1556e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9966411029354123 (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     : 6.31 us    (2.4%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 238.42 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.1%)
Info: cfl dt = 8.746620435019193e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1463e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8564822238508879 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 283.07914826 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.0078000000000000005, dt = 8.746620435019193e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.00 us    (2.4%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 344.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.8%)
Info: cfl dt = 8.746334123766859e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0788e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.95974136493229 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007887466204350192, dt = 8.746334123766859e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 291.91 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.8%)
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    | 4.0770e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9588159491281163 (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     : 6.30 us    (2.0%)
   patch tree reduce : 1892.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 289.10 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.3%)
Info: cfl dt = 8.745774911508152e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0499e+05 | 65536 |      2 | 1.618e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9457145016099058 (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     : 6.72 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.3%)
   LB compute        : 321.19 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.0%)
Info: cfl dt = 8.745746686178591e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0508e+05 | 65536 |      2 | 2.148e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.6302997814361319 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 283.84729697700004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.008100000000000001, dt = 8.745746686178591e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 10.04 us   (2.4%)
   patch tree reduce : 2.64 us    (0.6%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 399.20 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.3%)
Info: cfl dt = 8.745751693275464e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3105e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0708437686537975 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008187457466861787, dt = 8.745751693275464e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.9%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 326.63 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (62.9%)
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.2557e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0445232351530933 (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     : 6.20 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 279.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.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    | 4.1705e+05 | 65536 |      2 | 1.571e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0036011943048373 (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     : 6.57 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 282.66 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (59.5%)
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    | 4.2081e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8697636687015086 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 284.53665713500004 (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     : 9.01 us    (2.4%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 350.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.6%)
Info: cfl dt = 8.746475061979321e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4100e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6383352191036822 (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     : 7.02 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 291.36 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.3%)
Info: cfl dt = 8.746785784543684e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5222e+05 | 65536 |      2 | 1.861e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6922852322781994 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008574926782515613, dt = 8.746785784543684e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 272.02 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.9%)
Info: cfl dt = 8.747133810360284e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4937e+05 | 65536 |      2 | 1.876e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6786130542094253 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00866239464036105, dt = 3.760535963895188e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 250.22 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (56.4%)
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    | 3.4673e+05 | 65536 |      2 | 1.890e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.7162508022031031 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 285.363718826 (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     : 8.74 us    (2.3%)
   patch tree reduce : 2.07 us    (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 355.77 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.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    | 4.3670e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.098355356453788 (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     : 6.24 us    (2.2%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 255.68 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Info: cfl dt = 8.748117666138426e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3362e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0836351240051467 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008874949791696434, dt = 8.748117666138426e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.7%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1161.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.5%)
   LB compute        : 231.80 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.3%)
Info: cfl dt = 8.748576050165185e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3048e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0686479490442373 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008962430968357818, dt = 3.7569031642183115e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.6%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 234.26 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (62.9%)
Info: cfl dt = 8.748773981395722e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2800e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.88328465643542 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 286.039357096 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.009000000000000001, dt = 8.748773981395722e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.46 us    (2.5%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 312.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (63.5%)
Info: cfl dt = 8.749268073995033e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2461e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0406135063684743 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009087487739813958, dt = 8.749268073995033e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 1862.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.4%)
   LB compute        : 277.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.3%)
Info: cfl dt = 8.749782694168411e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0765e+05 | 65536 |      2 | 1.608e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9592220597289212 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009174980420553909, dt = 8.749782694168411e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 317.18 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.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.2111e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0240227068221075 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 286.40 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (64.0%)
Info: cfl dt = 8.750535929354954e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0001e+05 | 65536 |      2 | 1.638e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8244787422473623 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 286.74415856900004 (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     : 9.76 us    (2.4%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 381.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
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    | 2.9971e+05 | 65536 |      2 | 2.187e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4406364769131625 (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     : 6.51 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 263.64 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (65.1%)
Info: cfl dt = 8.751642874206313e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2880e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.061288212644508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009475016207491575, dt = 8.751642874206313e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.4%)
   patch tree reduce : 1783.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1512.00 ns (0.6%)
   LB compute        : 248.36 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (60.4%)
Info: cfl dt = 8.752239575146192e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1321e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9864510973067995 (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     : 6.49 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 277.71 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.5%)
Info: cfl dt = 8.752496988872681e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2703e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8788798433831295 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 287.499081627 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.009600000000000001, dt = 8.752496988872681e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.39 us    (2.5%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.3%)
   LB compute        : 349.99 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (66.3%)
Info: cfl dt = 8.753130979975445e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2352e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0362159612297246 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009687524969888728, dt = 8.753130979975445e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 296.04 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.7%)
Info: cfl dt = 8.753779367069832e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7025e+05 | 65536 |      2 | 1.770e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.780263216911789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009775056279688481, dt = 8.753779367069832e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1552.00 ns (0.6%)
   LB compute        : 258.71 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.4%)
Info: cfl dt = 8.754452101345273e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1026e+05 | 65536 |      2 | 1.597e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.972794373330959 (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     : 7.51 us    (2.3%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 305.14 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.7%)
Info: cfl dt = 8.754752373943097e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0614e+05 | 65536 |      2 | 1.614e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.834523599533372 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 288.223599034 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0099, dt = 8.754752373943097e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.97 us    (2.6%)
   patch tree reduce : 2.62 us    (0.8%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 319.01 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (60.9%)
Info: cfl dt = 8.755207459720286e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1718e+05 | 65536 |      2 | 1.571e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0062619541688735 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009987547523739431, dt = 8.755207459720286e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.88 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 266.68 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (60.1%)
Info: cfl dt = 8.754991032784403e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2643e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050880373448998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010075099598336634, dt = 8.754991032784403e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.7%)
   patch tree reduce : 1742.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.5%)
   LB compute        : 242.03 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (62.1%)
Info: cfl dt = 8.754796643794683e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1927e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0163885198386624 (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     : 6.33 us    (2.5%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.6%)
   LB compute        : 235.81 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (59.6%)
Info: cfl dt = 8.754734136690713e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2272e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.867299726127444 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 288.917749742 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0102, dt = 8.754734136690713e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.99 us    (2.6%)
   patch tree reduce : 2.77 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 354.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.3%)
Info: cfl dt = 8.754591438504014e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1505e+05 | 65536 |      2 | 2.080e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.515096196247295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010287547341366908, dt = 8.754591438504014e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.8%)
   patch tree reduce : 1762.00 ns (0.5%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 339.04 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (60.8%)
Info: cfl dt = 8.75448775764747e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9844e+05 | 65536 |      2 | 1.645e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.916131208220119 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010375093255751948, dt = 8.75448775764747e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 284.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.0%)
Info: cfl dt = 8.754407150876579e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0968e+05 | 65536 |      2 | 1.600e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9701600573673368 (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     : 6.33 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 259.69 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (63.0%)
Info: cfl dt = 8.754385493427577e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0771e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8367535436367071 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 289.683398123 (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     : 10.04 us   (2.5%)
   patch tree reduce : 2.47 us    (0.6%)
   gen split merge   : 992.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 370.86 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (63.7%)
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    | 4.0446e+05 | 65536 |      2 | 1.620e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9450315770645927 (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     : 6.83 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 292.55 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.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    | 3.6261e+05 | 65536 |      2 | 1.807e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.743765407337198 (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     : 6.44 us    (2.2%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 274.65 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.2%)
Info: cfl dt = 8.754385474030125e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1374e+05 | 65536 |      2 | 1.584e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9896437752676204 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010762630752280712, dt = 3.736924771928843e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 269.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (58.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    | 4.0675e+05 | 65536 |      2 | 1.611e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8349540905306287 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 290.418050261 (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     : 9.02 us    (2.3%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 370.52 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.8%)
Info: cfl dt = 8.754523352746775e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3412e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6067749760162453 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01088754419639019, dt = 8.754523352746775e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 275.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.1%)
Info: cfl dt = 8.754672013981818e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9756e+05 | 65536 |      2 | 1.648e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.911866773538085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010975089429917657, dt = 8.754672013981818e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 295.76 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.5%)
Info: cfl dt = 8.754869973460886e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0744e+05 | 65536 |      2 | 1.608e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9594223998679985 (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     : 6.42 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 261.54 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (61.4%)
Info: cfl dt = 8.754979028402775e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1015e+05 | 65536 |      2 | 1.598e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8418130959010851 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 291.169862131 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0111, dt = 8.754979028402775e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.46 us    (2.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 367.12 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (62.9%)
Info: cfl dt = 8.755209759668229e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1444e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9931283703999727 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011187549790284029, dt = 8.755209759668229e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 250.62 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 8.755420099093397e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4664e+05 | 65536 |      2 | 1.891e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6671189170575855 (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     : 6.36 us    (2.1%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 278.20 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.0%)
Info: cfl dt = 8.755657537602883e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0982e+05 | 65536 |      2 | 2.115e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4900734074244826 (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     : 6.40 us    (1.9%)
   patch tree reduce : 2.55 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 319.81 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.4%)
Info: cfl dt = 8.75575370881894e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1471e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8507135111040726 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 291.957802236 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0114, dt = 8.75575370881894e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.25 us    (2.6%)
   patch tree reduce : 2.81 us    (0.8%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 323.60 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (67.2%)
Info: cfl dt = 8.755993967586703e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3023e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0692722818176996 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01148755753708819, dt = 8.755993967586703e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.6%)
   patch tree reduce : 1753.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 240.29 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.0%)
Info: cfl dt = 8.756235779612817e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2471e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.042781060971384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011575117476764058, dt = 8.756235779612817e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.4%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 245.58 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.7%)
Info: cfl dt = 8.756479180806843e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2131e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0264993714775965 (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     : 6.72 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 242.08 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.8%)
Info: cfl dt = 8.756578148808492e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2988e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8812883948868174 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 292.64453365400004 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.0117, dt = 8.756578148808492e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.63 us    (2.7%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 328.80 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (68.3%)
Info: cfl dt = 8.756824449841148e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2035e+05 | 65536 |      2 | 1.559e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0219258106531854 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011787565781488086, dt = 8.756824449841148e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.6%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 248.02 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.0%)
Info: cfl dt = 8.757072055445958e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2656e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0518474504701243 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011875134025986497, dt = 8.757072055445958e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1291.00 ns (0.4%)
   LB compute        : 267.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
Info: cfl dt = 8.757320815970906e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2327e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0360757132707143 (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     : 6.08 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 262.51 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (58.8%)
Info: cfl dt = 8.757422036845767e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1467e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8495304434175337 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 293.338932955 (s)                                        [Godunov][rank=0]
none_hll
{'none_hll': [{'rho': array([0.96262329, 0.96262329, 0.96262329, 0.96262329, 0.95292015,
       0.95292015, 0.95292015, 0.95292015, 0.94187655, 0.94187655,
       0.94187655, 0.94187655, 0.92958523, 0.92958523, 0.92958523,
       0.92958523, 0.91614889, 0.91614889, 0.91614889, 0.91614889,
       0.9016891 , 0.9016891 , 0.9016891 , 0.9016891 , 0.88633863,
       0.88633863, 0.88633863, 0.88633863, 0.87023469, 0.87023469,
       0.87023469, 0.87023469, 0.85351349, 0.85351349, 0.85351349,
       0.85351349, 0.8363065 , 0.8363065 , 0.8363065 , 0.8363065 ,
       0.81873804, 0.81873804, 0.81873804, 0.81873804, 0.80092415,
       0.80092415, 0.80092415, 0.80092415, 0.78297243, 0.78297243,
       0.78297243, 0.78297243, 0.76498267, 0.76498267, 0.76498267,
       0.76498267, 0.74704803, 0.74704803, 0.74704803, 0.74704803,
       0.72925675, 0.72925675, 0.72925675, 0.72925675, 0.71169435,
       0.71169435, 0.71169435, 0.71169435, 0.69444628, 0.69444628,
       0.69444628, 0.69444628, 0.6776013 , 0.6776013 , 0.6776013 ,
       0.6776013 , 0.66125559, 0.66125559, 0.66125559, 0.66125559,
       0.64551785, 0.64551785, 0.64551785, 0.64551785, 0.63051555,
       0.63051555, 0.63051555, 0.63051555, 0.61640212, 0.61640212,
       0.61640212, 0.61640212, 0.6033641 , 0.6033641 , 0.6033641 ,
       0.6033641 , 0.59162547, 0.59162547, 0.59162547, 0.59162547,
       0.58144321, 0.58144321, 0.58144321, 0.58144321, 0.57308387,
       0.57308387, 0.57308387, 0.57308387, 0.5667695 , 0.5667695 ,
       0.5667695 , 0.5667695 , 0.56259223, 0.56259223, 0.56259223,
       0.56259223, 0.5604295 , 0.5604295 , 0.5604295 , 0.5604295 ,
       0.55993197, 0.55993197, 0.55993197, 0.55993197, 0.56064241,
       0.56064241, 0.56064241, 0.56064241, 0.56220257, 0.56220257,
       0.56220257, 0.56220257, 0.56453573, 0.56453573, 0.56453573,
       0.56453573, 0.56792111, 0.56792111, 0.56792111, 0.56792111,
       0.57302161, 0.57302161, 0.57302161, 0.57302161, 0.58094766,
       0.58094766, 0.58094766, 0.58094766, 0.59338194, 0.59338194,
       0.59338194, 0.59338194, 0.61278127, 0.61278127, 0.61278127,
       0.61278127, 0.64267222, 0.64267222, 0.64267222, 0.64267222,
       0.68810064, 0.68810064, 0.68810064, 0.68810064, 0.75635209,
       0.75635209, 0.75635209, 0.75635209, 0.85813623, 0.85813623,
       0.85813623, 0.85813623, 1.00951022, 1.00951022, 1.00951022,
       1.00951022, 1.23478014, 1.23478014, 1.23478014, 1.23478014,
       1.57016034, 1.57016034, 1.57016034, 1.57016034, 2.02902941,
       2.02902941, 2.02902941, 2.02902941, 2.54214966, 2.54214966,
       2.54214966, 2.54214966, 3.0202242 , 3.0202242 , 3.0202242 ,
       3.0202242 , 3.31178259, 3.31178259, 3.31178259, 3.31178259,
       3.22437971, 3.22437971, 3.22437971, 3.22437971, 2.65275743,
       2.65275743, 2.65275743, 2.65275743, 1.80505429, 1.80505429,
       1.80505429, 1.80505429, 1.19452145, 1.19452145, 1.19452145,
       1.19452145, 1.01387818, 1.01387818, 1.01387818, 1.01387818,
       1.0001771 , 1.0001771 , 1.0001771 , 1.0001771 , 1.00000035,
       1.00000035, 1.00000035, 1.00000035, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.41419412e+00, 1.41419412e+00, 1.41419412e+00, 1.41419412e+00,
       1.78883739e+00, 1.78883739e+00, 1.78883739e+00, 1.78883739e+00,
       2.21825857e+00, 2.21825857e+00, 2.21825857e+00, 2.21825857e+00,
       2.70047651e+00, 2.70047651e+00, 2.70047651e+00, 2.70047651e+00,
       3.23311666e+00, 3.23311666e+00, 3.23311666e+00, 3.23311666e+00,
       3.81304395e+00, 3.81304395e+00, 3.81304395e+00, 3.81304395e+00,
       4.43661839e+00, 4.43661839e+00, 4.43661839e+00, 4.43661839e+00,
       5.09991584e+00, 5.09991584e+00, 5.09991584e+00, 5.09991584e+00,
       5.79890026e+00, 5.79890026e+00, 5.79890026e+00, 5.79890026e+00,
       6.52954505e+00, 6.52954505e+00, 6.52954505e+00, 6.52954505e+00,
       7.28790743e+00, 7.28790743e+00, 7.28790743e+00, 7.28790743e+00,
       8.07016183e+00, 8.07016183e+00, 8.07016183e+00, 8.07016183e+00,
       8.87259884e+00, 8.87259884e+00, 8.87259884e+00, 8.87259884e+00,
       9.69159468e+00, 9.69159468e+00, 9.69159468e+00, 9.69159468e+00,
       1.05235545e+01, 1.05235545e+01, 1.05235545e+01, 1.05235545e+01,
       1.13648293e+01, 1.13648293e+01, 1.13648293e+01, 1.13648293e+01,
       1.22116044e+01, 1.22116044e+01, 1.22116044e+01, 1.22116044e+01,
       1.30597527e+01, 1.30597527e+01, 1.30597527e+01, 1.30597527e+01,
       1.39046431e+01, 1.39046431e+01, 1.39046431e+01, 1.39046431e+01,
       1.47408898e+01, 1.47408898e+01, 1.47408898e+01, 1.47408898e+01,
       1.55620288e+01, 1.55620288e+01, 1.55620288e+01, 1.55620288e+01,
       1.63601078e+01, 1.63601078e+01, 1.63601078e+01, 1.63601078e+01,
       1.71251997e+01, 1.71251997e+01, 1.71251997e+01, 1.71251997e+01,
       1.78448993e+01, 1.78448993e+01, 1.78448993e+01, 1.78448993e+01,
       1.85039895e+01, 1.85039895e+01, 1.85039895e+01, 1.85039895e+01,
       1.90846801e+01, 1.90846801e+01, 1.90846801e+01, 1.90846801e+01,
       1.95681279e+01, 1.95681279e+01, 1.95681279e+01, 1.95681279e+01,
       1.99380647e+01, 1.99380647e+01, 1.99380647e+01, 1.99380647e+01,
       2.01866601e+01, 2.01866601e+01, 2.01866601e+01, 2.01866601e+01,
       2.03205654e+01, 2.03205654e+01, 2.03205654e+01, 2.03205654e+01,
       2.03625340e+01, 2.03625340e+01, 2.03625340e+01, 2.03625340e+01,
       2.03450671e+01, 2.03450671e+01, 2.03450671e+01, 2.03450671e+01,
       2.02991317e+01, 2.02991317e+01, 2.02991317e+01, 2.02991317e+01,
       2.02456046e+01, 2.02456046e+01, 2.02456046e+01, 2.02456046e+01,
       2.01946657e+01, 2.01946657e+01, 2.01946657e+01, 2.01946657e+01,
       2.01495851e+01, 2.01495851e+01, 2.01495851e+01, 2.01495851e+01,
       2.01104796e+01, 2.01104796e+01, 2.01104796e+01, 2.01104796e+01,
       2.00765652e+01, 2.00765652e+01, 2.00765652e+01, 2.00765652e+01,
       2.00469486e+01, 2.00469486e+01, 2.00469486e+01, 2.00469486e+01,
       2.00208526e+01, 2.00208526e+01, 2.00208526e+01, 2.00208526e+01,
       1.99976473e+01, 1.99976473e+01, 1.99976473e+01, 1.99976473e+01,
       1.99768232e+01, 1.99768232e+01, 1.99768232e+01, 1.99768232e+01,
       1.99579134e+01, 1.99579134e+01, 1.99579134e+01, 1.99579134e+01,
       1.99401110e+01, 1.99401110e+01, 1.99401110e+01, 1.99401110e+01,
       1.99203376e+01, 1.99203376e+01, 1.99203376e+01, 1.99203376e+01,
       1.98860888e+01, 1.98860888e+01, 1.98860888e+01, 1.98860888e+01,
       1.98001469e+01, 1.98001469e+01, 1.98001469e+01, 1.98001469e+01,
       1.95757462e+01, 1.95757462e+01, 1.95757462e+01, 1.95757462e+01,
       1.90484237e+01, 1.90484237e+01, 1.90484237e+01, 1.90484237e+01,
       1.79421767e+01, 1.79421767e+01, 1.79421767e+01, 1.79421767e+01,
       1.58163176e+01, 1.58163176e+01, 1.58163176e+01, 1.58163176e+01,
       1.20498338e+01, 1.20498338e+01, 1.20498338e+01, 1.20498338e+01,
       6.43761226e+00, 6.43761226e+00, 6.43761226e+00, 6.43761226e+00,
       1.39778927e+00, 1.39778927e+00, 1.39778927e+00, 1.39778927e+00,
       5.17644049e-02, 5.17644049e-02, 5.17644049e-02, 5.17644049e-02,
       1.82914635e-04, 1.82914635e-04, 1.82914635e-04, 1.82914635e-04,
       7.98774300e-08, 7.98774300e-08, 7.98774300e-08, 7.98774300e-08,
       2.66087619e-11, 2.66087619e-11, 2.66087619e-11, 2.66087619e-11,
       8.81761175e-15, 8.81761175e-15, 8.81761175e-15, 8.81761175e-15,
       2.88036046e-18, 2.88036046e-18, 2.88036046e-18, 2.88036046e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.48220610e+02, 9.48220610e+02, 9.48220610e+02, 9.48220610e+02,
       9.34902944e+02, 9.34902944e+02, 9.34902944e+02, 9.34902944e+02,
       9.19831060e+02, 9.19831060e+02, 9.19831060e+02, 9.19831060e+02,
       9.03151270e+02, 9.03151270e+02, 9.03151270e+02, 9.03151270e+02,
       8.85026662e+02, 8.85026662e+02, 8.85026662e+02, 8.85026662e+02,
       8.65646386e+02, 8.65646386e+02, 8.65646386e+02, 8.65646386e+02,
       8.45213155e+02, 8.45213155e+02, 8.45213155e+02, 8.45213155e+02,
       8.23932702e+02, 8.23932702e+02, 8.23932702e+02, 8.23932702e+02,
       8.02005750e+02, 8.02005750e+02, 8.02005750e+02, 8.02005750e+02,
       7.79622496e+02, 7.79622496e+02, 7.79622496e+02, 7.79622496e+02,
       7.56959321e+02, 7.56959321e+02, 7.56959321e+02, 7.56959321e+02,
       7.34177328e+02, 7.34177328e+02, 7.34177328e+02, 7.34177328e+02,
       7.11422289e+02, 7.11422289e+02, 7.11422289e+02, 7.11422289e+02,
       6.88825627e+02, 6.88825627e+02, 6.88825627e+02, 6.88825627e+02,
       6.66506181e+02, 6.66506181e+02, 6.66506181e+02, 6.66506181e+02,
       6.44572547e+02, 6.44572547e+02, 6.44572547e+02, 6.44572547e+02,
       6.23125941e+02, 6.23125941e+02, 6.23125941e+02, 6.23125941e+02,
       6.02263562e+02, 6.02263562e+02, 6.02263562e+02, 6.02263562e+02,
       5.82082578e+02, 5.82082578e+02, 5.82082578e+02, 5.82082578e+02,
       5.62684871e+02, 5.62684871e+02, 5.62684871e+02, 5.62684871e+02,
       5.44182753e+02, 5.44182753e+02, 5.44182753e+02, 5.44182753e+02,
       5.26705766e+02, 5.26705766e+02, 5.26705766e+02, 5.26705766e+02,
       5.10408370e+02, 5.10408370e+02, 5.10408370e+02, 5.10408370e+02,
       4.95477456e+02, 4.95477456e+02, 4.95477456e+02, 4.95477456e+02,
       4.82136707e+02, 4.82136707e+02, 4.82136707e+02, 4.82136707e+02,
       4.70641376e+02, 4.70641376e+02, 4.70641376e+02, 4.70641376e+02,
       4.61252431e+02, 4.61252431e+02, 4.61252431e+02, 4.61252431e+02,
       4.54177107e+02, 4.54177107e+02, 4.54177107e+02, 4.54177107e+02,
       4.49473996e+02, 4.49473996e+02, 4.49473996e+02, 4.49473996e+02,
       4.46955714e+02, 4.46955714e+02, 4.46955714e+02, 4.46955714e+02,
       4.46165009e+02, 4.46165009e+02, 4.46165009e+02, 4.46165009e+02,
       4.46485695e+02, 4.46485695e+02, 4.46485695e+02, 4.46485695e+02,
       4.47339548e+02, 4.47339548e+02, 4.47339548e+02, 4.47339548e+02,
       4.48337508e+02, 4.48337508e+02, 4.48337508e+02, 4.48337508e+02,
       4.49289395e+02, 4.49289395e+02, 4.49289395e+02, 4.49289395e+02,
       4.50134048e+02, 4.50134048e+02, 4.50134048e+02, 4.50134048e+02,
       4.50869836e+02, 4.50869836e+02, 4.50869836e+02, 4.50869836e+02,
       4.51512780e+02, 4.51512780e+02, 4.51512780e+02, 4.51512780e+02,
       4.52081898e+02, 4.52081898e+02, 4.52081898e+02, 4.52081898e+02,
       4.52595215e+02, 4.52595215e+02, 4.52595215e+02, 4.52595215e+02,
       4.53069511e+02, 4.53069511e+02, 4.53069511e+02, 4.53069511e+02,
       4.53521071e+02, 4.53521071e+02, 4.53521071e+02, 4.53521071e+02,
       4.53965340e+02, 4.53965340e+02, 4.53965340e+02, 4.53965340e+02,
       4.54407381e+02, 4.54407381e+02, 4.54407381e+02, 4.54407381e+02,
       4.54782427e+02, 4.54782427e+02, 4.54782427e+02, 4.54782427e+02,
       4.54679238e+02, 4.54679238e+02, 4.54679238e+02, 4.54679238e+02,
       4.52448893e+02, 4.52448893e+02, 4.52448893e+02, 4.52448893e+02,
       4.43824090e+02, 4.43824090e+02, 4.43824090e+02, 4.43824090e+02,
       4.20337686e+02, 4.20337686e+02, 4.20337686e+02, 4.20337686e+02,
       3.69484546e+02, 3.69484546e+02, 3.69484546e+02, 3.69484546e+02,
       2.80602938e+02, 2.80602938e+02, 2.80602938e+02, 2.80602938e+02,
       1.60681588e+02, 1.60681588e+02, 1.60681588e+02, 1.60681588e+02,
       5.29503080e+01, 5.29503080e+01, 5.29503080e+01, 5.29503080e+01,
       5.56597022e+00, 5.56597022e+00, 5.56597022e+00, 5.56597022e+00,
       7.81466416e-02, 7.81466416e-02, 7.81466416e-02, 7.81466416e-02,
       1.00355924e-02, 1.00355924e-02, 1.00355924e-02, 1.00355924e-02,
       1.00000095e-02, 1.00000095e-02, 1.00000095e-02, 1.00000095e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99009996, 0.99009996, 0.99009996, 0.99009996, 0.98079728,
       0.98079728, 0.98079728, 0.98079728, 0.97117513, 0.97117513,
       0.97117513, 0.97117513, 0.95762729, 0.95762729, 0.95762729,
       0.95762729, 0.94142953, 0.94142953, 0.94142953, 0.94142953,
       0.92272455, 0.92272455, 0.92272455, 0.92272455, 0.90213778,
       0.90213778, 0.90213778, 0.90213778, 0.88019506, 0.88019506,
       0.88019506, 0.88019506, 0.8573279 , 0.8573279 , 0.8573279 ,
       0.8573279 , 0.83388586, 0.83388586, 0.83388586, 0.83388586,
       0.8103593 , 0.8103593 , 0.8103593 , 0.8103593 , 0.78735681,
       0.78735681, 0.78735681, 0.78735681, 0.76511282, 0.76511282,
       0.76511282, 0.76511282, 0.74361635, 0.74361635, 0.74361635,
       0.74361635, 0.72287492, 0.72287492, 0.72287492, 0.72287492,
       0.70291453, 0.70291453, 0.70291453, 0.70291453, 0.68379431,
       0.68379431, 0.68379431, 0.68379431, 0.66561946, 0.66561946,
       0.66561946, 0.66561946, 0.64854061, 0.64854061, 0.64854061,
       0.64854061, 0.63273412, 0.63273412, 0.63273412, 0.63273412,
       0.61836564, 0.61836564, 0.61836564, 0.61836564, 0.60555414,
       0.60555414, 0.60555414, 0.60555414, 0.59436881, 0.59436881,
       0.59436881, 0.59436881, 0.58488492, 0.58488492, 0.58488492,
       0.58488492, 0.57726939, 0.57726939, 0.57726939, 0.57726939,
       0.57177743, 0.57177743, 0.57177743, 0.57177743, 0.56855526,
       0.56855526, 0.56855526, 0.56855526, 0.56733881, 0.56733881,
       0.56733881, 0.56733881, 0.56730464, 0.56730464, 0.56730464,
       0.56730464, 0.56754209, 0.56754209, 0.56754209, 0.56754209,
       0.5676676 , 0.5676676 , 0.5676676 , 0.5676676 , 0.56747076,
       0.56747076, 0.56747076, 0.56747076, 0.56700475, 0.56700475,
       0.56700475, 0.56700475, 0.56673193, 0.56673193, 0.56673193,
       0.56673193, 0.56658818, 0.56658818, 0.56658818, 0.56658818,
       0.56660117, 0.56660117, 0.56660117, 0.56660117, 0.56721514,
       0.56721514, 0.56721514, 0.56721514, 0.56947087, 0.56947087,
       0.56947087, 0.56947087, 0.57522826, 0.57522826, 0.57522826,
       0.57522826, 0.58788102, 0.58788102, 0.58788102, 0.58788102,
       0.61339093, 0.61339093, 0.61339093, 0.61339093, 0.66191566,
       0.66191566, 0.66191566, 0.66191566, 0.7503941 , 0.7503941 ,
       0.7503941 , 0.7503941 , 0.90622262, 0.90622262, 0.90622262,
       0.90622262, 1.17163176, 1.17163176, 1.17163176, 1.17163176,
       1.60647461, 1.60647461, 1.60647461, 1.60647461, 2.28018986,
       2.28018986, 2.28018986, 2.28018986, 3.12452995, 3.12452995,
       3.12452995, 3.12452995, 3.74154011, 3.74154011, 3.74154011,
       3.74154011, 3.94349823, 3.94349823, 3.94349823, 3.94349823,
       3.47975134, 3.47975134, 3.47975134, 3.47975134, 1.76601771,
       1.76601771, 1.76601771, 1.76601771, 1.04278667, 1.04278667,
       1.04278667, 1.04278667, 1.00063976, 1.00063976, 1.00063976,
       1.00063976, 1.000002  , 1.000002  , 1.000002  , 1.000002  ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.71214413e-01, 3.71214413e-01, 3.71214413e-01, 3.71214413e-01,
       7.24051149e-01, 7.24051149e-01, 7.24051149e-01, 7.24051149e-01,
       1.09070799e+00, 1.09070799e+00, 1.09070799e+00, 1.09070799e+00,
       1.61244052e+00, 1.61244052e+00, 1.61244052e+00, 1.61244052e+00,
       2.24398795e+00, 2.24398795e+00, 2.24398795e+00, 2.24398795e+00,
       2.98433948e+00, 2.98433948e+00, 2.98433948e+00, 2.98433948e+00,
       3.81323583e+00, 3.81323583e+00, 3.81323583e+00, 3.81323583e+00,
       4.71361364e+00, 4.71361364e+00, 4.71361364e+00, 4.71361364e+00,
       5.67171883e+00, 5.67171883e+00, 5.67171883e+00, 5.67171883e+00,
       6.67789199e+00, 6.67789199e+00, 6.67789199e+00, 6.67789199e+00,
       7.70441370e+00, 7.70441370e+00, 7.70441370e+00, 7.70441370e+00,
       8.73273268e+00, 8.73273268e+00, 8.73273268e+00, 8.73273268e+00,
       9.75221103e+00, 9.75221103e+00, 9.75221103e+00, 9.75221103e+00,
       1.07599049e+01, 1.07599049e+01, 1.07599049e+01, 1.07599049e+01,
       1.17540097e+01, 1.17540097e+01, 1.17540097e+01, 1.17540097e+01,
       1.27317276e+01, 1.27317276e+01, 1.27317276e+01, 1.27317276e+01,
       1.36888505e+01, 1.36888505e+01, 1.36888505e+01, 1.36888505e+01,
       1.46193231e+01, 1.46193231e+01, 1.46193231e+01, 1.46193231e+01,
       1.55146881e+01, 1.55146881e+01, 1.55146881e+01, 1.55146881e+01,
       1.63636987e+01, 1.63636987e+01, 1.63636987e+01, 1.63636987e+01,
       1.71524418e+01, 1.71524418e+01, 1.71524418e+01, 1.71524418e+01,
       1.78652593e+01, 1.78652593e+01, 1.78652593e+01, 1.78652593e+01,
       1.84866404e+01, 1.84866404e+01, 1.84866404e+01, 1.84866404e+01,
       1.90040865e+01, 1.90040865e+01, 1.90040865e+01, 1.90040865e+01,
       1.94113585e+01, 1.94113585e+01, 1.94113585e+01, 1.94113585e+01,
       1.97105480e+01, 1.97105480e+01, 1.97105480e+01, 1.97105480e+01,
       1.99120445e+01, 1.99120445e+01, 1.99120445e+01, 1.99120445e+01,
       2.00328035e+01, 2.00328035e+01, 2.00328035e+01, 2.00328035e+01,
       2.00939353e+01, 2.00939353e+01, 2.00939353e+01, 2.00939353e+01,
       2.01167707e+01, 2.01167707e+01, 2.01167707e+01, 2.01167707e+01,
       2.01197792e+01, 2.01197792e+01, 2.01197792e+01, 2.01197792e+01,
       2.01074074e+01, 2.01074074e+01, 2.01074074e+01, 2.01074074e+01,
       2.00728629e+01, 2.00728629e+01, 2.00728629e+01, 2.00728629e+01,
       2.00133514e+01, 2.00133514e+01, 2.00133514e+01, 2.00133514e+01,
       1.99495226e+01, 1.99495226e+01, 1.99495226e+01, 1.99495226e+01,
       1.98997208e+01, 1.98997208e+01, 1.98997208e+01, 1.98997208e+01,
       1.98634959e+01, 1.98634959e+01, 1.98634959e+01, 1.98634959e+01,
       1.98359993e+01, 1.98359993e+01, 1.98359993e+01, 1.98359993e+01,
       1.98148995e+01, 1.98148995e+01, 1.98148995e+01, 1.98148995e+01,
       1.97990188e+01, 1.97990188e+01, 1.97990188e+01, 1.97990188e+01,
       1.97864598e+01, 1.97864598e+01, 1.97864598e+01, 1.97864598e+01,
       1.97757303e+01, 1.97757303e+01, 1.97757303e+01, 1.97757303e+01,
       1.97670663e+01, 1.97670663e+01, 1.97670663e+01, 1.97670663e+01,
       1.97606562e+01, 1.97606562e+01, 1.97606562e+01, 1.97606562e+01,
       1.97563225e+01, 1.97563225e+01, 1.97563225e+01, 1.97563225e+01,
       1.97574019e+01, 1.97574019e+01, 1.97574019e+01, 1.97574019e+01,
       1.97535996e+01, 1.97535996e+01, 1.97535996e+01, 1.97535996e+01,
       1.97149405e+01, 1.97149405e+01, 1.97149405e+01, 1.97149405e+01,
       1.95165373e+01, 1.95165373e+01, 1.95165373e+01, 1.95165373e+01,
       1.86180277e+01, 1.86180277e+01, 1.86180277e+01, 1.86180277e+01,
       1.50712409e+01, 1.50712409e+01, 1.50712409e+01, 1.50712409e+01,
       6.44555578e+00, 6.44555578e+00, 6.44555578e+00, 6.44555578e+00,
       3.40134655e-01, 3.40134655e-01, 3.40134655e-01, 3.40134655e-01,
       1.99855938e-03, 1.99855938e-03, 1.99855938e-03, 1.99855938e-03,
       9.27909710e-07, 9.27909710e-07, 9.27909710e-07, 9.27909710e-07,
       1.31626259e-10, 1.31626259e-10, 1.31626259e-10, 1.31626259e-10,
       1.91069012e-14, 1.91069012e-14, 1.91069012e-14, 1.91069012e-14,
       2.79872002e-18, 2.79872002e-18, 2.79872002e-18, 2.79872002e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.86186200e+02, 9.86186200e+02, 9.86186200e+02, 9.86186200e+02,
       9.73240468e+02, 9.73240468e+02, 9.73240468e+02, 9.73240468e+02,
       9.59914409e+02, 9.59914409e+02, 9.59914409e+02, 9.59914409e+02,
       9.41247070e+02, 9.41247070e+02, 9.41247070e+02, 9.41247070e+02,
       9.19065173e+02, 9.19065173e+02, 9.19065173e+02, 9.19065173e+02,
       8.93636756e+02, 8.93636756e+02, 8.93636756e+02, 8.93636756e+02,
       8.65883271e+02, 8.65883271e+02, 8.65883271e+02, 8.65883271e+02,
       8.36573980e+02, 8.36573980e+02, 8.36573980e+02, 8.36573980e+02,
       8.06320572e+02, 8.06320572e+02, 8.06320572e+02, 8.06320572e+02,
       7.75553698e+02, 7.75553698e+02, 7.75553698e+02, 7.75553698e+02,
       7.45017133e+02, 7.45017133e+02, 7.45017133e+02, 7.45017133e+02,
       7.15593221e+02, 7.15593221e+02, 7.15593221e+02, 7.15593221e+02,
       6.87450247e+02, 6.87450247e+02, 6.87450247e+02, 6.87450247e+02,
       6.60567105e+02, 6.60567105e+02, 6.60567105e+02, 6.60567105e+02,
       6.34933561e+02, 6.34933561e+02, 6.34933561e+02, 6.34933561e+02,
       6.10559907e+02, 6.10559907e+02, 6.10559907e+02, 6.10559907e+02,
       5.87481408e+02, 5.87481408e+02, 5.87481408e+02, 5.87481408e+02,
       5.65766844e+02, 5.65766844e+02, 5.65766844e+02, 5.65766844e+02,
       5.45524542e+02, 5.45524542e+02, 5.45524542e+02, 5.45524542e+02,
       5.26905041e+02, 5.26905041e+02, 5.26905041e+02, 5.26905041e+02,
       5.10095754e+02, 5.10095754e+02, 5.10095754e+02, 5.10095754e+02,
       4.95301417e+02, 4.95301417e+02, 4.95301417e+02, 4.95301417e+02,
       4.82707232e+02, 4.82707232e+02, 4.82707232e+02, 4.82707232e+02,
       4.72431235e+02, 4.72431235e+02, 4.72431235e+02, 4.72431235e+02,
       4.64480159e+02, 4.64480159e+02, 4.64480159e+02, 4.64480159e+02,
       4.58720544e+02, 4.58720544e+02, 4.58720544e+02, 4.58720544e+02,
       4.54880415e+02, 4.54880415e+02, 4.54880415e+02, 4.54880415e+02,
       4.52586923e+02, 4.52586923e+02, 4.52586923e+02, 4.52586923e+02,
       4.51430708e+02, 4.51430708e+02, 4.51430708e+02, 4.51430708e+02,
       4.51009436e+02, 4.51009436e+02, 4.51009436e+02, 4.51009436e+02,
       4.50953318e+02, 4.50953318e+02, 4.50953318e+02, 4.50953318e+02,
       4.51185590e+02, 4.51185590e+02, 4.51185590e+02, 4.51185590e+02,
       4.51834808e+02, 4.51834808e+02, 4.51834808e+02, 4.51834808e+02,
       4.52955367e+02, 4.52955367e+02, 4.52955367e+02, 4.52955367e+02,
       4.54157312e+02, 4.54157312e+02, 4.54157312e+02, 4.54157312e+02,
       4.55095241e+02, 4.55095241e+02, 4.55095241e+02, 4.55095241e+02,
       4.55772371e+02, 4.55772371e+02, 4.55772371e+02, 4.55772371e+02,
       4.56264237e+02, 4.56264237e+02, 4.56264237e+02, 4.56264237e+02,
       4.56633348e+02, 4.56633348e+02, 4.56633348e+02, 4.56633348e+02,
       4.56929937e+02, 4.56929937e+02, 4.56929937e+02, 4.56929937e+02,
       4.57171489e+02, 4.57171489e+02, 4.57171489e+02, 4.57171489e+02,
       4.57363668e+02, 4.57363668e+02, 4.57363668e+02, 4.57363668e+02,
       4.57531378e+02, 4.57531378e+02, 4.57531378e+02, 4.57531378e+02,
       4.57709652e+02, 4.57709652e+02, 4.57709652e+02, 4.57709652e+02,
       4.57932536e+02, 4.57932536e+02, 4.57932536e+02, 4.57932536e+02,
       4.58295200e+02, 4.58295200e+02, 4.58295200e+02, 4.58295200e+02,
       4.58599054e+02, 4.58599054e+02, 4.58599054e+02, 4.58599054e+02,
       4.57718786e+02, 4.57718786e+02, 4.57718786e+02, 4.57718786e+02,
       4.48917912e+02, 4.48917912e+02, 4.48917912e+02, 4.48917912e+02,
       4.03800359e+02, 4.03800359e+02, 4.03800359e+02, 4.03800359e+02,
       2.58647864e+02, 2.58647864e+02, 2.58647864e+02, 2.58647864e+02,
       5.37325288e+01, 5.37325288e+01, 5.37325288e+01, 5.37325288e+01,
       1.31811609e+00, 1.31811609e+00, 1.31811609e+00, 1.31811609e+00,
       1.12593786e-02, 1.12593786e-02, 1.12593786e-02, 1.12593786e-02,
       1.00001109e-02, 1.00001109e-02, 1.00001109e-02, 1.00001109e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99116492, 0.99116492, 0.99116492, 0.99116492, 0.98271154,
       0.98271154, 0.98271154, 0.98271154, 0.97383884, 0.97383884,
       0.97383884, 0.97383884, 0.96101554, 0.96101554, 0.96101554,
       0.96101554, 0.9454558 , 0.9454558 , 0.9454558 , 0.9454558 ,
       0.92712036, 0.92712036, 0.92712036, 0.92712036, 0.90667211,
       0.90667211, 0.90667211, 0.90667211, 0.88466881, 0.88466881,
       0.88466881, 0.88466881, 0.86164034, 0.86164034, 0.86164034,
       0.86164034, 0.83800032, 0.83800032, 0.83800032, 0.83800032,
       0.81424415, 0.81424415, 0.81424415, 0.81424415, 0.79085525,
       0.79085525, 0.79085525, 0.79085525, 0.76804363, 0.76804363,
       0.76804363, 0.76804363, 0.74583711, 0.74583711, 0.74583711,
       0.74583711, 0.72421952, 0.72421952, 0.72421952, 0.72421952,
       0.70319112, 0.70319112, 0.70319112, 0.70319112, 0.68277247,
       0.68277247, 0.68277247, 0.68277247, 0.66301832, 0.66301832,
       0.66301832, 0.66301832, 0.64404414, 0.64404414, 0.64404414,
       0.64404414, 0.62606083, 0.62606083, 0.62606083, 0.62606083,
       0.60941523, 0.60941523, 0.60941523, 0.60941523, 0.59461799,
       0.59461799, 0.59461799, 0.59461799, 0.5823152 , 0.5823152 ,
       0.5823152 , 0.5823152 , 0.57313802, 0.57313802, 0.57313802,
       0.57313802, 0.56738503, 0.56738503, 0.56738503, 0.56738503,
       0.56465216, 0.56465216, 0.56465216, 0.56465216, 0.56382693,
       0.56382693, 0.56382693, 0.56382693, 0.56387318, 0.56387318,
       0.56387318, 0.56387318, 0.5652006 , 0.5652006 , 0.5652006 ,
       0.5652006 , 0.56626977, 0.56626977, 0.56626977, 0.56626977,
       0.56702881, 0.56702881, 0.56702881, 0.56702881, 0.56788545,
       0.56788545, 0.56788545, 0.56788545, 0.56880776, 0.56880776,
       0.56880776, 0.56880776, 0.56941945, 0.56941945, 0.56941945,
       0.56941945, 0.56962086, 0.56962086, 0.56962086, 0.56962086,
       0.56956418, 0.56956418, 0.56956418, 0.56956418, 0.56936331,
       0.56936331, 0.56936331, 0.56936331, 0.56934572, 0.56934572,
       0.56934572, 0.56934572, 0.57000584, 0.57000584, 0.57000584,
       0.57000584, 0.5729765 , 0.5729765 , 0.5729765 , 0.5729765 ,
       0.58176493, 0.58176493, 0.58176493, 0.58176493, 0.60341244,
       0.60341244, 0.60341244, 0.60341244, 0.65159534, 0.65159534,
       0.65159534, 0.65159534, 0.75225793, 0.75225793, 0.75225793,
       0.75225793, 0.95396517, 0.95396517, 0.95396517, 0.95396517,
       1.34573563, 1.34573563, 1.34573563, 1.34573563, 2.05647412,
       2.05647412, 2.05647412, 2.05647412, 3.13720518, 3.13720518,
       3.13720518, 3.13720518, 4.01618199, 4.01618199, 4.01618199,
       4.01618199, 4.2713159 , 4.2713159 , 4.2713159 , 4.2713159 ,
       3.78406763, 3.78406763, 3.78406763, 3.78406763, 1.92016659,
       1.92016659, 1.92016659, 1.92016659, 1.058216  , 1.058216  ,
       1.058216  , 1.058216  , 1.00081398, 1.00081398, 1.00081398,
       1.00081398, 1.00000178, 1.00000178, 1.00000178, 1.00000178,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.31199970e-01, 3.31199970e-01, 3.31199970e-01, 3.31199970e-01,
       6.51382280e-01, 6.51382280e-01, 6.51382280e-01, 6.51382280e-01,
       9.88854278e-01, 9.88854278e-01, 9.88854278e-01, 9.88854278e-01,
       1.48150489e+00, 1.48150489e+00, 1.48150489e+00, 1.48150489e+00,
       2.08633147e+00, 2.08633147e+00, 2.08633147e+00, 2.08633147e+00,
       2.80957124e+00, 2.80957124e+00, 2.80957124e+00, 2.80957124e+00,
       3.62985549e+00, 3.62985549e+00, 3.62985549e+00, 3.62985549e+00,
       4.52930744e+00, 4.52930744e+00, 4.52930744e+00, 4.52930744e+00,
       5.49031544e+00, 5.49031544e+00, 5.49031544e+00, 5.49031544e+00,
       6.50069839e+00, 6.50069839e+00, 6.50069839e+00, 6.50069839e+00,
       7.53409154e+00, 7.53409154e+00, 7.53409154e+00, 7.53409154e+00,
       8.57574859e+00, 8.57574859e+00, 8.57574859e+00, 8.57574859e+00,
       9.61670434e+00, 9.61670434e+00, 9.61670434e+00, 9.61670434e+00,
       1.06548968e+01, 1.06548968e+01, 1.06548968e+01, 1.06548968e+01,
       1.16895560e+01, 1.16895560e+01, 1.16895560e+01, 1.16895560e+01,
       1.27199525e+01, 1.27199525e+01, 1.27199525e+01, 1.27199525e+01,
       1.37443488e+01, 1.37443488e+01, 1.37443488e+01, 1.37443488e+01,
       1.47589251e+01, 1.47589251e+01, 1.47589251e+01, 1.47589251e+01,
       1.57563221e+01, 1.57563221e+01, 1.57563221e+01, 1.57563221e+01,
       1.67233146e+01, 1.67233146e+01, 1.67233146e+01, 1.67233146e+01,
       1.76379476e+01, 1.76379476e+01, 1.76379476e+01, 1.76379476e+01,
       1.84673647e+01, 1.84673647e+01, 1.84673647e+01, 1.84673647e+01,
       1.91692758e+01, 1.91692758e+01, 1.91692758e+01, 1.91692758e+01,
       1.97016293e+01, 1.97016293e+01, 1.97016293e+01, 1.97016293e+01,
       2.00421597e+01, 2.00421597e+01, 2.00421597e+01, 2.00421597e+01,
       2.02074474e+01, 2.02074474e+01, 2.02074474e+01, 2.02074474e+01,
       2.02533362e+01, 2.02533362e+01, 2.02533362e+01, 2.02533362e+01,
       2.02422335e+01, 2.02422335e+01, 2.02422335e+01, 2.02422335e+01,
       2.01551609e+01, 2.01551609e+01, 2.01551609e+01, 2.01551609e+01,
       2.00814099e+01, 2.00814099e+01, 2.00814099e+01, 2.00814099e+01,
       2.00377810e+01, 2.00377810e+01, 2.00377810e+01, 2.00377810e+01,
       2.00059391e+01, 2.00059391e+01, 2.00059391e+01, 2.00059391e+01,
       1.99778740e+01, 1.99778740e+01, 1.99778740e+01, 1.99778740e+01,
       1.99509217e+01, 1.99509217e+01, 1.99509217e+01, 1.99509217e+01,
       1.99248183e+01, 1.99248183e+01, 1.99248183e+01, 1.99248183e+01,
       1.99001676e+01, 1.99001676e+01, 1.99001676e+01, 1.99001676e+01,
       1.98776007e+01, 1.98776007e+01, 1.98776007e+01, 1.98776007e+01,
       1.98572942e+01, 1.98572942e+01, 1.98572942e+01, 1.98572942e+01,
       1.98397324e+01, 1.98397324e+01, 1.98397324e+01, 1.98397324e+01,
       1.98254040e+01, 1.98254040e+01, 1.98254040e+01, 1.98254040e+01,
       1.98131310e+01, 1.98131310e+01, 1.98131310e+01, 1.98131310e+01,
       1.98012050e+01, 1.98012050e+01, 1.98012050e+01, 1.98012050e+01,
       1.97898387e+01, 1.97898387e+01, 1.97898387e+01, 1.97898387e+01,
       1.97795675e+01, 1.97795675e+01, 1.97795675e+01, 1.97795675e+01,
       1.97699816e+01, 1.97699816e+01, 1.97699816e+01, 1.97699816e+01,
       1.97635691e+01, 1.97635691e+01, 1.97635691e+01, 1.97635691e+01,
       1.97536393e+01, 1.97536393e+01, 1.97536393e+01, 1.97536393e+01,
       1.97149813e+01, 1.97149813e+01, 1.97149813e+01, 1.97149813e+01,
       1.95399511e+01, 1.95399511e+01, 1.95399511e+01, 1.95399511e+01,
       1.87505825e+01, 1.87505825e+01, 1.87505825e+01, 1.87505825e+01,
       1.56266522e+01, 1.56266522e+01, 1.56266522e+01, 1.56266522e+01,
       6.97439322e+00, 6.97439322e+00, 6.97439322e+00, 6.97439322e+00,
       3.92821064e-01, 3.92821064e-01, 3.92821064e-01, 3.92821064e-01,
       1.89489077e-03, 1.89489077e-03, 1.89489077e-03, 1.89489077e-03,
       6.66095396e-07, 6.66095396e-07, 6.66095396e-07, 6.66095396e-07,
       9.40368073e-11, 9.40368073e-11, 9.40368073e-11, 9.40368073e-11,
       1.38270964e-14, 1.38270964e-14, 1.38270964e-14, 1.38270964e-14,
       2.07028270e-18, 2.07028270e-18, 2.07028270e-18, 2.07028270e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87667905e+02, 9.87667905e+02, 9.87667905e+02, 9.87667905e+02,
       9.75896749e+02, 9.75896749e+02, 9.75896749e+02, 9.75896749e+02,
       9.63596793e+02, 9.63596793e+02, 9.63596793e+02, 9.63596793e+02,
       9.45903496e+02, 9.45903496e+02, 9.45903496e+02, 9.45903496e+02,
       9.24560147e+02, 9.24560147e+02, 9.24560147e+02, 9.24560147e+02,
       8.99586589e+02, 8.99586589e+02, 8.99586589e+02, 8.99586589e+02,
       8.71962692e+02, 8.71962692e+02, 8.71962692e+02, 8.71962692e+02,
       8.42509302e+02, 8.42509302e+02, 8.42509302e+02, 8.42509302e+02,
       8.11982832e+02, 8.11982832e+02, 8.11982832e+02, 8.11982832e+02,
       7.80909598e+02, 7.80909598e+02, 7.80909598e+02, 7.80909598e+02,
       7.50021347e+02, 7.50021347e+02, 7.50021347e+02, 7.50021347e+02,
       7.20044660e+02, 7.20044660e+02, 7.20044660e+02, 7.20044660e+02,
       6.91139600e+02, 6.91139600e+02, 6.91139600e+02, 6.91139600e+02,
       6.63330665e+02, 6.63330665e+02, 6.63330665e+02, 6.63330665e+02,
       6.36575468e+02, 6.36575468e+02, 6.36575468e+02, 6.36575468e+02,
       6.10854195e+02, 6.10854195e+02, 6.10854195e+02, 6.10854195e+02,
       5.86171830e+02, 5.86171830e+02, 5.86171830e+02, 5.86171830e+02,
       5.62573606e+02, 5.62573606e+02, 5.62573606e+02, 5.62573606e+02,
       5.40173609e+02, 5.40173609e+02, 5.40173609e+02, 5.40173609e+02,
       5.19191018e+02, 5.19191018e+02, 5.19191018e+02, 5.19191018e+02,
       4.99991749e+02, 4.99991749e+02, 4.99991749e+02, 4.99991749e+02,
       4.83112346e+02, 4.83112346e+02, 4.83112346e+02, 4.83112346e+02,
       4.69214163e+02, 4.69214163e+02, 4.69214163e+02, 4.69214163e+02,
       4.58903184e+02, 4.58903184e+02, 4.58903184e+02, 4.58903184e+02,
       4.52409336e+02, 4.52409336e+02, 4.52409336e+02, 4.52409336e+02,
       4.49287031e+02, 4.49287031e+02, 4.49287031e+02, 4.49287031e+02,
       4.48422944e+02, 4.48422944e+02, 4.48422944e+02, 4.48422944e+02,
       4.48631188e+02, 4.48631188e+02, 4.48631188e+02, 4.48631188e+02,
       4.50271228e+02, 4.50271228e+02, 4.50271228e+02, 4.50271228e+02,
       4.51662913e+02, 4.51662913e+02, 4.51662913e+02, 4.51662913e+02,
       4.52490638e+02, 4.52490638e+02, 4.52490638e+02, 4.52490638e+02,
       4.53096587e+02, 4.53096587e+02, 4.53096587e+02, 4.53096587e+02,
       4.53627004e+02, 4.53627004e+02, 4.53627004e+02, 4.53627004e+02,
       4.54138029e+02, 4.54138029e+02, 4.54138029e+02, 4.54138029e+02,
       4.54640997e+02, 4.54640997e+02, 4.54640997e+02, 4.54640997e+02,
       4.55121718e+02, 4.55121718e+02, 4.55121718e+02, 4.55121718e+02,
       4.55558744e+02, 4.55558744e+02, 4.55558744e+02, 4.55558744e+02,
       4.55935595e+02, 4.55935595e+02, 4.55935595e+02, 4.55935595e+02,
       4.56261121e+02, 4.56261121e+02, 4.56261121e+02, 4.56261121e+02,
       4.56558739e+02, 4.56558739e+02, 4.56558739e+02, 4.56558739e+02,
       4.56826197e+02, 4.56826197e+02, 4.56826197e+02, 4.56826197e+02,
       4.57052328e+02, 4.57052328e+02, 4.57052328e+02, 4.57052328e+02,
       4.57257152e+02, 4.57257152e+02, 4.57257152e+02, 4.57257152e+02,
       4.57467024e+02, 4.57467024e+02, 4.57467024e+02, 4.57467024e+02,
       4.57704540e+02, 4.57704540e+02, 4.57704540e+02, 4.57704540e+02,
       4.58066570e+02, 4.58066570e+02, 4.58066570e+02, 4.58066570e+02,
       4.58479576e+02, 4.58479576e+02, 4.58479576e+02, 4.58479576e+02,
       4.57718684e+02, 4.57718684e+02, 4.57718684e+02, 4.57718684e+02,
       4.49845047e+02, 4.49845047e+02, 4.49845047e+02, 4.49845047e+02,
       4.09389299e+02, 4.09389299e+02, 4.09389299e+02, 4.09389299e+02,
       2.68194998e+02, 2.68194998e+02, 2.68194998e+02, 2.68194998e+02,
       5.60520652e+01, 5.60520652e+01, 5.60520652e+01, 5.60520652e+01,
       1.14557313e+00, 1.14557313e+00, 1.14557313e+00, 1.14557313e+00,
       1.08687798e-02, 1.08687798e-02, 1.08687798e-02, 1.08687798e-02,
       1.00000791e-02, 1.00000791e-02, 1.00000791e-02, 1.00000791e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99854666, 0.99854666, 0.99854666, 0.99854666,
       0.96845715, 0.96845715, 0.96845715, 0.96845715, 0.81981135,
       0.81981135, 0.81981135, 0.81981135, 1.13644411, 1.13644411,
       1.13644411, 1.13644411, 1.07459565, 1.07459565, 1.07459565,
       1.07459565, 1.00214509, 1.00214509, 1.00214509, 1.00214509,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.44580810e-02, 5.44580810e-02, 5.44580810e-02, 5.44580810e-02,
       1.19786475e+00, 1.19786475e+00, 1.19786475e+00, 1.19786475e+00,
       7.52224860e+00, 7.52224860e+00, 7.52224860e+00, 7.52224860e+00,
       9.36380750e+00, 9.36380750e+00, 9.36380750e+00, 9.36380750e+00,
       1.09132154e+00, 1.09132154e+00, 1.09132154e+00, 1.09132154e+00,
       4.34109741e-03, 4.34109741e-03, 4.34109741e-03, 4.34109741e-03,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.97973078e+02, 9.97973078e+02, 9.97973078e+02, 9.97973078e+02,
       9.57196315e+02, 9.57196315e+02, 9.57196315e+02, 9.57196315e+02,
       7.89728589e+02, 7.89728589e+02, 7.89728589e+02, 7.89728589e+02,
       2.18172604e+02, 2.18172604e+02, 2.18172604e+02, 2.18172604e+02,
       7.20466733e+00, 7.20466733e+00, 7.20466733e+00, 7.20466733e+00,
       1.36969674e-02, 1.36969674e-02, 1.36969674e-02, 1.36969674e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999529,
       0.99999529, 0.99999529, 0.99999529, 0.99981164, 0.99981164,
       0.99981164, 0.99981164, 0.99702376, 0.99702376, 0.99702376,
       0.99702376, 0.97590016, 0.97590016, 0.97590016, 0.97590016,
       0.88930972, 0.88930972, 0.88930972, 0.88930972, 0.71365932,
       0.71365932, 0.71365932, 0.71365932, 1.0710902 , 1.0710902 ,
       1.0710902 , 1.0710902 , 1.31137332, 1.31137332, 1.31137332,
       1.31137332, 1.04072233, 1.04072233, 1.04072233, 1.04072233,
       1.00111398, 1.00111398, 1.00111398, 1.00111398, 1.00000029,
       1.00000029, 1.00000029, 1.00000029, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.76253247e-04, 1.76253247e-04, 1.76253247e-04, 1.76253247e-04,
       7.04865623e-03, 7.04865623e-03, 7.04865623e-03, 7.04865623e-03,
       1.11518467e-01, 1.11518467e-01, 1.11518467e-01, 1.11518467e-01,
       9.09502205e-01, 9.09502205e-01, 9.09502205e-01, 9.09502205e-01,
       4.30216737e+00, 4.30216737e+00, 4.30216737e+00, 4.30216737e+00,
       1.18379965e+01, 1.18379965e+01, 1.18379965e+01, 1.18379965e+01,
       1.62384269e+01, 1.62384269e+01, 1.62384269e+01, 1.62384269e+01,
       5.70889156e+00, 5.70889156e+00, 5.70889156e+00, 5.70889156e+00,
       2.30200189e-01, 2.30200189e-01, 2.30200189e-01, 2.30200189e-01,
       4.83684047e-04, 4.83684047e-04, 4.83684047e-04, 4.83684047e-04,
       3.42098651e-08, 3.42098651e-08, 3.42098651e-08, 3.42098651e-08,
       1.01319811e-12, 1.01319811e-12, 1.01319811e-12, 1.01319811e-12,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99993405e+02, 9.99993405e+02, 9.99993405e+02, 9.99993405e+02,
       9.99736354e+02, 9.99736354e+02, 9.99736354e+02, 9.99736354e+02,
       9.95842977e+02, 9.95842977e+02, 9.95842977e+02, 9.95842977e+02,
       9.66708286e+02, 9.66708286e+02, 9.66708286e+02, 9.66708286e+02,
       8.52052998e+02, 8.52052998e+02, 8.52052998e+02, 8.52052998e+02,
       6.72236296e+02, 6.72236296e+02, 6.72236296e+02, 6.72236296e+02,
       3.62410250e+02, 3.62410250e+02, 3.62410250e+02, 3.62410250e+02,
       6.19189240e+01, 6.19189240e+01, 6.19189240e+01, 6.19189240e+01,
       6.26948951e-01, 6.26948951e-01, 6.26948951e-01, 6.26948951e-01,
       1.01072359e-02, 1.01072359e-02, 1.01072359e-02, 1.01072359e-02,
       1.00000040e-02, 1.00000040e-02, 1.00000040e-02, 1.00000040e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999888, 0.99999888, 0.99999888, 0.99999888,
       0.99997445, 0.99997445, 0.99997445, 0.99997445, 0.99964871,
       0.99964871, 0.99964871, 0.99964871, 0.99689733, 0.99689733,
       0.99689733, 0.99689733, 0.98193702, 0.98193702, 0.98193702,
       0.98193702, 0.9295722 , 0.9295722 , 0.9295722 , 0.9295722 ,
       0.81296623, 0.81296623, 0.81296623, 0.81296623, 0.63611418,
       0.63611418, 0.63611418, 0.63611418, 0.88414578, 0.88414578,
       0.88414578, 0.88414578, 1.57593929, 1.57593929, 1.57593929,
       1.57593929, 1.1715463 , 1.1715463 , 1.1715463 , 1.1715463 ,
       1.01116974, 1.01116974, 1.01116974, 1.01116974, 1.0000899 ,
       1.0000899 , 1.0000899 , 1.0000899 , 1.00000001, 1.00000001,
       1.00000001, 1.00000001, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       7.97153187e-09, 7.97153187e-09, 7.97153187e-09, 7.97153187e-09,
       9.70027498e-07, 9.70027498e-07, 9.70027498e-07, 9.70027498e-07,
       4.20269589e-05, 4.20269589e-05, 4.20269589e-05, 4.20269589e-05,
       9.55942471e-04, 9.55942471e-04, 9.55942471e-04, 9.55942471e-04,
       1.31460868e-02, 1.31460868e-02, 1.31460868e-02, 1.31460868e-02,
       1.16219529e-01, 1.16219529e-01, 1.16219529e-01, 1.16219529e-01,
       6.79969081e-01, 6.79969081e-01, 6.79969081e-01, 6.79969081e-01,
       2.70215530e+00, 2.70215530e+00, 2.70215530e+00, 2.70215530e+00,
       7.57490575e+00, 7.57490575e+00, 7.57490575e+00, 7.57490575e+00,
       1.47743231e+01, 1.47743231e+01, 1.47743231e+01, 1.47743231e+01,
       2.03840035e+01, 2.03840035e+01, 2.03840035e+01, 2.03840035e+01,
       1.19115601e+01, 1.19115601e+01, 1.19115601e+01, 1.19115601e+01,
       1.63710471e+00, 1.63710471e+00, 1.63710471e+00, 1.63710471e+00,
       2.10715183e-02, 2.10715183e-02, 2.10715183e-02, 2.10715183e-02,
       1.32818490e-05, 1.32818490e-05, 1.32818490e-05, 1.32818490e-05,
       1.21621831e-09, 1.21621831e-09, 1.21621831e-09, 1.21621831e-09,
       8.57861505e-14, 8.57861505e-14, 8.57861505e-14, 8.57861505e-14,
       4.41228789e-18, 4.41228789e-18, 4.41228789e-18, 4.41228789e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
       9.99998427e+02, 9.99998427e+02, 9.99998427e+02, 9.99998427e+02,
       9.99964233e+02, 9.99964233e+02, 9.99964233e+02, 9.99964233e+02,
       9.99508326e+02, 9.99508326e+02, 9.99508326e+02, 9.99508326e+02,
       9.95664278e+02, 9.95664278e+02, 9.95664278e+02, 9.95664278e+02,
       9.74918203e+02, 9.74918203e+02, 9.74918203e+02, 9.74918203e+02,
       9.03858041e+02, 9.03858041e+02, 9.03858041e+02, 9.03858041e+02,
       7.52615431e+02, 7.52615431e+02, 7.52615431e+02, 7.52615431e+02,
       5.88404204e+02, 5.88404204e+02, 5.88404204e+02, 5.88404204e+02,
       4.31076258e+02, 4.31076258e+02, 4.31076258e+02, 4.31076258e+02,
       1.87860435e+02, 1.87860435e+02, 1.87860435e+02, 1.87860435e+02,
       8.76910821e+00, 8.76910821e+00, 8.76910821e+00, 8.76910821e+00,
       2.98951467e-02, 2.98951467e-02, 2.98951467e-02, 2.98951467e-02,
       1.00015908e-02, 1.00015908e-02, 1.00015908e-02, 1.00015908e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999979, 0.99999979,
       0.99999979, 0.99999979, 0.9999963 , 0.9999963 , 0.9999963 ,
       0.9999963 , 0.99995364, 0.99995364, 0.99995364, 0.99995364,
       0.99957767, 0.99957767, 0.99957767, 0.99957767, 0.99718309,
       0.99718309, 0.99718309, 0.99718309, 0.98626394, 0.98626394,
       0.98626394, 0.98626394, 0.95106797, 0.95106797, 0.95106797,
       0.95106797, 0.87123171, 0.87123171, 0.87123171, 0.87123171,
       0.74547768, 0.74547768, 0.74547768, 0.74547768, 0.58374479,
       0.58374479, 0.58374479, 0.58374479, 0.73207392, 0.73207392,
       0.73207392, 0.73207392, 1.60503247, 1.60503247, 1.60503247,
       1.60503247, 1.47308433, 1.47308433, 1.47308433, 1.47308433,
       1.05348836, 1.05348836, 1.05348836, 1.05348836, 1.00182288,
       1.00182288, 1.00182288, 1.00182288, 1.00000147, 1.00000147,
       1.00000147, 1.00000147, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       6.26870362e-13, 6.26870362e-13, 6.26870362e-13, 6.26870362e-13,
       1.08486278e-10, 1.08486278e-10, 1.08486278e-10, 1.08486278e-10,
       7.72018265e-09, 7.72018265e-09, 7.72018265e-09, 7.72018265e-09,
       3.08421177e-07, 3.08421177e-07, 3.08421177e-07, 3.08421177e-07,
       7.88931508e-06, 7.88931508e-06, 7.88931508e-06, 7.88931508e-06,
       1.38505209e-04, 1.38505209e-04, 1.38505209e-04, 1.38505209e-04,
       1.73457409e-03, 1.73457409e-03, 1.73457409e-03, 1.73457409e-03,
       1.58044887e-02, 1.58044887e-02, 1.58044887e-02, 1.58044887e-02,
       1.05496410e-01, 1.05496410e-01, 1.05496410e-01, 1.05496410e-01,
       5.16306177e-01, 5.16306177e-01, 5.16306177e-01, 5.16306177e-01,
       1.86327287e+00, 1.86327287e+00, 1.86327287e+00, 1.86327287e+00,
       5.07718607e+00, 5.07718607e+00, 5.07718607e+00, 5.07718607e+00,
       1.06862908e+01, 1.06862908e+01, 1.06862908e+01, 1.06862908e+01,
       1.67930222e+01, 1.67930222e+01, 1.67930222e+01, 1.67930222e+01,
       2.18771845e+01, 2.18771845e+01, 2.18771845e+01, 2.18771845e+01,
       1.69221015e+01, 1.69221015e+01, 1.69221015e+01, 1.69221015e+01,
       5.93555418e+00, 5.93555418e+00, 5.93555418e+00, 5.93555418e+00,
       2.67386567e-01, 2.67386567e-01, 2.67386567e-01, 2.67386567e-01,
       9.03539515e-04, 9.03539515e-04, 9.03539515e-04, 9.03539515e-04,
       1.74483618e-07, 1.74483618e-07, 1.74483618e-07, 1.74483618e-07,
       2.04118254e-11, 2.04118254e-11, 2.04118254e-11, 2.04118254e-11,
       2.17016642e-15, 2.17016642e-15, 2.17016642e-15, 2.17016642e-15,
       1.97944057e-19, 1.97944057e-19, 1.97944057e-19, 1.97944057e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999705e+02, 9.99999705e+02, 9.99999705e+02, 9.99999705e+02,
       9.99994818e+02, 9.99994818e+02, 9.99994818e+02, 9.99994818e+02,
       9.99935102e+02, 9.99935102e+02, 9.99935102e+02, 9.99935102e+02,
       9.99408895e+02, 9.99408895e+02, 9.99408895e+02, 9.99408895e+02,
       9.96061988e+02, 9.96061988e+02, 9.96061988e+02, 9.96061988e+02,
       9.80877450e+02, 9.80877450e+02, 9.80877450e+02, 9.80877450e+02,
       9.32612348e+02, 9.32612348e+02, 9.32612348e+02, 9.32612348e+02,
       8.26315203e+02, 8.26315203e+02, 8.26315203e+02, 8.26315203e+02,
       6.66605385e+02, 6.66605385e+02, 6.66605385e+02, 6.66605385e+02,
       5.27625315e+02, 5.27625315e+02, 5.27625315e+02, 5.27625315e+02,
       4.48693030e+02, 4.48693030e+02, 4.48693030e+02, 4.48693030e+02,
       3.34282701e+02, 3.34282701e+02, 3.34282701e+02, 3.34282701e+02,
       5.93797144e+01, 5.93797144e+01, 5.93797144e+01, 5.93797144e+01,
       6.98066976e-01, 6.98066976e-01, 6.98066976e-01, 6.98066976e-01,
       1.02408618e-02, 1.02408618e-02, 1.02408618e-02, 1.02408618e-02,
       1.00000206e-02, 1.00000206e-02, 1.00000206e-02, 1.00000206e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999945,
       0.99999945, 0.99999945, 0.99999945, 0.99999352, 0.99999352,
       0.99999352, 0.99999352, 0.99994026, 0.99994026, 0.99994026,
       0.99994026, 0.99956877, 0.99956877, 0.99956877, 0.99956877,
       0.99757146, 0.99757146, 0.99757146, 0.99757146, 0.98940582,
       0.98940582, 0.98940582, 0.98940582, 0.96438863, 0.96438863,
       0.96438863, 0.96438863, 0.90735626, 0.90735626, 0.90735626,
       0.90735626, 0.80924072, 0.80924072, 0.80924072, 0.80924072,
       0.69259558, 0.69259558, 0.69259558, 0.69259558, 0.55553296,
       0.55553296, 0.55553296, 0.55553296, 0.63553693, 0.63553693,
       0.63553693, 0.63553693, 1.41397872, 1.41397872, 1.41397872,
       1.41397872, 1.81820124, 1.81820124, 1.81820124, 1.81820124,
       1.20387024, 1.20387024, 1.20387024, 1.20387024, 1.01269879,
       1.01269879, 1.01269879, 1.01269879, 1.00012068, 1.00012068,
       1.00012068, 1.00012068, 1.00000002, 1.00000002, 1.00000002,
       1.00000002, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.25264676e-14, 1.25264676e-14, 1.25264676e-14, 1.25264676e-14,
       1.20223771e-12, 1.20223771e-12, 1.20223771e-12, 1.20223771e-12,
       6.76403932e-11, 6.76403932e-11, 6.76403932e-11, 6.76403932e-11,
       2.53837542e-09, 2.53837542e-09, 2.53837542e-09, 2.53837542e-09,
       6.79851771e-08, 6.79851771e-08, 6.79851771e-08, 6.79851771e-08,
       1.35400957e-06, 1.35400957e-06, 1.35400957e-06, 1.35400957e-06,
       2.05807406e-05, 2.05807406e-05, 2.05807406e-05, 2.05807406e-05,
       2.42573789e-04, 2.42573789e-04, 2.42573789e-04, 2.42573789e-04,
       2.23546366e-03, 2.23546366e-03, 2.23546366e-03, 2.23546366e-03,
       1.61374184e-02, 1.61374184e-02, 1.61374184e-02, 1.61374184e-02,
       9.09392120e-02, 9.09392120e-02, 9.09392120e-02, 9.09392120e-02,
       3.97807519e-01, 3.97807519e-01, 3.97807519e-01, 3.97807519e-01,
       1.34962483e+00, 1.34962483e+00, 1.34962483e+00, 1.34962483e+00,
       3.59635188e+00, 3.59635188e+00, 3.59635188e+00, 3.59635188e+00,
       7.76598011e+00, 7.76598011e+00, 7.76598011e+00, 7.76598011e+00,
       1.32165654e+01, 1.32165654e+01, 1.32165654e+01, 1.32165654e+01,
       1.80416341e+01, 1.80416341e+01, 1.80416341e+01, 1.80416341e+01,
       2.21202361e+01, 2.21202361e+01, 2.21202361e+01, 2.21202361e+01,
       1.94936742e+01, 1.94936742e+01, 1.94936742e+01, 1.94936742e+01,
       1.19370184e+01, 1.19370184e+01, 1.19370184e+01, 1.19370184e+01,
       1.76105690e+00, 1.76105690e+00, 1.76105690e+00, 1.76105690e+00,
       2.41795528e-02, 2.41795528e-02, 2.41795528e-02, 2.41795528e-02,
       1.84851625e-05, 1.84851625e-05, 1.84851625e-05, 1.84851625e-05,
       2.29350661e-09, 2.29350661e-09, 2.29350661e-09, 2.29350661e-09,
       2.81251593e-13, 2.81251593e-13, 2.81251593e-13, 2.81251593e-13,
       3.33754952e-17, 3.33754952e-17, 3.33754952e-17, 3.33754952e-17,
       3.64817469e-21, 3.64817469e-21, 3.64817469e-21, 3.64817469e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
       9.99999949e+02, 9.99999949e+02, 9.99999949e+02, 9.99999949e+02,
       9.99999230e+02, 9.99999230e+02, 9.99999230e+02, 9.99999230e+02,
       9.99990924e+02, 9.99990924e+02, 9.99990924e+02, 9.99990924e+02,
       9.99916362e+02, 9.99916362e+02, 9.99916362e+02, 9.99916362e+02,
       9.99396422e+02, 9.99396422e+02, 9.99396422e+02, 9.99396422e+02,
       9.96603842e+02, 9.96603842e+02, 9.96603842e+02, 9.96603842e+02,
       9.85228286e+02, 9.85228286e+02, 9.85228286e+02, 9.85228286e+02,
       9.50716061e+02, 9.50716061e+02, 9.50716061e+02, 9.50716061e+02,
       8.73656108e+02, 8.73656108e+02, 8.73656108e+02, 8.73656108e+02,
       7.45930207e+02, 7.45930207e+02, 7.45930207e+02, 7.45930207e+02,
       5.98241504e+02, 5.98241504e+02, 5.98241504e+02, 5.98241504e+02,
       4.88987461e+02, 4.88987461e+02, 4.88987461e+02, 4.88987461e+02,
       4.47945739e+02, 4.47945739e+02, 4.47945739e+02, 4.47945739e+02,
       4.21683465e+02, 4.21683465e+02, 4.21683465e+02, 4.21683465e+02,
       1.87467920e+02, 1.87467920e+02, 1.87467920e+02, 1.87467920e+02,
       9.17847574e+00, 9.17847574e+00, 9.17847574e+00, 9.17847574e+00,
       3.36232559e-02, 3.36232559e-02, 3.36232559e-02, 3.36232559e-02,
       1.00022223e-02, 1.00022223e-02, 1.00022223e-02, 1.00022223e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
       0.99999906, 0.99999906, 0.99999906, 0.99999906, 0.9999913 ,
       0.9999913 , 0.9999913 , 0.9999913 , 0.99993411, 0.99993411,
       0.99993411, 0.99993411, 0.99959236, 0.99959236, 0.99959236,
       0.99959236, 0.99795381, 0.99795381, 0.99795381, 0.99795381,
       0.99173747, 0.99173747, 0.99173747, 0.99173747, 0.97334866,
       0.97334866, 0.97334866, 0.97334866, 0.93132225, 0.93132225,
       0.93132225, 0.93132225, 0.85670103, 0.85670103, 0.85670103,
       0.85670103, 0.75179519, 0.75179519, 0.75179519, 0.75179519,
       0.65703686, 0.65703686, 0.65703686, 0.65703686, 0.54101531,
       0.54101531, 0.54101531, 0.54101531, 0.58205108, 0.58205108,
       0.58205108, 0.58205108, 1.1130807 , 1.1130807 , 1.1130807 ,
       1.1130807 , 1.96862265, 1.96862265, 1.96862265, 1.96862265,
       1.57590593, 1.57590593, 1.57590593, 1.57590593, 1.05786987,
       1.05786987, 1.05786987, 1.05786987, 1.00204055, 1.00204055,
       1.00204055, 1.00204055, 1.0000019 , 1.0000019 , 1.0000019 ,
       1.0000019 , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.32029549e-14, 1.32029549e-14, 1.32029549e-14, 1.32029549e-14,
       6.26759693e-13, 6.26759693e-13, 6.26759693e-13, 6.26759693e-13,
       2.24647978e-11, 2.24647978e-11, 2.24647978e-11, 2.24647978e-11,
       6.13853404e-10, 6.13853404e-10, 6.13853404e-10, 6.13853404e-10,
       1.31518549e-08, 1.31518549e-08, 1.31518549e-08, 1.31518549e-08,
       2.25105226e-07, 2.25105226e-07, 2.25105226e-07, 2.25105226e-07,
       3.11704412e-06, 3.11704412e-06, 3.11704412e-06, 3.11704412e-06,
       3.51988240e-05, 3.51988240e-05, 3.51988240e-05, 3.51988240e-05,
       3.25473435e-04, 3.25473435e-04, 3.25473435e-04, 3.25473435e-04,
       2.46554838e-03, 2.46554838e-03, 2.46554838e-03, 2.46554838e-03,
       1.52545971e-02, 1.52545971e-02, 1.52545971e-02, 1.52545971e-02,
       7.66123068e-02, 7.66123068e-02, 7.66123068e-02, 7.66123068e-02,
       3.10021140e-01, 3.10021140e-01, 3.10021140e-01, 3.10021140e-01,
       1.00682526e+00, 1.00682526e+00, 1.00682526e+00, 1.00682526e+00,
       2.63965332e+00, 2.63965332e+00, 2.63965332e+00, 2.63965332e+00,
       5.70034900e+00, 5.70034900e+00, 5.70034900e+00, 5.70034900e+00,
       1.04061053e+01, 1.04061053e+01, 1.04061053e+01, 1.04061053e+01,
       1.52105883e+01, 1.52105883e+01, 1.52105883e+01, 1.52105883e+01,
       1.89069479e+01, 1.89069479e+01, 1.89069479e+01, 1.89069479e+01,
       2.15955068e+01, 2.15955068e+01, 2.15955068e+01, 2.15955068e+01,
       2.04770440e+01, 2.04770440e+01, 2.04770440e+01, 2.04770440e+01,
       1.67010242e+01, 1.67010242e+01, 1.67010242e+01, 1.67010242e+01,
       6.26776546e+00, 6.26776546e+00, 6.26776546e+00, 6.26776546e+00,
       2.93122578e-01, 2.93122578e-01, 2.93122578e-01, 2.93122578e-01,
       1.07322557e-03, 1.07322557e-03, 1.07322557e-03, 1.07322557e-03,
       2.25735626e-07, 2.25735626e-07, 2.25735626e-07, 2.25735626e-07,
       2.90996976e-11, 2.90996976e-11, 2.90996976e-11, 2.90996976e-11,
       3.74345106e-15, 3.74345106e-15, 3.74345106e-15, 3.74345106e-15,
       4.59216061e-19, 4.59216061e-19, 4.59216061e-19, 4.59216061e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999883e+02, 9.99999883e+02, 9.99999883e+02, 9.99999883e+02,
       9.99998683e+02, 9.99998683e+02, 9.99998683e+02, 9.99998683e+02,
       9.99987822e+02, 9.99987822e+02, 9.99987822e+02, 9.99987822e+02,
       9.99907753e+02, 9.99907753e+02, 9.99907753e+02, 9.99907753e+02,
       9.99429417e+02, 9.99429417e+02, 9.99429417e+02, 9.99429417e+02,
       9.97137849e+02, 9.97137849e+02, 9.97137849e+02, 9.97137849e+02,
       9.88467410e+02, 9.88467410e+02, 9.88467410e+02, 9.88467410e+02,
       9.63001130e+02, 9.63001130e+02, 9.63001130e+02, 9.63001130e+02,
       9.05679035e+02, 9.05679035e+02, 9.05679035e+02, 9.05679035e+02,
       8.06647957e+02, 8.06647957e+02, 8.06647957e+02, 8.06647957e+02,
       6.73299670e+02, 6.73299670e+02, 6.73299670e+02, 6.73299670e+02,
       5.52322864e+02, 5.52322864e+02, 5.52322864e+02, 5.52322864e+02,
       4.63896638e+02, 4.63896638e+02, 4.63896638e+02, 4.63896638e+02,
       4.40267965e+02, 4.40267965e+02, 4.40267965e+02, 4.40267965e+02,
       4.55404885e+02, 4.55404885e+02, 4.55404885e+02, 4.55404885e+02,
       3.30608875e+02, 3.30608875e+02, 3.30608875e+02, 3.30608875e+02,
       6.09057285e+01, 6.09057285e+01, 6.09057285e+01, 6.09057285e+01,
       7.84789333e-01, 7.84789333e-01, 7.84789333e-01, 7.84789333e-01,
       1.03005361e-02, 1.03005361e-02, 1.03005361e-02, 1.03005361e-02,
       1.00000267e-02, 1.00000267e-02, 1.00000267e-02, 1.00000267e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999871, 0.99999871, 0.99999871, 0.99999871,
       0.99998991, 0.99998991, 0.99998991, 0.99998991, 0.99993341,
       0.99993341, 0.99993341, 0.99993341, 0.9996311 , 0.9996311 ,
       0.9996311 , 0.9996311 , 0.99829672, 0.99829672, 0.99829672,
       0.99829672, 0.99350175, 0.99350175, 0.99350175, 0.99350175,
       0.97967166, 0.97967166, 0.97967166, 0.97967166, 0.94797565,
       0.94797565, 0.94797565, 0.94797565, 0.89016937, 0.89016937,
       0.89016937, 0.89016937, 0.80411713, 0.80411713, 0.80411713,
       0.80411713, 0.70435588, 0.70435588, 0.70435588, 0.70435588,
       0.63219176, 0.63219176, 0.63219176, 0.63219176, 0.53878399,
       0.53878399, 0.53878399, 0.53878399, 0.55643947, 0.55643947,
       0.55643947, 0.55643947, 0.8772511 , 0.8772511 , 0.8772511 ,
       0.8772511 , 1.82224154, 1.82224154, 1.82224154, 1.82224154,
       2.01854416, 2.01854416, 2.01854416, 2.01854416, 1.22314586,
       1.22314586, 1.22314586, 1.22314586, 1.01361896, 1.01361896,
       1.01361896, 1.01361896, 1.00014201, 1.00014201, 1.00014201,
       1.00014201, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.66827014e-15, 5.66827014e-15, 5.66827014e-15, 5.66827014e-15,
       2.06506951e-13, 2.06506951e-13, 2.06506951e-13, 2.06506951e-13,
       5.66830764e-12, 5.66830764e-12, 5.66830764e-12, 5.66830764e-12,
       1.27515789e-10, 1.27515789e-10, 1.27515789e-10, 1.27515789e-10,
       2.36717323e-09, 2.36717323e-09, 2.36717323e-09, 2.36717323e-09,
       3.66285384e-08, 3.66285384e-08, 3.66285384e-08, 3.66285384e-08,
       4.75793331e-07, 4.75793331e-07, 4.75793331e-07, 4.75793331e-07,
       5.21185121e-06, 5.21185121e-06, 5.21185121e-06, 5.21185121e-06,
       4.82519858e-05, 4.82519858e-05, 4.82519858e-05, 4.82519858e-05,
       3.77579977e-04, 3.77579977e-04, 3.77579977e-04, 3.77579977e-04,
       2.49179255e-03, 2.49179255e-03, 2.49179255e-03, 2.49179255e-03,
       1.38047063e-02, 1.38047063e-02, 1.38047063e-02, 1.38047063e-02,
       6.37665597e-02, 6.37665597e-02, 6.37665597e-02, 6.37665597e-02,
       2.43683102e-01, 2.43683102e-01, 2.43683102e-01, 2.43683102e-01,
       7.66223944e-01, 7.66223944e-01, 7.66223944e-01, 7.66223944e-01,
       1.98617391e+00, 1.98617391e+00, 1.98617391e+00, 1.98617391e+00,
       4.30205955e+00, 4.30205955e+00, 4.30205955e+00, 4.30205955e+00,
       8.00059653e+00, 8.00059653e+00, 8.00059653e+00, 8.00059653e+00,
       1.25346822e+01, 1.25346822e+01, 1.25346822e+01, 1.25346822e+01,
       1.68111435e+01, 1.68111435e+01, 1.68111435e+01, 1.68111435e+01,
       1.95788515e+01, 1.95788515e+01, 1.95788515e+01, 1.95788515e+01,
       2.10731533e+01, 2.10731533e+01, 2.10731533e+01, 2.10731533e+01,
       2.05578258e+01, 2.05578258e+01, 2.05578258e+01, 2.05578258e+01,
       1.90079024e+01, 1.90079024e+01, 1.90079024e+01, 1.90079024e+01,
       1.21008552e+01, 1.21008552e+01, 1.21008552e+01, 1.21008552e+01,
       1.89958249e+00, 1.89958249e+00, 1.89958249e+00, 1.89958249e+00,
       2.69248743e-02, 2.69248743e-02, 2.69248743e-02, 2.69248743e-02,
       2.23176477e-05, 2.23176477e-05, 2.23176477e-05, 2.23176477e-05,
       2.89290650e-09, 2.89290650e-09, 2.89290650e-09, 2.89290650e-09,
       3.71325919e-13, 3.71325919e-13, 3.71325919e-13, 3.71325919e-13,
       4.73822364e-17, 4.73822364e-17, 4.73822364e-17, 4.73822364e-17,
       4.48577786e-21, 4.48577786e-21, 4.48577786e-21, 4.48577786e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999982e+02, 9.99999982e+02, 9.99999982e+02, 9.99999982e+02,
       9.99999805e+02, 9.99999805e+02, 9.99999805e+02, 9.99999805e+02,
       9.99998195e+02, 9.99998195e+02, 9.99998195e+02, 9.99998195e+02,
       9.99985872e+02, 9.99985872e+02, 9.99985872e+02, 9.99985872e+02,
       9.99906771e+02, 9.99906771e+02, 9.99906771e+02, 9.99906771e+02,
       9.99483625e+02, 9.99483625e+02, 9.99483625e+02, 9.99483625e+02,
       9.97617059e+02, 9.97617059e+02, 9.97617059e+02, 9.97617059e+02,
       9.90923338e+02, 9.90923338e+02, 9.90923338e+02, 9.90923338e+02,
       9.71719329e+02, 9.71719329e+02, 9.71719329e+02, 9.71719329e+02,
       9.28208660e+02, 9.28208660e+02, 9.28208660e+02, 9.28208660e+02,
       8.50492018e+02, 8.50492018e+02, 8.50492018e+02, 8.50492018e+02,
       7.38645328e+02, 7.38645328e+02, 7.38645328e+02, 7.38645328e+02,
       6.14927640e+02, 6.14927640e+02, 6.14927640e+02, 6.14927640e+02,
       5.21794916e+02, 5.21794916e+02, 5.21794916e+02, 5.21794916e+02,
       4.51902595e+02, 4.51902595e+02, 4.51902595e+02, 4.51902595e+02,
       4.36518666e+02, 4.36518666e+02, 4.36518666e+02, 4.36518666e+02,
       4.58585341e+02, 4.58585341e+02, 4.58585341e+02, 4.58585341e+02,
       4.14979500e+02, 4.14979500e+02, 4.14979500e+02, 4.14979500e+02,
       1.85583423e+02, 1.85583423e+02, 1.85583423e+02, 1.85583423e+02,
       9.86901789e+00, 9.86901789e+00, 9.86901789e+00, 9.86901789e+00,
       3.72214496e-02, 3.72214496e-02, 3.72214496e-02, 3.72214496e-02,
       1.00026945e-02, 1.00026945e-02, 1.00026945e-02, 1.00026945e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999981, 0.99999981,
       0.99999981, 0.99999981, 0.99999845, 0.99999845, 0.99999845,
       0.99999845, 0.99998928, 0.99998928, 0.99998928, 0.99998928,
       0.9999362 , 0.9999362 , 0.9999362 , 0.9999362 , 0.99967491,
       0.99967491, 0.99967491, 0.99967491, 0.99859164, 0.99859164,
       0.99859164, 0.99859164, 0.99485567, 0.99485567, 0.99485567,
       0.99485567, 0.98427987, 0.98427987, 0.98427987, 0.98427987,
       0.95996373, 0.95996373, 0.95996373, 0.95996373, 0.91464439,
       0.91464439, 0.91464439, 0.91464439, 0.8452093 , 0.8452093 ,
       0.8452093 , 0.8452093 , 0.75573999, 0.75573999, 0.75573999,
       0.75573999, 0.66831355, 0.66831355, 0.66831355, 0.66831355,
       0.61265528, 0.61265528, 0.61265528, 0.61265528, 0.54245435,
       0.54245435, 0.54245435, 0.54245435, 0.54720556, 0.54720556,
       0.54720556, 0.54720556, 0.73287   , 0.73287   , 0.73287   ,
       0.73287   , 1.49708567, 1.49708567, 1.49708567, 1.49708567,
       2.23159213, 2.23159213, 2.23159213, 2.23159213, 1.65090941,
       1.65090941, 1.65090941, 1.65090941, 1.06180375, 1.06180375,
       1.06180375, 1.06180375, 1.00222479, 1.00222479, 1.00222479,
       1.00222479, 1.00000228, 1.00000228, 1.00000228, 1.00000228,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.18160649e-15, 1.18160649e-15, 1.18160649e-15, 1.18160649e-15,
       5.46295183e-14, 5.46295183e-14, 5.46295183e-14, 5.46295183e-14,
       1.23457577e-12, 1.23457577e-12, 1.23457577e-12, 1.23457577e-12,
       2.43162832e-11, 2.43162832e-11, 2.43162832e-11, 2.43162832e-11,
       4.08347672e-10, 4.08347672e-10, 4.08347672e-10, 4.08347672e-10,
       5.88078054e-09, 5.88078054e-09, 5.88078054e-09, 5.88078054e-09,
       7.29422461e-08, 7.29422461e-08, 7.29422461e-08, 7.29422461e-08,
       7.81392346e-07, 7.81392346e-07, 7.81392346e-07, 7.81392346e-07,
       7.23903884e-06, 7.23903884e-06, 7.23903884e-06, 7.23903884e-06,
       5.79920652e-05, 5.79920652e-05, 5.79920652e-05, 5.79920652e-05,
       4.01085979e-04, 4.01085979e-04, 4.01085979e-04, 4.01085979e-04,
       2.38716000e-03, 2.38716000e-03, 2.38716000e-03, 2.38716000e-03,
       1.21649982e-02, 1.21649982e-02, 1.21649982e-02, 1.21649982e-02,
       5.27208845e-02, 5.27208845e-02, 5.27208845e-02, 5.27208845e-02,
       1.92824879e-01, 1.92824879e-01, 1.92824879e-01, 1.92824879e-01,
       5.91551803e-01, 5.91551803e-01, 5.91551803e-01, 5.91551803e-01,
       1.52124836e+00, 1.52124836e+00, 1.52124836e+00, 1.52124836e+00,
       3.30736543e+00, 3.30736543e+00, 3.30736543e+00, 3.30736543e+00,
       6.19589413e+00, 6.19589413e+00, 6.19589413e+00, 6.19589413e+00,
       1.02215292e+01, 1.02215292e+01, 1.02215292e+01, 1.02215292e+01,
       1.42224996e+01, 1.42224996e+01, 1.42224996e+01, 1.42224996e+01,
       1.79365451e+01, 1.79365451e+01, 1.79365451e+01, 1.79365451e+01,
       2.00798991e+01, 2.00798991e+01, 2.00798991e+01, 2.00798991e+01,
       2.07710129e+01, 2.07710129e+01, 2.07710129e+01, 2.07710129e+01,
       2.03738724e+01, 2.03738724e+01, 2.03738724e+01, 2.03738724e+01,
       1.98546337e+01, 1.98546337e+01, 1.98546337e+01, 1.98546337e+01,
       1.64879617e+01, 1.64879617e+01, 1.64879617e+01, 1.64879617e+01,
       6.52271251e+00, 6.52271251e+00, 6.52271251e+00, 6.52271251e+00,
       3.18021766e-01, 3.18021766e-01, 3.18021766e-01, 3.18021766e-01,
       1.23367760e-03, 1.23367760e-03, 1.23367760e-03, 1.23367760e-03,
       2.70934864e-07, 2.70934864e-07, 2.70934864e-07, 2.70934864e-07,
       3.52019501e-11, 3.52019501e-11, 3.52019501e-11, 3.52019501e-11,
       4.64992921e-15, 4.64992921e-15, 4.64992921e-15, 4.64992921e-15,
       6.02331549e-19, 6.02331549e-19, 6.02331549e-19, 6.02331549e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
       9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
       9.99999729e+02, 9.99999729e+02, 9.99999729e+02, 9.99999729e+02,
       9.99997830e+02, 9.99997830e+02, 9.99997830e+02, 9.99997830e+02,
       9.99984993e+02, 9.99984993e+02, 9.99984993e+02, 9.99984993e+02,
       9.99910685e+02, 9.99910685e+02, 9.99910685e+02, 9.99910685e+02,
       9.99544941e+02, 9.99544941e+02, 9.99544941e+02, 9.99544941e+02,
       9.98029370e+02, 9.98029370e+02, 9.98029370e+02, 9.98029370e+02,
       9.92810695e+02, 9.92810695e+02, 9.92810695e+02, 9.92810695e+02,
       9.78097477e+02, 9.78097477e+02, 9.78097477e+02, 9.78097477e+02,
       9.44564417e+02, 9.44564417e+02, 9.44564417e+02, 9.44564417e+02,
       8.83069293e+02, 8.83069293e+02, 8.83069293e+02, 8.83069293e+02,
       7.91287043e+02, 7.91287043e+02, 7.91287043e+02, 7.91287043e+02,
       6.77341634e+02, 6.77341634e+02, 6.77341634e+02, 6.77341634e+02,
       5.71866254e+02, 5.71866254e+02, 5.71866254e+02, 5.71866254e+02,
       4.98838482e+02, 4.98838482e+02, 4.98838482e+02, 4.98838482e+02,
       4.47748470e+02, 4.47748470e+02, 4.47748470e+02, 4.47748470e+02,
       4.36925122e+02, 4.36925122e+02, 4.36925122e+02, 4.36925122e+02,
       4.54783175e+02, 4.54783175e+02, 4.54783175e+02, 4.54783175e+02,
       4.45896460e+02, 4.45896460e+02, 4.45896460e+02, 4.45896460e+02,
       3.20411762e+02, 3.20411762e+02, 3.20411762e+02, 3.20411762e+02,
       6.15900758e+01, 6.15900758e+01, 6.15900758e+01, 6.15900758e+01,
       8.63421907e-01, 8.63421907e-01, 8.63421907e-01, 8.63421907e-01,
       1.03623773e-02, 1.03623773e-02, 1.03623773e-02, 1.03623773e-02,
       1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999976,
       0.99999976, 0.99999976, 0.99999976, 0.99999829, 0.99999829,
       0.99999829, 0.99999829, 0.99998925, 0.99998925, 0.99998925,
       0.99998925, 0.99994097, 0.99994097, 0.99994097, 0.99994097,
       0.99971837, 0.99971837, 0.99971837, 0.99971837, 0.99883983,
       0.99883983, 0.99883983, 0.99883983, 0.99590578, 0.99590578,
       0.99590578, 0.99590578, 0.98771715, 0.98771715, 0.98771715,
       0.98771715, 0.9688216 , 0.9688216 , 0.9688216 , 0.9688216 ,
       0.93291927, 0.93291927, 0.93291927, 0.93291927, 0.87626891,
       0.87626891, 0.87626891, 0.87626891, 0.79977768, 0.79977768,
       0.79977768, 0.79977768, 0.71616692, 0.71616692, 0.71616692,
       0.71616692, 0.6411649 , 0.6411649 , 0.6411649 , 0.6411649 ,
       0.59775517, 0.59775517, 0.59775517, 0.59775517, 0.54673392,
       0.54673392, 0.54673392, 0.54673392, 0.54631056, 0.54631056,
       0.54631056, 0.54631056, 0.65073939, 0.65073939, 0.65073939,
       0.65073939, 1.1624501 , 1.1624501 , 1.1624501 , 1.1624501 ,
       2.15930703, 2.15930703, 2.15930703, 2.15930703, 2.16998   ,
       2.16998   , 2.16998   , 2.16998   , 1.23507778, 1.23507778,
       1.23507778, 1.23507778, 1.0142605 , 1.0142605 , 1.0142605 ,
       1.0142605 , 1.00015687, 1.00015687, 1.00015687, 1.00015687,
       1.00000003, 1.00000003, 1.00000003, 1.00000003, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.27454384e-14, 1.27454384e-14, 1.27454384e-14, 1.27454384e-14,
       2.47272091e-13, 2.47272091e-13, 2.47272091e-13, 2.47272091e-13,
       4.40240671e-12, 4.40240671e-12, 4.40240671e-12, 4.40240671e-12,
       6.86645339e-11, 6.86645339e-11, 6.86645339e-11, 6.86645339e-11,
       9.37022264e-10, 9.37022264e-10, 9.37022264e-10, 9.37022264e-10,
       1.12236099e-08, 1.12236099e-08, 1.12236099e-08, 1.12236099e-08,
       1.18207072e-07, 1.18207072e-07, 1.18207072e-07, 1.18207072e-07,
       1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
       8.93418660e-06, 8.93418660e-06, 8.93418660e-06, 8.93418660e-06,
       6.40278059e-05, 6.40278059e-05, 6.40278059e-05, 6.40278059e-05,
       4.02322799e-04, 4.02322799e-04, 4.02322799e-04, 4.02322799e-04,
       2.20855552e-03, 2.20855552e-03, 2.20855552e-03, 2.20855552e-03,
       1.05384211e-02, 1.05384211e-02, 1.05384211e-02, 1.05384211e-02,
       4.34263931e-02, 4.34263931e-02, 4.34263931e-02, 4.34263931e-02,
       1.53409739e-01, 1.53409739e-01, 1.53409739e-01, 1.53409739e-01,
       4.61635401e-01, 4.61635401e-01, 4.61635401e-01, 4.61635401e-01,
       1.18057615e+00, 1.18057615e+00, 1.18057615e+00, 1.18057615e+00,
       2.57891597e+00, 2.57891597e+00, 2.57891597e+00, 2.57891597e+00,
       4.88068740e+00, 4.88068740e+00, 4.88068740e+00, 4.88068740e+00,
       8.19631338e+00, 8.19631338e+00, 8.19631338e+00, 8.19631338e+00,
       1.20755557e+01, 1.20755557e+01, 1.20755557e+01, 1.20755557e+01,
       1.56119331e+01, 1.56119331e+01, 1.56119331e+01, 1.56119331e+01,
       1.86987153e+01, 1.86987153e+01, 1.86987153e+01, 1.86987153e+01,
       2.03804546e+01, 2.03804546e+01, 2.03804546e+01, 2.03804546e+01,
       2.06321628e+01, 2.06321628e+01, 2.06321628e+01, 2.06321628e+01,
       2.02171402e+01, 2.02171402e+01, 2.02171402e+01, 2.02171402e+01,
       2.00646475e+01, 2.00646475e+01, 2.00646475e+01, 2.00646475e+01,
       1.86620483e+01, 1.86620483e+01, 1.86620483e+01, 1.86620483e+01,
       1.20985558e+01, 1.20985558e+01, 1.20985558e+01, 1.20985558e+01,
       1.97692771e+00, 1.97692771e+00, 1.97692771e+00, 1.97692771e+00,
       2.87213238e-02, 2.87213238e-02, 2.87213238e-02, 2.87213238e-02,
       2.50770351e-05, 2.50770351e-05, 2.50770351e-05, 2.50770351e-05,
       3.37123734e-09, 3.37123734e-09, 3.37123734e-09, 3.37123734e-09,
       4.42163288e-13, 4.42163288e-13, 4.42163288e-13, 4.42163288e-13,
       5.71495239e-17, 5.71495239e-17, 5.71495239e-17, 5.71495239e-17,
       4.50269287e-21, 4.50269287e-21, 4.50269287e-21, 4.50269287e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
       9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
       9.99999666e+02, 9.99999666e+02, 9.99999666e+02, 9.99999666e+02,
       9.99997604e+02, 9.99997604e+02, 9.99997604e+02, 9.99997604e+02,
       9.99984947e+02, 9.99984947e+02, 9.99984947e+02, 9.99984947e+02,
       9.99917367e+02, 9.99917367e+02, 9.99917367e+02, 9.99917367e+02,
       9.99605771e+02, 9.99605771e+02, 9.99605771e+02, 9.99605771e+02,
       9.98376476e+02, 9.98376476e+02, 9.98376476e+02, 9.98376476e+02,
       9.94276002e+02, 9.94276002e+02, 9.94276002e+02, 9.94276002e+02,
       9.82867864e+02, 9.82867864e+02, 9.82867864e+02, 9.82867864e+02,
       9.56722442e+02, 9.56722442e+02, 9.56722442e+02, 9.56722442e+02,
       9.07673554e+02, 9.07673554e+02, 9.07673554e+02, 9.07673554e+02,
       8.31875435e+02, 8.31875435e+02, 8.31875435e+02, 8.31875435e+02,
       7.32668167e+02, 7.32668167e+02, 7.32668167e+02, 7.32668167e+02,
       6.27675900e+02, 6.27675900e+02, 6.27675900e+02, 6.27675900e+02,
       5.40641296e+02, 5.40641296e+02, 5.40641296e+02, 5.40641296e+02,
       4.81411714e+02, 4.81411714e+02, 4.81411714e+02, 4.81411714e+02,
       4.46388141e+02, 4.46388141e+02, 4.46388141e+02, 4.46388141e+02,
       4.39501351e+02, 4.39501351e+02, 4.39501351e+02, 4.39501351e+02,
       4.52157297e+02, 4.52157297e+02, 4.52157297e+02, 4.52157297e+02,
       4.52775903e+02, 4.52775903e+02, 4.52775903e+02, 4.52775903e+02,
       4.01828833e+02, 4.01828833e+02, 4.01828833e+02, 4.01828833e+02,
       1.79447659e+02, 1.79447659e+02, 1.79447659e+02, 1.79447659e+02,
       1.01968433e+01, 1.01968433e+01, 1.01968433e+01, 1.01968433e+01,
       3.95481482e-02, 3.95481482e-02, 3.95481482e-02, 3.95481482e-02,
       1.00030400e-02, 1.00030400e-02, 1.00030400e-02, 1.00030400e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999973, 0.99999973, 0.99999973, 0.99999973, 0.99999822,
       0.99999822, 0.99999822, 0.99999822, 0.99998963, 0.99998963,
       0.99998963, 0.99998963, 0.99994668, 0.99994668, 0.99994668,
       0.99994668, 0.99975882, 0.99975882, 0.99975882, 0.99975882,
       0.99904627, 0.99904627, 0.99904627, 0.99904627, 0.99672714,
       0.99672714, 0.99672714, 0.99672714, 0.99032541, 0.99032541,
       0.99032541, 0.99032541, 0.97549498, 0.97549498, 0.97549498,
       0.97549498, 0.94682189, 0.94682189, 0.94682189, 0.94682189,
       0.90035943, 0.90035943, 0.90035943, 0.90035943, 0.83595399,
       0.83595399, 0.83595399, 0.83595399, 0.75816608, 0.75816608,
       0.75816608, 0.75816608, 0.68548506, 0.68548506, 0.68548506,
       0.68548506, 0.6201578 , 0.6201578 , 0.6201578 , 0.6201578 ,
       0.58688385, 0.58688385, 0.58688385, 0.58688385, 0.55035053,
       0.55035053, 0.55035053, 0.55035053, 0.54815759, 0.54815759,
       0.54815759, 0.54815759, 0.6060835 , 0.6060835 , 0.6060835 ,
       0.6060835 , 0.93361729, 0.93361729, 0.93361729, 0.93361729,
       1.87007459, 1.87007459, 1.87007459, 1.87007459, 2.43252002,
       2.43252002, 2.43252002, 2.43252002, 1.69813853, 1.69813853,
       1.69813853, 1.69813853, 1.06363124, 1.06363124, 1.06363124,
       1.06363124, 1.00230929, 1.00230929, 1.00230929, 1.00230929,
       1.00000249, 1.00000249, 1.00000249, 1.00000249, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.17918877e-15, 1.17918877e-15, 1.17918877e-15, 1.17918877e-15,
       4.63192568e-14, 4.63192568e-14, 4.63192568e-14, 4.63192568e-14,
       7.72269119e-13, 7.72269119e-13, 7.72269119e-13, 7.72269119e-13,
       1.13606117e-11, 1.13606117e-11, 1.13606117e-11, 1.13606117e-11,
       1.48668973e-10, 1.48668973e-10, 1.48668973e-10, 1.48668973e-10,
       1.73273478e-09, 1.73273478e-09, 1.73273478e-09, 1.73273478e-09,
       1.80065644e-08, 1.80065644e-08, 1.80065644e-08, 1.80065644e-08,
       1.66938246e-07, 1.66938246e-07, 1.66938246e-07, 1.66938246e-07,
       1.38047343e-06, 1.38047343e-06, 1.38047343e-06, 1.38047343e-06,
       1.01730358e-05, 1.01730358e-05, 1.01730358e-05, 1.01730358e-05,
       6.66926861e-05, 6.66926861e-05, 6.66926861e-05, 6.66926861e-05,
       3.87946266e-04, 3.87946266e-04, 3.87946266e-04, 3.87946266e-04,
       1.99495582e-03, 1.99495582e-03, 1.99495582e-03, 1.99495582e-03,
       9.02485988e-03, 9.02485988e-03, 9.02485988e-03, 9.02485988e-03,
       3.56969786e-02, 3.56969786e-02, 3.56969786e-02, 3.56969786e-02,
       1.22599309e-01, 1.22599309e-01, 1.22599309e-01, 1.22599309e-01,
       3.63265196e-01, 3.63265196e-01, 3.63265196e-01, 3.63265196e-01,
       9.25486637e-01, 9.25486637e-01, 9.25486637e-01, 9.25486637e-01,
       2.03251679e+00, 2.03251679e+00, 2.03251679e+00, 2.03251679e+00,
       3.88754026e+00, 3.88754026e+00, 3.88754026e+00, 3.88754026e+00,
       6.59692847e+00, 6.59692847e+00, 6.59692847e+00, 6.59692847e+00,
       1.00916624e+01, 1.00916624e+01, 1.00916624e+01, 1.00916624e+01,
       1.36128329e+01, 1.36128329e+01, 1.36128329e+01, 1.36128329e+01,
       1.67200615e+01, 1.67200615e+01, 1.67200615e+01, 1.67200615e+01,
       1.92196842e+01, 1.92196842e+01, 1.92196842e+01, 1.92196842e+01,
       2.05019813e+01, 2.05019813e+01, 2.05019813e+01, 2.05019813e+01,
       2.05553746e+01, 2.05553746e+01, 2.05553746e+01, 2.05553746e+01,
       2.01200849e+01, 2.01200849e+01, 2.01200849e+01, 2.01200849e+01,
       2.00852609e+01, 2.00852609e+01, 2.00852609e+01, 2.00852609e+01,
       1.95505845e+01, 1.95505845e+01, 1.95505845e+01, 1.95505845e+01,
       1.62261910e+01, 1.62261910e+01, 1.62261910e+01, 1.62261910e+01,
       6.54866545e+00, 6.54866545e+00, 6.54866545e+00, 6.54866545e+00,
       3.24170699e-01, 3.24170699e-01, 3.24170699e-01, 3.24170699e-01,
       1.29707680e-03, 1.29707680e-03, 1.29707680e-03, 1.29707680e-03,
       2.95706974e-07, 2.95706974e-07, 2.95706974e-07, 2.95706974e-07,
       3.91707739e-11, 3.91707739e-11, 3.91707739e-11, 3.91707739e-11,
       5.29501501e-15, 5.29501501e-15, 5.29501501e-15, 5.29501501e-15,
       6.89647830e-19, 6.89647830e-19, 6.89647830e-19, 6.89647830e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
       9.99999948e+02, 9.99999948e+02, 9.99999948e+02, 9.99999948e+02,
       9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
       9.99997505e+02, 9.99997505e+02, 9.99997505e+02, 9.99997505e+02,
       9.99985485e+02, 9.99985485e+02, 9.99985485e+02, 9.99985485e+02,
       9.99925359e+02, 9.99925359e+02, 9.99925359e+02, 9.99925359e+02,
       9.99662381e+02, 9.99662381e+02, 9.99662381e+02, 9.99662381e+02,
       9.98665240e+02, 9.98665240e+02, 9.98665240e+02, 9.98665240e+02,
       9.95422968e+02, 9.95422968e+02, 9.95422968e+02, 9.95422968e+02,
       9.86494880e+02, 9.86494880e+02, 9.86494880e+02, 9.86494880e+02,
       9.65922616e+02, 9.65922616e+02, 9.65922616e+02, 9.65922616e+02,
       9.26549448e+02, 9.26549448e+02, 9.26549448e+02, 9.26549448e+02,
       8.63811003e+02, 8.63811003e+02, 8.63811003e+02, 8.63811003e+02,
       7.79005137e+02, 7.79005137e+02, 7.79005137e+02, 7.79005137e+02,
       6.79897934e+02, 6.79897934e+02, 6.79897934e+02, 6.79897934e+02,
       5.89818941e+02, 5.89818941e+02, 5.89818941e+02, 5.89818941e+02,
       5.17012382e+02, 5.17012382e+02, 5.17012382e+02, 5.17012382e+02,
       4.68673522e+02, 4.68673522e+02, 4.68673522e+02, 4.68673522e+02,
       4.45586337e+02, 4.45586337e+02, 4.45586337e+02, 4.45586337e+02,
       4.42497030e+02, 4.42497030e+02, 4.42497030e+02, 4.42497030e+02,
       4.51096789e+02, 4.51096789e+02, 4.51096789e+02, 4.51096789e+02,
       4.53476996e+02, 4.53476996e+02, 4.53476996e+02, 4.53476996e+02,
       4.36824668e+02, 4.36824668e+02, 4.36824668e+02, 4.36824668e+02,
       3.07120077e+02, 3.07120077e+02, 3.07120077e+02, 3.07120077e+02,
       5.92749963e+01, 5.92749963e+01, 5.92749963e+01, 5.92749963e+01,
       8.68726123e-01, 8.68726123e-01, 8.68726123e-01, 8.68726123e-01,
       1.03848280e-02, 1.03848280e-02, 1.03848280e-02, 1.03848280e-02,
       1.00000350e-02, 1.00000350e-02, 1.00000350e-02, 1.00000350e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999996, 0.99999996, 0.99999996,
       0.99999996, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
       0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99999028,
       0.99999028, 0.99999028, 0.99999028, 0.99995266, 0.99995266,
       0.99995266, 0.99995266, 0.99979512, 0.99979512, 0.99979512,
       0.99979512, 0.99921684, 0.99921684, 0.99921684, 0.99921684,
       0.99737403, 0.99737403, 0.99737403, 0.99737403, 0.9923308 ,
       0.9923308 , 0.9923308 , 0.9923308 , 0.98059926, 0.98059926,
       0.98059926, 0.98059926, 0.95755427, 0.95755427, 0.95755427,
       0.95755427, 0.91927574, 0.91927574, 0.91927574, 0.91927574,
       0.86476987, 0.86476987, 0.86476987, 0.86476987, 0.79618357,
       0.79618357, 0.79618357, 0.79618357, 0.72306218, 0.72306218,
       0.72306218, 0.72306218, 0.66150523, 0.66150523, 0.66150523,
       0.66150523, 0.60422085, 0.60422085, 0.60422085, 0.60422085,
       0.57924424, 0.57924424, 0.57924424, 0.57924424, 0.55336757,
       0.55336757, 0.55336757, 0.55336757, 0.55041993, 0.55041993,
       0.55041993, 0.55041993, 0.58277776, 0.58277776, 0.58277776,
       0.58277776, 0.78662431, 0.78662431, 0.78662431, 0.78662431,
       1.48769623, 1.48769623, 1.48769623, 1.48769623, 2.43758196,
       2.43758196, 2.43758196, 2.43758196, 2.27678193, 2.27678193,
       2.27678193, 2.27678193, 1.23532054, 1.23532054, 1.23532054,
       1.23532054, 1.0142013 , 1.0142013 , 1.0142013 , 1.0142013 ,
       1.00015564, 1.00015564, 1.00015564, 1.00015564, 1.00000003,
       1.00000003, 1.00000003, 1.00000003, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       7.84780571e-15, 7.84780571e-15, 7.84780571e-15, 7.84780571e-15,
       1.31247225e-13, 1.31247225e-13, 1.31247225e-13, 1.31247225e-13,
       1.86099744e-12, 1.86099744e-12, 1.86099744e-12, 1.86099744e-12,
       2.35229555e-11, 2.35229555e-11, 2.35229555e-11, 2.35229555e-11,
       2.68230159e-10, 2.68230159e-10, 2.68230159e-10, 2.68230159e-10,
       2.75761076e-09, 2.75761076e-09, 2.75761076e-09, 2.75761076e-09,
       2.55719231e-08, 2.55719231e-08, 2.55719231e-08, 2.55719231e-08,
       2.13858422e-07, 2.13858422e-07, 2.13858422e-07, 2.13858422e-07,
       1.61179086e-06, 1.61179086e-06, 1.61179086e-06, 1.61179086e-06,
       1.09330523e-05, 1.09330523e-05, 1.09330523e-05, 1.09330523e-05,
       6.66147485e-05, 6.66147485e-05, 6.66147485e-05, 6.66147485e-05,
       3.63590132e-04, 3.63590132e-04, 3.63590132e-04, 3.63590132e-04,
       1.77131328e-03, 1.77131328e-03, 1.77131328e-03, 1.77131328e-03,
       7.66654068e-03, 7.66654068e-03, 7.66654068e-03, 7.66654068e-03,
       2.93110700e-02, 2.93110700e-02, 2.93110700e-02, 2.93110700e-02,
       9.83453389e-02, 9.83453389e-02, 9.83453389e-02, 9.83453389e-02,
       2.87757346e-01, 2.87757346e-01, 2.87757346e-01, 2.87757346e-01,
       7.31271666e-01, 7.31271666e-01, 7.31271666e-01, 7.31271666e-01,
       1.61513497e+00, 1.61513497e+00, 1.61513497e+00, 1.61513497e+00,
       3.12319769e+00, 3.12319769e+00, 3.12319769e+00, 3.12319769e+00,
       5.36427327e+00, 5.36427327e+00, 5.36427327e+00, 5.36427327e+00,
       8.35732099e+00, 8.35732099e+00, 8.35732099e+00, 8.35732099e+00,
       1.16892047e+01, 1.16892047e+01, 1.16892047e+01, 1.16892047e+01,
       1.49052400e+01, 1.49052400e+01, 1.49052400e+01, 1.49052400e+01,
       1.76214127e+01, 1.76214127e+01, 1.76214127e+01, 1.76214127e+01,
       1.95882774e+01, 1.95882774e+01, 1.95882774e+01, 1.95882774e+01,
       2.05031852e+01, 2.05031852e+01, 2.05031852e+01, 2.05031852e+01,
       2.04829872e+01, 2.04829872e+01, 2.04829872e+01, 2.04829872e+01,
       2.00863226e+01, 2.00863226e+01, 2.00863226e+01, 2.00863226e+01,
       2.00679880e+01, 2.00679880e+01, 2.00679880e+01, 2.00679880e+01,
       1.98869708e+01, 1.98869708e+01, 1.98869708e+01, 1.98869708e+01,
       1.83990451e+01, 1.83990451e+01, 1.83990451e+01, 1.83990451e+01,
       1.18973605e+01, 1.18973605e+01, 1.18973605e+01, 1.18973605e+01,
       1.92593412e+00, 1.92593412e+00, 1.92593412e+00, 1.92593412e+00,
       2.78926539e-02, 2.78926539e-02, 2.78926539e-02, 2.78926539e-02,
       2.46303900e-05, 2.46303900e-05, 2.46303900e-05, 2.46303900e-05,
       3.45965769e-09, 3.45965769e-09, 3.45965769e-09, 3.45965769e-09,
       4.70814125e-13, 4.70814125e-13, 4.70814125e-13, 4.70814125e-13,
       6.25944971e-17, 6.25944971e-17, 6.25944971e-17, 6.25944971e-17,
       1.40917331e-20, 1.40917331e-20, 1.40917331e-20, 1.40917331e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999940e+02, 9.99999940e+02, 9.99999940e+02, 9.99999940e+02,
       9.99999591e+02, 9.99999591e+02, 9.99999591e+02, 9.99999591e+02,
       9.99997508e+02, 9.99997508e+02, 9.99997508e+02, 9.99997508e+02,
       9.99986396e+02, 9.99986396e+02, 9.99986396e+02, 9.99986396e+02,
       9.99933726e+02, 9.99933726e+02, 9.99933726e+02, 9.99933726e+02,
       9.99713187e+02, 9.99713187e+02, 9.99713187e+02, 9.99713187e+02,
       9.98903881e+02, 9.98903881e+02, 9.98903881e+02, 9.98903881e+02,
       9.96326802e+02, 9.96326802e+02, 9.96326802e+02, 9.96326802e+02,
       9.89287663e+02, 9.89287663e+02, 9.89287663e+02, 9.89287663e+02,
       9.72982839e+02, 9.72982839e+02, 9.72982839e+02, 9.72982839e+02,
       9.41213875e+02, 9.41213875e+02, 9.41213875e+02, 9.41213875e+02,
       8.89161214e+02, 8.89161214e+02, 8.89161214e+02, 8.89161214e+02,
       8.16557244e+02, 8.16557244e+02, 8.16557244e+02, 8.16557244e+02,
       7.27792873e+02, 7.27792873e+02, 7.27792873e+02, 7.27792873e+02,
       6.36091679e+02, 6.36091679e+02, 6.36091679e+02, 6.36091679e+02,
       5.60608656e+02, 5.60608656e+02, 5.60608656e+02, 5.60608656e+02,
       4.99456928e+02, 4.99456928e+02, 4.99456928e+02, 4.99456928e+02,
       4.59916263e+02, 4.59916263e+02, 4.59916263e+02, 4.59916263e+02,
       4.44832936e+02, 4.44832936e+02, 4.44832936e+02, 4.44832936e+02,
       4.44855833e+02, 4.44855833e+02, 4.44855833e+02, 4.44855833e+02,
       4.51329612e+02, 4.51329612e+02, 4.51329612e+02, 4.51329612e+02,
       4.53075538e+02, 4.53075538e+02, 4.53075538e+02, 4.53075538e+02,
       4.48914983e+02, 4.48914983e+02, 4.48914983e+02, 4.48914983e+02,
       3.89344412e+02, 3.89344412e+02, 3.89344412e+02, 3.89344412e+02,
       1.69288930e+02, 1.69288930e+02, 1.69288930e+02, 1.69288930e+02,
       9.65027996e+00, 9.65027996e+00, 9.65027996e+00, 9.65027996e+00,
       3.79449184e-02, 3.79449184e-02, 3.79449184e-02, 3.79449184e-02,
       1.00029784e-02, 1.00029784e-02, 1.00029784e-02, 1.00029784e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.9999997 , 0.9999997 , 0.9999997 ,
       0.9999997 , 0.99999828, 0.99999828, 0.99999828, 0.99999828,
       0.99999108, 0.99999108, 0.99999108, 0.99999108, 0.9999585 ,
       0.9999585 , 0.9999585 , 0.9999585 , 0.99982697, 0.99982697,
       0.99982697, 0.99982697, 0.99935725, 0.99935725, 0.99935725,
       0.99935725, 0.99788644, 0.99788644, 0.99788644, 0.99788644,
       0.99388871, 0.99388871, 0.99388871, 0.99388871, 0.98455003,
       0.98455003, 0.98455003, 0.98455003, 0.96593499, 0.96593499,
       0.96593499, 0.96593499, 0.9342993 , 0.9342993 , 0.9342993 ,
       0.9342993 , 0.88804292, 0.88804292, 0.88804292, 0.88804292,
       0.82849089, 0.82849089, 0.82849089, 0.82849089, 0.75995557,
       0.75995557, 0.75995557, 0.75995557, 0.6948101 , 0.6948101 ,
       0.6948101 , 0.6948101 , 0.64178791, 0.64178791, 0.64178791,
       0.64178791, 0.59207003, 0.59207003, 0.59207003, 0.59207003,
       0.57419756, 0.57419756, 0.57419756, 0.57419756, 0.55596457,
       0.55596457, 0.55596457, 0.55596457, 0.5528484 , 0.5528484 ,
       0.5528484 , 0.5528484 , 0.57066328, 0.57066328, 0.57066328,
       0.57066328, 0.69535413, 0.69535413, 0.69535413, 0.69535413,
       1.17867884, 1.17867884, 1.17867884, 1.17867884, 2.21167836,
       2.21167836, 2.21167836, 2.21167836, 2.60264521, 2.60264521,
       2.60264521, 2.60264521, 1.7128863 , 1.7128863 , 1.7128863 ,
       1.7128863 , 1.06202573, 1.06202573, 1.06202573, 1.06202573,
       1.00220672, 1.00220672, 1.00220672, 1.00220672, 1.00000228,
       1.00000228, 1.00000228, 1.00000228, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.82667535e-16, 5.82667535e-16, 5.82667535e-16, 5.82667535e-16,
       2.37807029e-14, 2.37807029e-14, 2.37807029e-14, 2.37807029e-14,
       3.03202404e-13, 3.03202404e-13, 3.03202404e-13, 3.03202404e-13,
       3.71371250e-12, 3.71371250e-12, 3.71371250e-12, 3.71371250e-12,
       4.16077225e-11, 4.16077225e-11, 4.16077225e-11, 4.16077225e-11,
       4.24016982e-10, 4.24016982e-10, 4.24016982e-10, 4.24016982e-10,
       3.93302512e-09, 3.93302512e-09, 3.93302512e-09, 3.93302512e-09,
       3.32002473e-08, 3.32002473e-08, 3.32002473e-08, 3.32002473e-08,
       2.54903725e-07, 2.54903725e-07, 2.54903725e-07, 2.54903725e-07,
       1.77822075e-06, 1.77822075e-06, 1.77822075e-06, 1.77822075e-06,
       1.12541158e-05, 1.12541158e-05, 1.12541158e-05, 1.12541158e-05,
       6.44841773e-05, 6.44841773e-05, 6.44841773e-05, 6.44841773e-05,
       3.33602038e-04, 3.33602038e-04, 3.33602038e-04, 3.33602038e-04,
       1.55281901e-03, 1.55281901e-03, 1.55281901e-03, 1.55281901e-03,
       6.47471971e-03, 6.47471971e-03, 6.47471971e-03, 6.47471971e-03,
       2.40547896e-02, 2.40547896e-02, 2.40547896e-02, 2.40547896e-02,
       7.91410207e-02, 7.91410207e-02, 7.91410207e-02, 7.91410207e-02,
       2.29173025e-01, 2.29173025e-01, 2.29173025e-01, 2.29173025e-01,
       5.81473724e-01, 5.81473724e-01, 5.81473724e-01, 5.81473724e-01,
       1.29181150e+00, 1.29181150e+00, 1.29181150e+00, 1.29181150e+00,
       2.52541673e+00, 2.52541673e+00, 2.52541673e+00, 2.52541673e+00,
       4.39364483e+00, 4.39364483e+00, 4.39364483e+00, 4.39364483e+00,
       6.92177553e+00, 6.92177553e+00, 6.92177553e+00, 6.92177553e+00,
       1.00062705e+01, 1.00062705e+01, 1.00062705e+01, 1.00062705e+01,
       1.30551463e+01, 1.30551463e+01, 1.30551463e+01, 1.30551463e+01,
       1.59467542e+01, 1.59467542e+01, 1.59467542e+01, 1.59467542e+01,
       1.83397628e+01, 1.83397628e+01, 1.83397628e+01, 1.83397628e+01,
       1.98657446e+01, 1.98657446e+01, 1.98657446e+01, 1.98657446e+01,
       2.04639329e+01, 2.04639329e+01, 2.04639329e+01, 2.04639329e+01,
       2.03869143e+01, 2.03869143e+01, 2.03869143e+01, 2.03869143e+01,
       2.00832064e+01, 2.00832064e+01, 2.00832064e+01, 2.00832064e+01,
       2.00558910e+01, 2.00558910e+01, 2.00558910e+01, 2.00558910e+01,
       1.99917512e+01, 1.99917512e+01, 1.99917512e+01, 1.99917512e+01,
       1.93663021e+01, 1.93663021e+01, 1.93663021e+01, 1.93663021e+01,
       1.59156770e+01, 1.59156770e+01, 1.59156770e+01, 1.59156770e+01,
       6.34602264e+00, 6.34602264e+00, 6.34602264e+00, 6.34602264e+00,
       3.03838005e-01, 3.03838005e-01, 3.03838005e-01, 3.03838005e-01,
       1.18263967e-03, 1.18263967e-03, 1.18263967e-03, 1.18263967e-03,
       2.70515192e-07, 2.70515192e-07, 2.70515192e-07, 2.70515192e-07,
       3.73495771e-11, 3.73495771e-11, 3.73495771e-11, 3.73495771e-11,
       5.26225555e-15, 5.26225555e-15, 5.26225555e-15, 5.26225555e-15,
       7.33233058e-19, 7.33233058e-19, 7.33233058e-19, 7.33233058e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
       9.99999933e+02, 9.99999933e+02, 9.99999933e+02, 9.99999933e+02,
       9.99999579e+02, 9.99999579e+02, 9.99999579e+02, 9.99999579e+02,
       9.99997587e+02, 9.99997587e+02, 9.99997587e+02, 9.99997587e+02,
       9.99987518e+02, 9.99987518e+02, 9.99987518e+02, 9.99987518e+02,
       9.99941901e+02, 9.99941901e+02, 9.99941901e+02, 9.99941901e+02,
       9.99757768e+02, 9.99757768e+02, 9.99757768e+02, 9.99757768e+02,
       9.99100354e+02, 9.99100354e+02, 9.99100354e+02, 9.99100354e+02,
       9.97043041e+02, 9.97043041e+02, 9.97043041e+02, 9.97043041e+02,
       9.91459711e+02, 9.91459711e+02, 9.91459711e+02, 9.91459711e+02,
       9.78461298e+02, 9.78461298e+02, 9.78461298e+02, 9.78461298e+02,
       9.52721066e+02, 9.52721066e+02, 9.52721066e+02, 9.52721066e+02,
       9.09464048e+02, 9.09464048e+02, 9.09464048e+02, 9.09464048e+02,
       8.47290240e+02, 8.47290240e+02, 8.47290240e+02, 8.47290240e+02,
       7.69147303e+02, 7.69147303e+02, 7.69147303e+02, 7.69147303e+02,
       6.81824841e+02, 6.81824841e+02, 6.81824841e+02, 6.81824841e+02,
       6.01613262e+02, 6.01613262e+02, 6.01613262e+02, 6.01613262e+02,
       5.36678519e+02, 5.36678519e+02, 5.36678519e+02, 5.36678519e+02,
       4.86252372e+02, 4.86252372e+02, 4.86252372e+02, 4.86252372e+02,
       4.54602117e+02, 4.54602117e+02, 4.54602117e+02, 4.54602117e+02,
       4.44345600e+02, 4.44345600e+02, 4.44345600e+02, 4.44345600e+02,
       4.46359684e+02, 4.46359684e+02, 4.46359684e+02, 4.46359684e+02,
       4.51901635e+02, 4.51901635e+02, 4.51901635e+02, 4.51901635e+02,
       4.52889504e+02, 4.52889504e+02, 4.52889504e+02, 4.52889504e+02,
       4.52265646e+02, 4.52265646e+02, 4.52265646e+02, 4.52265646e+02,
       4.29084128e+02, 4.29084128e+02, 4.29084128e+02, 4.29084128e+02,
       2.92805528e+02, 2.92805528e+02, 2.92805528e+02, 2.92805528e+02,
       5.43708093e+01, 5.43708093e+01, 5.43708093e+01, 5.43708093e+01,
       7.81644380e-01, 7.81644380e-01, 7.81644380e-01, 7.81644380e-01,
       1.03355903e-02, 1.03355903e-02, 1.03355903e-02, 1.03355903e-02,
       1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
       0.99999995, 0.99999995, 0.99999995, 0.9999997 , 0.9999997 ,
       0.9999997 , 0.9999997 , 0.99999837, 0.99999837, 0.99999837,
       0.99999837, 0.99999195, 0.99999195, 0.99999195, 0.99999195,
       0.99996397, 0.99996397, 0.99996397, 0.99996397, 0.9998545 ,
       0.9998545 , 0.9998545 , 0.9998545 , 0.9994726 , 0.9994726 ,
       0.9994726 , 0.9994726 , 0.9982943 , 0.9982943 , 0.9982943 ,
       0.9982943 , 0.99510915, 0.99510915, 0.99510915, 0.99510915,
       0.98763719, 0.98763719, 0.98763719, 0.98763719, 0.97253998,
       0.97253998, 0.97253998, 0.97253998, 0.94633146, 0.94633146,
       0.94633146, 0.94633146, 0.90701242, 0.90701242, 0.90701242,
       0.90701242, 0.85516088, 0.85516088, 0.85516088, 0.85516088,
       0.79324114, 0.79324114, 0.79324114, 0.79324114, 0.72928116,
       0.72928116, 0.72928116, 0.72928116, 0.67174921, 0.67174921,
       0.67174921, 0.67174921, 0.62584268, 0.62584268, 0.62584268,
       0.62584268, 0.58259287, 0.58259287, 0.58259287, 0.58259287,
       0.57068029, 0.57068029, 0.57068029, 0.57068029, 0.55836177,
       0.55836177, 0.55836177, 0.55836177, 0.55573867, 0.55573867,
       0.55573867, 0.55573867, 0.56443057, 0.56443057, 0.56443057,
       0.56443057, 0.6395892 , 0.6395892 , 0.6395892 , 0.6395892 ,
       0.96358615, 0.96358615, 0.96358615, 0.96358615, 1.83549949,
       1.83549949, 1.83549949, 1.83549949, 2.66715283, 2.66715283,
       2.66715283, 2.66715283, 2.3438958 , 2.3438958 , 2.3438958 ,
       2.3438958 , 1.22354901, 1.22354901, 1.22354901, 1.22354901,
       1.01330763, 1.01330763, 1.01330763, 1.01330763, 1.00013509,
       1.00013509, 1.00013509, 1.00013509, 1.00000003, 1.00000003,
       1.00000003, 1.00000003, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       3.27252719e-15, 3.27252719e-15, 3.27252719e-15, 3.27252719e-15,
       5.02048681e-14, 5.02048681e-14, 5.02048681e-14, 5.02048681e-14,
       5.87307060e-13, 5.87307060e-13, 5.87307060e-13, 5.87307060e-13,
       6.46241559e-12, 6.46241559e-12, 6.46241559e-12, 6.46241559e-12,
       6.53785309e-11, 6.53785309e-11, 6.53785309e-11, 6.53785309e-11,
       6.06614778e-10, 6.06614778e-10, 6.06614778e-10, 6.06614778e-10,
       5.16153797e-09, 5.16153797e-09, 5.16153797e-09, 5.16153797e-09,
       4.02536022e-08, 4.02536022e-08, 4.02536022e-08, 4.02536022e-08,
       2.87499828e-07, 2.87499828e-07, 2.87499828e-07, 2.87499828e-07,
       1.87827130e-06, 1.87827130e-06, 1.87827130e-06, 1.87827130e-06,
       1.12063726e-05, 1.12063726e-05, 1.12063726e-05, 1.12063726e-05,
       6.09321654e-05, 6.09321654e-05, 6.09321654e-05, 6.09321654e-05,
       3.01124184e-04, 3.01124184e-04, 3.01124184e-04, 3.01124184e-04,
       1.34806658e-03, 1.34806658e-03, 1.34806658e-03, 1.34806658e-03,
       5.44437268e-03, 5.44437268e-03, 5.44437268e-03, 5.44437268e-03,
       1.97371145e-02, 1.97371145e-02, 1.97371145e-02, 1.97371145e-02,
       6.38597905e-02, 6.38597905e-02, 6.38597905e-02, 6.38597905e-02,
       1.83325531e-01, 1.83325531e-01, 1.83325531e-01, 1.83325531e-01,
       4.64737704e-01, 4.64737704e-01, 4.64737704e-01, 4.64737704e-01,
       1.03856729e+00, 1.03856729e+00, 1.03856729e+00, 1.03856729e+00,
       2.05236016e+00, 2.05236016e+00, 2.05236016e+00, 2.05236016e+00,
       3.61812720e+00, 3.61812720e+00, 3.61812720e+00, 3.61812720e+00,
       5.77166819e+00, 5.77166819e+00, 5.77166819e+00, 5.77166819e+00,
       8.48843316e+00, 8.48843316e+00, 8.48843316e+00, 8.48843316e+00,
       1.14236988e+01, 1.14236988e+01, 1.14236988e+01, 1.14236988e+01,
       1.42358355e+01, 1.42358355e+01, 1.42358355e+01, 1.42358355e+01,
       1.68025698e+01, 1.68025698e+01, 1.68025698e+01, 1.68025698e+01,
       1.88802206e+01, 1.88802206e+01, 1.88802206e+01, 1.88802206e+01,
       2.00711843e+01, 2.00711843e+01, 2.00711843e+01, 2.00711843e+01,
       2.04384777e+01, 2.04384777e+01, 2.04384777e+01, 2.04384777e+01,
       2.02877280e+01, 2.02877280e+01, 2.02877280e+01, 2.02877280e+01,
       2.00672694e+01, 2.00672694e+01, 2.00672694e+01, 2.00672694e+01,
       2.00505256e+01, 2.00505256e+01, 2.00505256e+01, 2.00505256e+01,
       2.00195354e+01, 2.00195354e+01, 2.00195354e+01, 2.00195354e+01,
       1.97774623e+01, 1.97774623e+01, 1.97774623e+01, 1.97774623e+01,
       1.81444582e+01, 1.81444582e+01, 1.81444582e+01, 1.81444582e+01,
       1.15550729e+01, 1.15550729e+01, 1.15550729e+01, 1.15550729e+01,
       1.77081733e+00, 1.77081733e+00, 1.77081733e+00, 1.77081733e+00,
       2.44888120e-02, 2.44888120e-02, 2.44888120e-02, 2.44888120e-02,
       2.06002983e-05, 2.06002983e-05, 2.06002983e-05, 2.06002983e-05,
       2.98049908e-09, 2.98049908e-09, 2.98049908e-09, 2.98049908e-09,
       4.19450571e-13, 4.19450571e-13, 4.19450571e-13, 4.19450571e-13,
       5.78774071e-17, 5.78774071e-17, 5.78774071e-17, 5.78774071e-17,
       4.37610151e-21, 4.37610151e-21, 4.37610151e-21, 4.37610151e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999930e+02, 9.99999930e+02, 9.99999930e+02, 9.99999930e+02,
       9.99999581e+02, 9.99999581e+02, 9.99999581e+02, 9.99999581e+02,
       9.99997720e+02, 9.99997720e+02, 9.99997720e+02, 9.99997720e+02,
       9.99988733e+02, 9.99988733e+02, 9.99988733e+02, 9.99988733e+02,
       9.99949561e+02, 9.99949561e+02, 9.99949561e+02, 9.99949561e+02,
       9.99796311e+02, 9.99796311e+02, 9.99796311e+02, 9.99796311e+02,
       9.99261774e+02, 9.99261774e+02, 9.99261774e+02, 9.99261774e+02,
       9.97613331e+02, 9.97613331e+02, 9.97613331e+02, 9.97613331e+02,
       9.93162704e+02, 9.93162704e+02, 9.93162704e+02, 9.93162704e+02,
       9.82750522e+02, 9.82750522e+02, 9.82750522e+02, 9.82750522e+02,
       9.61824610e+02, 9.61824610e+02, 9.61824610e+02, 9.61824610e+02,
       9.25831706e+02, 9.25831706e+02, 9.25831706e+02, 9.25831706e+02,
       8.72601859e+02, 8.72601859e+02, 8.72601859e+02, 8.72601859e+02,
       8.03814503e+02, 8.03814503e+02, 8.03814503e+02, 8.03814503e+02,
       7.23838409e+02, 7.23838409e+02, 7.23838409e+02, 7.23838409e+02,
       6.43384851e+02, 6.43384851e+02, 6.43384851e+02, 6.43384851e+02,
       5.74112241e+02, 5.74112241e+02, 5.74112241e+02, 5.74112241e+02,
       5.17349942e+02, 5.17349942e+02, 5.17349942e+02, 5.17349942e+02,
       4.75919956e+02, 4.75919956e+02, 4.75919956e+02, 4.75919956e+02,
       4.51607155e+02, 4.51607155e+02, 4.51607155e+02, 4.51607155e+02,
       4.44470585e+02, 4.44470585e+02, 4.44470585e+02, 4.44470585e+02,
       4.47515366e+02, 4.47515366e+02, 4.47515366e+02, 4.47515366e+02,
       4.52054920e+02, 4.52054920e+02, 4.52054920e+02, 4.52054920e+02,
       4.52910758e+02, 4.52910758e+02, 4.52910758e+02, 4.52910758e+02,
       4.53087888e+02, 4.53087888e+02, 4.53087888e+02, 4.53087888e+02,
       4.45232329e+02, 4.45232329e+02, 4.45232329e+02, 4.45232329e+02,
       3.77819444e+02, 3.77819444e+02, 3.77819444e+02, 3.77819444e+02,
       1.56913286e+02, 1.56913286e+02, 1.56913286e+02, 1.56913286e+02,
       8.48730097e+00, 8.48730097e+00, 8.48730097e+00, 8.48730097e+00,
       3.29887631e-02, 3.29887631e-02, 3.29887631e-02, 3.29887631e-02,
       1.00024710e-02, 1.00024710e-02, 1.00024710e-02, 1.00024710e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999971,
       0.99999971, 0.99999971, 0.99999971, 0.99999849, 0.99999849,
       0.99999849, 0.99999849, 0.99999283, 0.99999283, 0.99999283,
       0.99999283, 0.99996896, 0.99996896, 0.99996896, 0.99996896,
       0.99987805, 0.99987805, 0.99987805, 0.99987805, 0.99956724,
       0.99956724, 0.99956724, 0.99956724, 0.99862027, 0.99862027,
       0.99862027, 0.99862027, 0.99607172, 0.99607172, 0.99607172,
       0.99607172, 0.99006817, 0.99006817, 0.99006817, 0.99006817,
       0.97778423, 0.97778423, 0.97778423, 0.97778423, 0.95603297,
       0.95603297, 0.95603297, 0.95603297, 0.92259283, 0.92259283,
       0.92259283, 0.92259283, 0.87738557, 0.87738557, 0.87738557,
       0.87738557, 0.82228577, 0.82228577, 0.82228577, 0.82228577,
       0.76124912, 0.76124912, 0.76124912, 0.76124912, 0.7039925 ,
       0.7039925 , 0.7039925 , 0.7039925 , 0.65236277, 0.65236277,
       0.65236277, 0.65236277, 0.6131337 , 0.6131337 , 0.6131337 ,
       0.6131337 , 0.57531994, 0.57531994, 0.57531994, 0.57531994,
       0.56785759, 0.56785759, 0.56785759, 0.56785759, 0.56038513,
       0.56038513, 0.56038513, 0.56038513, 0.55900443, 0.55900443,
       0.55900443, 0.55900443, 0.56184189, 0.56184189, 0.56184189,
       0.56184189, 0.60586371, 0.60586371, 0.60586371, 0.60586371,
       0.81871248, 0.81871248, 0.81871248, 0.81871248, 1.4581625 ,
       1.4581625 , 1.4581625 , 1.4581625 , 2.52120104, 2.52120104,
       2.52120104, 2.52120104, 2.74380791, 2.74380791, 2.74380791,
       2.74380791, 1.69735103, 1.69735103, 1.69735103, 1.69735103,
       1.0575523 , 1.0575523 , 1.0575523 , 1.0575523 , 1.00195343,
       1.00195343, 1.00195343, 1.00195343, 1.00000178, 1.00000178,
       1.00000178, 1.00000178, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.91889946e-15, 5.91889946e-15, 5.91889946e-15, 5.91889946e-15,
       9.30184492e-14, 9.30184492e-14, 9.30184492e-14, 9.30184492e-14,
       1.00936002e-12, 1.00936002e-12, 1.00936002e-12, 1.00936002e-12,
       1.01033815e-11, 1.01033815e-11, 1.01033815e-11, 1.01033815e-11,
       9.37627227e-11, 9.37627227e-11, 9.37627227e-11, 9.37627227e-11,
       8.03306517e-10, 8.03306517e-10, 8.03306517e-10, 8.03306517e-10,
       6.34932257e-09, 6.34932257e-09, 6.34932257e-09, 6.34932257e-09,
       4.62683708e-08, 4.62683708e-08, 4.62683708e-08, 4.62683708e-08,
       3.10550365e-07, 3.10550365e-07, 3.10550365e-07, 3.10550365e-07,
       1.91739687e-06, 1.91739687e-06, 1.91739687e-06, 1.91739687e-06,
       1.08719093e-05, 1.08719093e-05, 1.08719093e-05, 1.08719093e-05,
       5.64951242e-05, 5.64951242e-05, 5.64951242e-05, 5.64951242e-05,
       2.68353586e-04, 2.68353586e-04, 2.68353586e-04, 2.68353586e-04,
       1.16148888e-03, 1.16148888e-03, 1.16148888e-03, 1.16148888e-03,
       4.56296110e-03, 4.56296110e-03, 4.56296110e-03, 4.56296110e-03,
       1.61948234e-02, 1.61948234e-02, 1.61948234e-02, 1.61948234e-02,
       5.16501942e-02, 5.16501942e-02, 5.16501942e-02, 5.16501942e-02,
       1.47193741e-01, 1.47193741e-01, 1.47193741e-01, 1.47193741e-01,
       3.73008312e-01, 3.73008312e-01, 3.73008312e-01, 3.73008312e-01,
       8.38464798e-01, 8.38464798e-01, 8.38464798e-01, 8.38464798e-01,
       1.67451578e+00, 1.67451578e+00, 1.67451578e+00, 1.67451578e+00,
       2.99122036e+00, 2.99122036e+00, 2.99122036e+00, 2.99122036e+00,
       4.83584276e+00, 4.83584276e+00, 4.83584276e+00, 4.83584276e+00,
       7.19273469e+00, 7.19273469e+00, 7.19273469e+00, 7.19273469e+00,
       9.93587440e+00, 9.93587440e+00, 9.93587440e+00, 9.93587440e+00,
       1.26632029e+01, 1.26632029e+01, 1.26632029e+01, 1.26632029e+01,
       1.52391788e+01, 1.52391788e+01, 1.52391788e+01, 1.52391788e+01,
       1.75131368e+01, 1.75131368e+01, 1.75131368e+01, 1.75131368e+01,
       1.92750068e+01, 1.92750068e+01, 1.92750068e+01, 1.92750068e+01,
       2.02071764e+01, 2.02071764e+01, 2.02071764e+01, 2.02071764e+01,
       2.04224324e+01, 2.04224324e+01, 2.04224324e+01, 2.04224324e+01,
       2.02143397e+01, 2.02143397e+01, 2.02143397e+01, 2.02143397e+01,
       2.00448842e+01, 2.00448842e+01, 2.00448842e+01, 2.00448842e+01,
       2.00355481e+01, 2.00355481e+01, 2.00355481e+01, 2.00355481e+01,
       2.00263366e+01, 2.00263366e+01, 2.00263366e+01, 2.00263366e+01,
       1.99415493e+01, 1.99415493e+01, 1.99415493e+01, 1.99415493e+01,
       1.92029402e+01, 1.92029402e+01, 1.92029402e+01, 1.92029402e+01,
       1.55549094e+01, 1.55549094e+01, 1.55549094e+01, 1.55549094e+01,
       5.98150672e+00, 5.98150672e+00, 5.98150672e+00, 5.98150672e+00,
       2.65685194e-01, 2.65685194e-01, 2.65685194e-01, 2.65685194e-01,
       9.54732742e-04, 9.54732742e-04, 9.54732742e-04, 9.54732742e-04,
       2.10803427e-07, 2.10803427e-07, 2.10803427e-07, 2.10803427e-07,
       3.02033655e-11, 3.02033655e-11, 3.02033655e-11, 3.02033655e-11,
       4.41057656e-15, 4.41057656e-15, 4.41057656e-15, 4.41057656e-15,
       6.12854624e-19, 6.12854624e-19, 6.12854624e-19, 6.12854624e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999928e+02, 9.99999928e+02, 9.99999928e+02, 9.99999928e+02,
       9.99999593e+02, 9.99999593e+02, 9.99999593e+02, 9.99999593e+02,
       9.99997886e+02, 9.99997886e+02, 9.99997886e+02, 9.99997886e+02,
       9.99989959e+02, 9.99989959e+02, 9.99989959e+02, 9.99989959e+02,
       9.99956542e+02, 9.99956542e+02, 9.99956542e+02, 9.99956542e+02,
       9.99829284e+02, 9.99829284e+02, 9.99829284e+02, 9.99829284e+02,
       9.99394226e+02, 9.99394226e+02, 9.99394226e+02, 9.99394226e+02,
       9.98069219e+02, 9.98069219e+02, 9.98069219e+02, 9.98069219e+02,
       9.94506766e+02, 9.94506766e+02, 9.94506766e+02, 9.94506766e+02,
       9.86133189e+02, 9.86133189e+02, 9.86133189e+02, 9.86133189e+02,
       9.69074355e+02, 9.69074355e+02, 9.69074355e+02, 9.69074355e+02,
       9.39098214e+02, 9.39098214e+02, 9.39098214e+02, 9.39098214e+02,
       8.93564448e+02, 8.93564448e+02, 8.93564448e+02, 8.93564448e+02,
       8.33059937e+02, 8.33059937e+02, 8.33059937e+02, 8.33059937e+02,
       7.60987238e+02, 7.60987238e+02, 7.60987238e+02, 7.60987238e+02,
       6.83226607e+02, 6.83226607e+02, 6.83226607e+02, 6.83226607e+02,
       6.12243005e+02, 6.12243005e+02, 6.12243005e+02, 6.12243005e+02,
       5.51401650e+02, 5.51401650e+02, 5.51401650e+02, 5.51401650e+02,
       5.01944900e+02, 5.01944900e+02, 5.01944900e+02, 5.01944900e+02,
       4.67782716e+02, 4.67782716e+02, 4.67782716e+02, 4.67782716e+02,
       4.49784516e+02, 4.49784516e+02, 4.49784516e+02, 4.49784516e+02,
       4.45064233e+02, 4.45064233e+02, 4.45064233e+02, 4.45064233e+02,
       4.48787029e+02, 4.48787029e+02, 4.48787029e+02, 4.48787029e+02,
       4.51978695e+02, 4.51978695e+02, 4.51978695e+02, 4.51978695e+02,
       4.52793680e+02, 4.52793680e+02, 4.52793680e+02, 4.52793680e+02,
       4.53282403e+02, 4.53282403e+02, 4.53282403e+02, 4.53282403e+02,
       4.50955061e+02, 4.50955061e+02, 4.50955061e+02, 4.50955061e+02,
       4.22213148e+02, 4.22213148e+02, 4.22213148e+02, 4.22213148e+02,
       2.77875953e+02, 2.77875953e+02, 2.77875953e+02, 2.77875953e+02,
       4.81022077e+01, 4.81022077e+01, 4.81022077e+01, 4.81022077e+01,
       6.43549685e-01, 6.43549685e-01, 6.43549685e-01, 6.43549685e-01,
       1.02488911e-02, 1.02488911e-02, 1.02488911e-02, 1.02488911e-02,
       1.00000249e-02, 1.00000249e-02, 1.00000249e-02, 1.00000249e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999995, 0.99999995, 0.99999995, 0.99999995,
       0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999862,
       0.99999862, 0.99999862, 0.99999862, 0.99999367, 0.99999367,
       0.99999367, 0.99999367, 0.99997341, 0.99997341, 0.99997341,
       0.99997341, 0.99989805, 0.99989805, 0.99989805, 0.99989805,
       0.99964482, 0.99964482, 0.99964482, 0.99964482, 0.99888164,
       0.99888164, 0.99888164, 0.99888164, 0.99683513, 0.99683513,
       0.99683513, 0.99683513, 0.99199451, 0.99199451, 0.99199451,
       0.99199451, 0.9819733 , 0.9819733 , 0.9819733 , 0.9819733 ,
       0.96389763, 0.96389763, 0.96389763, 0.96389763, 0.93545495,
       0.93545495, 0.93545495, 0.93545495, 0.89604286, 0.89604286,
       0.89604286, 0.89604286, 0.84702851, 0.84702851, 0.84702851,
       0.84702851, 0.79079924, 0.79079924, 0.79079924, 0.79079924,
       0.73376007, 0.73376007, 0.73376007, 0.73376007, 0.68273638,
       0.68273638, 0.68273638, 0.68273638, 0.63612561, 0.63612561,
       0.63612561, 0.63612561, 0.60307654, 0.60307654, 0.60307654,
       0.60307654, 0.57002222, 0.57002222, 0.57002222, 0.57002222,
       0.56543931, 0.56543931, 0.56543931, 0.56543931, 0.56183756,
       0.56183756, 0.56183756, 0.56183756, 0.56199531, 0.56199531,
       0.56199531, 0.56199531, 0.56171758, 0.56171758, 0.56171758,
       0.56171758, 0.58609083, 0.58609083, 0.58609083, 0.58609083,
       0.72311334, 0.72311334, 0.72311334, 0.72311334, 1.17609219,
       1.17609219, 1.17609219, 1.17609219, 2.18113668, 2.18113668,
       2.18113668, 2.18113668, 2.86626909, 2.86626909, 2.86626909,
       2.86626909, 2.37228972, 2.37228972, 2.37228972, 2.37228972,
       1.2039004 , 1.2039004 , 1.2039004 , 1.2039004 , 1.01187606,
       1.01187606, 1.01187606, 1.01187606, 1.00010508, 1.00010508,
       1.00010508, 1.00010508, 1.00000002, 1.00000002, 1.00000002,
       1.00000002, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.33539348e-14, 1.33539348e-14, 1.33539348e-14, 1.33539348e-14,
       1.55607325e-13, 1.55607325e-13, 1.55607325e-13, 1.55607325e-13,
       1.56402128e-12, 1.56402128e-12, 1.56402128e-12, 1.56402128e-12,
       1.45324292e-11, 1.45324292e-11, 1.45324292e-11, 1.45324292e-11,
       1.25185482e-10, 1.25185482e-10, 1.25185482e-10, 1.25185482e-10,
       1.00094143e-09, 1.00094143e-09, 1.00094143e-09, 1.00094143e-09,
       7.42144171e-09, 7.42144171e-09, 7.42144171e-09, 7.42144171e-09,
       5.09825802e-08, 5.09825802e-08, 5.09825802e-08, 5.09825802e-08,
       3.24157733e-07, 3.24157733e-07, 3.24157733e-07, 3.24157733e-07,
       1.90508651e-06, 1.90508651e-06, 1.90508651e-06, 1.90508651e-06,
       1.03318499e-05, 1.03318499e-05, 1.03318499e-05, 1.03318499e-05,
       5.16016816e-05, 5.16016816e-05, 5.16016816e-05, 5.16016816e-05,
       2.36752814e-04, 2.36752814e-04, 2.36752814e-04, 2.36752814e-04,
       9.94861791e-04, 9.94861791e-04, 9.94861791e-04, 9.94861791e-04,
       3.81489106e-03, 3.81489106e-03, 3.81489106e-03, 3.81489106e-03,
       1.32911013e-02, 1.32911013e-02, 1.32911013e-02, 1.32911013e-02,
       4.18617207e-02, 4.18617207e-02, 4.18617207e-02, 4.18617207e-02,
       1.18555604e-01, 1.18555604e-01, 1.18555604e-01, 1.18555604e-01,
       3.00441076e-01, 3.00441076e-01, 3.00441076e-01, 3.00441076e-01,
       6.79231840e-01, 6.79231840e-01, 6.79231840e-01, 6.79231840e-01,
       1.37049927e+00, 1.37049927e+00, 1.37049927e+00, 1.37049927e+00,
       2.48027947e+00, 2.48027947e+00, 2.48027947e+00, 2.48027947e+00,
       4.06534852e+00, 4.06534852e+00, 4.06534852e+00, 4.06534852e+00,
       6.11874426e+00, 6.11874426e+00, 6.11874426e+00, 6.11874426e+00,
       8.59698769e+00, 8.59698769e+00, 8.59698769e+00, 8.59698769e+00,
       1.11984851e+01, 1.11984851e+01, 1.11984851e+01, 1.11984851e+01,
       1.37435738e+01, 1.37435738e+01, 1.37435738e+01, 1.37435738e+01,
       1.61020009e+01, 1.61020009e+01, 1.61020009e+01, 1.61020009e+01,
       1.81047370e+01, 1.81047370e+01, 1.81047370e+01, 1.81047370e+01,
       1.95637081e+01, 1.95637081e+01, 1.95637081e+01, 1.95637081e+01,
       2.02802090e+01, 2.02802090e+01, 2.02802090e+01, 2.02802090e+01,
       2.03974866e+01, 2.03974866e+01, 2.03974866e+01, 2.03974866e+01,
       2.01688547e+01, 2.01688547e+01, 2.01688547e+01, 2.01688547e+01,
       2.00346701e+01, 2.00346701e+01, 2.00346701e+01, 2.00346701e+01,
       2.00176538e+01, 2.00176538e+01, 2.00176538e+01, 2.00176538e+01,
       2.00209769e+01, 2.00209769e+01, 2.00209769e+01, 2.00209769e+01,
       1.99976377e+01, 1.99976377e+01, 1.99976377e+01, 1.99976377e+01,
       1.96779963e+01, 1.96779963e+01, 1.96779963e+01, 1.96779963e+01,
       1.78764303e+01, 1.78764303e+01, 1.78764303e+01, 1.78764303e+01,
       1.11193485e+01, 1.11193485e+01, 1.11193485e+01, 1.11193485e+01,
       1.55576781e+00, 1.55576781e+00, 1.55576781e+00, 1.55576781e+00,
       1.98900933e-02, 1.98900933e-02, 1.98900933e-02, 1.98900933e-02,
       1.52255734e-05, 1.52255734e-05, 1.52255734e-05, 1.52255734e-05,
       2.23363364e-09, 2.23363364e-09, 2.23363364e-09, 2.23363364e-09,
       3.21107467e-13, 3.21107467e-13, 3.21107467e-13, 3.21107467e-13,
       4.55567759e-17, 4.55567759e-17, 4.55567759e-17, 4.55567759e-17,
       4.26370518e-21, 4.26370518e-21, 4.26370518e-21, 4.26370518e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999929e+02, 9.99999929e+02, 9.99999929e+02, 9.99999929e+02,
       9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
       9.99998069e+02, 9.99998069e+02, 9.99998069e+02, 9.99998069e+02,
       9.99991142e+02, 9.99991142e+02, 9.99991142e+02, 9.99991142e+02,
       9.99962776e+02, 9.99962776e+02, 9.99962776e+02, 9.99962776e+02,
       9.99857270e+02, 9.99857270e+02, 9.99857270e+02, 9.99857270e+02,
       9.99502814e+02, 9.99502814e+02, 9.99502814e+02, 9.99502814e+02,
       9.98434853e+02, 9.98434853e+02, 9.98434853e+02, 9.98434853e+02,
       9.95573298e+02, 9.95573298e+02, 9.95573298e+02, 9.95573298e+02,
       9.88816876e+02, 9.88816876e+02, 9.88816876e+02, 9.88816876e+02,
       9.74879194e+02, 9.74879194e+02, 9.74879194e+02, 9.74879194e+02,
       9.49898234e+02, 9.49898234e+02, 9.49898234e+02, 9.49898234e+02,
       9.10986409e+02, 9.10986409e+02, 9.10986409e+02, 9.10986409e+02,
       8.57855860e+02, 8.57855860e+02, 8.57855860e+02, 8.57855860e+02,
       7.93072862e+02, 7.93072862e+02, 7.93072862e+02, 7.93072862e+02,
       7.20578542e+02, 7.20578542e+02, 7.20578542e+02, 7.20578542e+02,
       6.48800650e+02, 6.48800650e+02, 6.48800650e+02, 6.48800650e+02,
       5.86389112e+02, 5.86389112e+02, 5.86389112e+02, 5.86389112e+02,
       5.32725608e+02, 5.32725608e+02, 5.32725608e+02, 5.32725608e+02,
       4.89778956e+02, 4.89778956e+02, 4.89778956e+02, 4.89778956e+02,
       4.61519534e+02, 4.61519534e+02, 4.61519534e+02, 4.61519534e+02,
       4.48525367e+02, 4.48525367e+02, 4.48525367e+02, 4.48525367e+02,
       4.45928711e+02, 4.45928711e+02, 4.45928711e+02, 4.45928711e+02,
       4.49956676e+02, 4.49956676e+02, 4.49956676e+02, 4.49956676e+02,
       4.52076499e+02, 4.52076499e+02, 4.52076499e+02, 4.52076499e+02,
       4.52643316e+02, 4.52643316e+02, 4.52643316e+02, 4.52643316e+02,
       4.53164778e+02, 4.53164778e+02, 4.53164778e+02, 4.53164778e+02,
       4.52705085e+02, 4.52705085e+02, 4.52705085e+02, 4.52705085e+02,
       4.42106466e+02, 4.42106466e+02, 4.42106466e+02, 4.42106466e+02,
       3.66606419e+02, 3.66606419e+02, 3.66606419e+02, 3.66606419e+02,
       1.43278417e+02, 1.43278417e+02, 1.43278417e+02, 1.43278417e+02,
       7.05131525e+00, 7.05131525e+00, 7.05131525e+00, 7.05131525e+00,
       2.69964841e-02, 2.69964841e-02, 2.69964841e-02, 2.69964841e-02,
       1.00018104e-02, 1.00018104e-02, 1.00018104e-02, 1.00018104e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999995, 0.99999995, 0.99999995,
       0.99999995, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
       0.99999876, 0.99999876, 0.99999876, 0.99999876, 0.99999446,
       0.99999446, 0.99999446, 0.99999446, 0.99997733, 0.99997733,
       0.99997733, 0.99997733, 0.99991492, 0.99991492, 0.99991492,
       0.99991492, 0.99970841, 0.99970841, 0.99970841, 0.99970841,
       0.99909185, 0.99909185, 0.99909185, 0.99909185, 0.99744342,
       0.99744342, 0.99744342, 0.99744342, 0.99352897, 0.99352897,
       0.99352897, 0.99352897, 0.98533607, 0.98533607, 0.98533607,
       0.98533607, 0.9703007 , 0.9703007 , 0.9703007 , 0.9703007 ,
       0.94611525, 0.94611525, 0.94611525, 0.94611525, 0.91178545,
       0.91178545, 0.91178545, 0.91178545, 0.8681275 , 0.8681275 ,
       0.8681275 , 0.8681275 , 0.81711896, 0.81711896, 0.81711896,
       0.81711896, 0.76228815, 0.76228815, 0.76228815, 0.76228815,
       0.71063528, 0.71063528, 0.71063528, 0.71063528, 0.66449658,
       0.66449658, 0.66449658, 0.66449658, 0.62236199, 0.62236199,
       0.62236199, 0.62236199, 0.59504764, 0.59504764, 0.59504764,
       0.59504764, 0.56660492, 0.56660492, 0.56660492, 0.56660492,
       0.56344579, 0.56344579, 0.56344579, 0.56344579, 0.56277418,
       0.56277418, 0.56277418, 0.56277418, 0.56425748, 0.56425748,
       0.56425748, 0.56425748, 0.56271208, 0.56271208, 0.56271208,
       0.56271208, 0.57532902, 0.57532902, 0.57532902, 0.57532902,
       0.66138282, 0.66138282, 0.66138282, 0.66138282, 0.97477241,
       0.97477241, 0.97477241, 0.97477241, 1.76866995, 1.76866995,
       1.76866995, 1.76866995, 2.79140624, 2.79140624, 2.79140624,
       2.79140624, 2.85504716, 2.85504716, 2.85504716, 2.85504716,
       1.6572704 , 1.6572704 , 1.6572704 , 1.6572704 , 1.05142481,
       1.05142481, 1.05142481, 1.05142481, 1.00163012, 1.00163012,
       1.00163012, 1.00163012, 1.00000124, 1.00000124, 1.00000124,
       1.00000124, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.24969420e-13, 2.24969420e-13, 2.24969420e-13, 2.24969420e-13,
       2.25206716e-12, 2.25206716e-12, 2.25206716e-12, 2.25206716e-12,
       1.95360740e-11, 1.95360740e-11, 1.95360740e-11, 1.95360740e-11,
       1.57777129e-10, 1.57777129e-10, 1.57777129e-10, 1.57777129e-10,
       1.18752511e-09, 1.18752511e-09, 1.18752511e-09, 1.18752511e-09,
       8.32407101e-09, 8.32407101e-09, 8.32407101e-09, 8.32407101e-09,
       5.42910740e-08, 5.42910740e-08, 5.42910740e-08, 5.42910740e-08,
       3.29113213e-07, 3.29113213e-07, 3.29113213e-07, 3.29113213e-07,
       1.85184067e-06, 1.85184067e-06, 1.85184067e-06, 1.85184067e-06,
       9.65592764e-06, 9.65592764e-06, 9.65592764e-06, 9.65592764e-06,
       4.65650184e-05, 4.65650184e-05, 4.65650184e-05, 4.65650184e-05,
       2.07190385e-04, 2.07190385e-04, 2.07190385e-04, 2.07190385e-04,
       8.48170242e-04, 8.48170242e-04, 8.48170242e-04, 8.48170242e-04,
       3.18354794e-03, 3.18354794e-03, 3.18354794e-03, 3.18354794e-03,
       1.09115255e-02, 1.09115255e-02, 1.09115255e-02, 1.09115255e-02,
       3.39908368e-02, 3.39908368e-02, 3.39908368e-02, 3.39908368e-02,
       9.57478717e-02, 9.57478717e-02, 9.57478717e-02, 9.57478717e-02,
       2.42712876e-01, 2.42712876e-01, 2.42712876e-01, 2.42712876e-01,
       5.51793377e-01, 5.51793377e-01, 5.51793377e-01, 5.51793377e-01,
       1.12446443e+00, 1.12446443e+00, 1.12446443e+00, 1.12446443e+00,
       2.06118893e+00, 2.06118893e+00, 2.06118893e+00, 2.06118893e+00,
       3.42552666e+00, 3.42552666e+00, 3.42552666e+00, 3.42552666e+00,
       5.22314600e+00, 5.22314600e+00, 5.22314600e+00, 5.22314600e+00,
       7.41906287e+00, 7.41906287e+00, 7.41906287e+00, 7.41906287e+00,
       9.88411479e+00, 9.88411479e+00, 9.88411479e+00, 9.88411479e+00,
       1.23254490e+01, 1.23254490e+01, 1.23254490e+01, 1.23254490e+01,
       1.46753619e+01, 1.46753619e+01, 1.46753619e+01, 1.46753619e+01,
       1.68362063e+01, 1.68362063e+01, 1.68362063e+01, 1.68362063e+01,
       1.85972036e+01, 1.85972036e+01, 1.85972036e+01, 1.85972036e+01,
       1.97810316e+01, 1.97810316e+01, 1.97810316e+01, 1.97810316e+01,
       2.03056736e+01, 2.03056736e+01, 2.03056736e+01, 2.03056736e+01,
       2.03583742e+01, 2.03583742e+01, 2.03583742e+01, 2.03583742e+01,
       2.01400339e+01, 2.01400339e+01, 2.01400339e+01, 2.01400339e+01,
       2.00353247e+01, 2.00353247e+01, 2.00353247e+01, 2.00353247e+01,
       2.00086210e+01, 2.00086210e+01, 2.00086210e+01, 2.00086210e+01,
       2.00116248e+01, 2.00116248e+01, 2.00116248e+01, 2.00116248e+01,
       2.00091285e+01, 2.00091285e+01, 2.00091285e+01, 2.00091285e+01,
       1.98825700e+01, 1.98825700e+01, 1.98825700e+01, 1.98825700e+01,
       1.90344265e+01, 1.90344265e+01, 1.90344265e+01, 1.90344265e+01,
       1.51585367e+01, 1.51585367e+01, 1.51585367e+01, 1.51585367e+01,
       5.49808022e+00, 5.49808022e+00, 5.49808022e+00, 5.49808022e+00,
       2.20110268e-01, 2.20110268e-01, 2.20110268e-01, 2.20110268e-01,
       7.04288698e-04, 7.04288698e-04, 7.04288698e-04, 7.04288698e-04,
       1.46929013e-07, 1.46929013e-07, 1.46929013e-07, 1.46929013e-07,
       2.17393213e-11, 2.17393213e-11, 2.17393213e-11, 2.17393213e-11,
       3.25874024e-15, 3.25874024e-15, 3.25874024e-15, 3.25874024e-15,
       4.93883641e-19, 4.93883641e-19, 4.93883641e-19, 4.93883641e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999931e+02, 9.99999931e+02, 9.99999931e+02, 9.99999931e+02,
       9.99999639e+02, 9.99999639e+02, 9.99999639e+02, 9.99999639e+02,
       9.99998258e+02, 9.99998258e+02, 9.99998258e+02, 9.99998258e+02,
       9.99992248e+02, 9.99992248e+02, 9.99992248e+02, 9.99992248e+02,
       9.99968265e+02, 9.99968265e+02, 9.99968265e+02, 9.99968265e+02,
       9.99880890e+02, 9.99880890e+02, 9.99880890e+02, 9.99880890e+02,
       9.99591810e+02, 9.99591810e+02, 9.99591810e+02, 9.99591810e+02,
       9.98728953e+02, 9.98728953e+02, 9.98728953e+02, 9.98728953e+02,
       9.96423469e+02, 9.96423469e+02, 9.96423469e+02, 9.96423469e+02,
       9.90956621e+02, 9.90956621e+02, 9.90956621e+02, 9.90956621e+02,
       9.79547910e+02, 9.79547910e+02, 9.79547910e+02, 9.79547910e+02,
       9.58721154e+02, 9.58721154e+02, 9.58721154e+02, 9.58721154e+02,
       9.25505523e+02, 9.25505523e+02, 9.25505523e+02, 9.25505523e+02,
       8.78949351e+02, 8.78949351e+02, 8.78949351e+02, 8.78949351e+02,
       8.20748601e+02, 8.20748601e+02, 8.20748601e+02, 8.20748601e+02,
       7.54214683e+02, 7.54214683e+02, 7.54214683e+02, 7.54214683e+02,
       6.84375067e+02, 6.84375067e+02, 6.84375067e+02, 6.84375067e+02,
       6.20368568e+02, 6.20368568e+02, 6.20368568e+02, 6.20368568e+02,
       5.64370431e+02, 5.64370431e+02, 5.64370431e+02, 5.64370431e+02,
       5.17160227e+02, 5.17160227e+02, 5.17160227e+02, 5.17160227e+02,
       4.80250812e+02, 4.80250812e+02, 4.80250812e+02, 4.80250812e+02,
       4.56943598e+02, 4.56943598e+02, 4.56943598e+02, 4.56943598e+02,
       4.47678145e+02, 4.47678145e+02, 4.47678145e+02, 4.47678145e+02,
       4.46796826e+02, 4.46796826e+02, 4.46796826e+02, 4.46796826e+02,
       4.50880096e+02, 4.50880096e+02, 4.50880096e+02, 4.50880096e+02,
       4.52357569e+02, 4.52357569e+02, 4.52357569e+02, 4.52357569e+02,
       4.52616932e+02, 4.52616932e+02, 4.52616932e+02, 4.52616932e+02,
       4.52970783e+02, 4.52970783e+02, 4.52970783e+02, 4.52970783e+02,
       4.53046444e+02, 4.53046444e+02, 4.53046444e+02, 4.53046444e+02,
       4.49923083e+02, 4.49923083e+02, 4.49923083e+02, 4.49923083e+02,
       4.15828843e+02, 4.15828843e+02, 4.15828843e+02, 4.15828843e+02,
       2.62221323e+02, 2.62221323e+02, 2.62221323e+02, 2.62221323e+02,
       4.12019102e+01, 4.12019102e+01, 4.12019102e+01, 4.12019102e+01,
       4.94445574e-01, 4.94445574e-01, 4.94445574e-01, 4.94445574e-01,
       1.01642073e-02, 1.01642073e-02, 1.01642073e-02, 1.01642073e-02,
       1.00000174e-02, 1.00000174e-02, 1.00000174e-02, 1.00000174e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.99999976, 0.99999976, 0.99999976,
       0.99999976, 0.99999889, 0.99999889, 0.99999889, 0.99999889,
       0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99998075,
       0.99998075, 0.99998075, 0.99998075, 0.9999291 , 0.9999291 ,
       0.9999291 , 0.9999291 , 0.99976052, 0.99976052, 0.99976052,
       0.99976052, 0.99926135, 0.99926135, 0.99926135, 0.99926135,
       0.99793005, 0.99793005, 0.99793005, 0.99793005, 0.99475663,
       0.99475663, 0.99475663, 0.99475663, 0.98804657, 0.98804657,
       0.98804657, 0.98804657, 0.97553184, 0.97553184, 0.97553184,
       0.97553184, 0.95497685, 0.95497685, 0.95497685, 0.95497685,
       0.92511099, 0.92511099, 0.92511099, 0.92511099, 0.88625836,
       0.88625836, 0.88625836, 0.88625836, 0.84008392, 0.84008392,
       0.84008392, 0.84008392, 0.78876117, 0.78876117, 0.78876117,
       0.78876117, 0.73758834, 0.73758834, 0.73758834, 0.73758834,
       0.69072274, 0.69072274, 0.69072274, 0.69072274, 0.64901095,
       0.64901095, 0.64901095, 0.64901095, 0.61063333, 0.61063333,
       0.61063333, 0.61063333, 0.58838435, 0.58838435, 0.58838435,
       0.58838435, 0.56482776, 0.56482776, 0.56482776, 0.56482776,
       0.56211874, 0.56211874, 0.56211874, 0.56211874, 0.56323644,
       0.56323644, 0.56323644, 0.56323644, 0.56573502, 0.56573502,
       0.56573502, 0.56573502, 0.56392989, 0.56392989, 0.56392989,
       0.56392989, 0.56998742, 0.56998742, 0.56998742, 0.56998742,
       0.62261429, 0.62261429, 0.62261429, 0.62261429, 0.83494329,
       0.83494329, 0.83494329, 0.83494329, 1.42257004, 1.42257004,
       1.42257004, 1.42257004, 2.51165741, 2.51165741, 2.51165741,
       2.51165741, 3.03556687, 3.03556687, 3.03556687, 3.03556687,
       2.3649753 , 2.3649753 , 2.3649753 , 2.3649753 , 1.18082651,
       1.18082651, 1.18082651, 1.18082651, 1.01021472, 1.01021472,
       1.01021472, 1.01021472, 1.0000747 , 1.0000747 , 1.0000747 ,
       1.0000747 , 1.00000001, 1.00000001, 1.00000001, 1.00000001,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.83938532e-12, 2.83938532e-12, 2.83938532e-12, 2.83938532e-12,
       2.48780551e-11, 2.48780551e-11, 2.48780551e-11, 2.48780551e-11,
       1.89659153e-10, 1.89659153e-10, 1.89659153e-10, 1.89659153e-10,
       1.35318050e-09, 1.35318050e-09, 1.35318050e-09, 1.35318050e-09,
       9.02461193e-09, 9.02461193e-09, 9.02461193e-09, 9.02461193e-09,
       5.62089401e-08, 5.62089401e-08, 5.62089401e-08, 5.62089401e-08,
       3.26589983e-07, 3.26589983e-07, 3.26589983e-07, 3.26589983e-07,
       1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
       8.90072519e-06, 8.90072519e-06, 8.90072519e-06, 8.90072519e-06,
       4.16033994e-05, 4.16033994e-05, 4.16033994e-05, 4.16033994e-05,
       1.80121521e-04, 1.80121521e-04, 1.80121521e-04, 1.80121521e-04,
       7.20378916e-04, 7.20378916e-04, 7.20378916e-04, 7.20378916e-04,
       2.65286556e-03, 2.65286556e-03, 2.65286556e-03, 2.65286556e-03,
       8.96132297e-03, 8.96132297e-03, 8.96132297e-03, 8.96132297e-03,
       2.76450137e-02, 2.76450137e-02, 2.76450137e-02, 2.76450137e-02,
       7.75091590e-02, 7.75091590e-02, 7.75091590e-02, 7.75091590e-02,
       1.96575287e-01, 1.96575287e-01, 1.96575287e-01, 1.96575287e-01,
       4.49321350e-01, 4.49321350e-01, 4.49321350e-01, 4.49321350e-01,
       9.24431499e-01, 9.24431499e-01, 9.24431499e-01, 9.24431499e-01,
       1.71576116e+00, 1.71576116e+00, 1.71576116e+00, 1.71576116e+00,
       2.89106042e+00, 2.89106042e+00, 2.89106042e+00, 2.89106042e+00,
       4.46780650e+00, 4.46780650e+00, 4.46780650e+00, 4.46780650e+00,
       6.41677343e+00, 6.41677343e+00, 6.41677343e+00, 6.41677343e+00,
       8.68601329e+00, 8.68601329e+00, 8.68601329e+00, 8.68601329e+00,
       1.10249054e+01, 1.10249054e+01, 1.10249054e+01, 1.10249054e+01,
       1.33220447e+01, 1.33220447e+01, 1.33220447e+01, 1.33220447e+01,
       1.54925996e+01, 1.54925996e+01, 1.54925996e+01, 1.54925996e+01,
       1.74546801e+01, 1.74546801e+01, 1.74546801e+01, 1.74546801e+01,
       1.89986134e+01, 1.89986134e+01, 1.89986134e+01, 1.89986134e+01,
       1.99480450e+01, 1.99480450e+01, 1.99480450e+01, 1.99480450e+01,
       2.03051988e+01, 2.03051988e+01, 2.03051988e+01, 2.03051988e+01,
       2.03097963e+01, 2.03097963e+01, 2.03097963e+01, 2.03097963e+01,
       2.01135364e+01, 2.01135364e+01, 2.01135364e+01, 2.01135364e+01,
       2.00395134e+01, 2.00395134e+01, 2.00395134e+01, 2.00395134e+01,
       2.00112282e+01, 2.00112282e+01, 2.00112282e+01, 2.00112282e+01,
       2.00045207e+01, 2.00045207e+01, 2.00045207e+01, 2.00045207e+01,
       2.00069683e+01, 2.00069683e+01, 2.00069683e+01, 2.00069683e+01,
       1.99578722e+01, 1.99578722e+01, 1.99578722e+01, 1.99578722e+01,
       1.95688870e+01, 1.95688870e+01, 1.95688870e+01, 1.95688870e+01,
       1.75969855e+01, 1.75969855e+01, 1.75969855e+01, 1.75969855e+01,
       1.06108424e+01, 1.06108424e+01, 1.06108424e+01, 1.06108424e+01,
       1.32398591e+00, 1.32398591e+00, 1.32398591e+00, 1.32398591e+00,
       1.52470806e-02, 1.52470806e-02, 1.52470806e-02, 1.52470806e-02,
       1.02514744e-05, 1.02514744e-05, 1.02514744e-05, 1.02514744e-05,
       1.51595044e-09, 1.51595044e-09, 1.51595044e-09, 1.51595044e-09,
       2.21449669e-13, 2.21449669e-13, 2.21449669e-13, 2.21449669e-13,
       3.21821680e-17, 3.21821680e-17, 3.21821680e-17, 3.21821680e-17,
       4.22583135e-21, 4.22583135e-21, 4.22583135e-21, 4.22583135e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
       9.99999667e+02, 9.99999667e+02, 9.99999667e+02, 9.99999667e+02,
       9.99998443e+02, 9.99998443e+02, 9.99998443e+02, 9.99998443e+02,
       9.99993260e+02, 9.99993260e+02, 9.99993260e+02, 9.99993260e+02,
       9.99973046e+02, 9.99973046e+02, 9.99973046e+02, 9.99973046e+02,
       9.99900744e+02, 9.99900744e+02, 9.99900744e+02, 9.99900744e+02,
       9.99664753e+02, 9.99664753e+02, 9.99664753e+02, 9.99664753e+02,
       9.98966129e+02, 9.98966129e+02, 9.98966129e+02, 9.98966129e+02,
       9.97103821e+02, 9.97103821e+02, 9.97103821e+02, 9.97103821e+02,
       9.92669836e+02, 9.92669836e+02, 9.92669836e+02, 9.92669836e+02,
       9.83316822e+02, 9.83316822e+02, 9.83316822e+02, 9.83316822e+02,
       9.65949266e+02, 9.65949266e+02, 9.65949266e+02, 9.65949266e+02,
       9.37629572e+02, 9.37629572e+02, 9.37629572e+02, 9.37629572e+02,
       8.96925524e+02, 8.96925524e+02, 8.96925524e+02, 8.96925524e+02,
       8.44757270e+02, 8.44757270e+02, 8.44757270e+02, 8.44757270e+02,
       7.83932229e+02, 7.83932229e+02, 7.83932229e+02, 7.83932229e+02,
       7.17860197e+02, 7.17860197e+02, 7.17860197e+02, 7.17860197e+02,
       6.53411534e+02, 6.53411534e+02, 6.53411534e+02, 6.53411534e+02,
       5.96226302e+02, 5.96226302e+02, 5.96226302e+02, 5.96226302e+02,
       5.45775399e+02, 5.45775399e+02, 5.45775399e+02, 5.45775399e+02,
       5.04059456e+02, 5.04059456e+02, 5.04059456e+02, 5.04059456e+02,
       4.72707776e+02, 4.72707776e+02, 4.72707776e+02, 4.72707776e+02,
       4.53820542e+02, 4.53820542e+02, 4.53820542e+02, 4.53820542e+02,
       4.47282842e+02, 4.47282842e+02, 4.47282842e+02, 4.47282842e+02,
       4.47539085e+02, 4.47539085e+02, 4.47539085e+02, 4.47539085e+02,
       4.51468618e+02, 4.51468618e+02, 4.51468618e+02, 4.51468618e+02,
       4.52679279e+02, 4.52679279e+02, 4.52679279e+02, 4.52679279e+02,
       4.52744959e+02, 4.52744959e+02, 4.52744959e+02, 4.52744959e+02,
       4.52862141e+02, 4.52862141e+02, 4.52862141e+02, 4.52862141e+02,
       4.53025731e+02, 4.53025731e+02, 4.53025731e+02, 4.53025731e+02,
       4.52509333e+02, 4.52509333e+02, 4.52509333e+02, 4.52509333e+02,
       4.39197326e+02, 4.39197326e+02, 4.39197326e+02, 4.39197326e+02,
       3.55061144e+02, 3.55061144e+02, 3.55061144e+02, 3.55061144e+02,
       1.28955744e+02, 1.28955744e+02, 1.28955744e+02, 1.28955744e+02,
       5.63751354e+00, 5.63751354e+00, 5.63751354e+00, 5.63751354e+00,
       2.16308297e-02, 2.16308297e-02, 2.16308297e-02, 2.16308297e-02,
       1.00012116e-02, 1.00012116e-02, 1.00012116e-02, 1.00012116e-02,
       1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
       0.99999996, 0.99999996, 0.99999996, 0.99999978, 0.99999978,
       0.99999978, 0.99999978, 0.99999901, 0.99999901, 0.99999901,
       0.99999901, 0.99999584, 0.99999584, 0.99999584, 0.99999584,
       0.9999837 , 0.9999837 , 0.9999837 , 0.9999837 , 0.99994098,
       0.99994098, 0.99994098, 0.99994098, 0.99980323, 0.99980323,
       0.99980323, 0.99980323, 0.99939833, 0.99939833, 0.99939833,
       0.99939833, 0.99832066, 0.99832066, 0.99832066, 0.99832066,
       0.99574245, 0.99574245, 0.99574245, 0.99574245, 0.99023874,
       0.99023874, 0.99023874, 0.99023874, 0.97981742, 0.97981742,
       0.97981742, 0.97981742, 0.96235966, 0.96235966, 0.96235966,
       0.96235966, 0.93641648, 0.93641648, 0.93641648, 0.93641648,
       0.90189237, 0.90189237, 0.90189237, 0.90189237, 0.86005507,
       0.86005507, 0.86005507, 0.86005507, 0.81274868, 0.81274868,
       0.81274868, 0.81274868, 0.76311269, 0.76311269, 0.76311269,
       0.76311269, 0.71642   , 0.71642   , 0.71642   , 0.71642   ,
       0.67333822, 0.67333822, 0.67333822, 0.67333822, 0.63583393,
       0.63583393, 0.63583393, 0.63583393, 0.6007504 , 0.6007504 ,
       0.6007504 , 0.6007504 , 0.58279291, 0.58279291, 0.58279291,
       0.58279291, 0.56410322, 0.56410322, 0.56410322, 0.56410322,
       0.56160416, 0.56160416, 0.56160416, 0.56160416, 0.56332121,
       0.56332121, 0.56332121, 0.56332121, 0.56656977, 0.56656977,
       0.56656977, 0.56656977, 0.56500324, 0.56500324, 0.56500324,
       0.56500324, 0.56762   , 0.56762   , 0.56762   , 0.56762   ,
       0.59894803, 0.59894803, 0.59894803, 0.59894803, 0.74001262,
       0.74001262, 0.74001262, 0.74001262, 1.16399112, 1.16399112,
       1.16399112, 1.16399112, 2.10522387, 2.10522387, 2.10522387,
       2.10522387, 3.01416422, 3.01416422, 3.01416422, 3.01416422,
       2.93378532, 2.93378532, 2.93378532, 2.93378532, 1.60066424,
       1.60066424, 1.60066424, 1.60066424, 1.0447292 , 1.0447292 ,
       1.0447292 , 1.0447292 , 1.00129844, 1.00129844, 1.00129844,
       1.00129844, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.79929625e-11, 2.79929625e-11, 2.79929625e-11, 2.79929625e-11,
       2.19420258e-10, 2.19420258e-10, 2.19420258e-10, 2.19420258e-10,
       1.49116083e-09, 1.49116083e-09, 1.49116083e-09, 1.49116083e-09,
       9.51188129e-09, 9.51188129e-09, 9.51188129e-09, 9.51188129e-09,
       5.68485475e-08, 5.68485475e-08, 5.68485475e-08, 5.68485475e-08,
       3.17985043e-07, 3.17985043e-07, 3.17985043e-07, 3.17985043e-07,
       1.66248056e-06, 1.66248056e-06, 1.66248056e-06, 1.66248056e-06,
       8.11135729e-06, 8.11135729e-06, 8.11135729e-06, 8.11135729e-06,
       3.68655451e-05, 3.68655451e-05, 3.68655451e-05, 3.68655451e-05,
       1.55738945e-04, 1.55738945e-04, 1.55738945e-04, 1.55738945e-04,
       6.09972860e-04, 6.09972860e-04, 6.09972860e-04, 6.09972860e-04,
       2.20822367e-03, 2.20822367e-03, 2.20822367e-03, 2.20822367e-03,
       7.36278800e-03, 7.36278800e-03, 7.36278800e-03, 7.36278800e-03,
       2.25170918e-02, 2.25170918e-02, 2.25170918e-02, 2.25170918e-02,
       6.28736376e-02, 6.28736376e-02, 6.28736376e-02, 6.28736376e-02,
       1.59557051e-01, 1.59557051e-01, 1.59557051e-01, 1.59557051e-01,
       3.66605239e-01, 3.66605239e-01, 3.66605239e-01, 3.66605239e-01,
       7.61197294e-01, 7.61197294e-01, 7.61197294e-01, 7.61197294e-01,
       1.42997959e+00, 1.42997959e+00, 1.42997959e+00, 1.42997959e+00,
       2.44258800e+00, 2.44258800e+00, 2.44258800e+00, 2.44258800e+00,
       3.82666940e+00, 3.82666940e+00, 3.82666940e+00, 3.82666940e+00,
       5.56323490e+00, 5.56323490e+00, 5.56323490e+00, 5.56323490e+00,
       7.61102512e+00, 7.61102512e+00, 7.61102512e+00, 7.61102512e+00,
       9.84104209e+00, 9.84104209e+00, 9.84104209e+00, 9.84104209e+00,
       1.20553642e+01, 1.20553642e+01, 1.20553642e+01, 1.20553642e+01,
       1.42019457e+01, 1.42019457e+01, 1.42019457e+01, 1.42019457e+01,
       1.62097468e+01, 1.62097468e+01, 1.62097468e+01, 1.62097468e+01,
       1.79765031e+01, 1.79765031e+01, 1.79765031e+01, 1.79765031e+01,
       1.93158941e+01, 1.93158941e+01, 1.93158941e+01, 1.93158941e+01,
       2.00703083e+01, 2.00703083e+01, 2.00703083e+01, 2.00703083e+01,
       2.03013658e+01, 2.03013658e+01, 2.03013658e+01, 2.03013658e+01,
       2.02568791e+01, 2.02568791e+01, 2.02568791e+01, 2.02568791e+01,
       2.00856952e+01, 2.00856952e+01, 2.00856952e+01, 2.00856952e+01,
       2.00397257e+01, 2.00397257e+01, 2.00397257e+01, 2.00397257e+01,
       2.00181798e+01, 2.00181798e+01, 2.00181798e+01, 2.00181798e+01,
       2.00054208e+01, 2.00054208e+01, 2.00054208e+01, 2.00054208e+01,
       2.00025663e+01, 2.00025663e+01, 2.00025663e+01, 2.00025663e+01,
       1.99793630e+01, 1.99793630e+01, 1.99793630e+01, 1.99793630e+01,
       1.98071108e+01, 1.98071108e+01, 1.98071108e+01, 1.98071108e+01,
       1.88547396e+01, 1.88547396e+01, 1.88547396e+01, 1.88547396e+01,
       1.47204337e+01, 1.47204337e+01, 1.47204337e+01, 1.47204337e+01,
       4.95781616e+00, 4.95781616e+00, 4.95781616e+00, 4.95781616e+00,
       1.75493310e-01, 1.75493310e-01, 1.75493310e-01, 1.75493310e-01,
       4.85757486e-04, 4.85757486e-04, 4.85757486e-04, 4.85757486e-04,
       9.51110561e-08, 9.51110561e-08, 9.51110561e-08, 9.51110561e-08,
       1.44293431e-11, 1.44293431e-11, 1.44293431e-11, 1.44293431e-11,
       2.19762024e-15, 2.19762024e-15, 2.19762024e-15, 2.19762024e-15,
       3.19887277e-19, 3.19887277e-19, 3.19887277e-19, 3.19887277e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999938e+02, 9.99999938e+02, 9.99999938e+02, 9.99999938e+02,
       9.99999697e+02, 9.99999697e+02, 9.99999697e+02, 9.99999697e+02,
       9.99998621e+02, 9.99998621e+02, 9.99998621e+02, 9.99998621e+02,
       9.99994173e+02, 9.99994173e+02, 9.99994173e+02, 9.99994173e+02,
       9.99977177e+02, 9.99977177e+02, 9.99977177e+02, 9.99977177e+02,
       9.99917379e+02, 9.99917379e+02, 9.99917379e+02, 9.99917379e+02,
       9.99724547e+02, 9.99724547e+02, 9.99724547e+02, 9.99724547e+02,
       9.99157826e+02, 9.99157826e+02, 9.99157826e+02, 9.99157826e+02,
       9.97650081e+02, 9.97650081e+02, 9.97650081e+02, 9.97650081e+02,
       9.94046407e+02, 9.94046407e+02, 9.94046407e+02, 9.94046407e+02,
       9.86368788e+02, 9.86368788e+02, 9.86368788e+02, 9.86368788e+02,
       9.71884304e+02, 9.71884304e+02, 9.71884304e+02, 9.71884304e+02,
       9.47768311e+02, 9.47768311e+02, 9.47768311e+02, 9.47768311e+02,
       9.12263212e+02, 9.12263212e+02, 9.12263212e+02, 9.12263212e+02,
       8.65625167e+02, 8.65625167e+02, 8.65625167e+02, 8.65625167e+02,
       8.10053427e+02, 8.10053427e+02, 8.10053427e+02, 8.10053427e+02,
       7.48503051e+02, 7.48503051e+02, 7.48503051e+02, 7.48503051e+02,
       6.85291622e+02, 6.85291622e+02, 6.85291622e+02, 6.85291622e+02,
       6.27294016e+02, 6.27294016e+02, 6.27294016e+02, 6.27294016e+02,
       5.75413147e+02, 5.75413147e+02, 5.75413147e+02, 5.75413147e+02,
       5.30001905e+02, 5.30001905e+02, 5.30001905e+02, 5.30001905e+02,
       4.93087463e+02, 4.93087463e+02, 4.93087463e+02, 4.93087463e+02,
       4.66655572e+02, 4.66655572e+02, 4.66655572e+02, 4.66655572e+02,
       4.51807159e+02, 4.51807159e+02, 4.51807159e+02, 4.51807159e+02,
       4.47311434e+02, 4.47311434e+02, 4.47311434e+02, 4.47311434e+02,
       4.48215613e+02, 4.48215613e+02, 4.48215613e+02, 4.48215613e+02,
       4.51762807e+02, 4.51762807e+02, 4.51762807e+02, 4.51762807e+02,
       4.52868403e+02, 4.52868403e+02, 4.52868403e+02, 4.52868403e+02,
       4.52955491e+02, 4.52955491e+02, 4.52955491e+02, 4.52955491e+02,
       4.52909327e+02, 4.52909327e+02, 4.52909327e+02, 4.52909327e+02,
       4.52981643e+02, 4.52981643e+02, 4.52981643e+02, 4.52981643e+02,
       4.53214804e+02, 4.53214804e+02, 4.53214804e+02, 4.53214804e+02,
       4.48990326e+02, 4.48990326e+02, 4.48990326e+02, 4.48990326e+02,
       4.09131640e+02, 4.09131640e+02, 4.09131640e+02, 4.09131640e+02,
       2.45517697e+02, 2.45517697e+02, 2.45517697e+02, 2.45517697e+02,
       3.47160317e+01, 3.47160317e+01, 3.47160317e+01, 3.47160317e+01,
       3.62894316e-01, 3.62894316e-01, 3.62894316e-01, 3.62894316e-01,
       1.00998011e-02, 1.00998011e-02, 1.00998011e-02, 1.00998011e-02,
       1.00000113e-02, 1.00000113e-02, 1.00000113e-02, 1.00000113e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
       0.9999998 , 0.9999998 , 0.9999998 , 0.99999913, 0.99999913,
       0.99999913, 0.99999913, 0.99999642, 0.99999642, 0.99999642,
       0.99999642, 0.99998623, 0.99998623, 0.99998623, 0.99998623,
       0.99995092, 0.99995092, 0.99995092, 0.99995092, 0.99983826,
       0.99983826, 0.99983826, 0.99983826, 0.99950927, 0.99950927,
       0.99950927, 0.99950927, 0.99863513, 0.99863513, 0.99863513,
       0.99863513, 0.9965366 , 0.9965366 , 0.9965366 , 0.9965366 ,
       0.99201676, 0.99201676, 0.99201676, 0.99201676, 0.9833362 ,
       0.9833362 , 0.9833362 , 0.9833362 , 0.9685206 , 0.9685206 ,
       0.9685206 , 0.9685206 , 0.94602219, 0.94602219, 0.94602219,
       0.94602219, 0.91540395, 0.91540395, 0.91540395, 0.91540395,
       0.87753992, 0.87753992, 0.87753992, 0.87753992, 0.83410395,
       0.83410395, 0.83410395, 0.83410395, 0.78704832, 0.78704832,
       0.78704832, 0.78704832, 0.74068485, 0.74068485, 0.74068485,
       0.74068485, 0.69785748, 0.69785748, 0.69785748, 0.69785748,
       0.65816589, 0.65816589, 0.65816589, 0.65816589, 0.62460018,
       0.62460018, 0.62460018, 0.62460018, 0.59255793, 0.59255793,
       0.59255793, 0.59255793, 0.57817326, 0.57817326, 0.57817326,
       0.57817326, 0.56387564, 0.56387564, 0.56387564, 0.56387564,
       0.56157127, 0.56157127, 0.56157127, 0.56157127, 0.56360366,
       0.56360366, 0.56360366, 0.56360366, 0.56687447, 0.56687447,
       0.56687447, 0.56687447, 0.56576392, 0.56576392, 0.56576392,
       0.56576392, 0.56670663, 0.56670663, 0.56670663, 0.56670663,
       0.58490731, 0.58490731, 0.58490731, 0.58490731, 0.67692226,
       0.67692226, 0.67692226, 0.67692226, 0.97656008, 0.97656008,
       0.97656008, 0.97656008, 1.70128216, 1.70128216, 1.70128216,
       1.70128216, 2.81354886, 2.81354886, 2.81354886, 2.81354886,
       3.17648847, 3.17648847, 3.17648847, 3.17648847, 2.32407513,
       2.32407513, 2.32407513, 2.32407513, 1.15871544, 1.15871544,
       1.15871544, 1.15871544, 1.00857175, 1.00857175, 1.00857175,
       1.00857175, 1.0000498 , 1.0000498 , 1.0000498 , 1.0000498 ,
       1.00000001, 1.00000001, 1.00000001, 1.00000001, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.25428777e-10, 2.25428777e-10, 2.25428777e-10, 2.25428777e-10,
       1.59940645e-09, 1.59940645e-09, 1.59940645e-09, 1.59940645e-09,
       9.78961596e-09, 9.78961596e-09, 9.78961596e-09, 9.78961596e-09,
       5.63719016e-08, 5.63719016e-08, 5.63719016e-08, 5.63719016e-08,
       3.04684391e-07, 3.04684391e-07, 3.04684391e-07, 3.04684391e-07,
       1.54374637e-06, 1.54374637e-06, 1.54374637e-06, 1.54374637e-06,
       7.32124407e-06, 7.32124407e-06, 7.32124407e-06, 7.32124407e-06,
       3.24422534e-05, 3.24422534e-05, 3.24422534e-05, 3.24422534e-05,
       1.34046928e-04, 1.34046928e-04, 1.34046928e-04, 1.34046928e-04,
       5.15190666e-04, 5.15190666e-04, 5.15190666e-04, 5.15190666e-04,
       1.83655079e-03, 1.83655079e-03, 1.83655079e-03, 1.83655079e-03,
       6.05207452e-03, 6.05207452e-03, 6.05207452e-03, 6.05207452e-03,
       1.83647896e-02, 1.83647896e-02, 1.83647896e-02, 1.83647896e-02,
       5.10941202e-02, 5.10941202e-02, 5.10941202e-02, 5.10941202e-02,
       1.29756782e-01, 1.29756782e-01, 1.29756782e-01, 1.29756782e-01,
       2.99620921e-01, 2.99620921e-01, 2.99620921e-01, 2.99620921e-01,
       6.27596355e-01, 6.27596355e-01, 6.27596355e-01, 6.27596355e-01,
       1.19286361e+00, 1.19286361e+00, 1.19286361e+00, 1.19286361e+00,
       2.06504248e+00, 2.06504248e+00, 2.06504248e+00, 2.06504248e+00,
       3.27992371e+00, 3.27992371e+00, 3.27992371e+00, 3.27992371e+00,
       4.82922171e+00, 4.82922171e+00, 4.82922171e+00, 4.82922171e+00,
       6.67464424e+00, 6.67464424e+00, 6.67464424e+00, 6.67464424e+00,
       8.75964265e+00, 8.75964265e+00, 8.75964265e+00, 8.75964265e+00,
       1.08803472e+01, 1.08803472e+01, 1.08803472e+01, 1.08803472e+01,
       1.29739884e+01, 1.29739884e+01, 1.29739884e+01, 1.29739884e+01,
       1.49859636e+01, 1.49859636e+01, 1.49859636e+01, 1.49859636e+01,
       1.68387724e+01, 1.68387724e+01, 1.68387724e+01, 1.68387724e+01,
       1.84176517e+01, 1.84176517e+01, 1.84176517e+01, 1.84176517e+01,
       1.95597613e+01, 1.95597613e+01, 1.95597613e+01, 1.95597613e+01,
       2.01515305e+01, 2.01515305e+01, 2.01515305e+01, 2.01515305e+01,
       2.02967332e+01, 2.02967332e+01, 2.02967332e+01, 2.02967332e+01,
       2.02120023e+01, 2.02120023e+01, 2.02120023e+01, 2.02120023e+01,
       2.00605248e+01, 2.00605248e+01, 2.00605248e+01, 2.00605248e+01,
       2.00318688e+01, 2.00318688e+01, 2.00318688e+01, 2.00318688e+01,
       2.00221885e+01, 2.00221885e+01, 2.00221885e+01, 2.00221885e+01,
       2.00111763e+01, 2.00111763e+01, 2.00111763e+01, 2.00111763e+01,
       2.00014053e+01, 2.00014053e+01, 2.00014053e+01, 2.00014053e+01,
       1.99837206e+01, 1.99837206e+01, 1.99837206e+01, 1.99837206e+01,
       1.99044089e+01, 1.99044089e+01, 1.99044089e+01, 1.99044089e+01,
       1.94532334e+01, 1.94532334e+01, 1.94532334e+01, 1.94532334e+01,
       1.72959877e+01, 1.72959877e+01, 1.72959877e+01, 1.72959877e+01,
       1.00492404e+01, 1.00492404e+01, 1.00492404e+01, 1.00492404e+01,
       1.10583216e+00, 1.10583216e+00, 1.10583216e+00, 1.10583216e+00,
       1.12632792e-02, 1.12632792e-02, 1.12632792e-02, 1.12632792e-02,
       6.51995106e-06, 6.51995106e-06, 6.51995106e-06, 6.51995106e-06,
       9.65569412e-10, 9.65569412e-10, 9.65569412e-10, 9.65569412e-10,
       1.42316510e-13, 1.42316510e-13, 1.42316510e-13, 1.42316510e-13,
       2.10270857e-17, 2.10270857e-17, 2.10270857e-17, 2.10270857e-17,
       4.23110662e-21, 4.23110662e-21, 4.23110662e-21, 4.23110662e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999942e+02, 9.99999942e+02, 9.99999942e+02, 9.99999942e+02,
       9.99999726e+02, 9.99999726e+02, 9.99999726e+02, 9.99999726e+02,
       9.99998786e+02, 9.99998786e+02, 9.99998786e+02, 9.99998786e+02,
       9.99994984e+02, 9.99994984e+02, 9.99994984e+02, 9.99994984e+02,
       9.99980724e+02, 9.99980724e+02, 9.99980724e+02, 9.99980724e+02,
       9.99931285e+02, 9.99931285e+02, 9.99931285e+02, 9.99931285e+02,
       9.99773577e+02, 9.99773577e+02, 9.99773577e+02, 9.99773577e+02,
       9.99313077e+02, 9.99313077e+02, 9.99313077e+02, 9.99313077e+02,
       9.98089948e+02, 9.98089948e+02, 9.98089948e+02, 9.98089948e+02,
       9.95155853e+02, 9.95155853e+02, 9.95155853e+02, 9.95155853e+02,
       9.88846648e+02, 9.88846648e+02, 9.88846648e+02, 9.88846648e+02,
       9.76766510e+02, 9.76766510e+02, 9.76766510e+02, 9.76766510e+02,
       9.56255473e+02, 9.56255473e+02, 9.56255473e+02, 9.56255473e+02,
       9.25357054e+02, 9.25357054e+02, 9.25357054e+02, 9.25357054e+02,
       8.83782170e+02, 8.83782170e+02, 8.83782170e+02, 8.83782170e+02,
       8.33130130e+02, 8.33130130e+02, 8.33130130e+02, 8.33130130e+02,
       7.76085650e+02, 7.76085650e+02, 7.76085650e+02, 7.76085650e+02,
       7.15578042e+02, 7.15578042e+02, 7.15578042e+02, 7.15578042e+02,
       6.57188937e+02, 6.57188937e+02, 6.57188937e+02, 6.57188937e+02,
       6.04619926e+02, 6.04619926e+02, 6.04619926e+02, 6.04619926e+02,
       5.57478206e+02, 5.57478206e+02, 5.57478206e+02, 5.57478206e+02,
       5.16581813e+02, 5.16581813e+02, 5.16581813e+02, 5.16581813e+02,
       4.83986410e+02, 4.83986410e+02, 4.83986410e+02, 4.83986410e+02,
       4.61832276e+02, 4.61832276e+02, 4.61832276e+02, 4.61832276e+02,
       4.50505747e+02, 4.50505747e+02, 4.50505747e+02, 4.50505747e+02,
       4.47530062e+02, 4.47530062e+02, 4.47530062e+02, 4.47530062e+02,
       4.49051988e+02, 4.49051988e+02, 4.49051988e+02, 4.49051988e+02,
       4.51904449e+02, 4.51904449e+02, 4.51904449e+02, 4.51904449e+02,
       4.52866779e+02, 4.52866779e+02, 4.52866779e+02, 4.52866779e+02,
       4.53094164e+02, 4.53094164e+02, 4.53094164e+02, 4.53094164e+02,
       4.53054312e+02, 4.53054312e+02, 4.53054312e+02, 4.53054312e+02,
       4.53063775e+02, 4.53063775e+02, 4.53063775e+02, 4.53063775e+02,
       4.53395324e+02, 4.53395324e+02, 4.53395324e+02, 4.53395324e+02,
       4.52569474e+02, 4.52569474e+02, 4.52569474e+02, 4.52569474e+02,
       4.35977197e+02, 4.35977197e+02, 4.35977197e+02, 4.35977197e+02,
       3.42570389e+02, 3.42570389e+02, 3.42570389e+02, 3.42570389e+02,
       1.14587893e+02, 1.14587893e+02, 1.14587893e+02, 1.14587893e+02,
       4.38695457e+00, 4.38695457e+00, 4.38695457e+00, 4.38695457e+00,
       1.75831808e-02, 1.75831808e-02, 1.75831808e-02, 1.75831808e-02,
       1.00007686e-02, 1.00007686e-02, 1.00007686e-02, 1.00007686e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999924,
       0.99999924, 0.99999924, 0.99999924, 0.99999693, 0.99999693,
       0.99999693, 0.99999693, 0.99998839, 0.99998839, 0.99998839,
       0.99998839, 0.99995921, 0.99995921, 0.99995921, 0.99995921,
       0.99986699, 0.99986699, 0.99986699, 0.99986699, 0.99959927,
       0.99959927, 0.99959927, 0.99959927, 0.99888896, 0.99888896,
       0.99888896, 0.99888896, 0.99717807, 0.99717807, 0.99717807,
       0.99717807, 0.99346233, 0.99346233, 0.99346233, 0.99346233,
       0.98623061, 0.98623061, 0.98623061, 0.98623061, 0.97366804,
       0.97366804, 0.97366804, 0.97366804, 0.954191  , 0.954191  ,
       0.954191  , 0.954191  , 0.92709612, 0.92709612, 0.92709612,
       0.92709612, 0.89288639, 0.89288639, 0.89288639, 0.89288639,
       0.85299165, 0.85299165, 0.85299165, 0.85299165, 0.80903108,
       0.80903108, 0.80903108, 0.80903108, 0.7637975 , 0.7637975 ,
       0.7637975 , 0.7637975 , 0.72115406, 0.72115406, 0.72115406,
       0.72115406, 0.68149355, 0.68149355, 0.68149355, 0.68149355,
       0.64480222, 0.64480222, 0.64480222, 0.64480222, 0.61500168,
       0.61500168, 0.61500168, 0.61500168, 0.58590592, 0.58590592,
       0.58590592, 0.58590592, 0.57439796, 0.57439796, 0.57439796,
       0.57439796, 0.56387515, 0.56387515, 0.56387515, 0.56387515,
       0.56183788, 0.56183788, 0.56183788, 0.56183788, 0.56406492,
       0.56406492, 0.56406492, 0.56406492, 0.56696563, 0.56696563,
       0.56696563, 0.56696563, 0.5662629 , 0.5662629 , 0.5662629 ,
       0.5662629 , 0.56641131, 0.56641131, 0.56641131, 0.56641131,
       0.576761  , 0.576761  , 0.576761  , 0.576761  , 0.63578575,
       0.63578575, 0.63578575, 0.63578575, 0.84379069, 0.84379069,
       0.84379069, 0.84379069, 1.38572903, 1.38572903, 1.38572903,
       1.38572903, 2.44002612, 2.44002612, 2.44002612, 2.44002612,
       3.20653483, 3.20653483, 3.20653483, 3.20653483, 2.97456245,
       2.97456245, 2.97456245, 2.97456245, 1.53663558, 1.53663558,
       1.53663558, 1.53663558, 1.0381715 , 1.0381715 , 1.0381715 ,
       1.0381715 , 1.00099782, 1.00099782, 1.00099782, 1.00099782,
       1.0000005 , 1.0000005 , 1.0000005 , 1.0000005 , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.52640217e-09, 1.52640217e-09, 1.52640217e-09, 1.52640217e-09,
       9.88802864e-09, 9.88802864e-09, 9.88802864e-09, 9.88802864e-09,
       5.49631705e-08, 5.49631705e-08, 5.49631705e-08, 5.49631705e-08,
       2.87970269e-07, 2.87970269e-07, 2.87970269e-07, 2.87970269e-07,
       1.41808509e-06, 1.41808509e-06, 1.41808509e-06, 1.41808509e-06,
       6.55412036e-06, 6.55412036e-06, 6.55412036e-06, 6.55412036e-06,
       2.83823463e-05, 2.83823463e-05, 2.83823463e-05, 2.83823463e-05,
       1.14933820e-04, 1.14933820e-04, 1.14933820e-04, 1.14933820e-04,
       4.34223292e-04, 4.34223292e-04, 4.34223292e-04, 4.34223292e-04,
       1.52641599e-03, 1.52641599e-03, 1.52641599e-03, 1.52641599e-03,
       4.97687894e-03, 4.97687894e-03, 4.97687894e-03, 4.97687894e-03,
       1.49961991e-02, 1.49961991e-02, 1.49961991e-02, 1.49961991e-02,
       4.15882459e-02, 4.15882459e-02, 4.15882459e-02, 4.15882459e-02,
       1.05698320e-01, 1.05698320e-01, 1.05698320e-01, 1.05698320e-01,
       2.45229407e-01, 2.45229407e-01, 2.45229407e-01, 2.45229407e-01,
       5.17987106e-01, 5.17987106e-01, 5.17987106e-01, 5.17987106e-01,
       9.95694132e-01, 9.95694132e-01, 9.95694132e-01, 9.95694132e-01,
       1.74644988e+00, 1.74644988e+00, 1.74644988e+00, 1.74644988e+00,
       2.81214874e+00, 2.81214874e+00, 2.81214874e+00, 2.81214874e+00,
       4.19480869e+00, 4.19480869e+00, 4.19480869e+00, 4.19480869e+00,
       5.86264757e+00, 5.86264757e+00, 5.86264757e+00, 5.86264757e+00,
       7.77472797e+00, 7.77472797e+00, 7.77472797e+00, 7.77472797e+00,
       9.80655654e+00, 9.80655654e+00, 9.80655654e+00, 9.80655654e+00,
       1.18277382e+01, 1.18277382e+01, 1.18277382e+01, 1.18277382e+01,
       1.37971680e+01, 1.37971680e+01, 1.37971680e+01, 1.37971680e+01,
       1.56822647e+01, 1.56822647e+01, 1.56822647e+01, 1.56822647e+01,
       1.73889246e+01, 1.73889246e+01, 1.73889246e+01, 1.73889246e+01,
       1.87901005e+01, 1.87901005e+01, 1.87901005e+01, 1.87901005e+01,
       1.97450558e+01, 1.97450558e+01, 1.97450558e+01, 1.97450558e+01,
       2.01997684e+01, 2.01997684e+01, 2.01997684e+01, 2.01997684e+01,
       2.02877405e+01, 2.02877405e+01, 2.02877405e+01, 2.02877405e+01,
       2.01725864e+01, 2.01725864e+01, 2.01725864e+01, 2.01725864e+01,
       2.00462536e+01, 2.00462536e+01, 2.00462536e+01, 2.00462536e+01,
       2.00208235e+01, 2.00208235e+01, 2.00208235e+01, 2.00208235e+01,
       2.00194733e+01, 2.00194733e+01, 2.00194733e+01, 2.00194733e+01,
       2.00147202e+01, 2.00147202e+01, 2.00147202e+01, 2.00147202e+01,
       2.00035230e+01, 2.00035230e+01, 2.00035230e+01, 2.00035230e+01,
       1.99845714e+01, 1.99845714e+01, 1.99845714e+01, 1.99845714e+01,
       1.99388525e+01, 1.99388525e+01, 1.99388525e+01, 1.99388525e+01,
       1.97268563e+01, 1.97268563e+01, 1.97268563e+01, 1.97268563e+01,
       1.86628873e+01, 1.86628873e+01, 1.86628873e+01, 1.86628873e+01,
       1.42510014e+01, 1.42510014e+01, 1.42510014e+01, 1.42510014e+01,
       4.38724950e+00, 4.38724950e+00, 4.38724950e+00, 4.38724950e+00,
       1.35671717e-01, 1.35671717e-01, 1.35671717e-01, 1.35671717e-01,
       3.19338310e-04, 3.19338310e-04, 3.19338310e-04, 3.19338310e-04,
       5.91067532e-08, 5.91067532e-08, 5.91067532e-08, 5.91067532e-08,
       9.14545156e-12, 9.14545156e-12, 9.14545156e-12, 9.14545156e-12,
       1.40083653e-15, 1.40083653e-15, 1.40083653e-15, 1.40083653e-15,
       2.06948752e-19, 2.06948752e-19, 2.06948752e-19, 2.06948752e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
       9.99999755e+02, 9.99999755e+02, 9.99999755e+02, 9.99999755e+02,
       9.99998938e+02, 9.99998938e+02, 9.99998938e+02, 9.99998938e+02,
       9.99995700e+02, 9.99995700e+02, 9.99995700e+02, 9.99995700e+02,
       9.99983753e+02, 9.99983753e+02, 9.99983753e+02, 9.99983753e+02,
       9.99942888e+02, 9.99942888e+02, 9.99942888e+02, 9.99942888e+02,
       9.99813799e+02, 9.99813799e+02, 9.99813799e+02, 9.99813799e+02,
       9.99439043e+02, 9.99439043e+02, 9.99439043e+02, 9.99439043e+02,
       9.98445046e+02, 9.98445046e+02, 9.98445046e+02, 9.98445046e+02,
       9.96052372e+02, 9.96052372e+02, 9.96052372e+02, 9.96052372e+02,
       9.90862868e+02, 9.90862868e+02, 9.90862868e+02, 9.90862868e+02,
       9.80788585e+02, 9.80788585e+02, 9.80788585e+02, 9.80788585e+02,
       9.63364916e+02, 9.63364916e+02, 9.63364916e+02, 9.63364916e+02,
       9.36537037e+02, 9.36537037e+02, 9.36537037e+02, 9.36537037e+02,
       8.99584844e+02, 8.99584844e+02, 8.99584844e+02, 8.99584844e+02,
       8.53541949e+02, 8.53541949e+02, 8.53541949e+02, 8.53541949e+02,
       8.00725978e+02, 8.00725978e+02, 8.00725978e+02, 8.00725978e+02,
       7.43656312e+02, 7.43656312e+02, 7.43656312e+02, 7.43656312e+02,
       6.86069806e+02, 6.86069806e+02, 6.86069806e+02, 6.86069806e+02,
       6.33063024e+02, 6.33063024e+02, 6.33063024e+02, 6.33063024e+02,
       5.84804742e+02, 5.84804742e+02, 5.84804742e+02, 5.84804742e+02,
       5.41876353e+02, 5.41876353e+02, 5.41876353e+02, 5.41876353e+02,
       5.05141177e+02, 5.05141177e+02, 5.05141177e+02, 5.05141177e+02,
       4.76536346e+02, 4.76536346e+02, 4.76536346e+02, 4.76536346e+02,
       4.58081353e+02, 4.58081353e+02, 4.58081353e+02, 4.58081353e+02,
       4.49630363e+02, 4.49630363e+02, 4.49630363e+02, 4.49630363e+02,
       4.47839670e+02, 4.47839670e+02, 4.47839670e+02, 4.47839670e+02,
       4.49917497e+02, 4.49917497e+02, 4.49917497e+02, 4.49917497e+02,
       4.52105100e+02, 4.52105100e+02, 4.52105100e+02, 4.52105100e+02,
       4.52784421e+02, 4.52784421e+02, 4.52784421e+02, 4.52784421e+02,
       4.53082540e+02, 4.53082540e+02, 4.53082540e+02, 4.53082540e+02,
       4.53173248e+02, 4.53173248e+02, 4.53173248e+02, 4.53173248e+02,
       4.53232634e+02, 4.53232634e+02, 4.53232634e+02, 4.53232634e+02,
       4.53513027e+02, 4.53513027e+02, 4.53513027e+02, 4.53513027e+02,
       4.53743580e+02, 4.53743580e+02, 4.53743580e+02, 4.53743580e+02,
       4.47885607e+02, 4.47885607e+02, 4.47885607e+02, 4.47885607e+02,
       4.01687163e+02, 4.01687163e+02, 4.01687163e+02, 4.01687163e+02,
       2.28101815e+02, 2.28101815e+02, 2.28101815e+02, 2.28101815e+02,
       2.86587243e+01, 2.86587243e+01, 2.86587243e+01, 2.86587243e+01,
       2.56567373e-01, 2.56567373e-01, 2.56567373e-01, 2.56567373e-01,
       1.00575986e-02, 1.00575986e-02, 1.00575986e-02, 1.00575986e-02,
       1.00000070e-02, 1.00000070e-02, 1.00000070e-02, 1.00000070e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
       0.99999934, 0.99999934, 0.99999934, 0.99999934, 0.99999737,
       0.99999737, 0.99999737, 0.99999737, 0.99999024, 0.99999024,
       0.99999024, 0.99999024, 0.99996611, 0.99996611, 0.99996611,
       0.99996611, 0.99989058, 0.99989058, 0.99989058, 0.99989058,
       0.99967241, 0.99967241, 0.99967241, 0.99967241, 0.9990943 ,
       0.9990943 , 0.9990943 , 0.9990943 , 0.99769746, 0.99769746,
       0.99769746, 0.99769746, 0.99464004, 0.99464004, 0.99464004,
       0.99464004, 0.98861492, 0.98861492, 0.98861492, 0.98861492,
       0.97797231, 0.97797231, 0.97797231, 0.97797231, 0.96114094,
       0.96114094, 0.96114094, 0.96114094, 0.93721972, 0.93721972,
       0.93721972, 0.93721972, 0.9063806 , 0.9063806 , 0.9063806 ,
       0.9063806 , 0.86977129, 0.86977129, 0.86977129, 0.86977129,
       0.8289238 , 0.8289238 , 0.8289238 , 0.8289238 , 0.78560018,
       0.78560018, 0.78560018, 0.78560018, 0.74329928, 0.74329928,
       0.74329928, 0.74329928, 0.70377185, 0.70377185, 0.70377185,
       0.70377185, 0.66708371, 0.66708371, 0.66708371, 0.66708371,
       0.6330064 , 0.6330064 , 0.6330064 , 0.6330064 , 0.60675478,
       0.60675478, 0.60675478, 0.60675478, 0.58061389, 0.58061389,
       0.58061389, 0.58061389, 0.57133748, 0.57133748, 0.57133748,
       0.57133748, 0.56401096, 0.56401096, 0.56401096, 0.56401096,
       0.56229948, 0.56229948, 0.56229948, 0.56229948, 0.56457284,
       0.56457284, 0.56457284, 0.56457284, 0.56699615, 0.56699615,
       0.56699615, 0.56699615, 0.56661875, 0.56661875, 0.56661875,
       0.56661875, 0.56639427, 0.56639427, 0.56639427, 0.56639427,
       0.57210261, 0.57210261, 0.57210261, 0.57210261, 0.60938253,
       0.60938253, 0.60938253, 0.60938253, 0.75154823, 0.75154823,
       0.75154823, 0.75154823, 1.14834311, 1.14834311, 1.14834311,
       1.14834311, 2.00753778, 2.00753778, 2.00753778, 2.00753778,
       3.07707073, 3.07707073, 3.07707073, 3.07707073, 3.28851254,
       3.28851254, 3.28851254, 3.28851254, 2.25822824, 2.25822824,
       2.25822824, 2.25822824, 1.136885  , 1.136885  , 1.136885  ,
       1.136885  , 1.00702667, 1.00702667, 1.00702667, 1.00702667,
       1.00003133, 1.00003133, 1.00003133, 1.00003133, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.88472523e-09, 8.88472523e-09, 8.88472523e-09, 8.88472523e-09,
       5.29210904e-08, 5.29210904e-08, 5.29210904e-08, 5.29210904e-08,
       2.68968990e-07, 2.68968990e-07, 2.68968990e-07, 2.68968990e-07,
       1.29058596e-06, 1.29058596e-06, 1.29058596e-06, 1.29058596e-06,
       5.82613011e-06, 5.82613011e-06, 5.82613011e-06, 5.82613011e-06,
       2.47055828e-05, 2.47055828e-05, 2.47055828e-05, 2.47055828e-05,
       9.82232922e-05, 9.82232922e-05, 9.82232922e-05, 9.82232922e-05,
       3.65333376e-04, 3.65333376e-04, 3.65333376e-04, 3.65333376e-04,
       1.26798274e-03, 1.26798274e-03, 1.26798274e-03, 1.26798274e-03,
       4.09445985e-03, 4.09445985e-03, 4.09445985e-03, 4.09445985e-03,
       1.22588183e-02, 1.22588183e-02, 1.22588183e-02, 1.22588183e-02,
       3.38993827e-02, 3.38993827e-02, 3.38993827e-02, 3.38993827e-02,
       8.62271626e-02, 8.62271626e-02, 8.62271626e-02, 8.62271626e-02,
       2.00962075e-01, 2.00962075e-01, 2.00962075e-01, 2.00962075e-01,
       4.27886788e-01, 4.27886788e-01, 4.27886788e-01, 4.27886788e-01,
       8.31469810e-01, 8.31469810e-01, 8.31469810e-01, 8.31469810e-01,
       1.47715354e+00, 1.47715354e+00, 1.47715354e+00, 1.47715354e+00,
       2.41104027e+00, 2.41104027e+00, 2.41104027e+00, 2.41104027e+00,
       3.64432706e+00, 3.64432706e+00, 3.64432706e+00, 3.64432706e+00,
       5.15349521e+00, 5.15349521e+00, 5.15349521e+00, 5.15349521e+00,
       6.89898043e+00, 6.89898043e+00, 6.89898043e+00, 6.89898043e+00,
       8.82107363e+00, 8.82107363e+00, 8.82107363e+00, 8.82107363e+00,
       1.07606034e+01, 1.07606034e+01, 1.07606034e+01, 1.07606034e+01,
       1.26809719e+01, 1.26809719e+01, 1.26809719e+01, 1.26809719e+01,
       1.45408992e+01, 1.45408992e+01, 1.45408992e+01, 1.45408992e+01,
       1.63011956e+01, 1.63011956e+01, 1.63011956e+01, 1.63011956e+01,
       1.78659797e+01, 1.78659797e+01, 1.78659797e+01, 1.78659797e+01,
       1.91016597e+01, 1.91016597e+01, 1.91016597e+01, 1.91016597e+01,
       1.98864085e+01, 1.98864085e+01, 1.98864085e+01, 1.98864085e+01,
       2.02241697e+01, 2.02241697e+01, 2.02241697e+01, 2.02241697e+01,
       2.02710826e+01, 2.02710826e+01, 2.02710826e+01, 2.02710826e+01,
       2.01384385e+01, 2.01384385e+01, 2.01384385e+01, 2.01384385e+01,
       2.00398023e+01, 2.00398023e+01, 2.00398023e+01, 2.00398023e+01,
       2.00141317e+01, 2.00141317e+01, 2.00141317e+01, 2.00141317e+01,
       2.00125047e+01, 2.00125047e+01, 2.00125047e+01, 2.00125047e+01,
       2.00117339e+01, 2.00117339e+01, 2.00117339e+01, 2.00117339e+01,
       2.00041797e+01, 2.00041797e+01, 2.00041797e+01, 2.00041797e+01,
       1.99838495e+01, 1.99838495e+01, 1.99838495e+01, 1.99838495e+01,
       1.99519757e+01, 1.99519757e+01, 1.99519757e+01, 1.99519757e+01,
       1.98474175e+01, 1.98474175e+01, 1.98474175e+01, 1.98474175e+01,
       1.93323898e+01, 1.93323898e+01, 1.93323898e+01, 1.93323898e+01,
       1.69770632e+01, 1.69770632e+01, 1.69770632e+01, 1.69770632e+01,
       9.43267908e+00, 9.43267908e+00, 9.43267908e+00, 9.43267908e+00,
       8.98850413e-01, 8.98850413e-01, 8.98850413e-01, 8.98850413e-01,
       7.99452553e-03, 7.99452553e-03, 7.99452553e-03, 7.99452553e-03,
       3.95277914e-06, 3.95277914e-06, 3.95277914e-06, 3.95277914e-06,
       5.87204713e-10, 5.87204713e-10, 5.87204713e-10, 5.87204713e-10,
       8.74454638e-14, 8.74454638e-14, 8.74454638e-14, 8.74454638e-14,
       1.31382467e-17, 1.31382467e-17, 1.31382467e-17, 1.31382467e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
       9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
       9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
       9.99999076e+02, 9.99999076e+02, 9.99999076e+02, 9.99999076e+02,
       9.99996325e+02, 9.99996325e+02, 9.99996325e+02, 9.99996325e+02,
       9.99986331e+02, 9.99986331e+02, 9.99986331e+02, 9.99986331e+02,
       9.99952558e+02, 9.99952558e+02, 9.99952558e+02, 9.99952558e+02,
       9.99846811e+02, 9.99846811e+02, 9.99846811e+02, 9.99846811e+02,
       9.99541417e+02, 9.99541417e+02, 9.99541417e+02, 9.99541417e+02,
       9.98732356e+02, 9.98732356e+02, 9.98732356e+02, 9.98732356e+02,
       9.96778496e+02, 9.96778496e+02, 9.96778496e+02, 9.96778496e+02,
       9.92506573e+02, 9.92506573e+02, 9.92506573e+02, 9.92506573e+02,
       9.84106027e+02, 9.84106027e+02, 9.84106027e+02, 9.84106027e+02,
       9.69322749e+02, 9.69322749e+02, 9.69322749e+02, 9.69322749e+02,
       9.46081288e+02, 9.46081288e+02, 9.46081288e+02, 9.46081288e+02,
       9.13335017e+02, 9.13335017e+02, 9.13335017e+02, 9.13335017e+02,
       8.71610214e+02, 8.71610214e+02, 8.71610214e+02, 8.71610214e+02,
       8.22805647e+02, 8.22805647e+02, 8.22805647e+02, 8.22805647e+02,
       7.69307087e+02, 7.69307087e+02, 7.69307087e+02, 7.69307087e+02,
       7.13651394e+02, 7.13651394e+02, 7.13651394e+02, 7.13651394e+02,
       6.60389331e+02, 6.60389331e+02, 6.60389331e+02, 6.60389331e+02,
       6.11811082e+02, 6.11811082e+02, 6.11811082e+02, 6.11811082e+02,
       5.67482808e+02, 5.67482808e+02, 5.67482808e+02, 5.67482808e+02,
       5.28269968e+02, 5.28269968e+02, 5.28269968e+02, 5.28269968e+02,
       4.95352222e+02, 4.95352222e+02, 4.95352222e+02, 4.95352222e+02,
       4.70492622e+02, 4.70492622e+02, 4.70492622e+02, 4.70492622e+02,
       4.55270406e+02, 4.55270406e+02, 4.55270406e+02, 4.55270406e+02,
       4.49060619e+02, 4.49060619e+02, 4.49060619e+02, 4.49060619e+02,
       4.48201927e+02, 4.48201927e+02, 4.48201927e+02, 4.48201927e+02,
       4.50695933e+02, 4.50695933e+02, 4.50695933e+02, 4.50695933e+02,
       4.52345569e+02, 4.52345569e+02, 4.52345569e+02, 4.52345569e+02,
       4.52754082e+02, 4.52754082e+02, 4.52754082e+02, 4.52754082e+02,
       4.52997015e+02, 4.52997015e+02, 4.52997015e+02, 4.52997015e+02,
       4.53174880e+02, 4.53174880e+02, 4.53174880e+02, 4.53174880e+02,
       4.53361382e+02, 4.53361382e+02, 4.53361382e+02, 4.53361382e+02,
       4.53679663e+02, 4.53679663e+02, 4.53679663e+02, 4.53679663e+02,
       4.54190653e+02, 4.54190653e+02, 4.54190653e+02, 4.54190653e+02,
       4.52637868e+02, 4.52637868e+02, 4.52637868e+02, 4.52637868e+02,
       4.32258483e+02, 4.32258483e+02, 4.32258483e+02, 4.32258483e+02,
       3.29015504e+02, 3.29015504e+02, 3.29015504e+02, 3.29015504e+02,
       1.00405385e+02, 1.00405385e+02, 1.00405385e+02, 1.00405385e+02,
       3.29045820e+00, 3.29045820e+00, 3.29045820e+00, 3.29045820e+00,
       1.46741752e-02, 1.46741752e-02, 1.46741752e-02, 1.46741752e-02,
       1.00004659e-02, 1.00004659e-02, 1.00004659e-02, 1.00004659e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
       0.99999997, 0.99999997, 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999943, 0.99999943, 0.99999943, 0.99999943,
       0.99999776, 0.99999776, 0.99999776, 0.99999776, 0.9999918 ,
       0.9999918 , 0.9999918 , 0.9999918 , 0.99997186, 0.99997186,
       0.99997186, 0.99997186, 0.99990994, 0.99990994, 0.99990994,
       0.99990994, 0.99973194, 0.99973194, 0.99973194, 0.99973194,
       0.99926076, 0.99926076, 0.99926076, 0.99926076, 0.99811888,
       0.99811888, 0.99811888, 0.99811888, 0.9956012 , 0.9956012 ,
       0.9956012 , 0.9956012 , 0.99058136, 0.99058136, 0.99058136,
       0.99058136, 0.98157355, 0.98157355, 0.98157355, 0.98157355,
       0.96705453, 0.96705453, 0.96705453, 0.96705453, 0.94598589,
       0.94598589, 0.94598589, 0.94598589, 0.91825438, 0.91825438,
       0.91825438, 0.91825438, 0.88471667, 0.88471667, 0.88471667,
       0.88471667, 0.84678775, 0.84678775, 0.84678775, 0.84678775,
       0.8058432 , 0.8058432 , 0.8058432 , 0.8058432 , 0.76438015,
       0.76438015, 0.76438015, 0.76438015, 0.72517919, 0.72517919,
       0.72517919, 0.72517919, 0.68826098, 0.68826098, 0.68826098,
       0.68826098, 0.65432311, 0.65432311, 0.65432311, 0.65432311,
       0.62261428, 0.62261428, 0.62261428, 0.62261428, 0.59964198,
       0.59964198, 0.59964198, 0.59964198, 0.57647962, 0.57647962,
       0.57647962, 0.57647962, 0.56891377, 0.56891377, 0.56891377,
       0.56891377, 0.5642295 , 0.5642295 , 0.5642295 , 0.5642295 ,
       0.56291649, 0.56291649, 0.56291649, 0.56291649, 0.56496715,
       0.56496715, 0.56496715, 0.56496715, 0.5670335 , 0.5670335 ,
       0.5670335 , 0.5670335 , 0.56691285, 0.56691285, 0.56691285,
       0.56691285, 0.56649394, 0.56649394, 0.56649394, 0.56649394,
       0.56954649, 0.56954649, 0.56954649, 0.56954649, 0.59269675,
       0.59269675, 0.59269675, 0.59269675, 0.68846425, 0.68846425,
       0.68846425, 0.68846425, 0.97389537, 0.97389537, 0.97389537,
       0.97389537, 1.63730131, 1.63730131, 1.63730131, 1.63730131,
       2.75902555, 2.75902555, 2.75902555, 2.75902555, 3.37028342,
       3.37028342, 3.37028342, 3.37028342, 2.98215238, 2.98215238,
       2.98215238, 2.98215238, 1.46829751, 1.46829751, 1.46829751,
       1.46829751, 1.03187752, 1.03187752, 1.03187752, 1.03187752,
       1.00073195, 1.00073195, 1.00073195, 1.00073195, 1.0000003 ,
       1.0000003 , 1.0000003 , 1.0000003 , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([4.52514197e-08, 4.52514197e-08, 4.52514197e-08, 4.52514197e-08,
       2.49281931e-07, 2.49281931e-07, 2.49281931e-07, 2.49281931e-07,
       1.16502486e-06, 1.16502486e-06, 1.16502486e-06, 1.16502486e-06,
       5.14742918e-06, 5.14742918e-06, 5.14742918e-06, 5.14742918e-06,
       2.14115184e-05, 2.14115184e-05, 2.14115184e-05, 2.14115184e-05,
       8.37057786e-05, 8.37057786e-05, 8.37057786e-05, 8.37057786e-05,
       3.06910769e-04, 3.06910769e-04, 3.06910769e-04, 3.06910769e-04,
       1.05286130e-03, 1.05286130e-03, 1.05286130e-03, 1.05286130e-03,
       3.36989687e-03, 3.36989687e-03, 3.36989687e-03, 3.36989687e-03,
       1.00310100e-02, 1.00310100e-02, 1.00310100e-02, 1.00310100e-02,
       2.76674775e-02, 2.76674775e-02, 2.76674775e-02, 2.76674775e-02,
       7.04345400e-02, 7.04345400e-02, 7.04345400e-02, 7.04345400e-02,
       1.64864079e-01, 1.64864079e-01, 1.64864079e-01, 1.64864079e-01,
       3.53706435e-01, 3.53706435e-01, 3.53706435e-01, 3.53706435e-01,
       6.94517417e-01, 6.94517417e-01, 6.94517417e-01, 6.94517417e-01,
       1.24926788e+00, 1.24926788e+00, 1.24926788e+00, 1.24926788e+00,
       2.06658717e+00, 2.06658717e+00, 2.06658717e+00, 2.06658717e+00,
       3.16549040e+00, 3.16549040e+00, 3.16549040e+00, 3.16549040e+00,
       4.53121338e+00, 4.53121338e+00, 4.53121338e+00, 4.53121338e+00,
       6.12705253e+00, 6.12705253e+00, 6.12705253e+00, 6.12705253e+00,
       7.91542783e+00, 7.91542783e+00, 7.91542783e+00, 7.91542783e+00,
       9.77789566e+00, 9.77789566e+00, 9.77789566e+00, 9.77789566e+00,
       1.16347704e+01, 1.16347704e+01, 1.16347704e+01, 1.16347704e+01,
       1.34551790e+01, 1.34551790e+01, 1.34551790e+01, 1.34551790e+01,
       1.52122136e+01, 1.52122136e+01, 1.52122136e+01, 1.52122136e+01,
       1.68521553e+01, 1.68521553e+01, 1.68521553e+01, 1.68521553e+01,
       1.82765818e+01, 1.82765818e+01, 1.82765818e+01, 1.82765818e+01,
       1.93576979e+01, 1.93576979e+01, 1.93576979e+01, 1.93576979e+01,
       1.99942621e+01, 1.99942621e+01, 1.99942621e+01, 1.99942621e+01,
       2.02328594e+01, 2.02328594e+01, 2.02328594e+01, 2.02328594e+01,
       2.02456712e+01, 2.02456712e+01, 2.02456712e+01, 2.02456712e+01,
       2.01101923e+01, 2.01101923e+01, 2.01101923e+01, 2.01101923e+01,
       2.00369389e+01, 2.00369389e+01, 2.00369389e+01, 2.00369389e+01,
       2.00131267e+01, 2.00131267e+01, 2.00131267e+01, 2.00131267e+01,
       2.00070966e+01, 2.00070966e+01, 2.00070966e+01, 2.00070966e+01,
       2.00052693e+01, 2.00052693e+01, 2.00052693e+01, 2.00052693e+01,
       1.99989897e+01, 1.99989897e+01, 1.99989897e+01, 1.99989897e+01,
       1.99805077e+01, 1.99805077e+01, 1.99805077e+01, 1.99805077e+01,
       1.99568809e+01, 1.99568809e+01, 1.99568809e+01, 1.99568809e+01,
       1.98969783e+01, 1.98969783e+01, 1.98969783e+01, 1.98969783e+01,
       1.96461093e+01, 1.96461093e+01, 1.96461093e+01, 1.96461093e+01,
       1.84628990e+01, 1.84628990e+01, 1.84628990e+01, 1.84628990e+01,
       1.37419915e+01, 1.37419915e+01, 1.37419915e+01, 1.37419915e+01,
       3.80245394e+00, 3.80245394e+00, 3.80245394e+00, 3.80245394e+00,
       1.00964393e-01, 1.00964393e-01, 1.00964393e-01, 1.00964393e-01,
       1.97893986e-04, 1.97893986e-04, 1.97893986e-04, 1.97893986e-04,
       3.50167417e-08, 3.50167417e-08, 3.50167417e-08, 3.50167417e-08,
       5.53183762e-12, 5.53183762e-12, 5.53183762e-12, 5.53183762e-12,
       8.51924516e-16, 8.51924516e-16, 8.51924516e-16, 8.51924516e-16,
       1.36608685e-19, 1.36608685e-19, 1.36608685e-19, 1.36608685e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
       9.99999956e+02, 9.99999956e+02, 9.99999956e+02, 9.99999956e+02,
       9.99999807e+02, 9.99999807e+02, 9.99999807e+02, 9.99999807e+02,
       9.99999199e+02, 9.99999199e+02, 9.99999199e+02, 9.99999199e+02,
       9.99996868e+02, 9.99996868e+02, 9.99996868e+02, 9.99996868e+02,
       9.99988517e+02, 9.99988517e+02, 9.99988517e+02, 9.99988517e+02,
       9.99960606e+02, 9.99960606e+02, 9.99960606e+02, 9.99960606e+02,
       9.99873918e+02, 9.99873918e+02, 9.99873918e+02, 9.99873918e+02,
       9.99624741e+02, 9.99624741e+02, 9.99624741e+02, 9.99624741e+02,
       9.98965280e+02, 9.98965280e+02, 9.98965280e+02, 9.98965280e+02,
       9.97367799e+02, 9.97367799e+02, 9.97367799e+02, 9.97367799e+02,
       9.93848786e+02, 9.93848786e+02, 9.93848786e+02, 9.93848786e+02,
       9.86844939e+02, 9.86844939e+02, 9.86844939e+02, 9.86844939e+02,
       9.74316549e+02, 9.74316549e+02, 9.74316549e+02, 9.74316549e+02,
       9.54225804e+02, 9.54225804e+02, 9.54225804e+02, 9.54225804e+02,
       9.25291883e+02, 9.25291883e+02, 9.25291883e+02, 9.25291883e+02,
       8.87600888e+02, 8.87600888e+02, 8.87600888e+02, 8.87600888e+02,
       8.42619539e+02, 8.42619539e+02, 8.42619539e+02, 8.42619539e+02,
       7.92557878e+02, 7.92557878e+02, 7.92557878e+02, 7.92557878e+02,
       7.39509078e+02, 7.39509078e+02, 7.39509078e+02, 7.39509078e+02,
       6.86734806e+02, 6.86734806e+02, 6.86734806e+02, 6.86734806e+02,
       6.37955173e+02, 6.37955173e+02, 6.37955173e+02, 6.37955173e+02,
       5.93035458e+02, 5.93035458e+02, 5.93035458e+02, 5.93035458e+02,
       5.52230567e+02, 5.52230567e+02, 5.52230567e+02, 5.52230567e+02,
       5.16416992e+02, 5.16416992e+02, 5.16416992e+02, 5.16416992e+02,
       4.86984397e+02, 4.86984397e+02, 4.86984397e+02, 4.86984397e+02,
       4.65596969e+02, 4.65596969e+02, 4.65596969e+02, 4.65596969e+02,
       4.53240066e+02, 4.53240066e+02, 4.53240066e+02, 4.53240066e+02,
       4.48778450e+02, 4.48778450e+02, 4.48778450e+02, 4.48778450e+02,
       4.48639462e+02, 4.48639462e+02, 4.48639462e+02, 4.48639462e+02,
       4.51263622e+02, 4.51263622e+02, 4.51263622e+02, 4.51263622e+02,
       4.52567685e+02, 4.52567685e+02, 4.52567685e+02, 4.52567685e+02,
       4.52811496e+02, 4.52811496e+02, 4.52811496e+02, 4.52811496e+02,
       4.52945111e+02, 4.52945111e+02, 4.52945111e+02, 4.52945111e+02,
       4.53123466e+02, 4.53123466e+02, 4.53123466e+02, 4.53123466e+02,
       4.53394325e+02, 4.53394325e+02, 4.53394325e+02, 4.53394325e+02,
       4.53835168e+02, 4.53835168e+02, 4.53835168e+02, 4.53835168e+02,
       4.54404144e+02, 4.54404144e+02, 4.54404144e+02, 4.54404144e+02,
       4.54398815e+02, 4.54398815e+02, 4.54398815e+02, 4.54398815e+02,
       4.46505808e+02, 4.46505808e+02, 4.46505808e+02, 4.46505808e+02,
       3.93317262e+02, 3.93317262e+02, 3.93317262e+02, 3.93317262e+02,
       2.10080070e+02, 2.10080070e+02, 2.10080070e+02, 2.10080070e+02,
       2.32249751e+01, 2.32249751e+01, 2.32249751e+01, 2.32249751e+01,
       1.73430791e-01, 1.73430791e-01, 1.73430791e-01, 1.73430791e-01,
       1.00314003e-02, 1.00314003e-02, 1.00314003e-02, 1.00314003e-02,
       1.00000041e-02, 1.00000041e-02, 1.00000041e-02, 1.00000041e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.99999988, 0.99999988,
       0.99999988, 0.99999988, 0.99999951, 0.99999951, 0.99999951,
       0.99999951, 0.9999981 , 0.9999981 , 0.9999981 , 0.9999981 ,
       0.99999312, 0.99999312, 0.99999312, 0.99999312, 0.99997664,
       0.99997664, 0.99997664, 0.99997664, 0.99992585, 0.99992585,
       0.99992585, 0.99992585, 0.99978045, 0.99978045, 0.99978045,
       0.99978045, 0.99939593, 0.99939593, 0.99939593, 0.99939593,
       0.99846143, 0.99846143, 0.99846143, 0.99846143, 0.99638683,
       0.99638683, 0.99638683, 0.99638683, 0.99220475, 0.99220475,
       0.99220475, 0.99220475, 0.98458761, 0.98458761, 0.98458761,
       0.98458761, 0.9720855 , 0.9720855 , 0.9720855 , 0.9720855 ,
       0.95357426, 0.95357426, 0.95357426, 0.95357426, 0.92870343,
       0.92870343, 0.92870343, 0.92870343, 0.89804865, 0.89804865,
       0.89804865, 0.89804865, 0.86284217, 0.86284217, 0.86284217,
       0.86284217, 0.82441149, 0.82441149, 0.82441149, 0.82441149,
       0.78436898, 0.78436898, 0.78436898, 0.78436898, 0.74552409,
       0.74552409, 0.74552409, 0.74552409, 0.70888758, 0.70888758,
       0.70888758, 0.70888758, 0.67437483, 0.67437483, 0.67437483,
       0.67437483, 0.6430066 , 0.6430066 , 0.6430066 , 0.6430066 ,
       0.61348618, 0.61348618, 0.61348618, 0.61348618, 0.59349049,
       0.59349049, 0.59349049, 0.59349049, 0.57331869, 0.57331869,
       0.57331869, 0.57331869, 0.56704679, 0.56704679, 0.56704679,
       0.56704679, 0.56447692, 0.56447692, 0.56447692, 0.56447692,
       0.56362867, 0.56362867, 0.56362867, 0.56362867, 0.56531162,
       0.56531162, 0.56531162, 0.56531162, 0.567019  , 0.567019  ,
       0.567019  , 0.567019  , 0.56709383, 0.56709383, 0.56709383,
       0.56709383, 0.5667092 , 0.5667092 , 0.5667092 , 0.5667092 ,
       0.56824252, 0.56824252, 0.56824252, 0.56824252, 0.58236395,
       0.58236395, 0.58236395, 0.58236395, 0.6459472 , 0.6459472 ,
       0.6459472 , 0.6459472 , 0.84807929, 0.84807929, 0.84807929,
       0.84807929, 1.34919174, 1.34919174, 1.34919174, 1.34919174,
       2.33541132, 2.33541132, 2.33541132, 2.33541132, 3.2926407 ,
       3.2926407 , 3.2926407 , 3.2926407 , 3.37752881, 3.37752881,
       3.37752881, 3.37752881, 2.16954992, 2.16954992, 2.16954992,
       2.16954992, 1.1172986 , 1.1172986 , 1.1172986 , 1.1172986 ,
       1.00560841, 1.00560841, 1.00560841, 1.00560841, 1.00001853,
       1.00001853, 1.00001853, 1.00001853, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.04607737e-07, 2.04607737e-07, 2.04607737e-07, 2.04607737e-07,
       1.04753503e-06, 1.04753503e-06, 1.04753503e-06, 1.04753503e-06,
       4.52318125e-06, 4.52318125e-06, 4.52318125e-06, 4.52318125e-06,
       1.84864298e-05, 1.84864298e-05, 1.84864298e-05, 1.84864298e-05,
       7.11599517e-05, 7.11599517e-05, 7.11599517e-05, 7.11599517e-05,
       2.57499723e-04, 2.57499723e-04, 2.57499723e-04, 2.57499723e-04,
       8.73945333e-04, 8.73945333e-04, 8.73945333e-04, 8.73945333e-04,
       2.77466387e-03, 2.77466387e-03, 2.77466387e-03, 2.77466387e-03,
       8.21545316e-03, 8.21545316e-03, 8.21545316e-03, 8.21545316e-03,
       2.26072838e-02, 2.26072838e-02, 2.26072838e-02, 2.26072838e-02,
       5.76012133e-02, 5.76012133e-02, 5.76012133e-02, 5.76012133e-02,
       1.35378501e-01, 1.35378501e-01, 1.35378501e-01, 1.35378501e-01,
       2.92554805e-01, 2.92554805e-01, 2.92554805e-01, 2.92554805e-01,
       5.80205845e-01, 5.80205845e-01, 5.80205845e-01, 5.80205845e-01,
       1.05628947e+00, 1.05628947e+00, 1.05628947e+00, 1.05628947e+00,
       1.77052666e+00, 1.77052666e+00, 1.77052666e+00, 1.77052666e+00,
       2.74829898e+00, 2.74829898e+00, 2.74829898e+00, 2.74829898e+00,
       3.98331961e+00, 3.98331961e+00, 3.98331961e+00, 3.98331961e+00,
       5.44451310e+00, 5.44451310e+00, 5.44451310e+00, 5.44451310e+00,
       7.09514684e+00, 7.09514684e+00, 7.09514684e+00, 7.09514684e+00,
       8.87295070e+00, 8.87295070e+00, 8.87295070e+00, 8.87295070e+00,
       1.06594721e+01, 1.06594721e+01, 1.06594721e+01, 1.06594721e+01,
       1.24293602e+01, 1.24293602e+01, 1.24293602e+01, 1.24293602e+01,
       1.41607204e+01, 1.41607204e+01, 1.41607204e+01, 1.41607204e+01,
       1.58187383e+01, 1.58187383e+01, 1.58187383e+01, 1.58187383e+01,
       1.73419873e+01, 1.73419873e+01, 1.73419873e+01, 1.73419873e+01,
       1.86283641e+01, 1.86283641e+01, 1.86283641e+01, 1.86283641e+01,
       1.95639138e+01, 1.95639138e+01, 1.95639138e+01, 1.95639138e+01,
       2.00736039e+01, 2.00736039e+01, 2.00736039e+01, 2.00736039e+01,
       2.02330193e+01, 2.02330193e+01, 2.02330193e+01, 2.02330193e+01,
       2.02158212e+01, 2.02158212e+01, 2.02158212e+01, 2.02158212e+01,
       2.00862699e+01, 2.00862699e+01, 2.00862699e+01, 2.00862699e+01,
       2.00336687e+01, 2.00336687e+01, 2.00336687e+01, 2.00336687e+01,
       2.00150798e+01, 2.00150798e+01, 2.00150798e+01, 2.00150798e+01,
       2.00060876e+01, 2.00060876e+01, 2.00060876e+01, 2.00060876e+01,
       1.99998383e+01, 1.99998383e+01, 1.99998383e+01, 1.99998383e+01,
       1.99906385e+01, 1.99906385e+01, 1.99906385e+01, 1.99906385e+01,
       1.99726435e+01, 1.99726435e+01, 1.99726435e+01, 1.99726435e+01,
       1.99540496e+01, 1.99540496e+01, 1.99540496e+01, 1.99540496e+01,
       1.99172472e+01, 1.99172472e+01, 1.99172472e+01, 1.99172472e+01,
       1.97905611e+01, 1.97905611e+01, 1.97905611e+01, 1.97905611e+01,
       1.92093064e+01, 1.92093064e+01, 1.92093064e+01, 1.92093064e+01,
       1.66360985e+01, 1.66360985e+01, 1.66360985e+01, 1.66360985e+01,
       8.75489385e+00, 8.75489385e+00, 8.75489385e+00, 8.75489385e+00,
       7.20452697e-01, 7.20452697e-01, 7.20452697e-01, 7.20452697e-01,
       5.43172134e-03, 5.43172134e-03, 5.43172134e-03, 5.43172134e-03,
       2.27604406e-06, 2.27604406e-06, 2.27604406e-06, 2.27604406e-06,
       3.38472840e-10, 3.38472840e-10, 3.38472840e-10, 3.38472840e-10,
       5.10071735e-14, 5.10071735e-14, 5.10071735e-14, 5.10071735e-14,
       7.83554591e-18, 7.83554591e-18, 7.83554591e-18, 7.83554591e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999961e+02, 9.99999961e+02, 9.99999961e+02, 9.99999961e+02,
       9.99999831e+02, 9.99999831e+02, 9.99999831e+02, 9.99999831e+02,
       9.99999308e+02, 9.99999308e+02, 9.99999308e+02, 9.99999308e+02,
       9.99997337e+02, 9.99997337e+02, 9.99997337e+02, 9.99997337e+02,
       9.99990365e+02, 9.99990365e+02, 9.99990365e+02, 9.99990365e+02,
       9.99967300e+02, 9.99967300e+02, 9.99967300e+02, 9.99967300e+02,
       9.99896187e+02, 9.99896187e+02, 9.99896187e+02, 9.99896187e+02,
       9.99692651e+02, 9.99692651e+02, 9.99692651e+02, 9.99692651e+02,
       9.99154448e+02, 9.99154448e+02, 9.99154448e+02, 9.99154448e+02,
       9.97846913e+02, 9.97846913e+02, 9.97846913e+02, 9.97846913e+02,
       9.94946365e+02, 9.94946365e+02, 9.94946365e+02, 9.94946365e+02,
       9.89107997e+02, 9.89107997e+02, 9.89107997e+02, 9.89107997e+02,
       9.78502508e+02, 9.78502508e+02, 9.78502508e+02, 9.78502508e+02,
       9.61171766e+02, 9.61171766e+02, 9.61171766e+02, 9.61171766e+02,
       9.35679962e+02, 9.35679962e+02, 9.35679962e+02, 9.35679962e+02,
       9.01743661e+02, 9.01743661e+02, 9.01743661e+02, 9.01743661e+02,
       8.60410587e+02, 8.60410587e+02, 8.60410587e+02, 8.60410587e+02,
       8.13626053e+02, 8.13626053e+02, 8.13626053e+02, 8.13626053e+02,
       7.63416647e+02, 7.63416647e+02, 7.63416647e+02, 7.63416647e+02,
       7.12019797e+02, 7.12019797e+02, 7.12019797e+02, 7.12019797e+02,
       6.63120871e+02, 6.63120871e+02, 6.63120871e+02, 6.63120871e+02,
       6.17966596e+02, 6.17966596e+02, 6.17966596e+02, 6.17966596e+02,
       5.76387663e+02, 5.76387663e+02, 5.76387663e+02, 5.76387663e+02,
       5.38762205e+02, 5.38762205e+02, 5.38762205e+02, 5.38762205e+02,
       5.06102905e+02, 5.06102905e+02, 5.06102905e+02, 5.06102905e+02,
       4.79873679e+02, 4.79873679e+02, 4.79873679e+02, 4.79873679e+02,
       4.61632451e+02, 4.61632451e+02, 4.61632451e+02, 4.61632451e+02,
       4.51822663e+02, 4.51822663e+02, 4.51822663e+02, 4.51822663e+02,
       4.48755045e+02, 4.48755045e+02, 4.48755045e+02, 4.48755045e+02,
       4.49111914e+02, 4.49111914e+02, 4.49111914e+02, 4.49111914e+02,
       4.51654090e+02, 4.51654090e+02, 4.51654090e+02, 4.51654090e+02,
       4.52718346e+02, 4.52718346e+02, 4.52718346e+02, 4.52718346e+02,
       4.52919431e+02, 4.52919431e+02, 4.52919431e+02, 4.52919431e+02,
       4.52976550e+02, 4.52976550e+02, 4.52976550e+02, 4.52976550e+02,
       4.53103923e+02, 4.53103923e+02, 4.53103923e+02, 4.53103923e+02,
       4.53388509e+02, 4.53388509e+02, 4.53388509e+02, 4.53388509e+02,
       4.53898765e+02, 4.53898765e+02, 4.53898765e+02, 4.53898765e+02,
       4.54482141e+02, 4.54482141e+02, 4.54482141e+02, 4.54482141e+02,
       4.55085093e+02, 4.55085093e+02, 4.55085093e+02, 4.55085093e+02,
       4.52596174e+02, 4.52596174e+02, 4.52596174e+02, 4.52596174e+02,
       4.27900465e+02, 4.27900465e+02, 4.27900465e+02, 4.27900465e+02,
       3.14451641e+02, 3.14451641e+02, 3.14451641e+02, 3.14451641e+02,
       8.65631679e+01, 8.65631679e+01, 8.65631679e+01, 8.65631679e+01,
       2.41830497e+00, 2.41830497e+00, 2.41830497e+00, 2.41830497e+00,
       1.27132333e-02, 1.27132333e-02, 1.27132333e-02, 1.27132333e-02,
       1.00002685e-02, 1.00002685e-02, 1.00002685e-02, 1.00002685e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
       0.99999989, 0.99999989, 0.99999989, 0.99999957, 0.99999957,
       0.99999957, 0.99999957, 0.99999839, 0.99999839, 0.99999839,
       0.99999839, 0.99999423, 0.99999423, 0.99999423, 0.99999423,
       0.99998062, 0.99998062, 0.99998062, 0.99998062, 0.99993892,
       0.99993892, 0.99993892, 0.99993892, 0.99982004, 0.99982004,
       0.99982004, 0.99982004, 0.99950587, 0.99950587, 0.99950587,
       0.99950587, 0.99874031, 0.99874031, 0.99874031, 0.99874031,
       0.99702982, 0.99702982, 0.99702982, 0.99702982, 0.99354599,
       0.99354599, 0.99354599, 0.99354599, 0.98711067, 0.98711067,
       0.98711067, 0.98711067, 0.97636406, 0.97636406, 0.97636406,
       0.97636406, 0.96013913, 0.96013913, 0.96013913, 0.96013913,
       0.93789515, 0.93789515, 0.93789515, 0.93789515, 0.90994657,
       0.90994657, 0.90994657, 0.90994657, 0.8773198 , 0.8773198 ,
       0.8773198 , 0.8773198 , 0.84131053, 0.84131053, 0.84131053,
       0.84131053, 0.80309318, 0.80309318, 0.80309318, 0.80309318,
       0.76488582, 0.76488582, 0.76488582, 0.76488582, 0.72862882,
       0.72862882, 0.72862882, 0.72862882, 0.69424027, 0.69424027,
       0.69424027, 0.69424027, 0.66187235, 0.66187235, 0.66187235,
       0.66187235, 0.63295763, 0.63295763, 0.63295763, 0.63295763,
       0.60550311, 0.60550311, 0.60550311, 0.60550311, 0.58821214,
       0.58821214, 0.58821214, 0.58821214, 0.57094445, 0.57094445,
       0.57094445, 0.57094445, 0.56567273, 0.56567273, 0.56567273,
       0.56567273, 0.56457433, 0.56457433, 0.56457433, 0.56457433,
       0.56452234, 0.56452234, 0.56452234, 0.56452234, 0.56563963,
       0.56563963, 0.56563963, 0.56563963, 0.56692819, 0.56692819,
       0.56692819, 0.56692819, 0.56718804, 0.56718804, 0.56718804,
       0.56718804, 0.56693567, 0.56693567, 0.56693567, 0.56693567,
       0.56767338, 0.56767338, 0.56767338, 0.56767338, 0.57613836,
       0.57613836, 0.57613836, 0.57613836, 0.61774062, 0.61774062,
       0.61774062, 0.61774062, 0.75887044, 0.75887044, 0.75887044,
       0.75887044, 1.13039106, 1.13039106, 1.13039106, 1.13039106,
       1.91581709, 1.91581709, 1.91581709, 1.91581709, 3.05001354,
       3.05001354, 3.05001354, 3.05001354, 3.50876949, 3.50876949,
       3.50876949, 3.50876949, 2.9569208 , 2.9569208 , 2.9569208 ,
       2.9569208 , 1.40056125, 1.40056125, 1.40056125, 1.40056125,
       1.02615253, 1.02615253, 1.02615253, 1.02615253, 1.00051302,
       1.00051302, 1.00051302, 1.00051302, 1.00000017, 1.00000017,
       1.00000017, 1.00000017, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.31212456e-07, 8.31212456e-07, 8.31212456e-07, 8.31212456e-07,
       3.97120544e-06, 3.97120544e-06, 3.97120544e-06, 3.97120544e-06,
       1.59059987e-05, 1.59059987e-05, 1.59059987e-05, 1.59059987e-05,
       6.03664366e-05, 6.03664366e-05, 6.03664366e-05, 6.03664366e-05,
       2.15805643e-04, 2.15805643e-04, 2.15805643e-04, 2.15805643e-04,
       7.25243296e-04, 7.25243296e-04, 7.25243296e-04, 7.25243296e-04,
       2.28544773e-03, 2.28544773e-03, 2.28544773e-03, 2.28544773e-03,
       6.73404888e-03, 6.73404888e-03, 6.73404888e-03, 6.73404888e-03,
       1.84918575e-02, 1.84918575e-02, 1.84918575e-02, 1.84918575e-02,
       4.71552363e-02, 4.71552363e-02, 4.71552363e-02, 4.71552363e-02,
       1.11259276e-01, 1.11259276e-01, 1.11259276e-01, 1.11259276e-01,
       2.42090826e-01, 2.42090826e-01, 2.42090826e-01, 2.42090826e-01,
       4.84732171e-01, 4.84732171e-01, 4.84732171e-01, 4.84732171e-01,
       8.92811756e-01, 8.92811756e-01, 8.92811756e-01, 8.92811756e-01,
       1.51595482e+00, 1.51595482e+00, 1.51595482e+00, 1.51595482e+00,
       2.38448316e+00, 2.38448316e+00, 2.38448316e+00, 2.38448316e+00,
       3.49994899e+00, 3.49994899e+00, 3.49994899e+00, 3.49994899e+00,
       4.83781455e+00, 4.83781455e+00, 4.83781455e+00, 4.83781455e+00,
       6.36160827e+00, 6.36160827e+00, 6.36160827e+00, 6.36160827e+00,
       8.03629840e+00, 8.03629840e+00, 8.03629840e+00, 8.03629840e+00,
       9.75414415e+00, 9.75414415e+00, 9.75414415e+00, 9.75414415e+00,
       1.14703604e+01, 1.14703604e+01, 1.14703604e+01, 1.14703604e+01,
       1.31577649e+01, 1.31577649e+01, 1.31577649e+01, 1.31577649e+01,
       1.48036949e+01, 1.48036949e+01, 1.48036949e+01, 1.48036949e+01,
       1.63662284e+01, 1.63662284e+01, 1.63662284e+01, 1.63662284e+01,
       1.77761853e+01, 1.77761853e+01, 1.77761853e+01, 1.77761853e+01,
       1.89288293e+01, 1.89288293e+01, 1.89288293e+01, 1.89288293e+01,
       1.97266212e+01, 1.97266212e+01, 1.97266212e+01, 1.97266212e+01,
       2.01268304e+01, 2.01268304e+01, 2.01268304e+01, 2.01268304e+01,
       2.02304156e+01, 2.02304156e+01, 2.02304156e+01, 2.02304156e+01,
       2.01855356e+01, 2.01855356e+01, 2.01855356e+01, 2.01855356e+01,
       2.00664233e+01, 2.00664233e+01, 2.00664233e+01, 2.00664233e+01,
       2.00284165e+01, 2.00284165e+01, 2.00284165e+01, 2.00284165e+01,
       2.00164011e+01, 2.00164011e+01, 2.00164011e+01, 2.00164011e+01,
       2.00075438e+01, 2.00075438e+01, 2.00075438e+01, 2.00075438e+01,
       1.99976330e+01, 1.99976330e+01, 1.99976330e+01, 1.99976330e+01,
       1.99833671e+01, 1.99833671e+01, 1.99833671e+01, 1.99833671e+01,
       1.99631313e+01, 1.99631313e+01, 1.99631313e+01, 1.99631313e+01,
       1.99444762e+01, 1.99444762e+01, 1.99444762e+01, 1.99444762e+01,
       1.99229151e+01, 1.99229151e+01, 1.99229151e+01, 1.99229151e+01,
       1.98546912e+01, 1.98546912e+01, 1.98546912e+01, 1.98546912e+01,
       1.95683651e+01, 1.95683651e+01, 1.95683651e+01, 1.95683651e+01,
       1.82512117e+01, 1.82512117e+01, 1.82512117e+01, 1.82512117e+01,
       1.31946812e+01, 1.31946812e+01, 1.31946812e+01, 1.31946812e+01,
       3.22197950e+00, 3.22197950e+00, 3.22197950e+00, 3.22197950e+00,
       7.26448767e-02, 7.26448767e-02, 7.26448767e-02, 7.26448767e-02,
       1.16941338e-04, 1.16941338e-04, 1.16941338e-04, 1.16941338e-04,
       2.00485498e-08, 2.00485498e-08, 2.00485498e-08, 2.00485498e-08,
       3.19846760e-12, 3.19846760e-12, 3.19846760e-12, 3.19846760e-12,
       4.91826059e-16, 4.91826059e-16, 4.91826059e-16, 4.91826059e-16,
       6.67643390e-20, 6.67643390e-20, 6.67643390e-20, 6.67643390e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999969e+02, 9.99999969e+02, 9.99999969e+02, 9.99999969e+02,
       9.99999851e+02, 9.99999851e+02, 9.99999851e+02, 9.99999851e+02,
       9.99999405e+02, 9.99999405e+02, 9.99999405e+02, 9.99999405e+02,
       9.99997741e+02, 9.99997741e+02, 9.99997741e+02, 9.99997741e+02,
       9.99991925e+02, 9.99991925e+02, 9.99991925e+02, 9.99991925e+02,
       9.99972864e+02, 9.99972864e+02, 9.99972864e+02, 9.99972864e+02,
       9.99914490e+02, 9.99914490e+02, 9.99914490e+02, 9.99914490e+02,
       9.99748065e+02, 9.99748065e+02, 9.99748065e+02, 9.99748065e+02,
       9.99308322e+02, 9.99308322e+02, 9.99308322e+02, 9.99308322e+02,
       9.98237056e+02, 9.98237056e+02, 9.98237056e+02, 9.98237056e+02,
       9.95845011e+02, 9.95845011e+02, 9.95845011e+02, 9.95845011e+02,
       9.90979078e+02, 9.90979078e+02, 9.90979078e+02, 9.90979078e+02,
       9.82011051e+02, 9.82011051e+02, 9.82011051e+02, 9.82011051e+02,
       9.67091266e+02, 9.67091266e+02, 9.67091266e+02, 9.67091266e+02,
       9.44695117e+02, 9.44695117e+02, 9.44695117e+02, 9.44695117e+02,
       9.14239174e+02, 9.14239174e+02, 9.14239174e+02, 9.14239174e+02,
       8.76379529e+02, 8.76379529e+02, 8.76379529e+02, 8.76379529e+02,
       8.32762793e+02, 8.32762793e+02, 8.32762793e+02, 8.32762793e+02,
       7.85366006e+02, 7.85366006e+02, 7.85366006e+02, 7.85366006e+02,
       7.35932360e+02, 7.35932360e+02, 7.35932360e+02, 7.35932360e+02,
       6.87323424e+02, 6.87323424e+02, 6.87323424e+02, 6.87323424e+02,
       6.42175077e+02, 6.42175077e+02, 6.42175077e+02, 6.42175077e+02,
       6.00145773e+02, 6.00145773e+02, 6.00145773e+02, 6.00145773e+02,
       5.61538265e+02, 5.61538265e+02, 5.61538265e+02, 5.61538265e+02,
       5.26840609e+02, 5.26840609e+02, 5.26840609e+02, 5.26840609e+02,
       4.97140791e+02, 4.97140791e+02, 4.97140791e+02, 4.97140791e+02,
       4.73884379e+02, 4.73884379e+02, 4.73884379e+02, 4.73884379e+02,
       4.58462049e+02, 4.58462049e+02, 4.58462049e+02, 4.58462049e+02,
       4.50871407e+02, 4.50871407e+02, 4.50871407e+02, 4.50871407e+02,
       4.48847969e+02, 4.48847969e+02, 4.48847969e+02, 4.48847969e+02,
       4.49672702e+02, 4.49672702e+02, 4.49672702e+02, 4.49672702e+02,
       4.51922948e+02, 4.51922948e+02, 4.51922948e+02, 4.51922948e+02,
       4.52785224e+02, 4.52785224e+02, 4.52785224e+02, 4.52785224e+02,
       4.53005867e+02, 4.53005867e+02, 4.53005867e+02, 4.53005867e+02,
       4.53063737e+02, 4.53063737e+02, 4.53063737e+02, 4.53063737e+02,
       4.53160041e+02, 4.53160041e+02, 4.53160041e+02, 4.53160041e+02,
       4.53422261e+02, 4.53422261e+02, 4.53422261e+02, 4.53422261e+02,
       4.53914136e+02, 4.53914136e+02, 4.53914136e+02, 4.53914136e+02,
       4.54500339e+02, 4.54500339e+02, 4.54500339e+02, 4.54500339e+02,
       4.55295261e+02, 4.55295261e+02, 4.55295261e+02, 4.55295261e+02,
       4.55007290e+02, 4.55007290e+02, 4.55007290e+02, 4.55007290e+02,
       4.44699313e+02, 4.44699313e+02, 4.44699313e+02, 4.44699313e+02,
       3.84060326e+02, 3.84060326e+02, 3.84060326e+02, 3.84060326e+02,
       1.91713252e+02, 1.91713252e+02, 1.91713252e+02, 1.91713252e+02,
       1.83826676e+01, 1.83826676e+01, 1.83826676e+01, 1.83826676e+01,
       1.13135376e-01, 1.13135376e-01, 1.13135376e-01, 1.13135376e-01,
       1.00165770e-02, 1.00165770e-02, 1.00165770e-02, 1.00165770e-02,
       1.00000024e-02, 1.00000024e-02, 1.00000024e-02, 1.00000024e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999963,
       0.99999963, 0.99999963, 0.99999963, 0.99999863, 0.99999863,
       0.99999863, 0.99999863, 0.99999517, 0.99999517, 0.99999517,
       0.99999517, 0.99998392, 0.99998392, 0.99998392, 0.99998392,
       0.99994967, 0.99994967, 0.99994967, 0.99994967, 0.99985237,
       0.99985237, 0.99985237, 0.99985237, 0.99959542, 0.99959542,
       0.99959542, 0.99959542, 0.9989677 , 0.9989677 , 0.9989677 ,
       0.9989677 , 0.99755668, 0.99755668, 0.99755668, 0.99755668,
       0.99465483, 0.99465483, 0.99465483, 0.99465483, 0.98922278,
       0.98922278, 0.98922278, 0.98922278, 0.98000087, 0.98000087,
       0.98000087, 0.98000087, 0.96581386, 0.96581386, 0.96581386,
       0.96581386, 0.94597479, 0.94597479, 0.94597479, 0.94597479,
       0.92056352, 0.92056352, 0.92056352, 0.92056352, 0.89039   ,
       0.89039   , 0.89039   , 0.89039   , 0.85665144, 0.85665144,
       0.85665144, 0.85665144, 0.82046164, 0.82046164, 0.82046164,
       0.82046164, 0.78331999, 0.78331999, 0.78331999, 0.78331999,
       0.74742401, 0.74742401, 0.74742401, 0.74742401, 0.71331198,
       0.71331198, 0.71331198, 0.71331198, 0.68102127, 0.68102127,
       0.68102127, 0.68102127, 0.65059716, 0.65059716, 0.65059716,
       0.65059716, 0.6240258 , 0.6240258 , 0.6240258 , 0.6240258 ,
       0.59855044, 0.59855044, 0.59855044, 0.59855044, 0.58370503,
       0.58370503, 0.58370503, 0.58370503, 0.56923565, 0.56923565,
       0.56923565, 0.56923565, 0.5647148 , 0.5647148 , 0.5647148 ,
       0.5647148 , 0.5645406 , 0.5645406 , 0.5645406 , 0.5645406 ,
       0.56538346, 0.56538346, 0.56538346, 0.56538346, 0.56608138,
       0.56608138, 0.56608138, 0.56608138, 0.56681268, 0.56681268,
       0.56681268, 0.56681268, 0.56720477, 0.56720477, 0.56720477,
       0.56720477, 0.56710473, 0.56710473, 0.56710473, 0.56710473,
       0.56748519, 0.56748519, 0.56748519, 0.56748519, 0.5725192 ,
       0.5725192 , 0.5725192 , 0.5725192 , 0.59936974, 0.59936974,
       0.59936974, 0.59936974, 0.69655554, 0.69655554, 0.69655554,
       0.69655554, 0.9676065 , 0.9676065 , 0.9676065 , 0.9676065 ,
       1.57749515, 1.57749515, 1.57749515, 1.57749515, 2.65892925,
       2.65892925, 2.65892925, 2.65892925, 3.47677245, 3.47677245,
       3.47677245, 3.47677245, 3.4415978 , 3.4415978 , 3.4415978 ,
       3.4415978 , 2.06542454, 2.06542454, 2.06542454, 2.06542454,
       1.09918894, 1.09918894, 1.09918894, 1.09918894, 1.00437867,
       1.00437867, 1.00437867, 1.00437867, 1.00001045, 1.00001045,
       1.00001045, 1.00001045, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.06442751e-06, 3.06442751e-06, 3.06442751e-06, 3.06442751e-06,
       1.37096058e-05, 1.37096058e-05, 1.37096058e-05, 1.37096058e-05,
       5.11071441e-05, 5.11071441e-05, 5.11071441e-05, 5.11071441e-05,
       1.80696441e-04, 1.80696441e-04, 1.80696441e-04, 1.80696441e-04,
       6.01731053e-04, 6.01731053e-04, 6.01731053e-04, 6.01731053e-04,
       1.88320977e-03, 1.88320977e-03, 1.88320977e-03, 1.88320977e-03,
       5.52400997e-03, 5.52400997e-03, 5.52400997e-03, 5.52400997e-03,
       1.51400717e-02, 1.51400717e-02, 1.51400717e-02, 1.51400717e-02,
       3.86400960e-02, 3.86400960e-02, 3.86400960e-02, 3.86400960e-02,
       9.15052429e-02, 9.15052429e-02, 9.15052429e-02, 9.15052429e-02,
       2.00411209e-01, 2.00411209e-01, 2.00411209e-01, 2.00411209e-01,
       4.04958870e-01, 4.04958870e-01, 4.04958870e-01, 4.04958870e-01,
       7.54311496e-01, 7.54311496e-01, 7.54311496e-01, 7.54311496e-01,
       1.29704807e+00, 1.29704807e+00, 1.29704807e+00, 1.29704807e+00,
       2.06709372e+00, 2.06709372e+00, 2.06709372e+00, 2.06709372e+00,
       3.07296603e+00, 3.07296603e+00, 3.07296603e+00, 3.07296603e+00,
       4.29705387e+00, 4.29705387e+00, 4.29705387e+00, 4.29705387e+00,
       5.70596036e+00, 5.70596036e+00, 5.70596036e+00, 5.70596036e+00,
       7.26745760e+00, 7.26745760e+00, 7.26745760e+00, 7.26745760e+00,
       8.91729908e+00, 8.91729908e+00, 8.91729908e+00, 8.91729908e+00,
       1.05722640e+01, 1.05722640e+01, 1.05722640e+01, 1.05722640e+01,
       1.22139882e+01, 1.22139882e+01, 1.22139882e+01, 1.22139882e+01,
       1.38271695e+01, 1.38271695e+01, 1.38271695e+01, 1.38271695e+01,
       1.53909420e+01, 1.53909420e+01, 1.53909420e+01, 1.53909420e+01,
       1.68595079e+01, 1.68595079e+01, 1.68595079e+01, 1.68595079e+01,
       1.81589814e+01, 1.81589814e+01, 1.81589814e+01, 1.81589814e+01,
       1.91837824e+01, 1.91837824e+01, 1.91837824e+01, 1.91837824e+01,
       1.98529322e+01, 1.98529322e+01, 1.98529322e+01, 1.98529322e+01,
       2.01599348e+01, 2.01599348e+01, 2.01599348e+01, 2.01599348e+01,
       2.02242115e+01, 2.02242115e+01, 2.02242115e+01, 2.02242115e+01,
       2.01558715e+01, 2.01558715e+01, 2.01558715e+01, 2.01558715e+01,
       2.00527078e+01, 2.00527078e+01, 2.00527078e+01, 2.00527078e+01,
       2.00224238e+01, 2.00224238e+01, 2.00224238e+01, 2.00224238e+01,
       2.00150070e+01, 2.00150070e+01, 2.00150070e+01, 2.00150070e+01,
       2.00079684e+01, 2.00079684e+01, 2.00079684e+01, 2.00079684e+01,
       1.99973046e+01, 1.99973046e+01, 1.99973046e+01, 1.99973046e+01,
       1.99790344e+01, 1.99790344e+01, 1.99790344e+01, 1.99790344e+01,
       1.99548828e+01, 1.99548828e+01, 1.99548828e+01, 1.99548828e+01,
       1.99337003e+01, 1.99337003e+01, 1.99337003e+01, 1.99337003e+01,
       1.99182352e+01, 1.99182352e+01, 1.99182352e+01, 1.99182352e+01,
       1.98796077e+01, 1.98796077e+01, 1.98796077e+01, 1.98796077e+01,
       1.97369800e+01, 1.97369800e+01, 1.97369800e+01, 1.97369800e+01,
       1.90826196e+01, 1.90826196e+01, 1.90826196e+01, 1.90826196e+01,
       1.62655591e+01, 1.62655591e+01, 1.62655591e+01, 1.62655591e+01,
       8.02647381e+00, 8.02647381e+00, 8.02647381e+00, 8.02647381e+00,
       5.66390276e-01, 5.66390276e-01, 5.66390276e-01, 5.66390276e-01,
       3.57075007e-03, 3.57075007e-03, 3.57075007e-03, 3.57075007e-03,
       1.26227765e-06, 1.26227765e-06, 1.26227765e-06, 1.26227765e-06,
       1.87417390e-10, 1.87417390e-10, 1.87417390e-10, 1.87417390e-10,
       2.86649447e-14, 2.86649447e-14, 2.86649447e-14, 2.86649447e-14,
       4.45854151e-18, 4.45854151e-18, 4.45854151e-18, 4.45854151e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
       9.99999487e+02, 9.99999487e+02, 9.99999487e+02, 9.99999487e+02,
       9.99998088e+02, 9.99998088e+02, 9.99998088e+02, 9.99998088e+02,
       9.99993239e+02, 9.99993239e+02, 9.99993239e+02, 9.99993239e+02,
       9.99977486e+02, 9.99977486e+02, 9.99977486e+02, 9.99977486e+02,
       9.99929539e+02, 9.99929539e+02, 9.99929539e+02, 9.99929539e+02,
       9.99793331e+02, 9.99793331e+02, 9.99793331e+02, 9.99793331e+02,
       9.99433661e+02, 9.99433661e+02, 9.99433661e+02, 9.99433661e+02,
       9.98555189e+02, 9.98555189e+02, 9.98555189e+02, 9.98555189e+02,
       9.96581570e+02, 9.96581570e+02, 9.96581570e+02, 9.96581570e+02,
       9.92526877e+02, 9.92526877e+02, 9.92526877e+02, 9.92526877e+02,
       9.84951309e+02, 9.84951309e+02, 9.84951309e+02, 9.84951309e+02,
       9.72131850e+02, 9.72131850e+02, 9.72131850e+02, 9.72131850e+02,
       9.52508972e+02, 9.52508972e+02, 9.52508972e+02, 9.52508972e+02,
       9.25264888e+02, 9.25264888e+02, 9.25264888e+02, 9.25264888e+02,
       8.90701571e+02, 8.90701571e+02, 8.90701571e+02, 8.90701571e+02,
       8.50150128e+02, 8.50150128e+02, 8.50150128e+02, 8.50150128e+02,
       8.05448379e+02, 8.05448379e+02, 8.05448379e+02, 8.05448379e+02,
       7.58271461e+02, 7.58271461e+02, 7.58271461e+02, 7.58271461e+02,
       7.10634261e+02, 7.10634261e+02, 7.10634261e+02, 7.10634261e+02,
       6.65455423e+02, 6.65455423e+02, 6.65455423e+02, 6.65455423e+02,
       6.23352527e+02, 6.23352527e+02, 6.23352527e+02, 6.23352527e+02,
       5.84182279e+02, 5.84182279e+02, 5.84182279e+02, 5.84182279e+02,
       5.48269428e+02, 5.48269428e+02, 5.48269428e+02, 5.48269428e+02,
       5.16272042e+02, 5.16272042e+02, 5.16272042e+02, 5.16272042e+02,
       4.89358572e+02, 4.89358572e+02, 4.89358572e+02, 4.89358572e+02,
       4.68892875e+02, 4.68892875e+02, 4.68892875e+02, 4.68892875e+02,
       4.55991188e+02, 4.55991188e+02, 4.55991188e+02, 4.55991188e+02,
       4.50239990e+02, 4.50239990e+02, 4.50239990e+02, 4.50239990e+02,
       4.49001549e+02, 4.49001549e+02, 4.49001549e+02, 4.49001549e+02,
       4.50267586e+02, 4.50267586e+02, 4.50267586e+02, 4.50267586e+02,
       4.52156184e+02, 4.52156184e+02, 4.52156184e+02, 4.52156184e+02,
       4.52802596e+02, 4.52802596e+02, 4.52802596e+02, 4.52802596e+02,
       4.53038480e+02, 4.53038480e+02, 4.53038480e+02, 4.53038480e+02,
       4.53140657e+02, 4.53140657e+02, 4.53140657e+02, 4.53140657e+02,
       4.53267209e+02, 4.53267209e+02, 4.53267209e+02, 4.53267209e+02,
       4.53531394e+02, 4.53531394e+02, 4.53531394e+02, 4.53531394e+02,
       4.53971062e+02, 4.53971062e+02, 4.53971062e+02, 4.53971062e+02,
       4.54514025e+02, 4.54514025e+02, 4.54514025e+02, 4.54514025e+02,
       4.55259395e+02, 4.55259395e+02, 4.55259395e+02, 4.55259395e+02,
       4.55867897e+02, 4.55867897e+02, 4.55867897e+02, 4.55867897e+02,
       4.52235462e+02, 4.52235462e+02, 4.52235462e+02, 4.52235462e+02,
       4.22918025e+02, 4.22918025e+02, 4.22918025e+02, 4.22918025e+02,
       2.98696478e+02, 2.98696478e+02, 2.98696478e+02, 2.98696478e+02,
       7.35671819e+01, 7.35671819e+01, 7.35671819e+01, 7.35671819e+01,
       1.73816088e+00, 1.73816088e+00, 1.73816088e+00, 1.73816088e+00,
       1.15098232e-02, 1.15098232e-02, 1.15098232e-02, 1.15098232e-02,
       1.00001491e-02, 1.00001491e-02, 1.00001491e-02, 1.00001491e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999884,
       0.99999884, 0.99999884, 0.99999884, 0.99999596, 0.99999596,
       0.99999596, 0.99999596, 0.99998666, 0.99998666, 0.99998666,
       0.99998666, 0.99995851, 0.99995851, 0.99995851, 0.99995851,
       0.99987881, 0.99987881, 0.99987881, 0.99987881, 0.99966846,
       0.99966846, 0.99966846, 0.99966846, 0.99915332, 0.99915332,
       0.99915332, 0.99915332, 0.99798882, 0.99798882, 0.99798882,
       0.99798882, 0.99557202, 0.99557202, 0.99557202, 0.99557202,
       0.99099076, 0.99099076, 0.99099076, 0.99099076, 0.98309025,
       0.98309025, 0.98309025, 0.98309025, 0.97071425, 0.97071425,
       0.97071425, 0.97071425, 0.95306962, 0.95306962, 0.95306962,
       0.95306962, 0.93003166, 0.93003166, 0.93003166, 0.93003166,
       0.90219494, 0.90219494, 0.90219494, 0.90219494, 0.8706268 ,
       0.8706268 , 0.8706268 , 0.8706268 , 0.83644936, 0.83644936,
       0.83644936, 0.83644936, 0.80070998, 0.80070998, 0.80070998,
       0.80070998, 0.76534052, 0.76534052, 0.76534052, 0.76534052,
       0.73160157, 0.73160157, 0.73160157, 0.73160157, 0.69941663,
       0.69941663, 0.69941663, 0.69941663, 0.66904404, 0.66904404,
       0.66904404, 0.66904404, 0.640412  , 0.640412  , 0.640412  ,
       0.640412  , 0.61609193, 0.61609193, 0.61609193, 0.61609193,
       0.59253553, 0.59253553, 0.59253553, 0.59253553, 0.57985082,
       0.57985082, 0.57985082, 0.57985082, 0.56807488, 0.56807488,
       0.56807488, 0.56807488, 0.56414175, 0.56414175, 0.56414175,
       0.56414175, 0.56447501, 0.56447501, 0.56447501, 0.56447501,
       0.56608222, 0.56608222, 0.56608222, 0.56608222, 0.5665232 ,
       0.5665232 , 0.5665232 , 0.5665232 , 0.56679339, 0.56679339,
       0.56679339, 0.56679339, 0.56717873, 0.56717873, 0.56717873,
       0.56717873, 0.5672011 , 0.5672011 , 0.5672011 , 0.5672011 ,
       0.56745182, 0.56745182, 0.56745182, 0.56745182, 0.57048317,
       0.57048317, 0.57048317, 0.57048317, 0.58763359, 0.58763359,
       0.58763359, 0.58763359, 0.65365865, 0.65365865, 0.65365865,
       0.65365865, 0.84867448, 0.84867448, 0.84867448, 0.84867448,
       1.31307086, 1.31307086, 1.31307086, 1.31307086, 2.21646901,
       2.21646901, 2.21646901, 2.21646901, 3.30517749, 3.30517749,
       3.30517749, 3.30517749, 3.62340282, 3.62340282, 3.62340282,
       3.62340282, 2.90056638, 2.90056638, 2.90056638, 2.90056638,
       1.33694683, 1.33694683, 1.33694683, 1.33694683, 1.0212743 ,
       1.0212743 , 1.0212743 , 1.0212743 , 1.00034859, 1.00034859,
       1.00034859, 1.00034859, 1.0000001 , 1.0000001 , 1.0000001 ,
       1.0000001 , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.03392125e-05, 1.03392125e-05, 1.03392125e-05, 1.03392125e-05,
       4.34400060e-05, 4.34400060e-05, 4.34400060e-05, 4.34400060e-05,
       1.51141917e-04, 1.51141917e-04, 1.51141917e-04, 1.51141917e-04,
       4.99195131e-04, 4.99195131e-04, 4.99195131e-04, 4.99195131e-04,
       1.55234811e-03, 1.55234811e-03, 1.55234811e-03, 1.55234811e-03,
       4.53464427e-03, 4.53464427e-03, 4.53464427e-03, 4.53464427e-03,
       1.24067118e-02, 1.24067118e-02, 1.24067118e-02, 1.24067118e-02,
       3.16898153e-02, 3.16898153e-02, 3.16898153e-02, 3.16898153e-02,
       7.53087747e-02, 7.53087747e-02, 7.53087747e-02, 7.53087747e-02,
       1.65962861e-01, 1.65962861e-01, 1.65962861e-01, 1.65962861e-01,
       3.38287464e-01, 3.38287464e-01, 3.38287464e-01, 3.38287464e-01,
       6.36985732e-01, 6.36985732e-01, 6.36985732e-01, 6.36985732e-01,
       1.10885693e+00, 1.10885693e+00, 1.10885693e+00, 1.10885693e+00,
       1.79021928e+00, 1.79021928e+00, 1.79021928e+00, 1.79021928e+00,
       2.69557108e+00, 2.69557108e+00, 2.69557108e+00, 2.69557108e+00,
       3.81416950e+00, 3.81416950e+00, 3.81416950e+00, 3.81416950e+00,
       5.11690819e+00, 5.11690819e+00, 5.11690819e+00, 5.11690819e+00,
       6.57068197e+00, 6.57068197e+00, 6.57068197e+00, 6.57068197e+00,
       8.14009276e+00, 8.14009276e+00, 8.14009276e+00, 8.14009276e+00,
       9.73476120e+00, 9.73476120e+00, 9.73476120e+00, 9.73476120e+00,
       1.13275023e+01, 1.13275023e+01, 1.13275023e+01, 1.13275023e+01,
       1.29006498e+01, 1.29006498e+01, 1.29006498e+01, 1.29006498e+01,
       1.44427973e+01, 1.44427973e+01, 1.44427973e+01, 1.44427973e+01,
       1.59276078e+01, 1.59276078e+01, 1.59276078e+01, 1.59276078e+01,
       1.73033647e+01, 1.73033647e+01, 1.73033647e+01, 1.73033647e+01,
       1.84940290e+01, 1.84940290e+01, 1.84940290e+01, 1.84940290e+01,
       1.93974938e+01, 1.93974938e+01, 1.93974938e+01, 1.93974938e+01,
       1.99500228e+01, 1.99500228e+01, 1.99500228e+01, 1.99500228e+01,
       2.01786156e+01, 2.01786156e+01, 2.01786156e+01, 2.01786156e+01,
       2.02141830e+01, 2.02141830e+01, 2.02141830e+01, 2.02141830e+01,
       2.01270312e+01, 2.01270312e+01, 2.01270312e+01, 2.01270312e+01,
       2.00438391e+01, 2.00438391e+01, 2.00438391e+01, 2.00438391e+01,
       2.00180478e+01, 2.00180478e+01, 2.00180478e+01, 2.00180478e+01,
       2.00116554e+01, 2.00116554e+01, 2.00116554e+01, 2.00116554e+01,
       2.00060169e+01, 2.00060169e+01, 2.00060169e+01, 2.00060169e+01,
       1.99957578e+01, 1.99957578e+01, 1.99957578e+01, 1.99957578e+01,
       1.99760299e+01, 1.99760299e+01, 1.99760299e+01, 1.99760299e+01,
       1.99495430e+01, 1.99495430e+01, 1.99495430e+01, 1.99495430e+01,
       1.99258351e+01, 1.99258351e+01, 1.99258351e+01, 1.99258351e+01,
       1.99068524e+01, 1.99068524e+01, 1.99068524e+01, 1.99068524e+01,
       1.98862615e+01, 1.98862615e+01, 1.98862615e+01, 1.98862615e+01,
       1.98134680e+01, 1.98134680e+01, 1.98134680e+01, 1.98134680e+01,
       1.94905556e+01, 1.94905556e+01, 1.94905556e+01, 1.94905556e+01,
       1.80230680e+01, 1.80230680e+01, 1.80230680e+01, 1.80230680e+01,
       1.26076173e+01, 1.26076173e+01, 1.26076173e+01, 1.26076173e+01,
       2.67311141e+00, 2.67311141e+00, 2.67311141e+00, 2.67311141e+00,
       5.14361403e-02, 5.14361403e-02, 5.14361403e-02, 5.14361403e-02,
       6.80950934e-05, 6.80950934e-05, 6.80950934e-05, 6.80950934e-05,
       1.13412667e-08, 1.13412667e-08, 1.13412667e-08, 1.13412667e-08,
       1.79486084e-12, 1.79486084e-12, 1.79486084e-12, 1.79486084e-12,
       2.73952290e-16, 2.73952290e-16, 2.73952290e-16, 2.73952290e-16,
       5.00064164e-20, 5.00064164e-20, 5.00064164e-20, 5.00064164e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
       9.99998375e+02, 9.99998375e+02, 9.99998375e+02, 9.99998375e+02,
       9.99994345e+02, 9.99994345e+02, 9.99994345e+02, 9.99994345e+02,
       9.99981322e+02, 9.99981322e+02, 9.99981322e+02, 9.99981322e+02,
       9.99941918e+02, 9.99941918e+02, 9.99941918e+02, 9.99941918e+02,
       9.99830343e+02, 9.99830343e+02, 9.99830343e+02, 9.99830343e+02,
       9.99535884e+02, 9.99535884e+02, 9.99535884e+02, 9.99535884e+02,
       9.98814928e+02, 9.98814928e+02, 9.98814928e+02, 9.98814928e+02,
       9.97185851e+02, 9.97185851e+02, 9.97185851e+02, 9.97185851e+02,
       9.93807795e+02, 9.93807795e+02, 9.93807795e+02, 9.93807795e+02,
       9.87414745e+02, 9.87414745e+02, 9.87414745e+02, 9.87414745e+02,
       9.76420200e+02, 9.76420200e+02, 9.76420200e+02, 9.76420200e+02,
       9.59272359e+02, 9.59272359e+02, 9.59272359e+02, 9.59272359e+02,
       9.34979017e+02, 9.34979017e+02, 9.34979017e+02, 9.34979017e+02,
       9.03531113e+02, 9.03531113e+02, 9.03531113e+02, 9.03531113e+02,
       8.65943868e+02, 8.65943868e+02, 8.65943868e+02, 8.65943868e+02,
       8.23870991e+02, 8.23870991e+02, 8.23870991e+02, 8.23870991e+02,
       7.78998721e+02, 7.78998721e+02, 7.78998721e+02, 7.78998721e+02,
       7.32829097e+02, 7.32829097e+02, 7.32829097e+02, 7.32829097e+02,
       6.87867667e+02, 6.87867667e+02, 6.87867667e+02, 6.87867667e+02,
       6.45811417e+02, 6.45811417e+02, 6.45811417e+02, 6.45811417e+02,
       6.06420020e+02, 6.06420020e+02, 6.06420020e+02, 6.06420020e+02,
       5.69812260e+02, 5.69812260e+02, 5.69812260e+02, 5.69812260e+02,
       5.36391612e+02, 5.36391612e+02, 5.36391612e+02, 5.36391612e+02,
       5.06909342e+02, 5.06909342e+02, 5.06909342e+02, 5.06909342e+02,
       4.82613586e+02, 4.82613586e+02, 4.82613586e+02, 4.82613586e+02,
       4.64771665e+02, 4.64771665e+02, 4.64771665e+02, 4.64771665e+02,
       4.54120136e+02, 4.54120136e+02, 4.54120136e+02, 4.54120136e+02,
       4.49846503e+02, 4.49846503e+02, 4.49846503e+02, 4.49846503e+02,
       4.49195989e+02, 4.49195989e+02, 4.49195989e+02, 4.49195989e+02,
       4.50838120e+02, 4.50838120e+02, 4.50838120e+02, 4.50838120e+02,
       4.52365430e+02, 4.52365430e+02, 4.52365430e+02, 4.52365430e+02,
       4.52826151e+02, 4.52826151e+02, 4.52826151e+02, 4.52826151e+02,
       4.53036969e+02, 4.53036969e+02, 4.53036969e+02, 4.53036969e+02,
       4.53180502e+02, 4.53180502e+02, 4.53180502e+02, 4.53180502e+02,
       4.53367904e+02, 4.53367904e+02, 4.53367904e+02, 4.53367904e+02,
       4.53682043e+02, 4.53682043e+02, 4.53682043e+02, 4.53682043e+02,
       4.54101255e+02, 4.54101255e+02, 4.54101255e+02, 4.54101255e+02,
       4.54550055e+02, 4.54550055e+02, 4.54550055e+02, 4.54550055e+02,
       4.55181873e+02, 4.55181873e+02, 4.55181873e+02, 4.55181873e+02,
       4.56088869e+02, 4.56088869e+02, 4.56088869e+02, 4.56088869e+02,
       4.55314517e+02, 4.55314517e+02, 4.55314517e+02, 4.55314517e+02,
       4.42432305e+02, 4.42432305e+02, 4.42432305e+02, 4.42432305e+02,
       3.73791360e+02, 3.73791360e+02, 3.73791360e+02, 3.73791360e+02,
       1.73331140e+02, 1.73331140e+02, 1.73331140e+02, 1.73331140e+02,
       1.42286314e+01, 1.42286314e+01, 1.42286314e+01, 1.42286314e+01,
       7.35026594e-02, 7.35026594e-02, 7.35026594e-02, 7.35026594e-02,
       1.00088839e-02, 1.00088839e-02, 1.00088839e-02, 1.00088839e-02,
       1.00000013e-02, 1.00000013e-02, 1.00000013e-02, 1.00000013e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999914, 0.99999914, 0.99999914, 0.99999914, 0.9999966 ,
       0.9999966 , 0.9999966 , 0.9999966 , 0.99998894, 0.99998894,
       0.99998894, 0.99998894, 0.99996579, 0.99996579, 0.99996579,
       0.99996579, 0.99990045, 0.99990045, 0.99990045, 0.99990045,
       0.99972809, 0.99972809, 0.99972809, 0.99972809, 0.99930503,
       0.99930503, 0.99930503, 0.99930503, 0.99834358, 0.99834358,
       0.99834358, 0.99834358, 0.99633101, 0.99633101, 0.99633101,
       0.99633101, 0.99247048, 0.99247048, 0.99247048, 0.99247048,
       0.98571275, 0.98571275, 0.98571275, 0.98571275, 0.97494122,
       0.97494122, 0.97494122, 0.97494122, 0.95929193, 0.95929193,
       0.95929193, 0.95929193, 0.93846719, 0.93846719, 0.93846719,
       0.93846719, 0.91285499, 0.91285499, 0.91285499, 0.91285499,
       0.88337065, 0.88337065, 0.88337065, 0.88337065, 0.85110869,
       0.85110869, 0.85110869, 0.85110869, 0.81698796, 0.81698796,
       0.81698796, 0.81698796, 0.78242051, 0.78242051, 0.78242051,
       0.78242051, 0.74907398, 0.74907398, 0.74907398, 0.74907398,
       0.7171757 , 0.7171757 , 0.7171757 , 0.7171757 , 0.68675454,
       0.68675454, 0.68675454, 0.68675454, 0.65817399, 0.65817399,
       0.65817399, 0.65817399, 0.63120015, 0.63120015, 0.63120015,
       0.63120015, 0.60905285, 0.60905285, 0.60905285, 0.60905285,
       0.58738819, 0.58738819, 0.58738819, 0.58738819, 0.57655812,
       0.57655812, 0.57655812, 0.57655812, 0.56731141, 0.56731141,
       0.56731141, 0.56731141, 0.5639553 , 0.5639553 , 0.5639553 ,
       0.5639553 , 0.56439893, 0.56439893, 0.56439893, 0.56439893,
       0.5666221 , 0.5666221 , 0.5666221 , 0.5666221 , 0.56689879,
       0.56689879, 0.56689879, 0.56689879, 0.56688439, 0.56688439,
       0.56688439, 0.56688439, 0.56712646, 0.56712646, 0.56712646,
       0.56712646, 0.56724753, 0.56724753, 0.56724753, 0.56724753,
       0.56747625, 0.56747625, 0.56747625, 0.56747625, 0.56936103,
       0.56936103, 0.56936103, 0.56936103, 0.58025147, 0.58025147,
       0.58025147, 0.58025147, 0.62459777, 0.62459777, 0.62459777,
       0.62459777, 0.76306356, 0.76306356, 0.76306356, 0.76306356,
       1.11089581, 1.11089581, 1.11089581, 1.11089581, 1.83047175,
       1.83047175, 1.83047175, 1.83047175, 2.96543117, 2.96543117,
       2.96543117, 2.96543117, 3.63638824, 3.63638824, 3.63638824,
       3.63638824, 3.47481596, 3.47481596, 3.47481596, 3.47481596,
       1.95403945, 1.95403945, 1.95403945, 1.95403945, 1.08283494,
       1.08283494, 1.08283494, 1.08283494, 1.00335988, 1.00335988,
       1.00335988, 1.00335988, 1.00000576, 1.00000576, 1.00000576,
       1.00000576, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.21524399e-05, 3.21524399e-05, 3.21524399e-05, 3.21524399e-05,
       1.27174228e-04, 1.27174228e-04, 1.27174228e-04, 1.27174228e-04,
       4.13952526e-04, 4.13952526e-04, 4.13952526e-04, 4.13952526e-04,
       1.28010235e-03, 1.28010235e-03, 1.28010235e-03, 1.28010235e-03,
       3.72494678e-03, 3.72494678e-03, 3.72494678e-03, 3.72494678e-03,
       1.01750372e-02, 1.01750372e-02, 1.01750372e-02, 1.01750372e-02,
       2.60100958e-02, 2.60100958e-02, 2.60100958e-02, 2.60100958e-02,
       6.20163885e-02, 6.20163885e-02, 6.20163885e-02, 6.20163885e-02,
       1.37474769e-01, 1.37474769e-01, 1.37474769e-01, 1.37474769e-01,
       2.82559370e-01, 2.82559370e-01, 2.82559370e-01, 2.82559370e-01,
       5.37624629e-01, 5.37624629e-01, 5.37624629e-01, 5.37624629e-01,
       9.47149548e-01, 9.47149548e-01, 9.47149548e-01, 9.47149548e-01,
       1.54878183e+00, 1.54878183e+00, 1.54878183e+00, 1.54878183e+00,
       2.36197526e+00, 2.36197526e+00, 2.36197526e+00, 2.36197526e+00,
       3.38252055e+00, 3.38252055e+00, 3.38252055e+00, 3.38252055e+00,
       4.58640867e+00, 4.58640867e+00, 4.58640867e+00, 4.58640867e+00,
       5.94121401e+00, 5.94121401e+00, 5.94121401e+00, 5.94121401e+00,
       7.41947260e+00, 7.41947260e+00, 7.41947260e+00, 7.41947260e+00,
       8.95560830e+00, 8.95560830e+00, 8.95560830e+00, 8.95560830e+00,
       1.04968275e+01, 1.04968275e+01, 1.04968275e+01, 1.04968275e+01,
       1.20259513e+01, 1.20259513e+01, 1.20259513e+01, 1.20259513e+01,
       1.35357208e+01, 1.35357208e+01, 1.35357208e+01, 1.35357208e+01,
       1.50098538e+01, 1.50098538e+01, 1.50098538e+01, 1.50098538e+01,
       1.64177832e+01, 1.64177832e+01, 1.64177832e+01, 1.64177832e+01,
       1.77019691e+01, 1.77019691e+01, 1.77019691e+01, 1.77019691e+01,
       1.87851353e+01, 1.87851353e+01, 1.87851353e+01, 1.87851353e+01,
       1.95738145e+01, 1.95738145e+01, 1.95738145e+01, 1.95738145e+01,
       2.00235953e+01, 2.00235953e+01, 2.00235953e+01, 2.00235953e+01,
       2.01873321e+01, 2.01873321e+01, 2.01873321e+01, 2.01873321e+01,
       2.01992370e+01, 2.01992370e+01, 2.01992370e+01, 2.01992370e+01,
       2.01017551e+01, 2.01017551e+01, 2.01017551e+01, 2.01017551e+01,
       2.00372744e+01, 2.00372744e+01, 2.00372744e+01, 2.00372744e+01,
       2.00157926e+01, 2.00157926e+01, 2.00157926e+01, 2.00157926e+01,
       2.00082959e+01, 2.00082959e+01, 2.00082959e+01, 2.00082959e+01,
       2.00024907e+01, 2.00024907e+01, 2.00024907e+01, 2.00024907e+01,
       1.99918498e+01, 1.99918498e+01, 1.99918498e+01, 1.99918498e+01,
       1.99718075e+01, 1.99718075e+01, 1.99718075e+01, 1.99718075e+01,
       1.99458177e+01, 1.99458177e+01, 1.99458177e+01, 1.99458177e+01,
       1.99210292e+01, 1.99210292e+01, 1.99210292e+01, 1.99210292e+01,
       1.98969554e+01, 1.98969554e+01, 1.98969554e+01, 1.98969554e+01,
       1.98826323e+01, 1.98826323e+01, 1.98826323e+01, 1.98826323e+01,
       1.98432269e+01, 1.98432269e+01, 1.98432269e+01, 1.98432269e+01,
       1.96844946e+01, 1.96844946e+01, 1.96844946e+01, 1.96844946e+01,
       1.89485092e+01, 1.89485092e+01, 1.89485092e+01, 1.89485092e+01,
       1.58676586e+01, 1.58676586e+01, 1.58676586e+01, 1.58676586e+01,
       7.25693697e+00, 7.25693697e+00, 7.25693697e+00, 7.25693697e+00,
       4.34921777e-01, 4.34921777e-01, 4.34921777e-01, 4.34921777e-01,
       2.27948590e-03, 2.27948590e-03, 2.27948590e-03, 2.27948590e-03,
       6.88627382e-07, 6.88627382e-07, 6.88627382e-07, 6.88627382e-07,
       1.03089844e-10, 1.03089844e-10, 1.03089844e-10, 1.03089844e-10,
       1.60056279e-14, 1.60056279e-14, 1.60056279e-14, 1.60056279e-14,
       2.53568291e-18, 2.53568291e-18, 2.53568291e-18, 2.53568291e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99998797e+02, 9.99998797e+02, 9.99998797e+02, 9.99998797e+02,
       9.99995242e+02, 9.99995242e+02, 9.99995242e+02, 9.99995242e+02,
       9.99984511e+02, 9.99984511e+02, 9.99984511e+02, 9.99984511e+02,
       9.99952104e+02, 9.99952104e+02, 9.99952104e+02, 9.99952104e+02,
       9.99860634e+02, 9.99860634e+02, 9.99860634e+02, 9.99860634e+02,
       9.99619353e+02, 9.99619353e+02, 9.99619353e+02, 9.99619353e+02,
       9.99027231e+02, 9.99027231e+02, 9.99027231e+02, 9.99027231e+02,
       9.97682034e+02, 9.97682034e+02, 9.97682034e+02, 9.97682034e+02,
       9.94868221e+02, 9.94868221e+02, 9.94868221e+02, 9.94868221e+02,
       9.89478098e+02, 9.89478098e+02, 9.89478098e+02, 9.89478098e+02,
       9.80065169e+02, 9.80065169e+02, 9.80065169e+02, 9.80065169e+02,
       9.65118065e+02, 9.65118065e+02, 9.65118065e+02, 9.65118065e+02,
       9.43523368e+02, 9.43523368e+02, 9.43523368e+02, 9.43523368e+02,
       9.15006674e+02, 9.15006674e+02, 9.15006674e+02, 9.15006674e+02,
       8.80278342e+02, 8.80278342e+02, 8.80278342e+02, 8.80278342e+02,
       8.40775285e+02, 8.40775285e+02, 8.40775285e+02, 8.40775285e+02,
       7.98145941e+02, 7.98145941e+02, 7.98145941e+02, 7.98145941e+02,
       7.53755098e+02, 7.53755098e+02, 7.53755098e+02, 7.53755098e+02,
       7.09452587e+02, 7.09452587e+02, 7.09452587e+02, 7.09452587e+02,
       6.67485676e+02, 6.67485676e+02, 6.67485676e+02, 6.67485676e+02,
       6.28046689e+02, 6.28046689e+02, 6.28046689e+02, 6.28046689e+02,
       5.91112375e+02, 5.91112375e+02, 5.91112375e+02, 5.91112375e+02,
       5.56843157e+02, 5.56843157e+02, 5.56843157e+02, 5.56843157e+02,
       5.25742971e+02, 5.25742971e+02, 5.25742971e+02, 5.25742971e+02,
       4.98632093e+02, 4.98632093e+02, 4.98632093e+02, 4.98632093e+02,
       4.76795490e+02, 4.76795490e+02, 4.76795490e+02, 4.76795490e+02,
       4.61393393e+02, 4.61393393e+02, 4.61393393e+02, 4.61393393e+02,
       4.52740843e+02, 4.52740843e+02, 4.52740843e+02, 4.52740843e+02,
       4.49648853e+02, 4.49648853e+02, 4.49648853e+02, 4.49648853e+02,
       4.49459232e+02, 4.49459232e+02, 4.49459232e+02, 4.49459232e+02,
       4.51321023e+02, 4.51321023e+02, 4.51321023e+02, 4.51321023e+02,
       4.52531111e+02, 4.52531111e+02, 4.52531111e+02, 4.52531111e+02,
       4.52874067e+02, 4.52874067e+02, 4.52874067e+02, 4.52874067e+02,
       4.53039653e+02, 4.53039653e+02, 4.53039653e+02, 4.53039653e+02,
       4.53200233e+02, 4.53200233e+02, 4.53200233e+02, 4.53200233e+02,
       4.53441075e+02, 4.53441075e+02, 4.53441075e+02, 4.53441075e+02,
       4.53821299e+02, 4.53821299e+02, 4.53821299e+02, 4.53821299e+02,
       4.54260100e+02, 4.54260100e+02, 4.54260100e+02, 4.54260100e+02,
       4.54669989e+02, 4.54669989e+02, 4.54669989e+02, 4.54669989e+02,
       4.55190229e+02, 4.55190229e+02, 4.55190229e+02, 4.55190229e+02,
       4.56011617e+02, 4.56011617e+02, 4.56011617e+02, 4.56011617e+02,
       4.56384643e+02, 4.56384643e+02, 4.56384643e+02, 4.56384643e+02,
       4.51490886e+02, 4.51490886e+02, 4.51490886e+02, 4.51490886e+02,
       4.17208973e+02, 4.17208973e+02, 4.17208973e+02, 4.17208973e+02,
       2.82109903e+02, 2.82109903e+02, 2.82109903e+02, 2.82109903e+02,
       6.13627160e+01, 6.13627160e+01, 6.13627160e+01, 6.13627160e+01,
       1.21031418e+00, 1.21031418e+00, 1.21031418e+00, 1.21031418e+00,
       1.08068264e-02, 1.08068264e-02, 1.08068264e-02, 1.08068264e-02,
       1.00000814e-02, 1.00000814e-02, 1.00000814e-02, 1.00000814e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999752, 0.99999752, 0.99999752, 0.99999752, 0.99999075,
       0.99999075, 0.99999075, 0.99999075, 0.99997179, 0.99997179,
       0.99997179, 0.99997179, 0.99991817, 0.99991817, 0.99991817,
       0.99991817, 0.99977683, 0.99977683, 0.99977683, 0.99977683,
       0.99942915, 0.99942915, 0.99942915, 0.99942915, 0.99863505,
       0.99863505, 0.99863505, 0.99863505, 0.99695933, 0.99695933,
       0.99695933, 0.99695933, 0.9937087 , 0.9937087 , 0.9937087 ,
       0.9937087 , 0.98793721, 0.98793721, 0.98793721, 0.98793721,
       0.9785829 , 0.9785829 , 0.9785829 , 0.9785829 , 0.96474136,
       0.96474136, 0.96474136, 0.96474136, 0.94597339, 0.94597339,
       0.94597339, 0.94597339, 0.92247486, 0.92247486, 0.92247486,
       0.92247486, 0.89499831, 0.89499831, 0.89499831, 0.89499831,
       0.86456812, 0.86456812, 0.86456812, 0.86456812, 0.83212124,
       0.83212124, 0.83212124, 0.83212124, 0.79863526, 0.79863526,
       0.79863526, 0.79863526, 0.76573988, 0.76573988, 0.76573988,
       0.76573988, 0.73420588, 0.73420588, 0.73420588, 0.73420588,
       0.703996  , 0.703996  , 0.703996  , 0.703996  , 0.67517948,
       0.67517948, 0.67517948, 0.67517948, 0.64829444, 0.64829444,
       0.64829444, 0.64829444, 0.62286674, 0.62286674, 0.62286674,
       0.62286674, 0.60281401, 0.60281401, 0.60281401, 0.60281401,
       0.58304717, 0.58304717, 0.58304717, 0.58304717, 0.5737585 ,
       0.5737585 , 0.5737585 , 0.5737585 , 0.56680383, 0.56680383,
       0.56680383, 0.56680383, 0.56406554, 0.56406554, 0.56406554,
       0.56406554, 0.56445674, 0.56445674, 0.56445674, 0.56445674,
       0.56689479, 0.56689479, 0.56689479, 0.56689479, 0.56721005,
       0.56721005, 0.56721005, 0.56721005, 0.56705228, 0.56705228,
       0.56705228, 0.56705228, 0.56711649, 0.56711649, 0.56711649,
       0.56711649, 0.5672706 , 0.5672706 , 0.5672706 , 0.5672706 ,
       0.56752476, 0.56752476, 0.56752476, 0.56752476, 0.5687617 ,
       0.5687617 , 0.5687617 , 0.5687617 , 0.5756626 , 0.5756626 ,
       0.5756626 , 0.5756626 , 0.60517122, 0.60517122, 0.60517122,
       0.60517122, 0.70225684, 0.70225684, 0.70225684, 0.70225684,
       0.95916964, 0.95916964, 0.95916964, 0.95916964, 1.52074205,
       1.52074205, 1.52074205, 1.52074205, 2.53366254, 2.53366254,
       2.53366254, 2.53366254, 3.51709808, 3.51709808, 3.51709808,
       3.51709808, 3.71733154, 3.71733154, 3.71733154, 3.71733154,
       2.81684948, 2.81684948, 2.81684948, 2.81684948, 1.27928976,
       1.27928976, 1.27928976, 1.27928976, 1.01706333, 1.01706333,
       1.01706333, 1.01706333, 1.00022545, 1.00022545, 1.00022545,
       1.00022545, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([9.27169916e-05, 9.27169916e-05, 9.27169916e-05, 9.27169916e-05,
       3.45942523e-04, 3.45942523e-04, 3.45942523e-04, 3.45942523e-04,
       1.05548283e-03, 1.05548283e-03, 1.05548283e-03, 1.05548283e-03,
       3.06180591e-03, 3.06180591e-03, 3.06180591e-03, 3.06180591e-03,
       8.35099130e-03, 8.35099130e-03, 8.35099130e-03, 8.35099130e-03,
       2.13637129e-02, 2.13637129e-02, 2.13637129e-02, 2.13637129e-02,
       5.10980585e-02, 5.10980585e-02, 5.10980585e-02, 5.10980585e-02,
       1.13904438e-01, 1.13904438e-01, 1.13904438e-01, 1.13904438e-01,
       2.35977350e-01, 2.35977350e-01, 2.35977350e-01, 2.35977350e-01,
       4.53511059e-01, 4.53511059e-01, 4.53511059e-01, 4.53511059e-01,
       8.08290869e-01, 8.08290869e-01, 8.08290869e-01, 8.08290869e-01,
       1.33838461e+00, 1.33838461e+00, 1.33838461e+00, 1.33838461e+00,
       2.06718875e+00, 2.06718875e+00, 2.06718875e+00, 2.06718875e+00,
       2.99650453e+00, 2.99650453e+00, 2.99650453e+00, 2.99650453e+00,
       4.10776410e+00, 4.10776410e+00, 4.10776410e+00, 4.10776410e+00,
       5.37093252e+00, 5.37093252e+00, 5.37093252e+00, 5.37093252e+00,
       6.75756651e+00, 6.75756651e+00, 6.75756651e+00, 6.75756651e+00,
       8.23003026e+00, 8.23003026e+00, 8.23003026e+00, 8.23003026e+00,
       9.71810036e+00, 9.71810036e+00, 9.71810036e+00, 9.71810036e+00,
       1.12035998e+01, 1.12035998e+01, 1.12035998e+01, 1.12035998e+01,
       1.26747396e+01, 1.26747396e+01, 1.26747396e+01, 1.26747396e+01,
       1.41241052e+01, 1.41241052e+01, 1.41241052e+01, 1.41241052e+01,
       1.55324405e+01, 1.55324405e+01, 1.55324405e+01, 1.55324405e+01,
       1.68648788e+01, 1.68648788e+01, 1.68648788e+01, 1.68648788e+01,
       1.80587444e+01, 1.80587444e+01, 1.80587444e+01, 1.80587444e+01,
       1.90363513e+01, 1.90363513e+01, 1.90363513e+01, 1.90363513e+01,
       1.97169663e+01, 1.97169663e+01, 1.97169663e+01, 1.97169663e+01,
       2.00776225e+01, 2.00776225e+01, 2.00776225e+01, 2.00776225e+01,
       2.01888597e+01, 2.01888597e+01, 2.01888597e+01, 2.01888597e+01,
       2.01801125e+01, 2.01801125e+01, 2.01801125e+01, 2.01801125e+01,
       2.00812778e+01, 2.00812778e+01, 2.00812778e+01, 2.00812778e+01,
       2.00318261e+01, 2.00318261e+01, 2.00318261e+01, 2.00318261e+01,
       2.00146648e+01, 2.00146648e+01, 2.00146648e+01, 2.00146648e+01,
       2.00061042e+01, 2.00061042e+01, 2.00061042e+01, 2.00061042e+01,
       1.99986959e+01, 1.99986959e+01, 1.99986959e+01, 1.99986959e+01,
       1.99863432e+01, 1.99863432e+01, 1.99863432e+01, 1.99863432e+01,
       1.99656179e+01, 1.99656179e+01, 1.99656179e+01, 1.99656179e+01,
       1.99415041e+01, 1.99415041e+01, 1.99415041e+01, 1.99415041e+01,
       1.99167435e+01, 1.99167435e+01, 1.99167435e+01, 1.99167435e+01,
       1.98912290e+01, 1.98912290e+01, 1.98912290e+01, 1.98912290e+01,
       1.98732047e+01, 1.98732047e+01, 1.98732047e+01, 1.98732047e+01,
       1.98526648e+01, 1.98526648e+01, 1.98526648e+01, 1.98526648e+01,
       1.97731261e+01, 1.97731261e+01, 1.97731261e+01, 1.97731261e+01,
       1.94093352e+01, 1.94093352e+01, 1.94093352e+01, 1.94093352e+01,
       1.77776801e+01, 1.77776801e+01, 1.77776801e+01, 1.77776801e+01,
       1.19820754e+01, 1.19820754e+01, 1.19820754e+01, 1.19820754e+01,
       2.16019726e+00, 2.16019726e+00, 2.16019726e+00, 2.16019726e+00,
       3.53014742e-02, 3.53014742e-02, 3.53014742e-02, 3.53014742e-02,
       3.82045712e-05, 3.82045712e-05, 3.82045712e-05, 3.82045712e-05,
       6.27267874e-09, 6.27267874e-09, 6.27267874e-09, 6.27267874e-09,
       9.86981788e-13, 9.86981788e-13, 9.86981788e-13, 9.86981788e-13,
       1.50628633e-16, 1.50628633e-16, 1.50628633e-16, 1.50628633e-16,
       1.80645712e-20, 1.80645712e-20, 1.80645712e-20, 1.80645712e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99996531e+02, 9.99996531e+02, 9.99996531e+02, 9.99996531e+02,
       9.99987056e+02, 9.99987056e+02, 9.99987056e+02, 9.99987056e+02,
       9.99960508e+02, 9.99960508e+02, 9.99960508e+02, 9.99960508e+02,
       9.99885444e+02, 9.99885444e+02, 9.99885444e+02, 9.99885444e+02,
       9.99687580e+02, 9.99687580e+02, 9.99687580e+02, 9.99687580e+02,
       9.99200940e+02, 9.99200940e+02, 9.99200940e+02, 9.99200940e+02,
       9.98089767e+02, 9.98089767e+02, 9.98089767e+02, 9.98089767e+02,
       9.95746369e+02, 9.95746369e+02, 9.95746369e+02, 9.95746369e+02,
       9.91205796e+02, 9.91205796e+02, 9.91205796e+02, 9.91205796e+02,
       9.83160321e+02, 9.83160321e+02, 9.83160321e+02, 9.83160321e+02,
       9.70163089e+02, 9.70163089e+02, 9.70163089e+02, 9.70163089e+02,
       9.51025501e+02, 9.51025501e+02, 9.51025501e+02, 9.51025501e+02,
       9.25253700e+02, 9.25253700e+02, 9.25253700e+02, 9.25253700e+02,
       8.93272718e+02, 8.93272718e+02, 8.93272718e+02, 8.93272718e+02,
       8.56285555e+02, 8.56285555e+02, 8.56285555e+02, 8.56285555e+02,
       8.15844374e+02, 8.15844374e+02, 8.15844374e+02, 8.15844374e+02,
       7.73342136e+02, 7.73342136e+02, 7.73342136e+02, 7.73342136e+02,
       7.30129913e+02, 7.30129913e+02, 7.30129913e+02, 7.30129913e+02,
       6.88352942e+02, 6.88352942e+02, 6.88352942e+02, 6.88352942e+02,
       6.49007221e+02, 6.49007221e+02, 6.49007221e+02, 6.49007221e+02,
       6.11939746e+02, 6.11939746e+02, 6.11939746e+02, 6.11939746e+02,
       5.77224777e+02, 5.77224777e+02, 5.77224777e+02, 5.77224777e+02,
       5.45110602e+02, 5.45110602e+02, 5.45110602e+02, 5.45110602e+02,
       5.16188887e+02, 5.16188887e+02, 5.16188887e+02, 5.16188887e+02,
       4.91335604e+02, 4.91335604e+02, 4.91335604e+02, 4.91335604e+02,
       4.71814716e+02, 4.71814716e+02, 4.71814716e+02, 4.71814716e+02,
       4.58644756e+02, 4.58644756e+02, 4.58644756e+02, 4.58644756e+02,
       4.51748779e+02, 4.51748779e+02, 4.51748779e+02, 4.51748779e+02,
       4.49620320e+02, 4.49620320e+02, 4.49620320e+02, 4.49620320e+02,
       4.49793173e+02, 4.49793173e+02, 4.49793173e+02, 4.49793173e+02,
       4.51686270e+02, 4.51686270e+02, 4.51686270e+02, 4.51686270e+02,
       4.52653139e+02, 4.52653139e+02, 4.52653139e+02, 4.52653139e+02,
       4.52934776e+02, 4.52934776e+02, 4.52934776e+02, 4.52934776e+02,
       4.53069098e+02, 4.53069098e+02, 4.53069098e+02, 4.53069098e+02,
       4.53226281e+02, 4.53226281e+02, 4.53226281e+02, 4.53226281e+02,
       4.53501144e+02, 4.53501144e+02, 4.53501144e+02, 4.53501144e+02,
       4.53932351e+02, 4.53932351e+02, 4.53932351e+02, 4.53932351e+02,
       4.54403842e+02, 4.54403842e+02, 4.54403842e+02, 4.54403842e+02,
       4.54828470e+02, 4.54828470e+02, 4.54828470e+02, 4.54828470e+02,
       4.55256571e+02, 4.55256571e+02, 4.55256571e+02, 4.55256571e+02,
       4.55891222e+02, 4.55891222e+02, 4.55891222e+02, 4.55891222e+02,
       4.56695880e+02, 4.56695880e+02, 4.56695880e+02, 4.56695880e+02,
       4.55303353e+02, 4.55303353e+02, 4.55303353e+02, 4.55303353e+02,
       4.39632542e+02, 4.39632542e+02, 4.39632542e+02, 4.39632542e+02,
       3.62585344e+02, 3.62585344e+02, 3.62585344e+02, 3.62585344e+02,
       1.55123980e+02, 1.55123980e+02, 1.55123980e+02, 1.55123980e+02,
       1.06526829e+01, 1.06526829e+01, 1.06526829e+01, 1.06526829e+01,
       4.72581949e-02, 4.72581949e-02, 4.72581949e-02, 4.72581949e-02,
       1.00047111e-02, 1.00047111e-02, 1.00047111e-02, 1.00047111e-02,
       1.00000007e-02, 1.00000007e-02, 1.00000007e-02, 1.00000007e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999334, 0.99999334, 0.99999334, 0.99999334, 0.99997652,
       0.99997652, 0.99997652, 0.99997652, 0.99993274, 0.99993274,
       0.99993274, 0.99993274, 0.9998167 , 0.9998167 , 0.9998167 ,
       0.9998167 , 0.9995308 , 0.9995308 , 0.9995308 , 0.9995308 ,
       0.9988747 , 0.9988747 , 0.9988747 , 0.9988747 , 0.99747962,
       0.99747962, 0.99747962, 0.99747962, 0.99474458, 0.99474458,
       0.99474458, 0.99474458, 0.98982255, 0.98982255, 0.98982255,
       0.98982255, 0.98171633, 0.98171633, 0.98171633, 0.98171633,
       0.96950664, 0.96950664, 0.96950664, 0.96950664, 0.95264288,
       0.95264288, 0.95264288, 0.95264288, 0.93114717, 0.93114717,
       0.93114717, 0.93114717, 0.90560556, 0.90560556, 0.90560556,
       0.90560556, 0.8769476 , 0.8769476 , 0.8769476 , 0.8769476 ,
       0.8461295 , 0.8461295 , 0.8461295 , 0.8461295 , 0.81392176,
       0.81392176, 0.81392176, 0.81392176, 0.78165473, 0.78165473,
       0.78165473, 0.78165473, 0.75050172, 0.75050172, 0.75050172,
       0.75050172, 0.72057659, 0.72057659, 0.72057659, 0.72057659,
       0.69190945, 0.69190945, 0.69190945, 0.69190945, 0.66457344,
       0.66457344, 0.66457344, 0.66457344, 0.63931001, 0.63931001,
       0.63931001, 0.63931001, 0.61533571, 0.61533571, 0.61533571,
       0.61533571, 0.59728585, 0.59728585, 0.59728585, 0.59728585,
       0.57944602, 0.57944602, 0.57944602, 0.57944602, 0.57141549,
       0.57141549, 0.57141549, 0.57141549, 0.56646332, 0.56646332,
       0.56646332, 0.56646332, 0.56429638, 0.56429638, 0.56429638,
       0.56429638, 0.56474556, 0.56474556, 0.56474556, 0.56474556,
       0.56696375, 0.56696375, 0.56696375, 0.56696375, 0.56741743,
       0.56741743, 0.56741743, 0.56741743, 0.5672394 , 0.5672394 ,
       0.5672394 , 0.5672394 , 0.56719598, 0.56719598, 0.56719598,
       0.56719598, 0.56730067, 0.56730067, 0.56730067, 0.56730067,
       0.56757971, 0.56757971, 0.56757971, 0.56757971, 0.5684633 ,
       0.5684633 , 0.5684633 , 0.5684633 , 0.57284684, 0.57284684,
       0.57284684, 0.57284684, 0.59231821, 0.59231821, 0.59231821,
       0.59231821, 0.6596568 , 0.6596568 , 0.6596568 , 0.6596568 ,
       0.84699717, 0.84699717, 0.84699717, 0.84699717, 1.27785893,
       1.27785893, 1.27785893, 1.27785893, 2.10551451, 2.10551451,
       2.10551451, 2.10551451, 3.24550952, 3.24550952, 3.24550952,
       3.24550952, 3.77306813, 3.77306813, 3.77306813, 3.77306813,
       3.47838258, 3.47838258, 3.47838258, 3.47838258, 1.83959453,
       1.83959453, 1.83959453, 1.83959453, 1.0682824 , 1.0682824 ,
       1.0682824 , 1.0682824 , 1.00250794, 1.00250794, 1.00250794,
       1.00250794, 1.00000304, 1.00000304, 1.00000304, 1.00000304,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.49214926e-04, 2.49214926e-04, 2.49214926e-04, 2.49214926e-04,
       8.78604657e-04, 8.78604657e-04, 8.78604657e-04, 8.78604657e-04,
       2.51662102e-03, 2.51662102e-03, 2.51662102e-03, 2.51662102e-03,
       6.85892762e-03, 6.85892762e-03, 6.85892762e-03, 6.85892762e-03,
       1.75588961e-02, 1.75588961e-02, 1.75588961e-02, 1.75588961e-02,
       4.21228901e-02, 4.21228901e-02, 4.21228901e-02, 4.21228901e-02,
       9.43950927e-02, 9.43950927e-02, 9.43950927e-02, 9.43950927e-02,
       1.97042335e-01, 1.97042335e-01, 1.97042335e-01, 1.97042335e-01,
       3.82340085e-01, 3.82340085e-01, 3.82340085e-01, 3.82340085e-01,
       6.89147758e-01, 6.89147758e-01, 6.89147758e-01, 6.89147758e-01,
       1.15519736e+00, 1.15519736e+00, 1.15519736e+00, 1.15519736e+00,
       1.80686376e+00, 1.80686376e+00, 1.80686376e+00, 1.80686376e+00,
       2.65131500e+00, 2.65131500e+00, 2.65131500e+00, 2.65131500e+00,
       3.67550739e+00, 3.67550739e+00, 3.67550739e+00, 3.67550739e+00,
       4.85271275e+00, 4.85271275e+00, 4.85271275e+00, 4.85271275e+00,
       6.15350432e+00, 6.15350432e+00, 6.15350432e+00, 6.15350432e+00,
       7.55357680e+00, 7.55357680e+00, 7.55357680e+00, 7.55357680e+00,
       8.98941000e+00, 8.98941000e+00, 8.98941000e+00, 8.98941000e+00,
       1.04303820e+01, 1.04303820e+01, 1.04303820e+01, 1.04303820e+01,
       1.18617350e+01, 1.18617350e+01, 1.18617350e+01, 1.18617350e+01,
       1.32783330e+01, 1.32783330e+01, 1.32783330e+01, 1.32783330e+01,
       1.46700989e+01, 1.46700989e+01, 1.46700989e+01, 1.46700989e+01,
       1.60141500e+01, 1.60141500e+01, 1.60141500e+01, 1.60141500e+01,
       1.72717577e+01, 1.72717577e+01, 1.72717577e+01, 1.72717577e+01,
       1.83764937e+01, 1.83764937e+01, 1.83764937e+01, 1.83764937e+01,
       1.92517132e+01, 1.92517132e+01, 1.92517132e+01, 1.92517132e+01,
       1.98312363e+01, 1.98312363e+01, 1.98312363e+01, 1.98312363e+01,
       2.01141790e+01, 2.01141790e+01, 2.01141790e+01, 2.01141790e+01,
       2.01871661e+01, 2.01871661e+01, 2.01871661e+01, 2.01871661e+01,
       2.01587304e+01, 2.01587304e+01, 2.01587304e+01, 2.01587304e+01,
       2.00649247e+01, 2.00649247e+01, 2.00649247e+01, 2.00649247e+01,
       2.00267116e+01, 2.00267116e+01, 2.00267116e+01, 2.00267116e+01,
       2.00134137e+01, 2.00134137e+01, 2.00134137e+01, 2.00134137e+01,
       2.00048366e+01, 2.00048366e+01, 2.00048366e+01, 2.00048366e+01,
       1.99955344e+01, 1.99955344e+01, 1.99955344e+01, 1.99955344e+01,
       1.99804744e+01, 1.99804744e+01, 1.99804744e+01, 1.99804744e+01,
       1.99582608e+01, 1.99582608e+01, 1.99582608e+01, 1.99582608e+01,
       1.99352201e+01, 1.99352201e+01, 1.99352201e+01, 1.99352201e+01,
       1.99120283e+01, 1.99120283e+01, 1.99120283e+01, 1.99120283e+01,
       1.98878907e+01, 1.98878907e+01, 1.98878907e+01, 1.98878907e+01,
       1.98653154e+01, 1.98653154e+01, 1.98653154e+01, 1.98653154e+01,
       1.98516094e+01, 1.98516094e+01, 1.98516094e+01, 1.98516094e+01,
       1.98100006e+01, 1.98100006e+01, 1.98100006e+01, 1.98100006e+01,
       1.96316470e+01, 1.96316470e+01, 1.96316470e+01, 1.96316470e+01,
       1.88041286e+01, 1.88041286e+01, 1.88041286e+01, 1.88041286e+01,
       1.54317797e+01, 1.54317797e+01, 1.54317797e+01, 1.54317797e+01,
       6.46630891e+00, 6.46630891e+00, 6.46630891e+00, 6.46630891e+00,
       3.26471041e-01, 3.26471041e-01, 3.26471041e-01, 3.26471041e-01,
       1.39752195e-03, 1.39752195e-03, 1.39752195e-03, 1.39752195e-03,
       3.61410681e-07, 3.61410681e-07, 3.61410681e-07, 3.61410681e-07,
       5.50928989e-11, 5.50928989e-11, 5.50928989e-11, 5.50928989e-11,
       8.73446544e-15, 8.73446544e-15, 8.73446544e-15, 8.73446544e-15,
       1.37689406e-18, 1.37689406e-18, 1.37689406e-18, 1.37689406e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99990675e+02, 9.99990675e+02, 9.99990675e+02, 9.99990675e+02,
       9.99967126e+02, 9.99967126e+02, 9.99967126e+02, 9.99967126e+02,
       9.99905841e+02, 9.99905841e+02, 9.99905841e+02, 9.99905841e+02,
       9.99743393e+02, 9.99743393e+02, 9.99743393e+02, 9.99743393e+02,
       9.99343207e+02, 9.99343207e+02, 9.99343207e+02, 9.99343207e+02,
       9.98425049e+02, 9.98425049e+02, 9.98425049e+02, 9.98425049e+02,
       9.96473752e+02, 9.96473752e+02, 9.96473752e+02, 9.96473752e+02,
       9.92651960e+02, 9.92651960e+02, 9.92651960e+02, 9.92651960e+02,
       9.85786061e+02, 9.85786061e+02, 9.85786061e+02, 9.85786061e+02,
       9.74510522e+02, 9.74510522e+02, 9.74510522e+02, 9.74510522e+02,
       9.57600381e+02, 9.57600381e+02, 9.57600381e+02, 9.57600381e+02,
       9.34386650e+02, 9.34386650e+02, 9.34386650e+02, 9.34386650e+02,
       9.05034576e+02, 9.05034576e+02, 9.05034576e+02, 9.05034576e+02,
       8.70506126e+02, 8.70506126e+02, 8.70506126e+02, 8.70506126e+02,
       8.32221605e+02, 8.32221605e+02, 8.32221605e+02, 8.32221605e+02,
       7.91601867e+02, 7.91601867e+02, 7.91601867e+02, 7.91601867e+02,
       7.49771930e+02, 7.49771930e+02, 7.49771930e+02, 7.49771930e+02,
       7.08448789e+02, 7.08448789e+02, 7.08448789e+02, 7.08448789e+02,
       6.69249654e+02, 6.69249654e+02, 6.69249654e+02, 6.69249654e+02,
       6.32199855e+02, 6.32199855e+02, 6.32199855e+02, 6.32199855e+02,
       5.97271856e+02, 5.97271856e+02, 5.97271856e+02, 5.97271856e+02,
       5.64593117e+02, 5.64593117e+02, 5.64593117e+02, 5.64593117e+02,
       5.34481735e+02, 5.34481735e+02, 5.34481735e+02, 5.34481735e+02,
       5.07617179e+02, 5.07617179e+02, 5.07617179e+02, 5.07617179e+02,
       4.84923891e+02, 4.84923891e+02, 4.84923891e+02, 4.84923891e+02,
       4.67588272e+02, 4.67588272e+02, 4.67588272e+02, 4.67588272e+02,
       4.56440880e+02, 4.56440880e+02, 4.56440880e+02, 4.56440880e+02,
       4.51073579e+02, 4.51073579e+02, 4.51073579e+02, 4.51073579e+02,
       4.49670476e+02, 4.49670476e+02, 4.49670476e+02, 4.49670476e+02,
       4.50197414e+02, 4.50197414e+02, 4.50197414e+02, 4.50197414e+02,
       4.51964568e+02, 4.51964568e+02, 4.51964568e+02, 4.51964568e+02,
       4.52734660e+02, 4.52734660e+02, 4.52734660e+02, 4.52734660e+02,
       4.52988476e+02, 4.52988476e+02, 4.52988476e+02, 4.52988476e+02,
       4.53122020e+02, 4.53122020e+02, 4.53122020e+02, 4.53122020e+02,
       4.53277355e+02, 4.53277355e+02, 4.53277355e+02, 4.53277355e+02,
       4.53570948e+02, 4.53570948e+02, 4.53570948e+02, 4.53570948e+02,
       4.54027799e+02, 4.54027799e+02, 4.54027799e+02, 4.54027799e+02,
       4.54514822e+02, 4.54514822e+02, 4.54514822e+02, 4.54514822e+02,
       4.54967633e+02, 4.54967633e+02, 4.54967633e+02, 4.54967633e+02,
       4.55383145e+02, 4.55383145e+02, 4.55383145e+02, 4.55383145e+02,
       4.55885058e+02, 4.55885058e+02, 4.55885058e+02, 4.55885058e+02,
       4.56660485e+02, 4.56660485e+02, 4.56660485e+02, 4.56660485e+02,
       4.56707224e+02, 4.56707224e+02, 4.56707224e+02, 4.56707224e+02,
       4.50332485e+02, 4.50332485e+02, 4.50332485e+02, 4.50332485e+02,
       4.10745038e+02, 4.10745038e+02, 4.10745038e+02, 4.10745038e+02,
       2.64438188e+02, 2.64438188e+02, 2.64438188e+02, 2.64438188e+02,
       5.04920492e+01, 5.04920492e+01, 5.04920492e+01, 5.04920492e+01,
       8.21200453e-01, 8.21200453e-01, 8.21200453e-01, 8.21200453e-01,
       1.04110586e-02, 1.04110586e-02, 1.04110586e-02, 1.04110586e-02,
       1.00000427e-02, 1.00000427e-02, 1.00000427e-02, 1.00000427e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998324, 0.99998324, 0.99998324, 0.99998324, 0.99994409,
       0.99994409, 0.99994409, 0.99994409, 0.99984947, 0.99984947,
       0.99984947, 0.99984947, 0.99961409, 0.99961409, 0.99961409,
       0.99961409, 0.99907186, 0.99907186, 0.99907186, 0.99907186,
       0.99791058, 0.99791058, 0.99791058, 0.99791058, 0.99561098,
       0.99561098, 0.99561098, 0.99561098, 0.99141916, 0.99141916,
       0.99141916, 0.99141916, 0.98440893, 0.98440893, 0.98440893,
       0.98440893, 0.97366694, 0.97366694, 0.97366694, 0.97366694,
       0.95855926, 0.95855926, 0.95855926, 0.95855926, 0.93895505,
       0.93895505, 0.93895505, 0.93895505, 0.91527616, 0.91527616,
       0.91527616, 0.91527616, 0.88833959, 0.88833959, 0.88833959,
       0.88833959, 0.85907786, 0.85907786, 0.85907786, 0.85907786,
       0.82825782, 0.82825782, 0.82825782, 0.82825782, 0.79682367,
       0.79682367, 0.79682367, 0.79682367, 0.7660904 , 0.7660904 ,
       0.7660904 , 0.7660904 , 0.73649342, 0.73649342, 0.73649342,
       0.73649342, 0.7080382 , 0.7080382 , 0.7080382 , 0.7080382 ,
       0.68079751, 0.68079751, 0.68079751, 0.68079751, 0.65483468,
       0.65483468, 0.65483468, 0.65483468, 0.63114051, 0.63114051,
       0.63114051, 0.63114051, 0.60854849, 0.60854849, 0.60854849,
       0.60854849, 0.59238504, 0.59238504, 0.59238504, 0.59238504,
       0.57651033, 0.57651033, 0.57651033, 0.57651033, 0.56951125,
       0.56951125, 0.56951125, 0.56951125, 0.5662106 , 0.5662106 ,
       0.5662106 , 0.5662106 , 0.56457441, 0.56457441, 0.56457441,
       0.56457441, 0.56518521, 0.56518521, 0.56518521, 0.56518521,
       0.5669638 , 0.5669638 , 0.5669638 , 0.5669638 , 0.56753478,
       0.56753478, 0.56753478, 0.56753478, 0.56741507, 0.56741507,
       0.56741507, 0.56741507, 0.56730543, 0.56730543, 0.56730543,
       0.56730543, 0.56737641, 0.56737641, 0.56737641, 0.56737641,
       0.56765193, 0.56765193, 0.56765193, 0.56765193, 0.56833782,
       0.56833782, 0.56833782, 0.56833782, 0.57115323, 0.57115323,
       0.57115323, 0.57115323, 0.58390602, 0.58390602, 0.58390602,
       0.58390602, 0.63015878, 0.63015878, 0.63015878, 0.63015878,
       0.76511277, 0.76511277, 0.76511277, 0.76511277, 1.09098504,
       1.09098504, 1.09098504, 1.09098504, 1.75190783, 1.75190783,
       1.75190783, 1.75190783, 2.84524356, 2.84524356, 2.84524356,
       2.84524356, 3.69818791, 3.69818791, 3.69818791, 3.69818791,
       3.79299239, 3.79299239, 3.79299239, 3.79299239, 2.70622572,
       2.70622572, 2.70622572, 2.70622572, 1.23074962, 1.23074962,
       1.23074962, 1.23074962, 1.01357481, 1.01357481, 1.01357481,
       1.01357481, 1.00013936, 1.00013936, 1.00013936, 1.00013936,
       1.00000003, 1.00000003, 1.00000003, 1.00000003, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([6.27176089e-04, 6.27176089e-04, 6.27176089e-04, 6.27176089e-04,
       2.09197510e-03, 2.09197510e-03, 2.09197510e-03, 2.09197510e-03,
       5.63246589e-03, 5.63246589e-03, 5.63246589e-03, 5.63246589e-03,
       1.44413910e-02, 1.44413910e-02, 1.44413910e-02, 1.44413910e-02,
       3.47398084e-02, 3.47398084e-02, 3.47398084e-02, 3.47398084e-02,
       7.82416435e-02, 7.82416435e-02, 7.82416435e-02, 7.82416435e-02,
       1.64502448e-01, 1.64502448e-01, 1.64502448e-01, 1.64502448e-01,
       3.22153674e-01, 3.22153674e-01, 3.22153674e-01, 3.22153674e-01,
       5.87013093e-01, 5.87013093e-01, 5.87013093e-01, 5.87013093e-01,
       9.95867432e-01, 9.95867432e-01, 9.95867432e-01, 9.95867432e-01,
       1.57717960e+00, 1.57717960e+00, 1.57717960e+00, 1.57717960e+00,
       2.34277075e+00, 2.34277075e+00, 2.34277075e+00, 2.34277075e+00,
       3.28498965e+00, 3.28498965e+00, 3.28498965e+00, 3.28498965e+00,
       4.38103253e+00, 4.38103253e+00, 4.38103253e+00, 4.38103253e+00,
       5.60227400e+00, 5.60227400e+00, 5.60227400e+00, 5.60227400e+00,
       6.92499000e+00, 6.92499000e+00, 6.92499000e+00, 6.92499000e+00,
       8.30862980e+00, 8.30862980e+00, 8.30862980e+00, 8.30862980e+00,
       9.70342488e+00, 9.70342488e+00, 9.70342488e+00, 9.70342488e+00,
       1.10947376e+01, 1.10947376e+01, 1.10947376e+01, 1.10947376e+01,
       1.24759421e+01, 1.24759421e+01, 1.24759421e+01, 1.24759421e+01,
       1.38409096e+01, 1.38409096e+01, 1.38409096e+01, 1.38409096e+01,
       1.51771753e+01, 1.51771753e+01, 1.51771753e+01, 1.51771753e+01,
       1.64580614e+01, 1.64580614e+01, 1.64580614e+01, 1.64580614e+01,
       1.76410460e+01, 1.76410460e+01, 1.76410460e+01, 1.76410460e+01,
       1.86577470e+01, 1.86577470e+01, 1.86577470e+01, 1.86577470e+01,
       1.94346504e+01, 1.94346504e+01, 1.94346504e+01, 1.94346504e+01,
       1.99206783e+01, 1.99206783e+01, 1.99206783e+01, 1.99206783e+01,
       2.01373825e+01, 2.01373825e+01, 2.01373825e+01, 2.01373825e+01,
       2.01827557e+01, 2.01827557e+01, 2.01827557e+01, 2.01827557e+01,
       2.01362430e+01, 2.01362430e+01, 2.01362430e+01, 2.01362430e+01,
       2.00527163e+01, 2.00527163e+01, 2.00527163e+01, 2.00527163e+01,
       2.00220889e+01, 2.00220889e+01, 2.00220889e+01, 2.00220889e+01,
       2.00113415e+01, 2.00113415e+01, 2.00113415e+01, 2.00113415e+01,
       2.00032017e+01, 2.00032017e+01, 2.00032017e+01, 2.00032017e+01,
       1.99928716e+01, 1.99928716e+01, 1.99928716e+01, 1.99928716e+01,
       1.99752195e+01, 1.99752195e+01, 1.99752195e+01, 1.99752195e+01,
       1.99510048e+01, 1.99510048e+01, 1.99510048e+01, 1.99510048e+01,
       1.99278369e+01, 1.99278369e+01, 1.99278369e+01, 1.99278369e+01,
       1.99060511e+01, 1.99060511e+01, 1.99060511e+01, 1.99060511e+01,
       1.98834898e+01, 1.98834898e+01, 1.98834898e+01, 1.98834898e+01,
       1.98602307e+01, 1.98602307e+01, 1.98602307e+01, 1.98602307e+01,
       1.98460230e+01, 1.98460230e+01, 1.98460230e+01, 1.98460230e+01,
       1.98231060e+01, 1.98231060e+01, 1.98231060e+01, 1.98231060e+01,
       1.97344284e+01, 1.97344284e+01, 1.97344284e+01, 1.97344284e+01,
       1.93234157e+01, 1.93234157e+01, 1.93234157e+01, 1.93234157e+01,
       1.75098690e+01, 1.75098690e+01, 1.75098690e+01, 1.75098690e+01,
       1.13120733e+01, 1.13120733e+01, 1.13120733e+01, 1.13120733e+01,
       1.72019020e+00, 1.72019020e+00, 1.72019020e+00, 1.72019020e+00,
       2.39627567e-02, 2.39627567e-02, 2.39627567e-02, 2.39627567e-02,
       2.10492230e-05, 2.10492230e-05, 2.10492230e-05, 2.10492230e-05,
       3.37580296e-09, 3.37580296e-09, 3.37580296e-09, 3.37580296e-09,
       5.24794943e-13, 5.24794943e-13, 5.24794943e-13, 5.24794943e-13,
       8.00869120e-17, 8.00869120e-17, 8.00869120e-17, 8.00869120e-17,
       1.80543624e-20, 1.80543624e-20, 1.80543624e-20, 1.80543624e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99976534e+02, 9.99976534e+02, 9.99976534e+02, 9.99976534e+02,
       9.99921728e+02, 9.99921728e+02, 9.99921728e+02, 9.99921728e+02,
       9.99789273e+02, 9.99789273e+02, 9.99789273e+02, 9.99789273e+02,
       9.99459788e+02, 9.99459788e+02, 9.99459788e+02, 9.99459788e+02,
       9.98700933e+02, 9.98700933e+02, 9.98700933e+02, 9.98700933e+02,
       9.97076380e+02, 9.97076380e+02, 9.97076380e+02, 9.97076380e+02,
       9.93862050e+02, 9.93862050e+02, 9.93862050e+02, 9.93862050e+02,
       9.88011449e+02, 9.88011449e+02, 9.88011449e+02, 9.88011449e+02,
       9.78251147e+02, 9.78251147e+02, 9.78251147e+02, 9.78251147e+02,
       9.63351703e+02, 9.63351703e+02, 9.63351703e+02, 9.63351703e+02,
       9.42510461e+02, 9.42510461e+02, 9.42510461e+02, 9.42510461e+02,
       9.15662316e+02, 9.15662316e+02, 9.15662316e+02, 9.15662316e+02,
       8.83529955e+02, 8.83529955e+02, 8.83529955e+02, 8.83529955e+02,
       8.47375347e+02, 8.47375347e+02, 8.47375347e+02, 8.47375347e+02,
       8.08589521e+02, 8.08589521e+02, 8.08589521e+02, 8.08589521e+02,
       7.68302840e+02, 7.68302840e+02, 7.68302840e+02, 7.68302840e+02,
       7.27777466e+02, 7.27777466e+02, 7.27777466e+02, 7.27777466e+02,
       6.88776134e+02, 6.88776134e+02, 6.88776134e+02, 6.88776134e+02,
       6.51822493e+02, 6.51822493e+02, 6.51822493e+02, 6.51822493e+02,
       6.16850793e+02, 6.16850793e+02, 6.16850793e+02, 6.16850793e+02,
       5.83873049e+02, 5.83873049e+02, 5.83873049e+02, 5.83873049e+02,
       5.53077621e+02, 5.53077621e+02, 5.53077621e+02, 5.53077621e+02,
       5.24847307e+02, 5.24847307e+02, 5.24847307e+02, 5.24847307e+02,
       4.99936052e+02, 4.99936052e+02, 4.99936052e+02, 4.99936052e+02,
       4.79307983e+02, 4.79307983e+02, 4.79307983e+02, 4.79307983e+02,
       4.64037017e+02, 4.64037017e+02, 4.64037017e+02, 4.64037017e+02,
       4.54717049e+02, 4.54717049e+02, 4.54717049e+02, 4.54717049e+02,
       4.50630729e+02, 4.50630729e+02, 4.50630729e+02, 4.50630729e+02,
       4.49766128e+02, 4.49766128e+02, 4.49766128e+02, 4.49766128e+02,
       4.50635760e+02, 4.50635760e+02, 4.50635760e+02, 4.50635760e+02,
       4.52192339e+02, 4.52192339e+02, 4.52192339e+02, 4.52192339e+02,
       4.52791836e+02, 4.52791836e+02, 4.52791836e+02, 4.52791836e+02,
       4.53026052e+02, 4.53026052e+02, 4.53026052e+02, 4.53026052e+02,
       4.53174609e+02, 4.53174609e+02, 4.53174609e+02, 4.53174609e+02,
       4.53352116e+02, 4.53352116e+02, 4.53352116e+02, 4.53352116e+02,
       4.53668407e+02, 4.53668407e+02, 4.53668407e+02, 4.53668407e+02,
       4.54129426e+02, 4.54129426e+02, 4.54129426e+02, 4.54129426e+02,
       4.54606825e+02, 4.54606825e+02, 4.54606825e+02, 4.54606825e+02,
       4.55071542e+02, 4.55071542e+02, 4.55071542e+02, 4.55071542e+02,
       4.55519242e+02, 4.55519242e+02, 4.55519242e+02, 4.55519242e+02,
       4.55942322e+02, 4.55942322e+02, 4.55942322e+02, 4.55942322e+02,
       4.56555572e+02, 4.56555572e+02, 4.56555572e+02, 4.56555572e+02,
       4.57153744e+02, 4.57153744e+02, 4.57153744e+02, 4.57153744e+02,
       4.55012364e+02, 4.55012364e+02, 4.55012364e+02, 4.55012364e+02,
       4.36291749e+02, 4.36291749e+02, 4.36291749e+02, 4.36291749e+02,
       3.50253071e+02, 3.50253071e+02, 3.50253071e+02, 3.50253071e+02,
       1.37331684e+02, 1.37331684e+02, 1.37331684e+02, 1.37331684e+02,
       7.81961782e+00, 7.81961782e+00, 7.81961782e+00, 7.81961782e+00,
       3.15710255e-02, 3.15710255e-02, 3.15710255e-02, 3.15710255e-02,
       1.00025204e-02, 1.00025204e-02, 1.00025204e-02, 1.00025204e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99996035, 0.99996035, 0.99996035, 0.99996035, 0.99987476,
       0.99987476, 0.99987476, 0.99987476, 0.99968276, 0.99968276,
       0.99968276, 0.99968276, 0.99923411, 0.99923411, 0.99923411,
       0.99923411, 0.99826762, 0.99826762, 0.99826762, 0.99826762,
       0.99633541, 0.99633541, 0.99633541, 0.99633541, 0.99277013,
       0.99277013, 0.99277013, 0.99277013, 0.98671964, 0.98671964,
       0.98671964, 0.98671964, 0.977293  , 0.977293  , 0.977293  ,
       0.977293  , 0.96379833, 0.96379833, 0.96379833, 0.96379833,
       0.94597383, 0.94597383, 0.94597383, 0.94597383, 0.9240842 ,
       0.9240842 , 0.9240842 , 0.9240842 , 0.89882269, 0.89882269,
       0.89882269, 0.89882269, 0.87107325, 0.87107325, 0.87107325,
       0.87107325, 0.84163799, 0.84163799, 0.84163799, 0.84163799,
       0.81121158, 0.81121158, 0.81121158, 0.81121158, 0.7809964 ,
       0.7809964 , 0.7809964 , 0.7809964 , 0.75175867, 0.75175867,
       0.75175867, 0.75175867, 0.72358262, 0.72358262, 0.72358262,
       0.72358262, 0.69646996, 0.69646996, 0.69646996, 0.69646996,
       0.67055951, 0.67055951, 0.67055951, 0.67055951, 0.64587767,
       0.64587767, 0.64587767, 0.64587767, 0.62371507, 0.62371507,
       0.62371507, 0.62371507, 0.60245905, 0.60245905, 0.60245905,
       0.60245905, 0.58804181, 0.58804181, 0.58804181, 0.58804181,
       0.57415787, 0.57415787, 0.57415787, 0.57415787, 0.56801698,
       0.56801698, 0.56801698, 0.56801698, 0.56600286, 0.56600286,
       0.56600286, 0.56600286, 0.56486913, 0.56486913, 0.56486913,
       0.56486913, 0.56568532, 0.56568532, 0.56568532, 0.56568532,
       0.56697037, 0.56697037, 0.56697037, 0.56697037, 0.567595  ,
       0.567595  , 0.567595  , 0.567595  , 0.56755691, 0.56755691,
       0.56755691, 0.56755691, 0.56742984, 0.56742984, 0.56742984,
       0.56742984, 0.56748199, 0.56748199, 0.56748199, 0.56748199,
       0.56775104, 0.56775104, 0.56775104, 0.56775104, 0.56831532,
       0.56831532, 0.56831532, 0.56831532, 0.57016477, 0.57016477,
       0.57016477, 0.57016477, 0.57848067, 0.57848067, 0.57848067,
       0.57848067, 0.60993862, 0.60993862, 0.60993862, 0.60993862,
       0.70608446, 0.70608446, 0.70608446, 0.70608446, 0.94942581,
       0.94942581, 0.94942581, 0.94942581, 1.46794713, 1.46794713,
       1.46794713, 1.46794713, 2.399093  , 2.399093  , 2.399093  ,
       2.399093  , 3.49161502, 3.49161502, 3.49161502, 3.49161502,
       3.88909392, 3.88909392, 3.88909392, 3.88909392, 3.45166183,
       3.45166183, 3.45166183, 3.45166183, 1.72693552, 1.72693552,
       1.72693552, 1.72693552, 1.05571813, 1.05571813, 1.05571813,
       1.05571813, 1.00183475, 1.00183475, 1.00183475, 1.00183475,
       1.00000159, 1.00000159, 1.00000159, 1.00000159, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.48343235e-03, 1.48343235e-03, 1.48343235e-03, 1.48343235e-03,
       4.68625754e-03, 4.68625754e-03, 4.68625754e-03, 4.68625754e-03,
       1.18714812e-02, 1.18714812e-02, 1.18714812e-02, 1.18714812e-02,
       2.86653854e-02, 2.86653854e-02, 2.86653854e-02, 2.86653854e-02,
       6.48624680e-02, 6.48624680e-02, 6.48624680e-02, 6.48624680e-02,
       1.37311383e-01, 1.37311383e-01, 1.37311383e-01, 1.37311383e-01,
       2.71286993e-01, 2.71286993e-01, 2.71286993e-01, 2.71286993e-01,
       4.99544165e-01, 4.99544165e-01, 4.99544165e-01, 4.99544165e-01,
       8.57450278e-01, 8.57450278e-01, 8.57450278e-01, 8.57450278e-01,
       1.37475596e+00, 1.37475596e+00, 1.37475596e+00, 1.37475596e+00,
       2.06719154e+00, 2.06719154e+00, 2.06719154e+00, 2.06719154e+00,
       2.93221227e+00, 2.93221227e+00, 2.93221227e+00, 2.93221227e+00,
       3.95128996e+00, 3.95128996e+00, 3.95128996e+00, 3.95128996e+00,
       5.09756199e+00, 5.09756199e+00, 5.09756199e+00, 5.09756199e+00,
       6.34579257e+00, 6.34579257e+00, 6.34579257e+00, 6.34579257e+00,
       7.67146094e+00, 7.67146094e+00, 7.67146094e+00, 7.67146094e+00,
       9.01982632e+00, 9.01982632e+00, 9.01982632e+00, 9.01982632e+00,
       1.03717565e+01, 1.03717565e+01, 1.03717565e+01, 1.03717565e+01,
       1.17165199e+01, 1.17165199e+01, 1.17165199e+01, 1.17165199e+01,
       1.30503359e+01, 1.30503359e+01, 1.30503359e+01, 1.30503359e+01,
       1.43659229e+01, 1.43659229e+01, 1.43659229e+01, 1.43659229e+01,
       1.56482456e+01, 1.56482456e+01, 1.56482456e+01, 1.56482456e+01,
       1.68667491e+01, 1.68667491e+01, 1.68667491e+01, 1.68667491e+01,
       1.79752388e+01, 1.79752388e+01, 1.79752388e+01, 1.79752388e+01,
       1.89049267e+01, 1.89049267e+01, 1.89049267e+01, 1.89049267e+01,
       1.95880409e+01, 1.95880409e+01, 1.95880409e+01, 1.95880409e+01,
       1.99895045e+01, 1.99895045e+01, 1.99895045e+01, 1.99895045e+01,
       2.01509131e+01, 2.01509131e+01, 2.01509131e+01, 2.01509131e+01,
       2.01756935e+01, 2.01756935e+01, 2.01756935e+01, 2.01756935e+01,
       2.01136639e+01, 2.01136639e+01, 2.01136639e+01, 2.01136639e+01,
       2.00436849e+01, 2.00436849e+01, 2.00436849e+01, 2.00436849e+01,
       2.00184695e+01, 2.00184695e+01, 2.00184695e+01, 2.00184695e+01,
       2.00087073e+01, 2.00087073e+01, 2.00087073e+01, 2.00087073e+01,
       2.00007501e+01, 2.00007501e+01, 2.00007501e+01, 2.00007501e+01,
       1.99896154e+01, 1.99896154e+01, 1.99896154e+01, 1.99896154e+01,
       1.99701656e+01, 1.99701656e+01, 1.99701656e+01, 1.99701656e+01,
       1.99446240e+01, 1.99446240e+01, 1.99446240e+01, 1.99446240e+01,
       1.99208683e+01, 1.99208683e+01, 1.99208683e+01, 1.99208683e+01,
       1.98989526e+01, 1.98989526e+01, 1.98989526e+01, 1.98989526e+01,
       1.98779645e+01, 1.98779645e+01, 1.98779645e+01, 1.98779645e+01,
       1.98568827e+01, 1.98568827e+01, 1.98568827e+01, 1.98568827e+01,
       1.98394425e+01, 1.98394425e+01, 1.98394425e+01, 1.98394425e+01,
       1.98253039e+01, 1.98253039e+01, 1.98253039e+01, 1.98253039e+01,
       1.97798791e+01, 1.97798791e+01, 1.97798791e+01, 1.97798791e+01,
       1.95773152e+01, 1.95773152e+01, 1.95773152e+01, 1.95773152e+01,
       1.86462995e+01, 1.86462995e+01, 1.86462995e+01, 1.86462995e+01,
       1.49605093e+01, 1.49605093e+01, 1.49605093e+01, 1.49605093e+01,
       5.66403104e+00, 5.66403104e+00, 5.66403104e+00, 5.66403104e+00,
       2.39671368e-01, 2.39671368e-01, 2.39671368e-01, 2.39671368e-01,
       8.33807575e-04, 8.33807575e-04, 8.33807575e-04, 8.33807575e-04,
       1.88954541e-07, 1.88954541e-07, 1.88954541e-07, 1.88954541e-07,
       2.94104736e-11, 2.94104736e-11, 2.94104736e-11, 2.94104736e-11,
       4.70101359e-15, 4.70101359e-15, 4.70101359e-15, 4.70101359e-15,
       7.41275834e-19, 7.41275834e-19, 7.41275834e-19, 7.41275834e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99944497e+02, 9.99944497e+02, 9.99944497e+02, 9.99944497e+02,
       9.99824671e+02, 9.99824671e+02, 9.99824671e+02, 9.99824671e+02,
       9.99555901e+02, 9.99555901e+02, 9.99555901e+02, 9.99555901e+02,
       9.98927969e+02, 9.98927969e+02, 9.98927969e+02, 9.98927969e+02,
       9.97575760e+02, 9.97575760e+02, 9.97575760e+02, 9.97575760e+02,
       9.94874250e+02, 9.94874250e+02, 9.94874250e+02, 9.94874250e+02,
       9.89895755e+02, 9.89895755e+02, 9.89895755e+02, 9.89895755e+02,
       9.81464823e+02, 9.81464823e+02, 9.81464823e+02, 9.81464823e+02,
       9.68372978e+02, 9.68372978e+02, 9.68372978e+02, 9.68372978e+02,
       9.49721618e+02, 9.49721618e+02, 9.49721618e+02, 9.49721618e+02,
       9.25246848e+02, 9.25246848e+02, 9.25246848e+02, 9.25246848e+02,
       8.95440766e+02, 8.95440766e+02, 8.95440766e+02, 8.95440766e+02,
       8.61389674e+02, 8.61389674e+02, 8.61389674e+02, 8.61389674e+02,
       8.24419634e+02, 8.24419634e+02, 8.24419634e+02, 8.24419634e+02,
       7.85711897e+02, 7.85711897e+02, 7.85711897e+02, 7.85711897e+02,
       7.46248517e+02, 7.46248517e+02, 7.46248517e+02, 7.46248517e+02,
       7.07596025e+02, 7.07596025e+02, 7.07596025e+02, 7.07596025e+02,
       6.70801074e+02, 6.70801074e+02, 6.70801074e+02, 6.70801074e+02,
       6.35877624e+02, 6.35877624e+02, 6.35877624e+02, 6.35877624e+02,
       6.02787079e+02, 6.02787079e+02, 6.02787079e+02, 6.02787079e+02,
       5.71599803e+02, 5.71599803e+02, 5.71599803e+02, 5.71599803e+02,
       5.42561321e+02, 5.42561321e+02, 5.42561321e+02, 5.42561321e+02,
       5.16114337e+02, 5.16114337e+02, 5.16114337e+02, 5.16114337e+02,
       4.93068680e+02, 4.93068680e+02, 4.93068680e+02, 4.93068680e+02,
       4.74411379e+02, 4.74411379e+02, 4.74411379e+02, 4.74411379e+02,
       4.61084454e+02, 4.61084454e+02, 4.61084454e+02, 4.61084454e+02,
       4.53401496e+02, 4.53401496e+02, 4.53401496e+02, 4.53401496e+02,
       4.50361189e+02, 4.50361189e+02, 4.50361189e+02, 4.50361189e+02,
       4.49900506e+02, 4.49900506e+02, 4.49900506e+02, 4.49900506e+02,
       4.51070680e+02, 4.51070680e+02, 4.51070680e+02, 4.51070680e+02,
       4.52380461e+02, 4.52380461e+02, 4.52380461e+02, 4.52380461e+02,
       4.52845112e+02, 4.52845112e+02, 4.52845112e+02, 4.52845112e+02,
       4.53055158e+02, 4.53055158e+02, 4.53055158e+02, 4.53055158e+02,
       4.53218903e+02, 4.53218903e+02, 4.53218903e+02, 4.53218903e+02,
       4.53431056e+02, 4.53431056e+02, 4.53431056e+02, 4.53431056e+02,
       4.53786396e+02, 4.53786396e+02, 4.53786396e+02, 4.53786396e+02,
       4.54248310e+02, 4.54248310e+02, 4.54248310e+02, 4.54248310e+02,
       4.54702361e+02, 4.54702361e+02, 4.54702361e+02, 4.54702361e+02,
       4.55162009e+02, 4.55162009e+02, 4.55162009e+02, 4.55162009e+02,
       4.55624655e+02, 4.55624655e+02, 4.55624655e+02, 4.55624655e+02,
       4.56025036e+02, 4.56025036e+02, 4.56025036e+02, 4.56025036e+02,
       4.56514938e+02, 4.56514938e+02, 4.56514938e+02, 4.56514938e+02,
       4.57215307e+02, 4.57215307e+02, 4.57215307e+02, 4.57215307e+02,
       4.56862932e+02, 4.56862932e+02, 4.56862932e+02, 4.56862932e+02,
       4.48795942e+02, 4.48795942e+02, 4.48795942e+02, 4.48795942e+02,
       4.03414163e+02, 4.03414163e+02, 4.03414163e+02, 4.03414163e+02,
       2.46087022e+02, 2.46087022e+02, 2.46087022e+02, 2.46087022e+02,
       4.07741358e+01, 4.07741358e+01, 4.07741358e+01, 4.07741358e+01,
       5.40974800e-01, 5.40974800e-01, 5.40974800e-01, 5.40974800e-01,
       1.02032471e-02, 1.02032471e-02, 1.02032471e-02, 1.02032471e-02,
       1.00000224e-02, 1.00000224e-02, 1.00000224e-02, 1.00000224e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99991158, 0.99991158, 0.99991158, 0.99991158, 0.99973526,
       0.99973526, 0.99973526, 0.99973526, 0.99936862, 0.99936862,
       0.99936862, 0.99936862, 0.9985633 , 0.9985633 , 0.9985633 ,
       0.9985633 , 0.99694101, 0.99694101, 0.99694101, 0.99694101,
       0.99391234, 0.99391234, 0.99391234, 0.99391234, 0.9887    ,
       0.9887    , 0.9887    , 0.9887    , 0.98044802, 0.98044802,
       0.98044802, 0.98044802, 0.968429  , 0.968429  , 0.968429  ,
       0.968429  , 0.95227242, 0.95227242, 0.95227242, 0.95227242,
       0.93209641, 0.93209641, 0.93209641, 0.93209641, 0.90846461,
       0.90846461, 0.90846461, 0.90846461, 0.88219172, 0.88219172,
       0.88219172, 0.88219172, 0.8540954 , 0.8540954 , 0.8540954 ,
       0.8540954 , 0.82480124, 0.82480124, 0.82480124, 0.82480124,
       0.7952339 , 0.7952339 , 0.7952339 , 0.7952339 , 0.7663955 ,
       0.7663955 , 0.7663955 , 0.7663955 , 0.73852584, 0.73852584,
       0.73852584, 0.73852584, 0.71164018, 0.71164018, 0.71164018,
       0.71164018, 0.6857697 , 0.6857697 , 0.6857697 , 0.6857697 ,
       0.66111252, 0.66111252, 0.66111252, 0.66111252, 0.63763059,
       0.63763059, 0.63763059, 0.63763059, 0.6169687 , 0.6169687 ,
       0.6169687 , 0.6169687 , 0.59702916, 0.59702916, 0.59702916,
       0.59702916, 0.58420196, 0.58420196, 0.58420196, 0.58420196,
       0.57229985, 0.57229985, 0.57229985, 0.57229985, 0.56689435,
       0.56689435, 0.56689435, 0.56689435, 0.56582645, 0.56582645,
       0.56582645, 0.56582645, 0.56516822, 0.56516822, 0.56516822,
       0.56516822, 0.56616647, 0.56616647, 0.56616647, 0.56616647,
       0.56702185, 0.56702185, 0.56702185, 0.56702185, 0.56762457,
       0.56762457, 0.56762457, 0.56762457, 0.56765827, 0.56765827,
       0.56765827, 0.56765827, 0.56756729, 0.56756729, 0.56756729,
       0.56756729, 0.56761051, 0.56761051, 0.56761051, 0.56761051,
       0.56786939, 0.56786939, 0.56786939, 0.56786939, 0.56835266,
       0.56835266, 0.56835266, 0.56835266, 0.5696172 , 0.5696172 ,
       0.5696172 , 0.5696172 , 0.57503406, 0.57503406, 0.57503406,
       0.57503406, 0.59623637, 0.59623637, 0.59623637, 0.59623637,
       0.66403011, 0.66403011, 0.66403011, 0.66403011, 0.84354865,
       0.84354865, 0.84354865, 0.84354865, 1.24434905, 1.24434905,
       1.24434905, 1.24434905, 2.00424343, 2.00424343, 2.00424343,
       2.00424343, 3.13960403, 3.13960403, 3.13960403, 3.13960403,
       3.85414213, 3.85414213, 3.85414213, 3.85414213, 3.84786708,
       3.84786708, 3.84786708, 3.84786708, 2.5771983 , 2.5771983 ,
       2.5771983 , 2.5771983 , 1.18896322, 1.18896322, 1.18896322,
       1.18896322, 1.01065342, 1.01065342, 1.01065342, 1.01065342,
       1.00008186, 1.00008186, 1.00008186, 1.00008186, 1.00000002,
       1.00000002, 1.00000002, 1.00000002, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.30857813e-03, 3.30857813e-03, 3.30857813e-03, 3.30857813e-03,
       9.90650995e-03, 9.90650995e-03, 9.90650995e-03, 9.90650995e-03,
       2.36295980e-02, 2.36295980e-02, 2.36295980e-02, 2.36295980e-02,
       5.37860149e-02, 5.37860149e-02, 5.37860149e-02, 5.37860149e-02,
       1.14592327e-01, 1.14592327e-01, 1.14592327e-01, 1.14592327e-01,
       2.28324216e-01, 2.28324216e-01, 2.28324216e-01, 2.28324216e-01,
       4.24711771e-01, 4.24711771e-01, 4.24711771e-01, 4.24711771e-01,
       7.37353653e-01, 7.37353653e-01, 7.37353653e-01, 7.37353653e-01,
       1.19658658e+00, 1.19658658e+00, 1.19658658e+00, 1.19658658e+00,
       1.82130732e+00, 1.82130732e+00, 1.82130732e+00, 1.82130732e+00,
       2.61367668e+00, 2.61367668e+00, 2.61367668e+00, 2.61367668e+00,
       3.55960001e+00, 3.55960001e+00, 3.55960001e+00, 3.55960001e+00,
       4.63473086e+00, 4.63473086e+00, 4.63473086e+00, 4.63473086e+00,
       5.81317888e+00, 5.81317888e+00, 5.81317888e+00, 5.81317888e+00,
       7.07525107e+00, 7.07525107e+00, 7.07525107e+00, 7.07525107e+00,
       8.37802334e+00, 8.37802334e+00, 8.37802334e+00, 8.37802334e+00,
       9.69020641e+00, 9.69020641e+00, 9.69020641e+00, 9.69020641e+00,
       1.09986461e+01, 1.09986461e+01, 1.09986461e+01, 1.09986461e+01,
       1.22993392e+01, 1.22993392e+01, 1.22993392e+01, 1.22993392e+01,
       1.35884048e+01, 1.35884048e+01, 1.35884048e+01, 1.35884048e+01,
       1.48563893e+01, 1.48563893e+01, 1.48563893e+01, 1.48563893e+01,
       1.60857753e+01, 1.60857753e+01, 1.60857753e+01, 1.60857753e+01,
       1.72423634e+01, 1.72423634e+01, 1.72423634e+01, 1.72423634e+01,
       1.82765856e+01, 1.82765856e+01, 1.82765856e+01, 1.82765856e+01,
       1.91204857e+01, 1.91204857e+01, 1.91204857e+01, 1.91204857e+01,
       1.97147730e+01, 1.97147730e+01, 1.97147730e+01, 1.97147730e+01,
       2.00413906e+01, 2.00413906e+01, 2.00413906e+01, 2.00413906e+01,
       2.01574495e+01, 2.01574495e+01, 2.01574495e+01, 2.01574495e+01,
       2.01659188e+01, 2.01659188e+01, 2.01659188e+01, 2.01659188e+01,
       2.00925092e+01, 2.00925092e+01, 2.00925092e+01, 2.00925092e+01,
       2.00365890e+01, 2.00365890e+01, 2.00365890e+01, 2.00365890e+01,
       2.00158066e+01, 2.00158066e+01, 2.00158066e+01, 2.00158066e+01,
       2.00060951e+01, 2.00060951e+01, 2.00060951e+01, 2.00060951e+01,
       1.99977273e+01, 1.99977273e+01, 1.99977273e+01, 1.99977273e+01,
       1.99853901e+01, 1.99853901e+01, 1.99853901e+01, 1.99853901e+01,
       1.99645055e+01, 1.99645055e+01, 1.99645055e+01, 1.99645055e+01,
       1.99389693e+01, 1.99389693e+01, 1.99389693e+01, 1.99389693e+01,
       1.99147513e+01, 1.99147513e+01, 1.99147513e+01, 1.99147513e+01,
       1.98919906e+01, 1.98919906e+01, 1.98919906e+01, 1.98919906e+01,
       1.98717727e+01, 1.98717727e+01, 1.98717727e+01, 1.98717727e+01,
       1.98525425e+01, 1.98525425e+01, 1.98525425e+01, 1.98525425e+01,
       1.98340626e+01, 1.98340626e+01, 1.98340626e+01, 1.98340626e+01,
       1.98228656e+01, 1.98228656e+01, 1.98228656e+01, 1.98228656e+01,
       1.97973138e+01, 1.97973138e+01, 1.97973138e+01, 1.97973138e+01,
       1.96970829e+01, 1.96970829e+01, 1.96970829e+01, 1.96970829e+01,
       1.92311319e+01, 1.92311319e+01, 1.92311319e+01, 1.92311319e+01,
       1.72194921e+01, 1.72194921e+01, 1.72194921e+01, 1.72194921e+01,
       1.05940203e+01, 1.05940203e+01, 1.05940203e+01, 1.05940203e+01,
       1.33734950e+00, 1.33734950e+00, 1.33734950e+00, 1.33734950e+00,
       1.58314232e-02, 1.58314232e-02, 1.58314232e-02, 1.58314232e-02,
       1.13008501e-05, 1.13008501e-05, 1.13008501e-05, 1.13008501e-05,
       1.78142403e-09, 1.78142403e-09, 1.78142403e-09, 1.78142403e-09,
       2.75475972e-13, 2.75475972e-13, 2.75475972e-13, 2.75475972e-13,
       4.22869040e-17, 4.22869040e-17, 4.22869040e-17, 4.22869040e-17,
       4.15971299e-21, 4.15971299e-21, 4.15971299e-21, 4.15971299e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99876214e+02, 9.99876214e+02, 9.99876214e+02, 9.99876214e+02,
       9.99629396e+02, 9.99629396e+02, 9.99629396e+02, 9.99629396e+02,
       9.99116221e+02, 9.99116221e+02, 9.99116221e+02, 9.99116221e+02,
       9.97989363e+02, 9.97989363e+02, 9.97989363e+02, 9.97989363e+02,
       9.95720692e+02, 9.95720692e+02, 9.95720692e+02, 9.95720692e+02,
       9.91489781e+02, 9.91489781e+02, 9.91489781e+02, 9.91489781e+02,
       9.84221698e+02, 9.84221698e+02, 9.84221698e+02, 9.84221698e+02,
       9.72748451e+02, 9.72748451e+02, 9.72748451e+02, 9.72748451e+02,
       9.56108956e+02, 9.56108956e+02, 9.56108956e+02, 9.56108956e+02,
       9.33872727e+02, 9.33872727e+02, 9.33872727e+02, 9.33872727e+02,
       9.06315492e+02, 9.06315492e+02, 9.06315492e+02, 9.06315492e+02,
       8.74337896e+02, 8.74337896e+02, 8.74337896e+02, 8.74337896e+02,
       8.39171349e+02, 8.39171349e+02, 8.39171349e+02, 8.39171349e+02,
       8.02021280e+02, 8.02021280e+02, 8.02021280e+02, 8.02021280e+02,
       7.63802020e+02, 7.63802020e+02, 7.63802020e+02, 7.63802020e+02,
       7.25718152e+02, 7.25718152e+02, 7.25718152e+02, 7.25718152e+02,
       6.89144129e+02, 6.89144129e+02, 6.89144129e+02, 6.89144129e+02,
       6.54324851e+02, 6.54324851e+02, 6.54324851e+02, 6.54324851e+02,
       6.21229262e+02, 6.21229262e+02, 6.21229262e+02, 6.21229262e+02,
       5.89863923e+02, 5.89863923e+02, 5.89863923e+02, 5.89863923e+02,
       5.60333915e+02, 5.60333915e+02, 5.60333915e+02, 5.60333915e+02,
       5.32945780e+02, 5.32945780e+02, 5.32945780e+02, 5.32945780e+02,
       5.08201682e+02, 5.08201682e+02, 5.08201682e+02, 5.08201682e+02,
       4.86948766e+02, 4.86948766e+02, 4.86948766e+02, 4.86948766e+02,
       4.70169922e+02, 4.70169922e+02, 4.70169922e+02, 4.70169922e+02,
       4.58655322e+02, 4.58655322e+02, 4.58655322e+02, 4.58655322e+02,
       4.52421155e+02, 4.52421155e+02, 4.52421155e+02, 4.52421155e+02,
       4.50227207e+02, 4.50227207e+02, 4.50227207e+02, 4.50227207e+02,
       4.50078663e+02, 4.50078663e+02, 4.50078663e+02, 4.50078663e+02,
       4.51471203e+02, 4.51471203e+02, 4.51471203e+02, 4.51471203e+02,
       4.52529169e+02, 4.52529169e+02, 4.52529169e+02, 4.52529169e+02,
       4.52901471e+02, 4.52901471e+02, 4.52901471e+02, 4.52901471e+02,
       4.53088208e+02, 4.53088208e+02, 4.53088208e+02, 4.53088208e+02,
       4.53261283e+02, 4.53261283e+02, 4.53261283e+02, 4.53261283e+02,
       4.53508024e+02, 4.53508024e+02, 4.53508024e+02, 4.53508024e+02,
       4.53907221e+02, 4.53907221e+02, 4.53907221e+02, 4.53907221e+02,
       4.54378816e+02, 4.54378816e+02, 4.54378816e+02, 4.54378816e+02,
       4.54816020e+02, 4.54816020e+02, 4.54816020e+02, 4.54816020e+02,
       4.55254101e+02, 4.55254101e+02, 4.55254101e+02, 4.55254101e+02,
       4.55702968e+02, 4.55702968e+02, 4.55702968e+02, 4.55702968e+02,
       4.56112277e+02, 4.56112277e+02, 4.56112277e+02, 4.56112277e+02,
       4.56533652e+02, 4.56533652e+02, 4.56533652e+02, 4.56533652e+02,
       4.57147821e+02, 4.57147821e+02, 4.57147821e+02, 4.57147821e+02,
       4.57487722e+02, 4.57487722e+02, 4.57487722e+02, 4.57487722e+02,
       4.54489765e+02, 4.54489765e+02, 4.54489765e+02, 4.54489765e+02,
       4.32367414e+02, 4.32367414e+02, 4.32367414e+02, 4.32367414e+02,
       3.36891352e+02, 3.36891352e+02, 3.36891352e+02, 3.36891352e+02,
       1.20082128e+02, 1.20082128e+02, 1.20082128e+02, 1.20082128e+02,
       5.54711825e+00, 5.54711825e+00, 5.54711825e+00, 5.54711825e+00,
       2.19907181e-02, 2.19907181e-02, 2.19907181e-02, 2.19907181e-02,
       1.00013363e-02, 1.00013363e-02, 1.00013363e-02, 1.00013363e-02,
       1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99981351, 0.99981351, 0.99981351, 0.99981351, 0.99947054,
       0.99947054, 0.99947054, 0.99947054, 0.9988105 , 0.9988105 ,
       0.9988105 , 0.9988105 , 0.99744661, 0.99744661, 0.99744661,
       0.99744661, 0.99487737, 0.99487737, 0.99487737, 0.99487737,
       0.99039499, 0.99039499, 0.99039499, 0.99039499, 0.98318849,
       0.98318849, 0.98318849, 0.98318849, 0.97251404, 0.97251404,
       0.97251404, 0.97251404, 0.95791416, 0.95791416, 0.95791416,
       0.95791416, 0.9393737 , 0.9393737 , 0.9393737 , 0.9393737 ,
       0.91732519, 0.91732519, 0.91732519, 0.91732519, 0.8924994 ,
       0.8924994 , 0.8924994 , 0.8924994 , 0.86569902, 0.86569902,
       0.86569902, 0.86569902, 0.83758007, 0.83758007, 0.83758007,
       0.83758007, 0.80880936, 0.80880936, 0.80880936, 0.80880936,
       0.78041711, 0.78041711, 0.78041711, 0.78041711, 0.75287396,
       0.75287396, 0.75287396, 0.75287396, 0.7262632 , 0.7262632 ,
       0.7262632 , 0.7262632 , 0.70056925, 0.70056925, 0.70056925,
       0.70056925, 0.67584993, 0.67584993, 0.67584993, 0.67584993,
       0.65238615, 0.65238615, 0.65238615, 0.65238615, 0.63003424,
       0.63003424, 0.63003424, 0.63003424, 0.61084192, 0.61084192,
       0.61084192, 0.61084192, 0.59222361, 0.59222361, 0.59222361,
       0.59222361, 0.58082307, 0.58082307, 0.58082307, 0.58082307,
       0.57084769, 0.57084769, 0.57084769, 0.57084769, 0.56609991,
       0.56609991, 0.56609991, 0.56609991, 0.56568386, 0.56568386,
       0.56568386, 0.56568386, 0.56548787, 0.56548787, 0.56548787,
       0.56548787, 0.56657134, 0.56657134, 0.56657134, 0.56657134,
       0.56710969, 0.56710969, 0.56710969, 0.56710969, 0.56763591,
       0.56763591, 0.56763591, 0.56763591, 0.56774535, 0.56774535,
       0.56774535, 0.56774535, 0.56770037, 0.56770037, 0.56770037,
       0.56770037, 0.56775753, 0.56775753, 0.56775753, 0.56775753,
       0.568006  , 0.568006  , 0.568006  , 0.568006  , 0.56842167,
       0.56842167, 0.56842167, 0.56842167, 0.56933391, 0.56933391,
       0.56933391, 0.56933391, 0.57288369, 0.57288369, 0.57288369,
       0.57288369, 0.58706794, 0.58706794, 0.58706794, 0.58706794,
       0.6343945 , 0.6343945 , 0.6343945 , 0.6343945 , 0.76532497,
       0.76532497, 0.76532497, 0.76532497, 1.0710979 , 1.0710979 ,
       1.0710979 , 1.0710979 , 1.67993717, 1.67993717, 1.67993717,
       1.67993717, 2.70591502, 2.70591502, 2.70591502, 2.70591502,
       3.70007988, 3.70007988, 3.70007988, 3.70007988, 3.98442962,
       3.98442962, 3.98442962, 3.98442962, 3.39924656, 3.39924656,
       3.39924656, 3.39924656, 1.61726694, 1.61726694, 1.61726694,
       1.61726694, 1.04481323, 1.04481323, 1.04481323, 1.04481323,
       1.00129504, 1.00129504, 1.00129504, 1.00129504, 1.00000081,
       1.00000081, 1.00000081, 1.00000081, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([6.97829163e-03, 6.97829163e-03, 6.97829163e-03, 6.97829163e-03,
       1.98144360e-02, 1.98144360e-02, 1.98144360e-02, 1.98144360e-02,
       4.45271720e-02, 4.45271720e-02, 4.45271720e-02, 4.45271720e-02,
       9.56332947e-02, 9.56332947e-02, 9.56332947e-02, 9.56332947e-02,
       1.92056185e-01, 1.92056185e-01, 1.92056185e-01, 1.92056185e-01,
       3.60758718e-01, 3.60758718e-01, 3.60758718e-01, 3.60758718e-01,
       6.33292020e-01, 6.33292020e-01, 6.33292020e-01, 6.33292020e-01,
       1.03998760e+00, 1.03998760e+00, 1.03998760e+00, 1.03998760e+00,
       1.60218999e+00, 1.60218999e+00, 1.60218999e+00, 1.60218999e+00,
       2.32628483e+00, 2.32628483e+00, 2.32628483e+00, 2.32628483e+00,
       3.20261012e+00, 3.20261012e+00, 3.20261012e+00, 3.20261012e+00,
       4.20983812e+00, 4.20983812e+00, 4.20983812e+00, 4.20983812e+00,
       5.32266284e+00, 5.32266284e+00, 5.32266284e+00, 5.32266284e+00,
       6.52018139e+00, 6.52018139e+00, 6.52018139e+00, 6.52018139e+00,
       7.77578750e+00, 7.77578750e+00, 7.77578750e+00, 7.77578750e+00,
       9.04696669e+00, 9.04696669e+00, 9.04696669e+00, 9.04696669e+00,
       1.03198134e+01, 1.03198134e+01, 1.03198134e+01, 1.03198134e+01,
       1.15876099e+01, 1.15876099e+01, 1.15876099e+01, 1.15876099e+01,
       1.28468639e+01, 1.28468639e+01, 1.28468639e+01, 1.28468639e+01,
       1.40930929e+01, 1.40930929e+01, 1.40930929e+01, 1.40930929e+01,
       1.53148719e+01, 1.53148719e+01, 1.53148719e+01, 1.53148719e+01,
       1.64919282e+01, 1.64919282e+01, 1.64919282e+01, 1.64919282e+01,
       1.75867321e+01, 1.75867321e+01, 1.75867321e+01, 1.75867321e+01,
       1.85470262e+01, 1.85470262e+01, 1.85470262e+01, 1.85470262e+01,
       1.93069541e+01, 1.93069541e+01, 1.93069541e+01, 1.93069541e+01,
       1.98179609e+01, 1.98179609e+01, 1.98179609e+01, 1.98179609e+01,
       2.00793284e+01, 2.00793284e+01, 2.00793284e+01, 2.00793284e+01,
       2.01586176e+01, 2.01586176e+01, 2.01586176e+01, 2.01586176e+01,
       2.01524831e+01, 2.01524831e+01, 2.01524831e+01, 2.01524831e+01,
       2.00752058e+01, 2.00752058e+01, 2.00752058e+01, 2.00752058e+01,
       2.00307498e+01, 2.00307498e+01, 2.00307498e+01, 2.00307498e+01,
       2.00136099e+01, 2.00136099e+01, 2.00136099e+01, 2.00136099e+01,
       2.00037603e+01, 2.00037603e+01, 2.00037603e+01, 2.00037603e+01,
       1.99945192e+01, 1.99945192e+01, 1.99945192e+01, 1.99945192e+01,
       1.99804496e+01, 1.99804496e+01, 1.99804496e+01, 1.99804496e+01,
       1.99580977e+01, 1.99580977e+01, 1.99580977e+01, 1.99580977e+01,
       1.99332124e+01, 1.99332124e+01, 1.99332124e+01, 1.99332124e+01,
       1.99091877e+01, 1.99091877e+01, 1.99091877e+01, 1.99091877e+01,
       1.98860108e+01, 1.98860108e+01, 1.98860108e+01, 1.98860108e+01,
       1.98654280e+01, 1.98654280e+01, 1.98654280e+01, 1.98654280e+01,
       1.98471370e+01, 1.98471370e+01, 1.98471370e+01, 1.98471370e+01,
       1.98298574e+01, 1.98298574e+01, 1.98298574e+01, 1.98298574e+01,
       1.98171370e+01, 1.98171370e+01, 1.98171370e+01, 1.98171370e+01,
       1.98030159e+01, 1.98030159e+01, 1.98030159e+01, 1.98030159e+01,
       1.97516465e+01, 1.97516465e+01, 1.97516465e+01, 1.97516465e+01,
       1.95204012e+01, 1.95204012e+01, 1.95204012e+01, 1.95204012e+01,
       1.84745602e+01, 1.84745602e+01, 1.84745602e+01, 1.84745602e+01,
       1.44416174e+01, 1.44416174e+01, 1.44416174e+01, 1.44416174e+01,
       4.87006574e+00, 4.87006574e+00, 4.87006574e+00, 4.87006574e+00,
       1.70878215e-01, 1.70878215e-01, 1.70878215e-01, 1.70878215e-01,
       4.74222438e-04, 4.74222438e-04, 4.74222438e-04, 4.74222438e-04,
       9.62797091e-08, 9.62797091e-08, 9.62797091e-08, 9.62797091e-08,
       1.54134491e-11, 1.54134491e-11, 1.54134491e-11, 1.54134491e-11,
       2.48678570e-15, 2.48678570e-15, 2.48678570e-15, 2.48678570e-15,
       3.95125006e-19, 3.95125006e-19, 3.95125006e-19, 3.95125006e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99738937e+02, 9.99738937e+02, 9.99738937e+02, 9.99738937e+02,
       9.99258865e+02, 9.99258865e+02, 9.99258865e+02, 9.99258865e+02,
       9.98335213e+02, 9.98335213e+02, 9.98335213e+02, 9.98335213e+02,
       9.96427546e+02, 9.96427546e+02, 9.96427546e+02, 9.96427546e+02,
       9.92837210e+02, 9.92837210e+02, 9.92837210e+02, 9.92837210e+02,
       9.86583249e+02, 9.86583249e+02, 9.86583249e+02, 9.86583249e+02,
       9.76553906e+02, 9.76553906e+02, 9.76553906e+02, 9.76553906e+02,
       9.61754277e+02, 9.61754277e+02, 9.61754277e+02, 9.61754277e+02,
       9.41618962e+02, 9.41618962e+02, 9.41618962e+02, 9.41618962e+02,
       9.16225667e+02, 9.16225667e+02, 9.16225667e+02, 9.16225667e+02,
       8.86285914e+02, 8.86285914e+02, 8.86285914e+02, 8.86285914e+02,
       8.52914522e+02, 8.52914522e+02, 8.52914522e+02, 8.52914522e+02,
       8.17299685e+02, 8.17299685e+02, 8.17299685e+02, 8.17299685e+02,
       7.80401265e+02, 7.80401265e+02, 7.80401265e+02, 7.80401265e+02,
       7.43128313e+02, 7.43128313e+02, 7.43128313e+02, 7.43128313e+02,
       7.06850048e+02, 7.06850048e+02, 7.06850048e+02, 7.06850048e+02,
       6.72179206e+02, 6.72179206e+02, 6.72179206e+02, 6.72179206e+02,
       6.39161893e+02, 6.39161893e+02, 6.39161893e+02, 6.39161893e+02,
       6.07736695e+02, 6.07736695e+02, 6.07736695e+02, 6.07736695e+02,
       5.77958609e+02, 5.77958609e+02, 5.77958609e+02, 5.77958609e+02,
       5.49975461e+02, 5.49975461e+02, 5.49975461e+02, 5.49975461e+02,
       5.24148628e+02, 5.24148628e+02, 5.24148628e+02, 5.24148628e+02,
       5.01038900e+02, 5.01038900e+02, 5.01038900e+02, 5.01038900e+02,
       4.81516564e+02, 4.81516564e+02, 4.81516564e+02, 4.81516564e+02,
       4.66526226e+02, 4.66526226e+02, 4.66526226e+02, 4.66526226e+02,
       4.56679419e+02, 4.56679419e+02, 4.56679419e+02, 4.56679419e+02,
       4.51709116e+02, 4.51709116e+02, 4.51709116e+02, 4.51709116e+02,
       4.50204516e+02, 4.50204516e+02, 4.50204516e+02, 4.50204516e+02,
       4.50323474e+02, 4.50323474e+02, 4.50323474e+02, 4.50323474e+02,
       4.51792099e+02, 4.51792099e+02, 4.51792099e+02, 4.51792099e+02,
       4.52644533e+02, 4.52644533e+02, 4.52644533e+02, 4.52644533e+02,
       4.52957374e+02, 4.52957374e+02, 4.52957374e+02, 4.52957374e+02,
       4.53131411e+02, 4.53131411e+02, 4.53131411e+02, 4.53131411e+02,
       4.53310711e+02, 4.53310711e+02, 4.53310711e+02, 4.53310711e+02,
       4.53588206e+02, 4.53588206e+02, 4.53588206e+02, 4.53588206e+02,
       4.54024216e+02, 4.54024216e+02, 4.54024216e+02, 4.54024216e+02,
       4.54505579e+02, 4.54505579e+02, 4.54505579e+02, 4.54505579e+02,
       4.54941322e+02, 4.54941322e+02, 4.54941322e+02, 4.54941322e+02,
       4.55358316e+02, 4.55358316e+02, 4.55358316e+02, 4.55358316e+02,
       4.55776216e+02, 4.55776216e+02, 4.55776216e+02, 4.55776216e+02,
       4.56187451e+02, 4.56187451e+02, 4.56187451e+02, 4.56187451e+02,
       4.56567868e+02, 4.56567868e+02, 4.56567868e+02, 4.56567868e+02,
       4.57061252e+02, 4.57061252e+02, 4.57061252e+02, 4.57061252e+02,
       4.57670049e+02, 4.57670049e+02, 4.57670049e+02, 4.57670049e+02,
       4.56861977e+02, 4.56861977e+02, 4.56861977e+02, 4.56861977e+02,
       4.46897134e+02, 4.46897134e+02, 4.46897134e+02, 4.46897134e+02,
       3.95213842e+02, 3.95213842e+02, 3.95213842e+02, 3.95213842e+02,
       2.27017462e+02, 2.27017462e+02, 2.27017462e+02, 2.27017462e+02,
       3.24722316e+01, 3.24722316e+01, 3.24722316e+01, 3.24722316e+01,
       3.44215454e-01, 3.44215454e-01, 3.44215454e-01, 3.44215454e-01,
       1.00956522e-02, 1.00956522e-02, 1.00956522e-02, 1.00956522e-02,
       1.00000114e-02, 1.00000114e-02, 1.00000114e-02, 1.00000114e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99962715, 0.99962715, 0.99962715, 0.99962715, 0.9989959 ,
       0.9989959 , 0.9989959 , 0.9989959 , 0.99787399, 0.99787399,
       0.99787399, 0.99787399, 0.99569077, 0.99569077, 0.99569077,
       0.99569077, 0.99184415, 0.99184415, 0.99184415, 0.99184415,
       0.98556472, 0.98556472, 0.98556472, 0.98556472, 0.97611065,
       0.97611065, 0.97611065, 0.97611065, 0.96295756, 0.96295756,
       0.96295756, 0.96295756, 0.94597218, 0.94597218, 0.94597218,
       0.94597218, 0.92545827, 0.92545827, 0.92545827, 0.92545827,
       0.90205196, 0.90205196, 0.90205196, 0.90205196, 0.87652198,
       0.87652198, 0.87652198, 0.87652198, 0.84956063, 0.84956063,
       0.84956063, 0.84956063, 0.82170304, 0.82170304, 0.82170304,
       0.82170304, 0.79383738, 0.79383738, 0.79383738, 0.79383738,
       0.76665912, 0.76665912, 0.76665912, 0.76665912, 0.74033691,
       0.74033691, 0.74033691, 0.74033691, 0.71486688, 0.71486688,
       0.71486688, 0.71486688, 0.69028102, 0.69028102, 0.69028102,
       0.69028102, 0.6666371 , 0.6666371 , 0.6666371 , 0.6666371 ,
       0.64432028, 0.64432028, 0.64432028, 0.64432028, 0.62304012,
       0.62304012, 0.62304012, 0.62304012, 0.60528142, 0.60528142,
       0.60528142, 0.60528142, 0.58800675, 0.58800675, 0.58800675,
       0.58800675, 0.5778694 , 0.5778694 , 0.5778694 , 0.5778694 ,
       0.56972246, 0.56972246, 0.56972246, 0.56972246, 0.56560315,
       0.56560315, 0.56560315, 0.56560315, 0.56553233, 0.56553233,
       0.56553233, 0.56553233, 0.56584834, 0.56584834, 0.56584834,
       0.56584834, 0.56690991, 0.56690991, 0.56690991, 0.56690991,
       0.56721384, 0.56721384, 0.56721384, 0.56721384, 0.56762924,
       0.56762924, 0.56762924, 0.56762924, 0.56782241, 0.56782241,
       0.56782241, 0.56782241, 0.56782868, 0.56782868, 0.56782868,
       0.56782868, 0.56791572, 0.56791572, 0.56791572, 0.56791572,
       0.56816164, 0.56816164, 0.56816164, 0.56816164, 0.56851365,
       0.56851365, 0.56851365, 0.56851365, 0.56920152, 0.56920152,
       0.56920152, 0.56920152, 0.57156713, 0.57156713, 0.57156713,
       0.57156713, 0.58101327, 0.58101327, 0.58101327, 0.58101327,
       0.61373599, 0.61373599, 0.61373599, 0.61373599, 0.70822132,
       0.70822132, 0.70822132, 0.70822132, 0.93867528, 0.93867528,
       0.93867528, 0.93867528, 1.41891316, 1.41891316, 1.41891316,
       1.41891316, 2.27525624, 2.27525624, 2.27525624, 2.27525624,
       3.41072177, 3.41072177, 3.41072177, 3.41072177, 3.98667427,
       3.98667427, 3.98667427, 3.98667427, 3.87982047, 3.87982047,
       3.87982047, 3.87982047, 2.43231843, 2.43231843, 2.43231843,
       2.43231843, 1.15615318, 1.15615318, 1.15615318, 1.15615318,
       1.00824283, 1.00824283, 1.00824283, 1.00824283, 1.0000454 ,
       1.0000454 , 1.0000454 , 1.0000454 , 1.00000001, 1.00000001,
       1.00000001, 1.00000001, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.39530183e-02, 1.39530183e-02, 1.39530183e-02, 1.39530183e-02,
       3.75848880e-02, 3.75848880e-02, 3.75848880e-02, 3.75848880e-02,
       7.96128157e-02, 7.96128157e-02, 7.96128157e-02, 7.96128157e-02,
       1.61508250e-01, 1.61508250e-01, 1.61508250e-01, 1.61508250e-01,
       3.06150477e-01, 3.06150477e-01, 3.06150477e-01, 3.06150477e-01,
       5.43251766e-01, 5.43251766e-01, 5.43251766e-01, 5.43251766e-01,
       9.02556002e-01, 9.02556002e-01, 9.02556002e-01, 9.02556002e-01,
       1.40720176e+00, 1.40720176e+00, 1.40720176e+00, 1.40720176e+00,
       2.06726331e+00, 2.06726331e+00, 2.06726331e+00, 2.06726331e+00,
       2.87738380e+00, 2.87738380e+00, 2.87738380e+00, 2.87738380e+00,
       3.81959664e+00, 3.81959664e+00, 3.81959664e+00, 3.81959664e+00,
       4.86989842e+00, 4.86989842e+00, 4.86989842e+00, 4.86989842e+00,
       6.00593747e+00, 6.00593747e+00, 6.00593747e+00, 6.00593747e+00,
       7.20976710e+00, 7.20976710e+00, 7.20976710e+00, 7.20976710e+00,
       8.44013430e+00, 8.44013430e+00, 8.44013430e+00, 8.44013430e+00,
       9.67820971e+00, 9.67820971e+00, 9.67820971e+00, 9.67820971e+00,
       1.09131010e+01, 1.09131010e+01, 1.09131010e+01, 1.09131010e+01,
       1.21419057e+01, 1.21419057e+01, 1.21419057e+01, 1.21419057e+01,
       1.33619281e+01, 1.33619281e+01, 1.33619281e+01, 1.33619281e+01,
       1.45669883e+01, 1.45669883e+01, 1.45669883e+01, 1.45669883e+01,
       1.57435737e+01, 1.57435737e+01, 1.57435737e+01, 1.57435737e+01,
       1.68686020e+01, 1.68686020e+01, 1.68686020e+01, 1.68686020e+01,
       1.79014772e+01, 1.79014772e+01, 1.79014772e+01, 1.79014772e+01,
       1.87882849e+01, 1.87882849e+01, 1.87882849e+01, 1.87882849e+01,
       1.94668837e+01, 1.94668837e+01, 1.94668837e+01, 1.94668837e+01,
       1.99006239e+01, 1.99006239e+01, 1.99006239e+01, 1.99006239e+01,
       2.01050731e+01, 2.01050731e+01, 2.01050731e+01, 2.01050731e+01,
       2.01571544e+01, 2.01571544e+01, 2.01571544e+01, 2.01571544e+01,
       2.01363521e+01, 2.01363521e+01, 2.01363521e+01, 2.01363521e+01,
       2.00613129e+01, 2.00613129e+01, 2.00613129e+01, 2.00613129e+01,
       2.00257473e+01, 2.00257473e+01, 2.00257473e+01, 2.00257473e+01,
       2.00113940e+01, 2.00113940e+01, 2.00113940e+01, 2.00113940e+01,
       2.00016210e+01, 2.00016210e+01, 2.00016210e+01, 2.00016210e+01,
       1.99912688e+01, 1.99912688e+01, 1.99912688e+01, 1.99912688e+01,
       1.99751513e+01, 1.99751513e+01, 1.99751513e+01, 1.99751513e+01,
       1.99512938e+01, 1.99512938e+01, 1.99512938e+01, 1.99512938e+01,
       1.99269046e+01, 1.99269046e+01, 1.99269046e+01, 1.99269046e+01,
       1.99037068e+01, 1.99037068e+01, 1.99037068e+01, 1.99037068e+01,
       1.98807884e+01, 1.98807884e+01, 1.98807884e+01, 1.98807884e+01,
       1.98596458e+01, 1.98596458e+01, 1.98596458e+01, 1.98596458e+01,
       1.98416867e+01, 1.98416867e+01, 1.98416867e+01, 1.98416867e+01,
       1.98257179e+01, 1.98257179e+01, 1.98257179e+01, 1.98257179e+01,
       1.98115993e+01, 1.98115993e+01, 1.98115993e+01, 1.98115993e+01,
       1.98022942e+01, 1.98022942e+01, 1.98022942e+01, 1.98022942e+01,
       1.97745446e+01, 1.97745446e+01, 1.97745446e+01, 1.97745446e+01,
       1.96599658e+01, 1.96599658e+01, 1.96599658e+01, 1.96599658e+01,
       1.91316282e+01, 1.91316282e+01, 1.91316282e+01, 1.91316282e+01,
       1.68989432e+01, 1.68989432e+01, 1.68989432e+01, 1.68989432e+01,
       9.82776433e+00, 9.82776433e+00, 9.82776433e+00, 9.82776433e+00,
       1.03966586e+00, 1.03966586e+00, 1.03966586e+00, 1.03966586e+00,
       1.02686172e-02, 1.02686172e-02, 1.02686172e-02, 1.02686172e-02,
       5.87596530e-06, 5.87596530e-06, 5.87596530e-06, 5.87596530e-06,
       9.09802870e-10, 9.09802870e-10, 9.09802870e-10, 9.09802870e-10,
       1.40162828e-13, 1.40162828e-13, 1.40162828e-13, 1.40162828e-13,
       2.18096263e-17, 2.18096263e-17, 2.18096263e-17, 2.18096263e-17,
       4.14673755e-21, 4.14673755e-21, 4.14673755e-21, 4.14673755e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99478084e+02, 9.99478084e+02, 9.99478084e+02, 9.99478084e+02,
       9.98594612e+02, 9.98594612e+02, 9.98594612e+02, 9.98594612e+02,
       9.97025182e+02, 9.97025182e+02, 9.97025182e+02, 9.97025182e+02,
       9.93973403e+02, 9.93973403e+02, 9.93973403e+02, 9.93973403e+02,
       9.88603735e+02, 9.88603735e+02, 9.88603735e+02, 9.88603735e+02,
       9.79857278e+02, 9.79857278e+02, 9.79857278e+02, 9.79857278e+02,
       9.66732858e+02, 9.66732858e+02, 9.66732858e+02, 9.66732858e+02,
       9.48559568e+02, 9.48559568e+02, 9.48559568e+02, 9.48559568e+02,
       9.25238470e+02, 9.25238470e+02, 9.25238470e+02, 9.25238470e+02,
       8.97294073e+02, 8.97294073e+02, 8.97294073e+02, 8.97294073e+02,
       8.65708163e+02, 8.65708163e+02, 8.65708163e+02, 8.65708163e+02,
       8.31624879e+02, 8.31624879e+02, 8.31624879e+02, 8.31624879e+02,
       7.96056352e+02, 7.96056352e+02, 7.96056352e+02, 7.96056352e+02,
       7.59769847e+02, 7.59769847e+02, 7.59769847e+02, 7.59769847e+02,
       7.23915193e+02, 7.23915193e+02, 7.23915193e+02, 7.23915193e+02,
       6.89464378e+02, 6.89464378e+02, 6.89464378e+02, 6.89464378e+02,
       6.56557931e+02, 6.56557931e+02, 6.56557931e+02, 6.56557931e+02,
       6.25161940e+02, 6.25161940e+02, 6.25161940e+02, 6.25161940e+02,
       5.95273088e+02, 5.95273088e+02, 5.95273088e+02, 5.95273088e+02,
       5.66968750e+02, 5.66968750e+02, 5.66968750e+02, 5.66968750e+02,
       5.40439673e+02, 5.40439673e+02, 5.40439673e+02, 5.40439673e+02,
       5.16100425e+02, 5.16100425e+02, 5.16100425e+02, 5.16100425e+02,
       4.94565963e+02, 4.94565963e+02, 4.94565963e+02, 4.94565963e+02,
       4.76716435e+02, 4.76716435e+02, 4.76716435e+02, 4.76716435e+02,
       4.63423824e+02, 4.63423824e+02, 4.63423824e+02, 4.63423824e+02,
       4.55097958e+02, 4.55097958e+02, 4.55097958e+02, 4.55097958e+02,
       4.51223672e+02, 4.51223672e+02, 4.51223672e+02, 4.51223672e+02,
       4.50235886e+02, 4.50235886e+02, 4.50235886e+02, 4.50235886e+02,
       4.50627214e+02, 4.50627214e+02, 4.50627214e+02, 4.50627214e+02,
       4.52045781e+02, 4.52045781e+02, 4.52045781e+02, 4.52045781e+02,
       4.52733619e+02, 4.52733619e+02, 4.52733619e+02, 4.52733619e+02,
       4.53008677e+02, 4.53008677e+02, 4.53008677e+02, 4.53008677e+02,
       4.53183711e+02, 4.53183711e+02, 4.53183711e+02, 4.53183711e+02,
       4.53371405e+02, 4.53371405e+02, 4.53371405e+02, 4.53371405e+02,
       4.53677995e+02, 4.53677995e+02, 4.53677995e+02, 4.53677995e+02,
       4.54140504e+02, 4.54140504e+02, 4.54140504e+02, 4.54140504e+02,
       4.54621285e+02, 4.54621285e+02, 4.54621285e+02, 4.54621285e+02,
       4.55065003e+02, 4.55065003e+02, 4.55065003e+02, 4.55065003e+02,
       4.55473454e+02, 4.55473454e+02, 4.55473454e+02, 4.55473454e+02,
       4.55862605e+02, 4.55862605e+02, 4.55862605e+02, 4.55862605e+02,
       4.56251236e+02, 4.56251236e+02, 4.56251236e+02, 4.56251236e+02,
       4.56613227e+02, 4.56613227e+02, 4.56613227e+02, 4.56613227e+02,
       4.57031953e+02, 4.57031953e+02, 4.57031953e+02, 4.57031953e+02,
       4.57636572e+02, 4.57636572e+02, 4.57636572e+02, 4.57636572e+02,
       4.57734018e+02, 4.57734018e+02, 4.57734018e+02, 4.57734018e+02,
       4.53736791e+02, 4.53736791e+02, 4.53736791e+02, 4.53736791e+02,
       4.27841681e+02, 4.27841681e+02, 4.27841681e+02, 4.27841681e+02,
       3.22491407e+02, 3.22491407e+02, 3.22491407e+02, 3.22491407e+02,
       1.03503221e+02, 1.03503221e+02, 1.03503221e+02, 1.03503221e+02,
       3.92201766e+00, 3.92201766e+00, 3.92201766e+00, 3.92201766e+00,
       1.65463831e-02, 1.65463831e-02, 1.65463831e-02, 1.65463831e-02,
       1.00006926e-02, 1.00006926e-02, 1.00006926e-02, 1.00006926e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99929182, 0.99929182, 0.99929182, 0.99929182, 0.99819056,
       0.99819056, 0.99819056, 0.99819056, 0.99638774, 0.99638774,
       0.99638774, 0.99638774, 0.99307857, 0.99307857, 0.99307857,
       0.99307857, 0.98762234, 0.98762234, 0.98762234, 0.98762234,
       0.97927076, 0.97927076, 0.97927076, 0.97927076, 0.96745681,
       0.96745681, 0.96745681, 0.96745681, 0.95194398, 0.95194398,
       0.95194398, 0.95194398, 0.93291304, 0.93291304, 0.93291304,
       0.93291304, 0.91089851, 0.91089851, 0.91089851, 0.91089851,
       0.88661886, 0.88661886, 0.88661886, 0.88661886, 0.86077838,
       0.86077838, 0.86077838, 0.86077838, 0.83390834, 0.83390834,
       0.83390834, 0.83390834, 0.80667351, 0.80667351, 0.80667351,
       0.80667351, 0.77989973, 0.77989973, 0.77989973, 0.77989973,
       0.75387045, 0.75387045, 0.75387045, 0.75387045, 0.72866226,
       0.72866226, 0.72866226, 0.72866226, 0.70425431, 0.70425431,
       0.70425431, 0.70425431, 0.68070198, 0.68070198, 0.68070198,
       0.68070198, 0.65806701, 0.65806701, 0.65806701, 0.65806701,
       0.63686275, 0.63686275, 0.63686275, 0.63686275, 0.61660877,
       0.61660877, 0.61660877, 0.61660877, 0.60023979, 0.60023979,
       0.60023979, 0.60023979, 0.58434031, 0.58434031, 0.58434031,
       0.58434031, 0.57531196, 0.57531196, 0.57531196, 0.57531196,
       0.56885665, 0.56885665, 0.56885665, 0.56885665, 0.56535251,
       0.56535251, 0.56535251, 0.56535251, 0.56542652, 0.56542652,
       0.56542652, 0.56542652, 0.56613675, 0.56613675, 0.56613675,
       0.56613675, 0.56722021, 0.56722021, 0.56722021, 0.56722021,
       0.56734999, 0.56734999, 0.56734999, 0.56734999, 0.56761109,
       0.56761109, 0.56761109, 0.56761109, 0.56787835, 0.56787835,
       0.56787835, 0.56787835, 0.56795177, 0.56795177, 0.56795177,
       0.56795177, 0.56808491, 0.56808491, 0.56808491, 0.56808491,
       0.56833262, 0.56833262, 0.56833262, 0.56833262, 0.56862979,
       0.56862979, 0.56862979, 0.56862979, 0.56915933, 0.56915933,
       0.56915933, 0.56915933, 0.570773  , 0.570773  , 0.570773  ,
       0.570773  , 0.57706088, 0.57706088, 0.57706088, 0.57706088,
       0.59949934, 0.59949934, 0.59949934, 0.59949934, 0.66700177,
       0.66700177, 0.66700177, 0.66700177, 0.83868505, 0.83868505,
       0.83868505, 0.83868505, 1.21237055, 1.21237055, 1.21237055,
       1.21237055, 1.91223289, 1.91223289, 1.91223289, 1.91223289,
       3.007806  , 3.007806  , 3.007806  , 3.007806  , 3.87809533,
       3.87809533, 3.87809533, 3.87809533, 4.06550349, 4.06550349,
       4.06550349, 4.06550349, 3.31660165, 3.31660165, 3.31660165,
       3.31660165, 1.51650855, 1.51650855, 1.51650855, 1.51650855,
       1.03580283, 1.03580283, 1.03580283, 1.03580283, 1.00089283,
       1.00089283, 1.00089283, 1.00089283, 1.00000042, 1.00000042,
       1.00000042, 1.00000042, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.65061748e-02, 2.65061748e-02, 2.65061748e-02, 2.65061748e-02,
       6.77521323e-02, 6.77521323e-02, 6.77521323e-02, 6.77521323e-02,
       1.35347197e-01, 1.35347197e-01, 1.35347197e-01, 1.35347197e-01,
       2.59685207e-01, 2.59685207e-01, 2.59685207e-01, 2.59685207e-01,
       4.65425979e-01, 4.65425979e-01, 4.65425979e-01, 4.65425979e-01,
       7.82144211e-01, 7.82144211e-01, 7.82144211e-01, 7.82144211e-01,
       1.23395371e+00, 1.23395371e+00, 1.23395371e+00, 1.23395371e+00,
       1.83410775e+00, 1.83410775e+00, 1.83410775e+00, 1.83410775e+00,
       2.58131290e+00, 2.58131290e+00, 2.58131290e+00, 2.58131290e+00,
       3.46116458e+00, 3.46116458e+00, 3.46116458e+00, 3.46116458e+00,
       4.45155217e+00, 4.45155217e+00, 4.45155217e+00, 4.45155217e+00,
       5.52969690e+00, 5.52969690e+00, 5.52969690e+00, 5.52969690e+00,
       6.67852811e+00, 6.67852811e+00, 6.67852811e+00, 6.67852811e+00,
       7.86873820e+00, 7.86873820e+00, 7.86873820e+00, 7.86873820e+00,
       9.07107121e+00, 9.07107121e+00, 9.07107121e+00, 9.07107121e+00,
       1.02736328e+01, 1.02736328e+01, 1.02736328e+01, 1.02736328e+01,
       1.14723262e+01, 1.14723262e+01, 1.14723262e+01, 1.14723262e+01,
       1.26646432e+01, 1.26646432e+01, 1.26646432e+01, 1.26646432e+01,
       1.38470920e+01, 1.38470920e+01, 1.38470920e+01, 1.38470920e+01,
       1.50122685e+01, 1.50122685e+01, 1.50122685e+01, 1.50122685e+01,
       1.61443786e+01, 1.61443786e+01, 1.61443786e+01, 1.61443786e+01,
       1.72174436e+01, 1.72174436e+01, 1.72174436e+01, 1.72174436e+01,
       1.81881157e+01, 1.81881157e+01, 1.81881157e+01, 1.81881157e+01,
       1.90020678e+01, 1.90020678e+01, 1.90020678e+01, 1.90020678e+01,
       1.96026064e+01, 1.96026064e+01, 1.96026064e+01, 1.96026064e+01,
       1.99654493e+01, 1.99654493e+01, 1.99654493e+01, 1.99654493e+01,
       2.01215540e+01, 2.01215540e+01, 2.01215540e+01, 2.01215540e+01,
       2.01536613e+01, 2.01536613e+01, 2.01536613e+01, 2.01536613e+01,
       2.01186860e+01, 2.01186860e+01, 2.01186860e+01, 2.01186860e+01,
       2.00503930e+01, 2.00503930e+01, 2.00503930e+01, 2.00503930e+01,
       2.00214278e+01, 2.00214278e+01, 2.00214278e+01, 2.00214278e+01,
       2.00088918e+01, 2.00088918e+01, 2.00088918e+01, 2.00088918e+01,
       1.99992270e+01, 1.99992270e+01, 1.99992270e+01, 1.99992270e+01,
       1.99879478e+01, 1.99879478e+01, 1.99879478e+01, 1.99879478e+01,
       1.99697555e+01, 1.99697555e+01, 1.99697555e+01, 1.99697555e+01,
       1.99444645e+01, 1.99444645e+01, 1.99444645e+01, 1.99444645e+01,
       1.99203251e+01, 1.99203251e+01, 1.99203251e+01, 1.99203251e+01,
       1.98978235e+01, 1.98978235e+01, 1.98978235e+01, 1.98978235e+01,
       1.98758306e+01, 1.98758306e+01, 1.98758306e+01, 1.98758306e+01,
       1.98547615e+01, 1.98547615e+01, 1.98547615e+01, 1.98547615e+01,
       1.98366120e+01, 1.98366120e+01, 1.98366120e+01, 1.98366120e+01,
       1.98210642e+01, 1.98210642e+01, 1.98210642e+01, 1.98210642e+01,
       1.98067178e+01, 1.98067178e+01, 1.98067178e+01, 1.98067178e+01,
       1.97979636e+01, 1.97979636e+01, 1.97979636e+01, 1.97979636e+01,
       1.97829582e+01, 1.97829582e+01, 1.97829582e+01, 1.97829582e+01,
       1.97247063e+01, 1.97247063e+01, 1.97247063e+01, 1.97247063e+01,
       1.94611034e+01, 1.94611034e+01, 1.94611034e+01, 1.94611034e+01,
       1.82839011e+01, 1.82839011e+01, 1.82839011e+01, 1.82839011e+01,
       1.38817854e+01, 1.38817854e+01, 1.38817854e+01, 1.38817854e+01,
       4.10564450e+00, 4.10564450e+00, 4.10564450e+00, 4.10564450e+00,
       1.19559981e-01, 1.19559981e-01, 1.19559981e-01, 1.19559981e-01,
       2.64879102e-04, 2.64879102e-04, 2.64879102e-04, 2.64879102e-04,
       4.95793305e-08, 4.95793305e-08, 4.95793305e-08, 4.95793305e-08,
       8.02645853e-12, 8.02645853e-12, 8.02645853e-12, 8.02645853e-12,
       1.28397217e-15, 1.28397217e-15, 1.28397217e-15, 1.28397217e-15,
       1.96745591e-19, 1.96745591e-19, 1.96745591e-19, 1.96745591e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99008791e+02, 9.99008791e+02, 9.99008791e+02, 9.99008791e+02,
       9.97467896e+02, 9.97467896e+02, 9.97467896e+02, 9.97467896e+02,
       9.94947317e+02, 9.94947317e+02, 9.94947317e+02, 9.94947317e+02,
       9.90325847e+02, 9.90325847e+02, 9.90325847e+02, 9.90325847e+02,
       9.82720519e+02, 9.82720519e+02, 9.82720519e+02, 9.82720519e+02,
       9.71113593e+02, 9.71113593e+02, 9.71113593e+02, 9.71113593e+02,
       9.54764008e+02, 9.54764008e+02, 9.54764008e+02, 9.54764008e+02,
       9.33417401e+02, 9.33417401e+02, 9.33417401e+02, 9.33417401e+02,
       9.07418550e+02, 9.07418550e+02, 9.07418550e+02, 9.07418550e+02,
       8.77605065e+02, 8.77605065e+02, 8.77605065e+02, 8.77605065e+02,
       8.45053460e+02, 8.45053460e+02, 8.45053460e+02, 8.45053460e+02,
       8.10795758e+02, 8.10795758e+02, 8.10795758e+02, 8.10795758e+02,
       7.75604847e+02, 7.75604847e+02, 7.75604847e+02, 7.75604847e+02,
       7.40358342e+02, 7.40358342e+02, 7.40358342e+02, 7.40358342e+02,
       7.06183106e+02, 7.06183106e+02, 7.06183106e+02, 7.06183106e+02,
       6.73414104e+02, 6.73414104e+02, 6.73414104e+02, 6.73414104e+02,
       6.42106090e+02, 6.42106090e+02, 6.42106090e+02, 6.42106090e+02,
       6.12205307e+02, 6.12205307e+02, 6.12205307e+02, 6.12205307e+02,
       5.83733464e+02, 5.83733464e+02, 5.83733464e+02, 5.83733464e+02,
       5.56805862e+02, 5.56805862e+02, 5.56805862e+02, 5.56805862e+02,
       5.31654012e+02, 5.31654012e+02, 5.31654012e+02, 5.31654012e+02,
       5.08742192e+02, 5.08742192e+02, 5.08742192e+02, 5.08742192e+02,
       4.88731625e+02, 4.88731625e+02, 4.88731625e+02, 4.88731625e+02,
       4.72495806e+02, 4.72495806e+02, 4.72495806e+02, 4.72495806e+02,
       4.60808275e+02, 4.60808275e+02, 4.60808275e+02, 4.60808275e+02,
       4.53862047e+02, 4.53862047e+02, 4.53862047e+02, 4.53862047e+02,
       4.50909195e+02, 4.50909195e+02, 4.50909195e+02, 4.50909195e+02,
       4.50303363e+02, 4.50303363e+02, 4.50303363e+02, 4.50303363e+02,
       4.50963314e+02, 4.50963314e+02, 4.50963314e+02, 4.50963314e+02,
       4.52251030e+02, 4.52251030e+02, 4.52251030e+02, 4.52251030e+02,
       4.52805650e+02, 4.52805650e+02, 4.52805650e+02, 4.52805650e+02,
       4.53054444e+02, 4.53054444e+02, 4.53054444e+02, 4.53054444e+02,
       4.53236462e+02, 4.53236462e+02, 4.53236462e+02, 4.53236462e+02,
       4.53444188e+02, 4.53444188e+02, 4.53444188e+02, 4.53444188e+02,
       4.53782015e+02, 4.53782015e+02, 4.53782015e+02, 4.53782015e+02,
       4.54259731e+02, 4.54259731e+02, 4.54259731e+02, 4.54259731e+02,
       4.54730412e+02, 4.54730412e+02, 4.54730412e+02, 4.54730412e+02,
       4.55178339e+02, 4.55178339e+02, 4.55178339e+02, 4.55178339e+02,
       4.55590920e+02, 4.55590920e+02, 4.55590920e+02, 4.55590920e+02,
       4.55961244e+02, 4.55961244e+02, 4.55961244e+02, 4.55961244e+02,
       4.56316460e+02, 4.56316460e+02, 4.56316460e+02, 4.56316460e+02,
       4.56666544e+02, 4.56666544e+02, 4.56666544e+02, 4.56666544e+02,
       4.57026199e+02, 4.57026199e+02, 4.57026199e+02, 4.57026199e+02,
       4.57531552e+02, 4.57531552e+02, 4.57531552e+02, 4.57531552e+02,
       4.58018403e+02, 4.58018403e+02, 4.58018403e+02, 4.58018403e+02,
       4.56713026e+02, 4.56713026e+02, 4.56713026e+02, 4.56713026e+02,
       4.44619433e+02, 4.44619433e+02, 4.44619433e+02, 4.44619433e+02,
       3.86158645e+02, 3.86158645e+02, 3.86158645e+02, 3.86158645e+02,
       2.07519215e+02, 2.07519215e+02, 2.07519215e+02, 2.07519215e+02,
       2.53994497e+01, 2.53994497e+01, 2.53994497e+01, 2.53994497e+01,
       2.14148688e-01, 2.14148688e-01, 2.14148688e-01, 2.14148688e-01,
       1.00450120e-02, 1.00450120e-02, 1.00450120e-02, 1.00450120e-02,
       1.00000059e-02, 1.00000059e-02, 1.00000059e-02, 1.00000059e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99871963, 0.99871963, 0.99871963, 0.99871963, 0.99689581,
       0.99689581, 0.99689581, 0.99689581, 0.99415366, 0.99415366,
       0.99415366, 0.99415366, 0.98939445, 0.98939445, 0.98939445,
       0.98939445, 0.98204346, 0.98204346, 0.98204346, 0.98204346,
       0.97146171, 0.97146171, 0.97146171, 0.97146171, 0.9573379 ,
       0.9573379 , 0.9573379 , 0.9573379 , 0.93973497, 0.93973497,
       0.93973497, 0.93973497, 0.91908294, 0.91908294, 0.91908294,
       0.91908294, 0.89603722, 0.89603722, 0.89603722, 0.89603722,
       0.87129459, 0.87129459, 0.87129459, 0.87129459, 0.84542383,
       0.84542383, 0.84542383, 0.84542383, 0.81892298, 0.81892298,
       0.81892298, 0.81892298, 0.79259907, 0.79259907, 0.79259907,
       0.79259907, 0.76689349, 0.76689349, 0.76689349, 0.76689349,
       0.74195878, 0.74195878, 0.74195878, 0.74195878, 0.71776989,
       0.71776989, 0.71776989, 0.71776989, 0.69434792, 0.69434792,
       0.69434792, 0.69434792, 0.67176942, 0.67176942, 0.67176942,
       0.67176942, 0.65008496, 0.65008496, 0.65008496, 0.65008496,
       0.62996773, 0.62996773, 0.62996773, 0.62996773, 0.61070758,
       0.61070758, 0.61070758, 0.61070758, 0.59567443, 0.59567443,
       0.59567443, 0.59567443, 0.58118471, 0.58118471, 0.58118471,
       0.58118471, 0.57312756, 0.57312756, 0.57312756, 0.57312756,
       0.56818316, 0.56818316, 0.56818316, 0.56818316, 0.56529871,
       0.56529871, 0.56529871, 0.56529871, 0.56537711, 0.56537711,
       0.56537711, 0.56537711, 0.56637301, 0.56637301, 0.56637301,
       0.56637301, 0.56746355, 0.56746355, 0.56746355, 0.56746355,
       0.56750707, 0.56750707, 0.56750707, 0.56750707, 0.56762621,
       0.56762621, 0.56762621, 0.56762621, 0.56789882, 0.56789882,
       0.56789882, 0.56789882, 0.56806145, 0.56806145, 0.56806145,
       0.56806145, 0.56826163, 0.56826163, 0.56826163, 0.56826163,
       0.56851406, 0.56851406, 0.56851406, 0.56851406, 0.56877122,
       0.56877122, 0.56877122, 0.56877122, 0.56918068, 0.56918068,
       0.56918068, 0.56918068, 0.57030245, 0.57030245, 0.57030245,
       0.57030245, 0.5745043 , 0.5745043 , 0.5745043 , 0.5745043 ,
       0.58979671, 0.58979671, 0.58979671, 0.58979671, 0.63756363,
       0.63756363, 0.63756363, 0.63756363, 0.7640859 , 0.7640859 ,
       0.7640859 , 0.7640859 , 1.05129673, 1.05129673, 1.05129673,
       1.05129673, 1.61395351, 1.61395351, 1.61395351, 1.61395351,
       2.56324844, 2.56324844, 2.56324844, 2.56324844, 3.64796108,
       3.64796108, 3.64796108, 3.64796108, 4.10212289, 4.10212289,
       4.10212289, 4.10212289, 3.88420625, 3.88420625, 3.88420625,
       3.88420625, 2.28314086, 2.28314086, 2.28314086, 2.28314086,
       1.12772592, 1.12772592, 1.12772592, 1.12772592, 1.00628402,
       1.00628402, 1.00628402, 1.00628402, 1.00002417, 1.00002417,
       1.00002417, 1.00002417, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([4.79346584e-02, 4.79346584e-02, 4.79346584e-02, 4.79346584e-02,
       1.16295186e-01, 1.16295186e-01, 1.16295186e-01, 1.16295186e-01,
       2.19249025e-01, 2.19249025e-01, 2.19249025e-01, 2.19249025e-01,
       3.98505426e-01, 3.98505426e-01, 3.98505426e-01, 3.98505426e-01,
       6.76753261e-01, 6.76753261e-01, 6.76753261e-01, 6.76753261e-01,
       1.08029397e+00, 1.08029397e+00, 1.08029397e+00, 1.08029397e+00,
       1.62453623e+00, 1.62453623e+00, 1.62453623e+00, 1.62453623e+00,
       2.31205472e+00, 2.31205472e+00, 2.31205472e+00, 2.31205472e+00,
       3.13205824e+00, 3.13205824e+00, 3.13205824e+00, 3.13205824e+00,
       4.06476657e+00, 4.06476657e+00, 4.06476657e+00, 4.06476657e+00,
       5.08775132e+00, 5.08775132e+00, 5.08775132e+00, 5.08775132e+00,
       6.18246089e+00, 6.18246089e+00, 6.18246089e+00, 6.18246089e+00,
       7.33022569e+00, 7.33022569e+00, 7.33022569e+00, 7.33022569e+00,
       8.49610187e+00, 8.49610187e+00, 8.49610187e+00, 8.49610187e+00,
       9.66738034e+00, 9.66738034e+00, 9.66738034e+00, 9.66738034e+00,
       1.08365227e+01, 1.08365227e+01, 1.08365227e+01, 1.08365227e+01,
       1.20006085e+01, 1.20006085e+01, 1.20006085e+01, 1.20006085e+01,
       1.31582056e+01, 1.31582056e+01, 1.31582056e+01, 1.31582056e+01,
       1.43045927e+01, 1.43045927e+01, 1.43045927e+01, 1.43045927e+01,
       1.54308433e+01, 1.54308433e+01, 1.54308433e+01, 1.54308433e+01,
       1.65188815e+01, 1.65188815e+01, 1.65188815e+01, 1.65188815e+01,
       1.75398658e+01, 1.75398658e+01, 1.75398658e+01, 1.75398658e+01,
       1.84481157e+01, 1.84481157e+01, 1.84481157e+01, 1.84481157e+01,
       1.91900861e+01, 1.91900861e+01, 1.91900861e+01, 1.91900861e+01,
       1.97162589e+01, 1.97162589e+01, 1.97162589e+01, 1.97162589e+01,
       2.00152679e+01, 2.00152679e+01, 2.00152679e+01, 2.00152679e+01,
       2.01312403e+01, 2.01312403e+01, 2.01312403e+01, 2.01312403e+01,
       2.01482309e+01, 2.01482309e+01, 2.01482309e+01, 2.01482309e+01,
       2.01006098e+01, 2.01006098e+01, 2.01006098e+01, 2.01006098e+01,
       2.00417664e+01, 2.00417664e+01, 2.00417664e+01, 2.00417664e+01,
       2.00177684e+01, 2.00177684e+01, 2.00177684e+01, 2.00177684e+01,
       2.00061893e+01, 2.00061893e+01, 2.00061893e+01, 2.00061893e+01,
       1.99964358e+01, 1.99964358e+01, 1.99964358e+01, 1.99964358e+01,
       1.99841326e+01, 1.99841326e+01, 1.99841326e+01, 1.99841326e+01,
       1.99640722e+01, 1.99640722e+01, 1.99640722e+01, 1.99640722e+01,
       1.99380327e+01, 1.99380327e+01, 1.99380327e+01, 1.99380327e+01,
       1.99138950e+01, 1.99138950e+01, 1.99138950e+01, 1.99138950e+01,
       1.98915983e+01, 1.98915983e+01, 1.98915983e+01, 1.98915983e+01,
       1.98706224e+01, 1.98706224e+01, 1.98706224e+01, 1.98706224e+01,
       1.98504781e+01, 1.98504781e+01, 1.98504781e+01, 1.98504781e+01,
       1.98321531e+01, 1.98321531e+01, 1.98321531e+01, 1.98321531e+01,
       1.98164498e+01, 1.98164498e+01, 1.98164498e+01, 1.98164498e+01,
       1.98028802e+01, 1.98028802e+01, 1.98028802e+01, 1.98028802e+01,
       1.97923327e+01, 1.97923327e+01, 1.97923327e+01, 1.97923327e+01,
       1.97838509e+01, 1.97838509e+01, 1.97838509e+01, 1.97838509e+01,
       1.97535132e+01, 1.97535132e+01, 1.97535132e+01, 1.97535132e+01,
       1.96225421e+01, 1.96225421e+01, 1.96225421e+01, 1.96225421e+01,
       1.90212196e+01, 1.90212196e+01, 1.90212196e+01, 1.90212196e+01,
       1.65525784e+01, 1.65525784e+01, 1.65525784e+01, 1.65525784e+01,
       9.01356040e+00, 9.01356040e+00, 9.01356040e+00, 9.01356040e+00,
       7.89629666e-01, 7.89629666e-01, 7.89629666e-01, 7.89629666e-01,
       6.47563091e-03, 6.47563091e-03, 6.47563091e-03, 6.47563091e-03,
       3.00072068e-06, 3.00072068e-06, 3.00072068e-06, 3.00072068e-06,
       4.61483424e-10, 4.61483424e-10, 4.61483424e-10, 4.61483424e-10,
       7.14105492e-14, 7.14105492e-14, 7.14105492e-14, 7.14105492e-14,
       1.12055754e-17, 1.12055754e-17, 1.12055754e-17, 1.12055754e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.98208251e+02, 9.98208251e+02, 9.98208251e+02, 9.98208251e+02,
       9.95657307e+02, 9.95657307e+02, 9.95657307e+02, 9.95657307e+02,
       9.91826551e+02, 9.91826551e+02, 9.91826551e+02, 9.91826551e+02,
       9.85188507e+02, 9.85188507e+02, 9.85188507e+02, 9.85188507e+02,
       9.74962220e+02, 9.74962220e+02, 9.74962220e+02, 9.74962220e+02,
       9.60296787e+02, 9.60296787e+02, 9.60296787e+02, 9.60296787e+02,
       9.40822905e+02, 9.40822905e+02, 9.40822905e+02, 9.40822905e+02,
       9.16712279e+02, 9.16712279e+02, 9.16712279e+02, 9.16712279e+02,
       8.88653079e+02, 8.88653079e+02, 8.88653079e+02, 8.88653079e+02,
       8.57635270e+02, 8.57635270e+02, 8.57635270e+02, 8.57635270e+02,
       8.24683912e+02, 8.24683912e+02, 8.24683912e+02, 8.24683912e+02,
       7.90625936e+02, 7.90625936e+02, 7.90625936e+02, 7.90625936e+02,
       7.56152074e+02, 7.56152074e+02, 7.56152074e+02, 7.56152074e+02,
       7.22323562e+02, 7.22323562e+02, 7.22323562e+02, 7.22323562e+02,
       6.89748211e+02, 6.89748211e+02, 6.89748211e+02, 6.89748211e+02,
       6.58562261e+02, 6.58562261e+02, 6.58562261e+02, 6.58562261e+02,
       6.28705838e+02, 6.28705838e+02, 6.28705838e+02, 6.28705838e+02,
       6.00181833e+02, 6.00181833e+02, 6.00181833e+02, 6.00181833e+02,
       5.73028492e+02, 5.73028492e+02, 5.73028492e+02, 5.73028492e+02,
       5.47394913e+02, 5.47394913e+02, 5.47394913e+02, 5.47394913e+02,
       5.23556041e+02, 5.23556041e+02, 5.23556041e+02, 5.23556041e+02,
       5.02022645e+02, 5.02022645e+02, 5.02022645e+02, 5.02022645e+02,
       4.83490652e+02, 4.83490652e+02, 4.83490652e+02, 4.83490652e+02,
       4.68807418e+02, 4.68807418e+02, 4.68807418e+02, 4.68807418e+02,
       4.58628006e+02, 4.58628006e+02, 4.58628006e+02, 4.58628006e+02,
       4.52917665e+02, 4.52917665e+02, 4.52917665e+02, 4.52917665e+02,
       4.50722891e+02, 4.50722891e+02, 4.50722891e+02, 4.50722891e+02,
       4.50404840e+02, 4.50404840e+02, 4.50404840e+02, 4.50404840e+02,
       4.51305706e+02, 4.51305706e+02, 4.51305706e+02, 4.51305706e+02,
       4.52417827e+02, 4.52417827e+02, 4.52417827e+02, 4.52417827e+02,
       4.52869771e+02, 4.52869771e+02, 4.52869771e+02, 4.52869771e+02,
       4.53098143e+02, 4.53098143e+02, 4.53098143e+02, 4.53098143e+02,
       4.53288109e+02, 4.53288109e+02, 4.53288109e+02, 4.53288109e+02,
       4.53522454e+02, 4.53522454e+02, 4.53522454e+02, 4.53522454e+02,
       4.53898721e+02, 4.53898721e+02, 4.53898721e+02, 4.53898721e+02,
       4.54383577e+02, 4.54383577e+02, 4.54383577e+02, 4.54383577e+02,
       4.54840633e+02, 4.54840633e+02, 4.54840633e+02, 4.54840633e+02,
       4.55282568e+02, 4.55282568e+02, 4.55282568e+02, 4.55282568e+02,
       4.55699208e+02, 4.55699208e+02, 4.55699208e+02, 4.55699208e+02,
       4.56064730e+02, 4.56064730e+02, 4.56064730e+02, 4.56064730e+02,
       4.56394118e+02, 4.56394118e+02, 4.56394118e+02, 4.56394118e+02,
       4.56721490e+02, 4.56721490e+02, 4.56721490e+02, 4.56721490e+02,
       4.57041842e+02, 4.57041842e+02, 4.57041842e+02, 4.57041842e+02,
       4.57452339e+02, 4.57452339e+02, 4.57452339e+02, 4.57452339e+02,
       4.58033692e+02, 4.58033692e+02, 4.58033692e+02, 4.58033692e+02,
       4.57888048e+02, 4.57888048e+02, 4.57888048e+02, 4.57888048e+02,
       4.52727602e+02, 4.52727602e+02, 4.52727602e+02, 4.52727602e+02,
       4.22759926e+02, 4.22759926e+02, 4.22759926e+02, 4.22759926e+02,
       3.07068930e+02, 3.07068930e+02, 3.07068930e+02, 3.07068930e+02,
       8.77696574e+01, 8.77696574e+01, 8.77696574e+01, 8.77696574e+01,
       2.68785775e+00, 2.68785775e+00, 2.68785775e+00, 2.68785775e+00,
       1.34301951e-02, 1.34301951e-02, 1.34301951e-02, 1.34301951e-02,
       1.00003538e-02, 1.00003538e-02, 1.00003538e-02, 1.00003538e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99779253, 0.99779253, 0.99779253, 0.99779253, 0.99492087,
       0.99492087, 0.99492087, 0.99492087, 0.99096776, 0.99096776,
       0.99096776, 0.99096776, 0.98445746, 0.98445746, 0.98445746,
       0.98445746, 0.97502252, 0.97502252, 0.97502252, 0.97502252,
       0.9621987 , 0.9621987 , 0.9621987 , 0.9621987 , 0.94596677,
       0.94596677, 0.94596677, 0.94596677, 0.92664513, 0.92664513,
       0.92664513, 0.92664513, 0.90481789, 0.90481789, 0.90481789,
       0.90481789, 0.88115819, 0.88115819, 0.88115819, 0.88115819,
       0.85626688, 0.85626688, 0.85626688, 0.85626688, 0.83058143,
       0.83058143, 0.83058143, 0.83058143, 0.80476657, 0.80476657,
       0.80476657, 0.80476657, 0.77943364, 0.77943364, 0.77943364,
       0.77943364, 0.75476663, 0.75476663, 0.75476663, 0.75476663,
       0.73082127, 0.73082127, 0.73082127, 0.73082127, 0.70758612,
       0.70758612, 0.70758612, 0.70758612, 0.6850841 , 0.6850841 ,
       0.6850841 , 0.6850841 , 0.66342869, 0.66342869, 0.66342869,
       0.66342869, 0.6426441 , 0.6426441 , 0.6426441 , 0.6426441 ,
       0.62359474, 0.62359474, 0.62359474, 0.62359474, 0.60530901,
       0.60530901, 0.60530901, 0.60530901, 0.59154744, 0.59154744,
       0.59154744, 0.59154744, 0.57849861, 0.57849861, 0.57849861,
       0.57849861, 0.57129468, 0.57129468, 0.57129468, 0.57129468,
       0.56764504, 0.56764504, 0.56764504, 0.56764504, 0.56537656,
       0.56537656, 0.56537656, 0.56537656, 0.56541728, 0.56541728,
       0.56541728, 0.56541728, 0.566573  , 0.566573  , 0.566573  ,
       0.566573  , 0.56761976, 0.56761976, 0.56761976, 0.56761976,
       0.56766123, 0.56766123, 0.56766123, 0.56766123, 0.56769891,
       0.56769891, 0.56769891, 0.56769891, 0.56789839, 0.56789839,
       0.56789839, 0.56789839, 0.56815101, 0.56815101, 0.56815101,
       0.56815101, 0.56843359, 0.56843359, 0.56843359, 0.56843359,
       0.56870197, 0.56870197, 0.56870197, 0.56870197, 0.56893189,
       0.56893189, 0.56893189, 0.56893189, 0.56925247, 0.56925247,
       0.56925247, 0.56925247, 0.57003928, 0.57003928, 0.57003928,
       0.57003928, 0.57286264, 0.57286264, 0.57286264, 0.57286264,
       0.58324543, 0.58324543, 0.58324543, 0.58324543, 0.61675826,
       0.61675826, 0.61675826, 0.61675826, 0.70906129, 0.70906129,
       0.70906129, 0.70906129, 0.92724037, 0.92724037, 0.92724037,
       0.92724037, 1.37323589, 1.37323589, 1.37323589, 1.37323589,
       2.1635062 , 2.1635062 , 2.1635062 , 2.1635062 , 3.29148444,
       3.29148444, 3.29148444, 3.29148444, 4.0332475 , 4.0332475 ,
       4.0332475 , 4.0332475 , 4.12979469, 4.12979469, 4.12979469,
       4.12979469, 3.20980045, 3.20980045, 3.20980045, 3.20980045,
       1.4244878 , 1.4244878 , 1.4244878 , 1.4244878 , 1.02817994,
       1.02817994, 1.02817994, 1.02817994, 1.00058696, 1.00058696,
       1.00058696, 1.00058696, 1.00000021, 1.00000021, 1.00000021,
       1.00000021, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.26770714e-02, 8.26770714e-02, 8.26770714e-02, 8.26770714e-02,
       1.90444567e-01, 1.90444567e-01, 1.90444567e-01, 1.90444567e-01,
       3.39156393e-01, 3.39156393e-01, 3.39156393e-01, 3.39156393e-01,
       5.85196350e-01, 5.85196350e-01, 5.85196350e-01, 5.85196350e-01,
       9.44102208e-01, 9.44102208e-01, 9.44102208e-01, 9.44102208e-01,
       1.43650190e+00, 1.43650190e+00, 1.43650190e+00, 1.43650190e+00,
       2.06747296e+00, 2.06747296e+00, 2.06747296e+00, 2.06747296e+00,
       2.83007409e+00, 2.83007409e+00, 2.83007409e+00, 2.83007409e+00,
       3.70711102e+00, 3.70711102e+00, 3.70711102e+00, 3.70711102e+00,
       4.67711511e+00, 4.67711511e+00, 4.67711511e+00, 4.67711511e+00,
       5.72031049e+00, 5.72031049e+00, 5.72031049e+00, 5.72031049e+00,
       6.82230541e+00, 6.82230541e+00, 6.82230541e+00, 6.82230541e+00,
       7.95228204e+00, 7.95228204e+00, 7.95228204e+00, 7.95228204e+00,
       9.09250910e+00, 9.09250910e+00, 9.09250910e+00, 9.09250910e+00,
       1.02322411e+01, 1.02322411e+01, 1.02322411e+01, 1.02322411e+01,
       1.13687918e+01, 1.13687918e+01, 1.13687918e+01, 1.13687918e+01,
       1.25004504e+01, 1.25004504e+01, 1.25004504e+01, 1.25004504e+01,
       1.36248432e+01, 1.36248432e+01, 1.36248432e+01, 1.36248432e+01,
       1.47363425e+01, 1.47363425e+01, 1.47363425e+01, 1.47363425e+01,
       1.58243684e+01, 1.58243684e+01, 1.58243684e+01, 1.58243684e+01,
       1.68684615e+01, 1.68684615e+01, 1.68684615e+01, 1.68684615e+01,
       1.78370966e+01, 1.78370966e+01, 1.78370966e+01, 1.78370966e+01,
       1.86828484e+01, 1.86828484e+01, 1.86828484e+01, 1.86828484e+01,
       1.93540793e+01, 1.93540793e+01, 1.93540793e+01, 1.93540793e+01,
       1.98100759e+01, 1.98100759e+01, 1.98100759e+01, 1.98100759e+01,
       2.00526668e+01, 2.00526668e+01, 2.00526668e+01, 2.00526668e+01,
       2.01358422e+01, 2.01358422e+01, 2.01358422e+01, 2.01358422e+01,
       2.01409960e+01, 2.01409960e+01, 2.01409960e+01, 2.01409960e+01,
       2.00831703e+01, 2.00831703e+01, 2.00831703e+01, 2.00831703e+01,
       2.00347786e+01, 2.00347786e+01, 2.00347786e+01, 2.00347786e+01,
       2.00146195e+01, 2.00146195e+01, 2.00146195e+01, 2.00146195e+01,
       2.00034460e+01, 2.00034460e+01, 2.00034460e+01, 2.00034460e+01,
       1.99933175e+01, 1.99933175e+01, 1.99933175e+01, 1.99933175e+01,
       1.99796992e+01, 1.99796992e+01, 1.99796992e+01, 1.99796992e+01,
       1.99579053e+01, 1.99579053e+01, 1.99579053e+01, 1.99579053e+01,
       1.99319311e+01, 1.99319311e+01, 1.99319311e+01, 1.99319311e+01,
       1.99078330e+01, 1.99078330e+01, 1.99078330e+01, 1.99078330e+01,
       1.98854258e+01, 1.98854258e+01, 1.98854258e+01, 1.98854258e+01,
       1.98650641e+01, 1.98650641e+01, 1.98650641e+01, 1.98650641e+01,
       1.98461462e+01, 1.98461462e+01, 1.98461462e+01, 1.98461462e+01,
       1.98282545e+01, 1.98282545e+01, 1.98282545e+01, 1.98282545e+01,
       1.98124498e+01, 1.98124498e+01, 1.98124498e+01, 1.98124498e+01,
       1.97991749e+01, 1.97991749e+01, 1.97991749e+01, 1.97991749e+01,
       1.97873673e+01, 1.97873673e+01, 1.97873673e+01, 1.97873673e+01,
       1.97808776e+01, 1.97808776e+01, 1.97808776e+01, 1.97808776e+01,
       1.97645088e+01, 1.97645088e+01, 1.97645088e+01, 1.97645088e+01,
       1.96988900e+01, 1.96988900e+01, 1.96988900e+01, 1.96988900e+01,
       1.93964557e+01, 1.93964557e+01, 1.93964557e+01, 1.93964557e+01,
       1.80772383e+01, 1.80772383e+01, 1.80772383e+01, 1.80772383e+01,
       1.32758210e+01, 1.32758210e+01, 1.32758210e+01, 1.32758210e+01,
       3.37432001e+00, 3.37432001e+00, 3.37432001e+00, 3.37432001e+00,
       8.08064010e-02, 8.08064010e-02, 8.08064010e-02, 8.08064010e-02,
       1.40942456e-04, 1.40942456e-04, 1.40942456e-04, 1.40942456e-04,
       2.50612552e-08, 2.50612552e-08, 2.50612552e-08, 2.50612552e-08,
       4.11745361e-12, 4.11745361e-12, 4.11745361e-12, 4.11745361e-12,
       6.55937311e-16, 6.55937311e-16, 6.55937311e-16, 6.55937311e-16,
       9.42282893e-20, 9.42282893e-20, 9.42282893e-20, 9.42282893e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.96911775e+02, 9.96911775e+02, 9.96911775e+02, 9.96911775e+02,
       9.92897461e+02, 9.92897461e+02, 9.92897461e+02, 9.92897461e+02,
       9.87381492e+02, 9.87381492e+02, 9.87381492e+02, 9.87381492e+02,
       9.78316630e+02, 9.78316630e+02, 9.78316630e+02, 9.78316630e+02,
       9.65224072e+02, 9.65224072e+02, 9.65224072e+02, 9.65224072e+02,
       9.47511089e+02, 9.47511089e+02, 9.47511089e+02, 9.47511089e+02,
       9.25225984e+02, 9.25225984e+02, 9.25225984e+02, 9.25225984e+02,
       8.98896472e+02, 8.98896472e+02, 8.98896472e+02, 8.98896472e+02,
       8.69413243e+02, 8.69413243e+02, 8.69413243e+02, 8.69413243e+02,
       8.37771694e+02, 8.37771694e+02, 8.37771694e+02, 8.37771694e+02,
       8.04845422e+02, 8.04845422e+02, 8.04845422e+02, 8.04845422e+02,
       7.71265034e+02, 7.71265034e+02, 7.71265034e+02, 7.71265034e+02,
       7.37891694e+02, 7.37891694e+02, 7.37891694e+02, 7.37891694e+02,
       7.05581087e+02, 7.05581087e+02, 7.05581087e+02, 7.05581087e+02,
       6.74524283e+02, 6.74524283e+02, 6.74524283e+02, 6.74524283e+02,
       6.44761697e+02, 6.44761697e+02, 6.44761697e+02, 6.44761697e+02,
       6.16250581e+02, 6.16250581e+02, 6.16250581e+02, 6.16250581e+02,
       5.89001288e+02, 5.89001288e+02, 5.89001288e+02, 5.89001288e+02,
       5.63080642e+02, 5.63080642e+02, 5.63080642e+02, 5.63080642e+02,
       5.38671716e+02, 5.38671716e+02, 5.38671716e+02, 5.38671716e+02,
       5.16092282e+02, 5.16092282e+02, 5.16092282e+02, 5.16092282e+02,
       4.95896244e+02, 4.95896244e+02, 4.95896244e+02, 4.95896244e+02,
       4.78802137e+02, 4.78802137e+02, 4.78802137e+02, 4.78802137e+02,
       4.65608882e+02, 4.65608882e+02, 4.65608882e+02, 4.65608882e+02,
       4.56832207e+02, 4.56832207e+02, 4.56832207e+02, 4.56832207e+02,
       4.52212128e+02, 4.52212128e+02, 4.52212128e+02, 4.52212128e+02,
       4.50635329e+02, 4.50635329e+02, 4.50635329e+02, 4.50635329e+02,
       4.50539724e+02, 4.50539724e+02, 4.50539724e+02, 4.50539724e+02,
       4.51634371e+02, 4.51634371e+02, 4.51634371e+02, 4.51634371e+02,
       4.52552736e+02, 4.52552736e+02, 4.52552736e+02, 4.52552736e+02,
       4.52930057e+02, 4.52930057e+02, 4.52930057e+02, 4.52930057e+02,
       4.53144052e+02, 4.53144052e+02, 4.53144052e+02, 4.53144052e+02,
       4.53341730e+02, 4.53341730e+02, 4.53341730e+02, 4.53341730e+02,
       4.53605101e+02, 4.53605101e+02, 4.53605101e+02, 4.53605101e+02,
       4.54020478e+02, 4.54020478e+02, 4.54020478e+02, 4.54020478e+02,
       4.54510123e+02, 4.54510123e+02, 4.54510123e+02, 4.54510123e+02,
       4.54955970e+02, 4.54955970e+02, 4.54955970e+02, 4.54955970e+02,
       4.55384422e+02, 4.55384422e+02, 4.55384422e+02, 4.55384422e+02,
       4.55795165e+02, 4.55795165e+02, 4.55795165e+02, 4.55795165e+02,
       4.56163141e+02, 4.56163141e+02, 4.56163141e+02, 4.56163141e+02,
       4.56482181e+02, 4.56482181e+02, 4.56482181e+02, 4.56482181e+02,
       4.56781749e+02, 4.56781749e+02, 4.56781749e+02, 4.56781749e+02,
       4.57078389e+02, 4.57078389e+02, 4.57078389e+02, 4.57078389e+02,
       4.57417386e+02, 4.57417386e+02, 4.57417386e+02, 4.57417386e+02,
       4.57936162e+02, 4.57936162e+02, 4.57936162e+02, 4.57936162e+02,
       4.58275885e+02, 4.58275885e+02, 4.58275885e+02, 4.58275885e+02,
       4.56396881e+02, 4.56396881e+02, 4.56396881e+02, 4.56396881e+02,
       4.42008574e+02, 4.42008574e+02, 4.42008574e+02, 4.42008574e+02,
       3.76142236e+02, 3.76142236e+02, 3.76142236e+02, 3.76142236e+02,
       1.87877799e+02, 1.87877799e+02, 1.87877799e+02, 1.87877799e+02,
       1.93878950e+01, 1.93878950e+01, 1.93878950e+01, 1.93878950e+01,
       1.28441959e-01, 1.28441959e-01, 1.28441959e-01, 1.28441959e-01,
       1.00206317e-02, 1.00206317e-02, 1.00206317e-02, 1.00206317e-02,
       1.00000030e-02, 1.00000030e-02, 1.00000030e-02, 1.00000030e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99636432, 0.99636432, 0.99636432, 0.99636432, 0.99205876,
       0.99205876, 0.99205876, 0.99205876, 0.98664933, 0.98664933,
       0.98664933, 0.98664933, 0.97815371, 0.97815371, 0.97815371,
       0.97815371, 0.9665772 , 0.9665772 , 0.9665772 , 0.9665772 ,
       0.95164637, 0.95164637, 0.95164637, 0.95164637, 0.93362252,
       0.93362252, 0.93362252, 0.93362252, 0.91299712, 0.91299712,
       0.91299712, 0.91299712, 0.89041028, 0.89041028, 0.89041028,
       0.89041028, 0.86647311, 0.86647311, 0.86647311, 0.86647311,
       0.84164558, 0.84164558, 0.84164558, 0.84164558, 0.81642336,
       0.81642336, 0.81642336, 0.81642336, 0.79148604, 0.79148604,
       0.79148604, 0.79148604, 0.76710834, 0.76710834, 0.76710834,
       0.76710834, 0.7434205 , 0.7434205 , 0.7434205 , 0.7434205 ,
       0.72039324, 0.72039324, 0.72039324, 0.72039324, 0.69804488,
       0.69804488, 0.69804488, 0.69804488, 0.67640665, 0.67640665,
       0.67640665, 0.67640665, 0.65563302, 0.65563302, 0.65563302,
       0.65563302, 0.63570432, 0.63570432, 0.63570432, 0.63570432,
       0.61770755, 0.61770755, 0.61770755, 0.61770755, 0.60038962,
       0.60038962, 0.60038962, 0.60038962, 0.58782557, 0.58782557,
       0.58782557, 0.58782557, 0.57623676, 0.57623676, 0.57623676,
       0.57623676, 0.56979185, 0.56979185, 0.56979185, 0.56979185,
       0.56720324, 0.56720324, 0.56720324, 0.56720324, 0.56553241,
       0.56553241, 0.56553241, 0.56553241, 0.56556965, 0.56556965,
       0.56556965, 0.56556965, 0.56672103, 0.56672103, 0.56672103,
       0.56672103, 0.56770851, 0.56770851, 0.56770851, 0.56770851,
       0.56779669, 0.56779669, 0.56779669, 0.56779669, 0.56780547,
       0.56780547, 0.56780547, 0.56780547, 0.56792996, 0.56792996,
       0.56792996, 0.56792996, 0.56821566, 0.56821566, 0.56821566,
       0.56821566, 0.5685916 , 0.5685916 , 0.5685916 , 0.5685916 ,
       0.56888519, 0.56888519, 0.56888519, 0.56888519, 0.56910119,
       0.56910119, 0.56910119, 0.56910119, 0.56936231, 0.56936231,
       0.56936231, 0.56936231, 0.56991804, 0.56991804, 0.56991804,
       0.56991804, 0.57182047, 0.57182047, 0.57182047, 0.57182047,
       0.57885305, 0.57885305, 0.57885305, 0.57885305, 0.60219878,
       0.60219878, 0.60219878, 0.60219878, 0.66890255, 0.66890255,
       0.66890255, 0.66890255, 0.83282931, 0.83282931, 0.83282931,
       0.83282931, 1.18191186, 1.18191186, 1.18191186, 1.18191186,
       1.82871125, 1.82871125, 1.82871125, 1.82871125, 2.86090807,
       2.86090807, 2.86090807, 2.86090807, 3.85054369, 3.85054369,
       3.85054369, 3.85054369, 4.19989541, 4.19989541, 4.19989541,
       4.19989541, 3.86486856, 3.86486856, 3.86486856, 3.86486856,
       2.13052935, 2.13052935, 2.13052935, 2.13052935, 1.10421234,
       1.10421234, 1.10421234, 1.10421234, 1.0046868 , 1.0046868 ,
       1.0046868 , 1.0046868 , 1.00001224, 1.00001224, 1.00001224,
       1.00001224, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.36253533e-01, 1.36253533e-01, 1.36253533e-01, 1.36253533e-01,
       2.98133139e-01, 2.98133139e-01, 2.98133139e-01, 2.98133139e-01,
       5.02180164e-01, 5.02180164e-01, 5.02180164e-01, 5.02180164e-01,
       8.24685029e-01, 8.24685029e-01, 8.24685029e-01, 8.24685029e-01,
       1.26777639e+00, 1.26777639e+00, 1.26777639e+00, 1.26777639e+00,
       1.84570316e+00, 1.84570316e+00, 1.84570316e+00, 1.84570316e+00,
       2.55320788e+00, 2.55320788e+00, 2.55320788e+00, 2.55320788e+00,
       3.37646407e+00, 3.37646407e+00, 3.37646407e+00, 3.37646407e+00,
       4.29528509e+00, 4.29528509e+00, 4.29528509e+00, 4.29528509e+00,
       5.28957743e+00, 5.28957743e+00, 5.28957743e+00, 5.28957743e+00,
       6.34426536e+00, 6.34426536e+00, 6.34426536e+00, 6.34426536e+00,
       7.43855306e+00, 7.43855306e+00, 7.43855306e+00, 7.43855306e+00,
       8.54650989e+00, 8.54650989e+00, 8.54650989e+00, 8.54650989e+00,
       9.65778684e+00, 9.65778684e+00, 9.65778684e+00, 9.65778684e+00,
       1.07675433e+01, 1.07675433e+01, 1.07675433e+01, 1.07675433e+01,
       1.18732730e+01, 1.18732730e+01, 1.18732730e+01, 1.18732730e+01,
       1.29739395e+01, 1.29739395e+01, 1.29739395e+01, 1.29739395e+01,
       1.40664784e+01, 1.40664784e+01, 1.40664784e+01, 1.40664784e+01,
       1.51440272e+01, 1.51440272e+01, 1.51440272e+01, 1.51440272e+01,
       1.61942747e+01, 1.61942747e+01, 1.61942747e+01, 1.61942747e+01,
       1.71943313e+01, 1.71943313e+01, 1.71943313e+01, 1.71943313e+01,
       1.81102285e+01, 1.81102285e+01, 1.81102285e+01, 1.81102285e+01,
       1.88935753e+01, 1.88935753e+01, 1.88935753e+01, 1.88935753e+01,
       1.94958477e+01, 1.94958477e+01, 1.94958477e+01, 1.94958477e+01,
       1.98864185e+01, 1.98864185e+01, 1.98864185e+01, 1.98864185e+01,
       2.00798147e+01, 2.00798147e+01, 2.00798147e+01, 2.00798147e+01,
       2.01365297e+01, 2.01365297e+01, 2.01365297e+01, 2.01365297e+01,
       2.01309132e+01, 2.01309132e+01, 2.01309132e+01, 2.01309132e+01,
       2.00684530e+01, 2.00684530e+01, 2.00684530e+01, 2.00684530e+01,
       2.00289832e+01, 2.00289832e+01, 2.00289832e+01, 2.00289832e+01,
       2.00117538e+01, 2.00117538e+01, 2.00117538e+01, 2.00117538e+01,
       2.00007059e+01, 2.00007059e+01, 2.00007059e+01, 2.00007059e+01,
       1.99899662e+01, 1.99899662e+01, 1.99899662e+01, 1.99899662e+01,
       1.99747375e+01, 1.99747375e+01, 1.99747375e+01, 1.99747375e+01,
       1.99513167e+01, 1.99513167e+01, 1.99513167e+01, 1.99513167e+01,
       1.99258024e+01, 1.99258024e+01, 1.99258024e+01, 1.99258024e+01,
       1.99020913e+01, 1.99020913e+01, 1.99020913e+01, 1.99020913e+01,
       1.98796675e+01, 1.98796675e+01, 1.98796675e+01, 1.98796675e+01,
       1.98594450e+01, 1.98594450e+01, 1.98594450e+01, 1.98594450e+01,
       1.98414283e+01, 1.98414283e+01, 1.98414283e+01, 1.98414283e+01,
       1.98245672e+01, 1.98245672e+01, 1.98245672e+01, 1.98245672e+01,
       1.98089852e+01, 1.98089852e+01, 1.98089852e+01, 1.98089852e+01,
       1.97956031e+01, 1.97956031e+01, 1.97956031e+01, 1.97956031e+01,
       1.97837093e+01, 1.97837093e+01, 1.97837093e+01, 1.97837093e+01,
       1.97755943e+01, 1.97755943e+01, 1.97755943e+01, 1.97755943e+01,
       1.97672969e+01, 1.97672969e+01, 1.97672969e+01, 1.97672969e+01,
       1.97336516e+01, 1.97336516e+01, 1.97336516e+01, 1.97336516e+01,
       1.95824012e+01, 1.95824012e+01, 1.95824012e+01, 1.95824012e+01,
       1.89016608e+01, 1.89016608e+01, 1.89016608e+01, 1.89016608e+01,
       1.61684252e+01, 1.61684252e+01, 1.61684252e+01, 1.61684252e+01,
       8.15698720e+00, 8.15698720e+00, 8.15698720e+00, 8.15698720e+00,
       5.95654577e-01, 5.95654577e-01, 5.95654577e-01, 5.95654577e-01,
       3.94968248e-03, 3.94968248e-03, 3.94968248e-03, 3.94968248e-03,
       1.48333272e-06, 1.48333272e-06, 1.48333272e-06, 1.48333272e-06,
       2.26392355e-10, 2.26392355e-10, 2.26392355e-10, 2.26392355e-10,
       3.54863604e-14, 3.54863604e-14, 3.54863604e-14, 3.54863604e-14,
       5.67765305e-18, 5.67765305e-18, 5.67765305e-18, 5.67765305e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.94915923e+02, 9.94915923e+02, 9.94915923e+02, 9.94915923e+02,
       9.88901826e+02, 9.88901826e+02, 9.88901826e+02, 9.88901826e+02,
       9.81366024e+02, 9.81366024e+02, 9.81366024e+02, 9.81366024e+02,
       9.69562839e+02, 9.69562839e+02, 9.69562839e+02, 9.69562839e+02,
       9.53547612e+02, 9.53547612e+02, 9.53547612e+02, 9.53547612e+02,
       9.33005104e+02, 9.33005104e+02, 9.33005104e+02, 9.33005104e+02,
       9.08377668e+02, 9.08377668e+02, 9.08377668e+02, 9.08377668e+02,
       8.80425926e+02, 8.80425926e+02, 8.80425926e+02, 8.80425926e+02,
       8.50101783e+02, 8.50101783e+02, 8.50101783e+02, 8.50101783e+02,
       8.18296299e+02, 8.18296299e+02, 8.18296299e+02, 8.18296299e+02,
       7.85675395e+02, 7.85675395e+02, 7.85675395e+02, 7.85675395e+02,
       7.52902859e+02, 7.52902859e+02, 7.52902859e+02, 7.52902859e+02,
       7.20897155e+02, 7.20897155e+02, 7.20897155e+02, 7.20897155e+02,
       6.90007959e+02, 6.90007959e+02, 6.90007959e+02, 6.90007959e+02,
       6.60368829e+02, 6.60368829e+02, 6.60368829e+02, 6.60368829e+02,
       6.31916337e+02, 6.31916337e+02, 6.31916337e+02, 6.31916337e+02,
       6.04645783e+02, 6.04645783e+02, 6.04645783e+02, 6.04645783e+02,
       5.78584743e+02, 5.78584743e+02, 5.78584743e+02, 5.78584743e+02,
       5.53823640e+02, 5.53823640e+02, 5.53823640e+02, 5.53823640e+02,
       5.30581052e+02, 5.30581052e+02, 5.30581052e+02, 5.30581052e+02,
       5.09216724e+02, 5.09216724e+02, 5.09216724e+02, 5.09216724e+02,
       4.90322663e+02, 4.90322663e+02, 4.90322663e+02, 4.90322663e+02,
       4.74628094e+02, 4.74628094e+02, 4.74628094e+02, 4.74628094e+02,
       4.62859662e+02, 4.62859662e+02, 4.62859662e+02, 4.62859662e+02,
       4.55372213e+02, 4.55372213e+02, 4.55372213e+02, 4.55372213e+02,
       4.51700059e+02, 4.51700059e+02, 4.51700059e+02, 4.51700059e+02,
       4.50624155e+02, 4.50624155e+02, 4.50624155e+02, 4.50624155e+02,
       4.50729577e+02, 4.50729577e+02, 4.50729577e+02, 4.50729577e+02,
       4.51910877e+02, 4.51910877e+02, 4.51910877e+02, 4.51910877e+02,
       4.52662577e+02, 4.52662577e+02, 4.52662577e+02, 4.52662577e+02,
       4.52987231e+02, 4.52987231e+02, 4.52987231e+02, 4.52987231e+02,
       4.53194374e+02, 4.53194374e+02, 4.53194374e+02, 4.53194374e+02,
       4.53400795e+02, 4.53400795e+02, 4.53400795e+02, 4.53400795e+02,
       4.53694238e+02, 4.53694238e+02, 4.53694238e+02, 4.53694238e+02,
       4.54143778e+02, 4.54143778e+02, 4.54143778e+02, 4.54143778e+02,
       4.54633274e+02, 4.54633274e+02, 4.54633274e+02, 4.54633274e+02,
       4.55075065e+02, 4.55075065e+02, 4.55075065e+02, 4.55075065e+02,
       4.55489841e+02, 4.55489841e+02, 4.55489841e+02, 4.55489841e+02,
       4.55884753e+02, 4.55884753e+02, 4.55884753e+02, 4.55884753e+02,
       4.56250604e+02, 4.56250604e+02, 4.56250604e+02, 4.56250604e+02,
       4.56569475e+02, 4.56569475e+02, 4.56569475e+02, 4.56569475e+02,
       4.56850195e+02, 4.56850195e+02, 4.56850195e+02, 4.56850195e+02,
       4.57127711e+02, 4.57127711e+02, 4.57127711e+02, 4.57127711e+02,
       4.57412507e+02, 4.57412507e+02, 4.57412507e+02, 4.57412507e+02,
       4.57820992e+02, 4.57820992e+02, 4.57820992e+02, 4.57820992e+02,
       4.58356923e+02, 4.58356923e+02, 4.58356923e+02, 4.58356923e+02,
       4.57913485e+02, 4.57913485e+02, 4.57913485e+02, 4.57913485e+02,
       4.51520684e+02, 4.51520684e+02, 4.51520684e+02, 4.51520684e+02,
       4.16998340e+02, 4.16998340e+02, 4.16998340e+02, 4.16998340e+02,
       2.90460159e+02, 2.90460159e+02, 2.90460159e+02, 2.90460159e+02,
       7.32958303e+01, 7.32958303e+01, 7.32958303e+01, 7.32958303e+01,
       1.83484411e+00, 1.83484411e+00, 1.83484411e+00, 1.83484411e+00,
       1.17220052e-02, 1.17220052e-02, 1.17220052e-02, 1.17220052e-02,
       1.00001751e-02, 1.00001751e-02, 1.00001751e-02, 1.00001751e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99426946, 0.99426946, 0.99426946, 0.99426946, 0.98811149,
       0.98811149, 0.98811149, 0.98811149, 0.98107232, 0.98107232,
       0.98107232, 0.98107232, 0.97045921, 0.97045921, 0.97045921,
       0.97045921, 0.95682737, 0.95682737, 0.95682737, 0.95682737,
       0.94004521, 0.94004521, 0.94004521, 0.94004521, 0.92060887,
       0.92060887, 0.92060887, 0.92060887, 0.89908557, 0.89908557,
       0.89908557, 0.89908557, 0.87609083, 0.87609083, 0.87609083,
       0.87609083, 0.85212027, 0.85212027, 0.85212027, 0.85212027,
       0.82756445, 0.82756445, 0.82756445, 0.82756445, 0.80306007,
       0.80306007, 0.80306007, 0.80306007, 0.77900808, 0.77900808,
       0.77900808, 0.77900808, 0.75557607, 0.75557607, 0.75557607,
       0.75557607, 0.73277632, 0.73277632, 0.73277632, 0.73277632,
       0.71060835, 0.71060835, 0.71060835, 0.71060835, 0.68909145,
       0.68909145, 0.68909145, 0.68909145, 0.66826654, 0.66826654,
       0.66826654, 0.66826654, 0.64834169, 0.64834169, 0.64834169,
       0.64834169, 0.62923142, 0.62923142, 0.62923142, 0.62923142,
       0.61227339, 0.61227339, 0.61227339, 0.61227339, 0.5959292 ,
       0.5959292 , 0.5959292 , 0.5959292 , 0.58448008, 0.58448008,
       0.58448008, 0.58448008, 0.57434928, 0.57434928, 0.57434928,
       0.57434928, 0.56859881, 0.56859881, 0.56859881, 0.56859881,
       0.56684346, 0.56684346, 0.56684346, 0.56684346, 0.56569203,
       0.56569203, 0.56569203, 0.56569203, 0.56583937, 0.56583937,
       0.56583937, 0.56583937, 0.56683174, 0.56683174, 0.56683174,
       0.56683174, 0.56774694, 0.56774694, 0.56774694, 0.56774694,
       0.56791077, 0.56791077, 0.56791077, 0.56791077, 0.56792256,
       0.56792256, 0.56792256, 0.56792256, 0.56800423, 0.56800423,
       0.56800423, 0.56800423, 0.56828226, 0.56828226, 0.56828226,
       0.56828226, 0.56872634, 0.56872634, 0.56872634, 0.56872634,
       0.5690527 , 0.5690527 , 0.5690527 , 0.5690527 , 0.56926962,
       0.56926962, 0.56926962, 0.56926962, 0.56949685, 0.56949685,
       0.56949685, 0.56949685, 0.569897  , 0.569897  , 0.569897  ,
       0.569897  , 0.57117768, 0.57117768, 0.57117768, 0.57117768,
       0.57592859, 0.57592859, 0.57592859, 0.57592859, 0.59209704,
       0.59209704, 0.59209704, 0.59209704, 0.63988261, 0.63988261,
       0.63988261, 0.63988261, 0.76179894, 0.76179894, 0.76179894,
       0.76179894, 1.03182564, 1.03182564, 1.03182564, 1.03182564,
       1.55348275, 1.55348275, 1.55348275, 1.55348275, 2.43068895,
       2.43068895, 2.43068895, 2.43068895, 3.55229101, 3.55229101,
       3.55229101, 3.55229101, 4.16458528, 4.16458528, 4.16458528,
       4.16458528, 4.1800089 , 4.1800089 , 4.1800089 , 4.1800089 ,
       3.07676045, 3.07676045, 3.07676045, 3.07676045, 1.34520374,
       1.34520374, 1.34520374, 1.34520374, 1.02204848, 1.02204848,
       1.02204848, 1.02204848, 1.00037232, 1.00037232, 1.00037232,
       1.00037232, 1.00000011, 1.00000011, 1.00000011, 1.00000011,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.14957957e-01, 2.14957957e-01, 2.14957957e-01, 2.14957957e-01,
       4.47108627e-01, 4.47108627e-01, 4.47108627e-01, 4.47108627e-01,
       7.13561081e-01, 7.13561081e-01, 7.13561081e-01, 7.13561081e-01,
       1.11872396e+00, 1.11872396e+00, 1.11872396e+00, 1.11872396e+00,
       1.64431395e+00, 1.64431395e+00, 1.64431395e+00, 1.64431395e+00,
       2.29983169e+00, 2.29983169e+00, 2.29983169e+00, 2.29983169e+00,
       3.07089753e+00, 3.07089753e+00, 3.07089753e+00, 3.07089753e+00,
       3.94015044e+00, 3.94015044e+00, 3.94015044e+00, 3.94015044e+00,
       4.88739659e+00, 4.88739659e+00, 4.88739659e+00, 4.88739659e+00,
       5.89618557e+00, 5.89618557e+00, 5.89618557e+00, 5.89618557e+00,
       6.95255343e+00, 6.95255343e+00, 6.95255343e+00, 6.95255343e+00,
       8.02806459e+00, 8.02806459e+00, 8.02806459e+00, 8.02806459e+00,
       9.11164658e+00, 9.11164658e+00, 9.11164658e+00, 9.11164658e+00,
       1.01949310e+01, 1.01949310e+01, 1.01949310e+01, 1.01949310e+01,
       1.12753220e+01, 1.12753220e+01, 1.12753220e+01, 1.12753220e+01,
       1.23519886e+01, 1.23519886e+01, 1.23519886e+01, 1.23519886e+01,
       1.34230468e+01, 1.34230468e+01, 1.34230468e+01, 1.34230468e+01,
       1.44847959e+01, 1.44847959e+01, 1.44847959e+01, 1.44847959e+01,
       1.55291038e+01, 1.55291038e+01, 1.55291038e+01, 1.55291038e+01,
       1.65418026e+01, 1.65418026e+01, 1.65418026e+01, 1.65418026e+01,
       1.74975626e+01, 1.74975626e+01, 1.74975626e+01, 1.74975626e+01,
       1.83602647e+01, 1.83602647e+01, 1.83602647e+01, 1.83602647e+01,
       1.90815134e+01, 1.90815134e+01, 1.90815134e+01, 1.90815134e+01,
       1.96172465e+01, 1.96172465e+01, 1.96172465e+01, 1.96172465e+01,
       1.99474835e+01, 1.99474835e+01, 1.99474835e+01, 1.99474835e+01,
       2.00981416e+01, 2.00981416e+01, 2.00981416e+01, 2.00981416e+01,
       2.01352473e+01, 2.01352473e+01, 2.01352473e+01, 2.01352473e+01,
       2.01181972e+01, 2.01181972e+01, 2.01181972e+01, 2.01181972e+01,
       2.00565244e+01, 2.00565244e+01, 2.00565244e+01, 2.00565244e+01,
       2.00240733e+01, 2.00240733e+01, 2.00240733e+01, 2.00240733e+01,
       2.00089626e+01, 2.00089626e+01, 2.00089626e+01, 2.00089626e+01,
       1.99979297e+01, 1.99979297e+01, 1.99979297e+01, 1.99979297e+01,
       1.99863891e+01, 1.99863891e+01, 1.99863891e+01, 1.99863891e+01,
       1.99693717e+01, 1.99693717e+01, 1.99693717e+01, 1.99693717e+01,
       1.99445026e+01, 1.99445026e+01, 1.99445026e+01, 1.99445026e+01,
       1.99195116e+01, 1.99195116e+01, 1.99195116e+01, 1.99195116e+01,
       1.98964046e+01, 1.98964046e+01, 1.98964046e+01, 1.98964046e+01,
       1.98743565e+01, 1.98743565e+01, 1.98743565e+01, 1.98743565e+01,
       1.98541585e+01, 1.98541585e+01, 1.98541585e+01, 1.98541585e+01,
       1.98364920e+01, 1.98364920e+01, 1.98364920e+01, 1.98364920e+01,
       1.98206754e+01, 1.98206754e+01, 1.98206754e+01, 1.98206754e+01,
       1.98057571e+01, 1.98057571e+01, 1.98057571e+01, 1.98057571e+01,
       1.97923828e+01, 1.97923828e+01, 1.97923828e+01, 1.97923828e+01,
       1.97808552e+01, 1.97808552e+01, 1.97808552e+01, 1.97808552e+01,
       1.97709468e+01, 1.97709468e+01, 1.97709468e+01, 1.97709468e+01,
       1.97654812e+01, 1.97654812e+01, 1.97654812e+01, 1.97654812e+01,
       1.97477731e+01, 1.97477731e+01, 1.97477731e+01, 1.97477731e+01,
       1.96722020e+01, 1.96722020e+01, 1.96722020e+01, 1.96722020e+01,
       1.93272540e+01, 1.93272540e+01, 1.93272540e+01, 1.93272540e+01,
       1.78485419e+01, 1.78485419e+01, 1.78485419e+01, 1.78485419e+01,
       1.26228462e+01, 1.26228462e+01, 1.26228462e+01, 1.26228462e+01,
       2.71270096e+00, 2.71270096e+00, 2.71270096e+00, 2.71270096e+00,
       5.37681970e-02, 5.37681970e-02, 5.37681970e-02, 5.37681970e-02,
       7.39978310e-05, 7.39978310e-05, 7.39978310e-05, 7.39978310e-05,
       1.26879911e-08, 1.26879911e-08, 1.26879911e-08, 1.26879911e-08,
       2.06933606e-12, 2.06933606e-12, 2.06933606e-12, 2.06933606e-12,
       3.25161787e-16, 3.25161787e-16, 3.25161787e-16, 3.25161787e-16,
       5.40240794e-20, 5.40240794e-20, 5.40240794e-20, 5.40240794e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.91991427e+02, 9.91991427e+02, 9.91991427e+02, 9.91991427e+02,
       9.83398788e+02, 9.83398788e+02, 9.83398788e+02, 9.83398788e+02,
       9.73613696e+02, 9.73613696e+02, 9.73613696e+02, 9.73613696e+02,
       9.58908504e+02, 9.58908504e+02, 9.58908504e+02, 9.58908504e+02,
       9.40117970e+02, 9.40117970e+02, 9.40117970e+02, 9.40117970e+02,
       9.17130377e+02, 9.17130377e+02, 9.17130377e+02, 9.17130377e+02,
       8.90710253e+02, 8.90710253e+02, 8.90710253e+02, 8.90710253e+02,
       8.61710068e+02, 8.61710068e+02, 8.61710068e+02, 8.61710068e+02,
       8.31030081e+02, 8.31030081e+02, 8.31030081e+02, 8.31030081e+02,
       7.99387307e+02, 7.99387307e+02, 7.99387307e+02, 7.99387307e+02,
       7.67330949e+02, 7.67330949e+02, 7.67330949e+02, 7.67330949e+02,
       7.35690337e+02, 7.35690337e+02, 7.35690337e+02, 7.35690337e+02,
       7.05034804e+02, 7.05034804e+02, 7.05034804e+02, 7.05034804e+02,
       6.75527261e+02, 6.75527261e+02, 6.75527261e+02, 6.75527261e+02,
       6.47167439e+02, 6.47167439e+02, 6.47167439e+02, 6.47167439e+02,
       6.19930743e+02, 6.19930743e+02, 6.19930743e+02, 6.19930743e+02,
       5.93813015e+02, 5.93813015e+02, 5.93813015e+02, 5.93813015e+02,
       5.68863894e+02, 5.68863894e+02, 5.68863894e+02, 5.68863894e+02,
       5.45199993e+02, 5.45199993e+02, 5.45199993e+02, 5.45199993e+02,
       5.23075190e+02, 5.23075190e+02, 5.23075190e+02, 5.23075190e+02,
       5.02889600e+02, 5.02889600e+02, 5.02889600e+02, 5.02889600e+02,
       4.85266432e+02, 4.85266432e+02, 4.85266432e+02, 4.85266432e+02,
       4.70932260e+02, 4.70932260e+02, 4.70932260e+02, 4.70932260e+02,
       4.60518670e+02, 4.60518670e+02, 4.60518670e+02, 4.60518670e+02,
       4.54205957e+02, 4.54205957e+02, 4.54205957e+02, 4.54205957e+02,
       4.51352380e+02, 4.51352380e+02, 4.51352380e+02, 4.51352380e+02,
       4.50649917e+02, 4.50649917e+02, 4.50649917e+02, 4.50649917e+02,
       4.50971173e+02, 4.50971173e+02, 4.50971173e+02, 4.50971173e+02,
       4.52135940e+02, 4.52135940e+02, 4.52135940e+02, 4.52135940e+02,
       4.52753679e+02, 4.52753679e+02, 4.52753679e+02, 4.52753679e+02,
       4.53041751e+02, 4.53041751e+02, 4.53041751e+02, 4.53041751e+02,
       4.53249156e+02, 4.53249156e+02, 4.53249156e+02, 4.53249156e+02,
       4.53466954e+02, 4.53466954e+02, 4.53466954e+02, 4.53466954e+02,
       4.53791825e+02, 4.53791825e+02, 4.53791825e+02, 4.53791825e+02,
       4.54268545e+02, 4.54268545e+02, 4.54268545e+02, 4.54268545e+02,
       4.54750752e+02, 4.54750752e+02, 4.54750752e+02, 4.54750752e+02,
       4.55192196e+02, 4.55192196e+02, 4.55192196e+02, 4.55192196e+02,
       4.55599122e+02, 4.55599122e+02, 4.55599122e+02, 4.55599122e+02,
       4.55975922e+02, 4.55975922e+02, 4.55975922e+02, 4.55975922e+02,
       4.56329221e+02, 4.56329221e+02, 4.56329221e+02, 4.56329221e+02,
       4.56648137e+02, 4.56648137e+02, 4.56648137e+02, 4.56648137e+02,
       4.56923106e+02, 4.56923106e+02, 4.56923106e+02, 4.56923106e+02,
       4.57181465e+02, 4.57181465e+02, 4.57181465e+02, 4.57181465e+02,
       4.57438180e+02, 4.57438180e+02, 4.57438180e+02, 4.57438180e+02,
       4.57763252e+02, 4.57763252e+02, 4.57763252e+02, 4.57763252e+02,
       4.58282193e+02, 4.58282193e+02, 4.58282193e+02, 4.58282193e+02,
       4.58443493e+02, 4.58443493e+02, 4.58443493e+02, 4.58443493e+02,
       4.55958160e+02, 4.55958160e+02, 4.55958160e+02, 4.55958160e+02,
       4.38959204e+02, 4.38959204e+02, 4.38959204e+02, 4.38959204e+02,
       3.65073159e+02, 3.65073159e+02, 3.65073159e+02, 3.65073159e+02,
       1.68405632e+02, 1.68405632e+02, 1.68405632e+02, 1.68405632e+02,
       1.44222649e+01, 1.44222649e+01, 1.44222649e+01, 1.44222649e+01,
       7.69577756e-02, 7.69577756e-02, 7.69577756e-02, 7.69577756e-02,
       1.00097351e-02, 1.00097351e-02, 1.00097351e-02, 1.00097351e-02,
       1.00000015e-02, 1.00000015e-02, 1.00000015e-02, 1.00000015e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99133911, 0.99133911, 0.99133911, 0.99133911, 0.98292058,
       0.98292058, 0.98292058, 0.98292058, 0.97419061, 0.97419061,
       0.97419061, 0.97419061, 0.96144618, 0.96144618, 0.96144618,
       0.96144618, 0.94597586, 0.94597586, 0.94597586, 0.94597586,
       0.9276744 , 0.9276744 , 0.9276744 , 0.9276744 , 0.90721706,
       0.90721706, 0.90721706, 0.90721706, 0.88515443, 0.88515443,
       0.88515443, 0.88515443, 0.86202321, 0.86202321, 0.86202321,
       0.86202321, 0.83819213, 0.83819213, 0.83819213, 0.83819213,
       0.8141677 , 0.8141677 , 0.8141677 , 0.8141677 , 0.79048162,
       0.79048162, 0.79048162, 0.79048162, 0.76730128, 0.76730128,
       0.76730128, 0.76730128, 0.74474398, 0.74474398, 0.74474398,
       0.74474398, 0.72277684, 0.72277684, 0.72277684, 0.72277684,
       0.70140995, 0.70140995, 0.70140995, 0.70140995, 0.68067678,
       0.68067678, 0.68067678, 0.68067678, 0.66062128, 0.66062128,
       0.66062128, 0.66062128, 0.64151926, 0.64151926, 0.64151926,
       0.64151926, 0.62319637, 0.62319637, 0.62319637, 0.62319637,
       0.60726225, 0.60726225, 0.60726225, 0.60726225, 0.59190903,
       0.59190903, 0.59190903, 0.59190903, 0.58148652, 0.58148652,
       0.58148652, 0.58148652, 0.57278527, 0.57278527, 0.57278527,
       0.57278527, 0.56769271, 0.56769271, 0.56769271, 0.56769271,
       0.56654927, 0.56654927, 0.56654927, 0.56654927, 0.56583728,
       0.56583728, 0.56583728, 0.56583728, 0.56616565, 0.56616565,
       0.56616565, 0.56616565, 0.56694844, 0.56694844, 0.56694844,
       0.56694844, 0.56774994, 0.56774994, 0.56774994, 0.56774994,
       0.56799881, 0.56799881, 0.56799881, 0.56799881, 0.56803723,
       0.56803723, 0.56803723, 0.56803723, 0.56811091, 0.56811091,
       0.56811091, 0.56811091, 0.56837366, 0.56837366, 0.56837366,
       0.56837366, 0.56883911, 0.56883911, 0.56883911, 0.56883911,
       0.56920333, 0.56920333, 0.56920333, 0.56920333, 0.56943051,
       0.56943051, 0.56943051, 0.56943051, 0.56964182, 0.56964182,
       0.56964182, 0.56964182, 0.56994366, 0.56994366, 0.56994366,
       0.56994366, 0.57080637, 0.57080637, 0.57080637, 0.57080637,
       0.57400236, 0.57400236, 0.57400236, 0.57400236, 0.58513972,
       0.58513972, 0.58513972, 0.58513972, 0.61910673, 0.61910673,
       0.61910673, 0.61910673, 0.70892127, 0.70892127, 0.70892127,
       0.70892127, 0.91548374, 0.91548374, 0.91548374, 0.91548374,
       1.33078894, 1.33078894, 1.33078894, 1.33078894, 2.06133491,
       2.06133491, 2.06133491, 2.06133491, 3.15181689, 3.15181689,
       3.15181689, 3.15181689, 4.02701618, 4.02701618, 4.02701618,
       4.02701618, 4.28308718, 4.28308718, 4.28308718, 4.28308718,
       3.81910697, 3.81910697, 3.81910697, 3.81910697, 1.98110507,
       1.98110507, 1.98110507, 1.98110507, 1.08418873, 1.08418873,
       1.08418873, 1.08418873, 1.00343534, 1.00343534, 1.00343534,
       1.00343534, 1.00000606, 1.00000606, 1.00000606, 1.00000606,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.25290090e-01, 3.25290090e-01, 3.25290090e-01, 3.25290090e-01,
       6.43847125e-01, 6.43847125e-01, 6.43847125e-01, 6.43847125e-01,
       9.75722154e-01, 9.75722154e-01, 9.75722154e-01, 9.75722154e-01,
       1.46557297e+00, 1.46557297e+00, 1.46557297e+00, 1.46557297e+00,
       2.06705518e+00, 2.06705518e+00, 2.06705518e+00, 2.06705518e+00,
       2.78907819e+00, 2.78907819e+00, 2.78907819e+00, 2.78907819e+00,
       3.60976834e+00, 3.60976834e+00, 3.60976834e+00, 3.60976834e+00,
       4.51162281e+00, 4.51162281e+00, 4.51162281e+00, 4.51162281e+00,
       5.47661724e+00, 5.47661724e+00, 5.47661724e+00, 5.47661724e+00,
       6.49264130e+00, 6.49264130e+00, 6.49264130e+00, 6.49264130e+00,
       7.53660887e+00, 7.53660887e+00, 7.53660887e+00, 7.53660887e+00,
       8.59198431e+00, 8.59198431e+00, 8.59198431e+00, 8.59198431e+00,
       9.64916487e+00, 9.64916487e+00, 9.64916487e+00, 9.64916487e+00,
       1.07051453e+01, 1.07051453e+01, 1.07051453e+01, 1.07051453e+01,
       1.17579310e+01, 1.17579310e+01, 1.17579310e+01, 1.17579310e+01,
       1.28067954e+01, 1.28067954e+01, 1.28067954e+01, 1.28067954e+01,
       1.38494448e+01, 1.38494448e+01, 1.38494448e+01, 1.38494448e+01,
       1.48812924e+01, 1.48812924e+01, 1.48812924e+01, 1.48812924e+01,
       1.58928454e+01, 1.58928454e+01, 1.58928454e+01, 1.58928454e+01,
       1.68680207e+01, 1.68680207e+01, 1.68680207e+01, 1.68680207e+01,
       1.77790951e+01, 1.77790951e+01, 1.77790951e+01, 1.77790951e+01,
       1.85881715e+01, 1.85881715e+01, 1.85881715e+01, 1.85881715e+01,
       1.92479302e+01, 1.92479302e+01, 1.92479302e+01, 1.92479302e+01,
       1.97200343e+01, 1.97200343e+01, 1.97200343e+01, 1.97200343e+01,
       1.99952626e+01, 1.99952626e+01, 1.99952626e+01, 1.99952626e+01,
       2.01098122e+01, 2.01098122e+01, 2.01098122e+01, 2.01098122e+01,
       2.01323555e+01, 2.01323555e+01, 2.01323555e+01, 2.01323555e+01,
       2.01039208e+01, 2.01039208e+01, 2.01039208e+01, 2.01039208e+01,
       2.00468661e+01, 2.00468661e+01, 2.00468661e+01, 2.00468661e+01,
       2.00198405e+01, 2.00198405e+01, 2.00198405e+01, 2.00198405e+01,
       2.00061051e+01, 2.00061051e+01, 2.00061051e+01, 2.00061051e+01,
       1.99950115e+01, 1.99950115e+01, 1.99950115e+01, 1.99950115e+01,
       1.99825634e+01, 1.99825634e+01, 1.99825634e+01, 1.99825634e+01,
       1.99636417e+01, 1.99636417e+01, 1.99636417e+01, 1.99636417e+01,
       1.99376749e+01, 1.99376749e+01, 1.99376749e+01, 1.99376749e+01,
       1.99131873e+01, 1.99131873e+01, 1.99131873e+01, 1.99131873e+01,
       1.98905974e+01, 1.98905974e+01, 1.98905974e+01, 1.98905974e+01,
       1.98692438e+01, 1.98692438e+01, 1.98692438e+01, 1.98692438e+01,
       1.98493625e+01, 1.98493625e+01, 1.98493625e+01, 1.98493625e+01,
       1.98317370e+01, 1.98317370e+01, 1.98317370e+01, 1.98317370e+01,
       1.98164911e+01, 1.98164911e+01, 1.98164911e+01, 1.98164911e+01,
       1.98024735e+01, 1.98024735e+01, 1.98024735e+01, 1.98024735e+01,
       1.97894710e+01, 1.97894710e+01, 1.97894710e+01, 1.97894710e+01,
       1.97780897e+01, 1.97780897e+01, 1.97780897e+01, 1.97780897e+01,
       1.97674568e+01, 1.97674568e+01, 1.97674568e+01, 1.97674568e+01,
       1.97612054e+01, 1.97612054e+01, 1.97612054e+01, 1.97612054e+01,
       1.97524408e+01, 1.97524408e+01, 1.97524408e+01, 1.97524408e+01,
       1.97136422e+01, 1.97136422e+01, 1.97136422e+01, 1.97136422e+01,
       1.95403967e+01, 1.95403967e+01, 1.95403967e+01, 1.95403967e+01,
       1.87695037e+01, 1.87695037e+01, 1.87695037e+01, 1.87695037e+01,
       1.57483105e+01, 1.57483105e+01, 1.57483105e+01, 1.57483105e+01,
       7.26747736e+00, 7.26747736e+00, 7.26747736e+00, 7.26747736e+00,
       4.38929043e-01, 4.38929043e-01, 4.38929043e-01, 4.38929043e-01,
       2.34025635e-03, 2.34025635e-03, 2.34025635e-03, 2.34025635e-03,
       7.25432818e-07, 7.25432818e-07, 7.25432818e-07, 7.25432818e-07,
       1.11193400e-10, 1.11193400e-10, 1.11193400e-10, 1.11193400e-10,
       1.76869480e-14, 1.76869480e-14, 1.76869480e-14, 1.76869480e-14,
       2.85535124e-18, 2.85535124e-18, 2.85535124e-18, 2.85535124e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87906280e+02, 9.87906280e+02, 9.87906280e+02, 9.87906280e+02,
       9.76174941e+02, 9.76174941e+02, 9.76174941e+02, 9.76174941e+02,
       9.64072771e+02, 9.64072771e+02, 9.64072771e+02, 9.64072771e+02,
       9.46471139e+02, 9.46471139e+02, 9.46471139e+02, 9.46471139e+02,
       9.25234369e+02, 9.25234369e+02, 9.25234369e+02, 9.25234369e+02,
       9.00287177e+02, 9.00287177e+02, 9.00287177e+02, 9.00287177e+02,
       8.72631649e+02, 8.72631649e+02, 8.72631649e+02, 8.72631649e+02,
       8.43081763e+02, 8.43081763e+02, 8.43081763e+02, 8.43081763e+02,
       8.12413334e+02, 8.12413334e+02, 8.12413334e+02, 8.12413334e+02,
       7.81158038e+02, 7.81158038e+02, 7.81158038e+02, 7.81158038e+02,
       7.49976361e+02, 7.49976361e+02, 7.49976361e+02, 7.49976361e+02,
       7.19607955e+02, 7.19607955e+02, 7.19607955e+02, 7.19607955e+02,
       6.90244348e+02, 6.90244348e+02, 6.90244348e+02, 6.90244348e+02,
       6.62006070e+02, 6.62006070e+02, 6.62006070e+02, 6.62006070e+02,
       6.34835316e+02, 6.34835316e+02, 6.34835316e+02, 6.34835316e+02,
       6.08723776e+02, 6.08723776e+02, 6.08723776e+02, 6.08723776e+02,
       5.83682527e+02, 5.83682527e+02, 5.83682527e+02, 5.83682527e+02,
       5.59779886e+02, 5.59779886e+02, 5.59779886e+02, 5.59779886e+02,
       5.37159931e+02, 5.37159931e+02, 5.37159931e+02, 5.37159931e+02,
       5.16112600e+02, 5.16112600e+02, 5.16112600e+02, 5.16112600e+02,
       4.97076250e+02, 4.97076250e+02, 4.97076250e+02, 4.97076250e+02,
       4.80695875e+02, 4.80695875e+02, 4.80695875e+02, 4.80695875e+02,
       4.67679348e+02, 4.67679348e+02, 4.67679348e+02, 4.67679348e+02,
       4.58546259e+02, 4.58546259e+02, 4.58546259e+02, 4.58546259e+02,
       4.53296009e+02, 4.53296009e+02, 4.53296009e+02, 4.53296009e+02,
       4.51129021e+02, 4.51129021e+02, 4.51129021e+02, 4.51129021e+02,
       4.50704444e+02, 4.50704444e+02, 4.50704444e+02, 4.50704444e+02,
       4.51242012e+02, 4.51242012e+02, 4.51242012e+02, 4.51242012e+02,
       4.52320289e+02, 4.52320289e+02, 4.52320289e+02, 4.52320289e+02,
       4.52832280e+02, 4.52832280e+02, 4.52832280e+02, 4.52832280e+02,
       4.53095183e+02, 4.53095183e+02, 4.53095183e+02, 4.53095183e+02,
       4.53305822e+02, 4.53305822e+02, 4.53305822e+02, 4.53305822e+02,
       4.53541196e+02, 4.53541196e+02, 4.53541196e+02, 4.53541196e+02,
       4.53899663e+02, 4.53899663e+02, 4.53899663e+02, 4.53899663e+02,
       4.54393535e+02, 4.54393535e+02, 4.54393535e+02, 4.54393535e+02,
       4.54864936e+02, 4.54864936e+02, 4.54864936e+02, 4.54864936e+02,
       4.55303481e+02, 4.55303481e+02, 4.55303481e+02, 4.55303481e+02,
       4.55707477e+02, 4.55707477e+02, 4.55707477e+02, 4.55707477e+02,
       4.56071530e+02, 4.56071530e+02, 4.56071530e+02, 4.56071530e+02,
       4.56406325e+02, 4.56406325e+02, 4.56406325e+02, 4.56406325e+02,
       4.56717719e+02, 4.56717719e+02, 4.56717719e+02, 4.56717719e+02,
       4.56992693e+02, 4.56992693e+02, 4.56992693e+02, 4.56992693e+02,
       4.57237821e+02, 4.57237821e+02, 4.57237821e+02, 4.57237821e+02,
       4.57481191e+02, 4.57481191e+02, 4.57481191e+02, 4.57481191e+02,
       4.57744387e+02, 4.57744387e+02, 4.57744387e+02, 4.57744387e+02,
       4.58159054e+02, 4.58159054e+02, 4.58159054e+02, 4.58159054e+02,
       4.58594305e+02, 4.58594305e+02, 4.58594305e+02, 4.58594305e+02,
       4.57858557e+02, 4.57858557e+02, 4.57858557e+02, 4.57858557e+02,
       4.50044024e+02, 4.50044024e+02, 4.50044024e+02, 4.50044024e+02,
       4.10501297e+02, 4.10501297e+02, 4.10501297e+02, 4.10501297e+02,
       2.72947363e+02, 2.72947363e+02, 2.72947363e+02, 2.72947363e+02,
       6.00463556e+01, 6.00463556e+01, 6.00463556e+01, 6.00463556e+01,
       1.21367312e+00, 1.21367312e+00, 1.21367312e+00, 1.21367312e+00,
       1.08313285e-02, 1.08313285e-02, 1.08313285e-02, 1.08313285e-02,
       1.00000857e-02, 1.00000857e-02, 1.00000857e-02, 1.00000857e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_rusanov
{'none_hll': [{'rho': array([0.96262329, 0.96262329, 0.96262329, 0.96262329, 0.95292015,
       0.95292015, 0.95292015, 0.95292015, 0.94187655, 0.94187655,
       0.94187655, 0.94187655, 0.92958523, 0.92958523, 0.92958523,
       0.92958523, 0.91614889, 0.91614889, 0.91614889, 0.91614889,
       0.9016891 , 0.9016891 , 0.9016891 , 0.9016891 , 0.88633863,
       0.88633863, 0.88633863, 0.88633863, 0.87023469, 0.87023469,
       0.87023469, 0.87023469, 0.85351349, 0.85351349, 0.85351349,
       0.85351349, 0.8363065 , 0.8363065 , 0.8363065 , 0.8363065 ,
       0.81873804, 0.81873804, 0.81873804, 0.81873804, 0.80092415,
       0.80092415, 0.80092415, 0.80092415, 0.78297243, 0.78297243,
       0.78297243, 0.78297243, 0.76498267, 0.76498267, 0.76498267,
       0.76498267, 0.74704803, 0.74704803, 0.74704803, 0.74704803,
       0.72925675, 0.72925675, 0.72925675, 0.72925675, 0.71169435,
       0.71169435, 0.71169435, 0.71169435, 0.69444628, 0.69444628,
       0.69444628, 0.69444628, 0.6776013 , 0.6776013 , 0.6776013 ,
       0.6776013 , 0.66125559, 0.66125559, 0.66125559, 0.66125559,
       0.64551785, 0.64551785, 0.64551785, 0.64551785, 0.63051555,
       0.63051555, 0.63051555, 0.63051555, 0.61640212, 0.61640212,
       0.61640212, 0.61640212, 0.6033641 , 0.6033641 , 0.6033641 ,
       0.6033641 , 0.59162547, 0.59162547, 0.59162547, 0.59162547,
       0.58144321, 0.58144321, 0.58144321, 0.58144321, 0.57308387,
       0.57308387, 0.57308387, 0.57308387, 0.5667695 , 0.5667695 ,
       0.5667695 , 0.5667695 , 0.56259223, 0.56259223, 0.56259223,
       0.56259223, 0.5604295 , 0.5604295 , 0.5604295 , 0.5604295 ,
       0.55993197, 0.55993197, 0.55993197, 0.55993197, 0.56064241,
       0.56064241, 0.56064241, 0.56064241, 0.56220257, 0.56220257,
       0.56220257, 0.56220257, 0.56453573, 0.56453573, 0.56453573,
       0.56453573, 0.56792111, 0.56792111, 0.56792111, 0.56792111,
       0.57302161, 0.57302161, 0.57302161, 0.57302161, 0.58094766,
       0.58094766, 0.58094766, 0.58094766, 0.59338194, 0.59338194,
       0.59338194, 0.59338194, 0.61278127, 0.61278127, 0.61278127,
       0.61278127, 0.64267222, 0.64267222, 0.64267222, 0.64267222,
       0.68810064, 0.68810064, 0.68810064, 0.68810064, 0.75635209,
       0.75635209, 0.75635209, 0.75635209, 0.85813623, 0.85813623,
       0.85813623, 0.85813623, 1.00951022, 1.00951022, 1.00951022,
       1.00951022, 1.23478014, 1.23478014, 1.23478014, 1.23478014,
       1.57016034, 1.57016034, 1.57016034, 1.57016034, 2.02902941,
       2.02902941, 2.02902941, 2.02902941, 2.54214966, 2.54214966,
       2.54214966, 2.54214966, 3.0202242 , 3.0202242 , 3.0202242 ,
       3.0202242 , 3.31178259, 3.31178259, 3.31178259, 3.31178259,
       3.22437971, 3.22437971, 3.22437971, 3.22437971, 2.65275743,
       2.65275743, 2.65275743, 2.65275743, 1.80505429, 1.80505429,
       1.80505429, 1.80505429, 1.19452145, 1.19452145, 1.19452145,
       1.19452145, 1.01387818, 1.01387818, 1.01387818, 1.01387818,
       1.0001771 , 1.0001771 , 1.0001771 , 1.0001771 , 1.00000035,
       1.00000035, 1.00000035, 1.00000035, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.41419412e+00, 1.41419412e+00, 1.41419412e+00, 1.41419412e+00,
       1.78883739e+00, 1.78883739e+00, 1.78883739e+00, 1.78883739e+00,
       2.21825857e+00, 2.21825857e+00, 2.21825857e+00, 2.21825857e+00,
       2.70047651e+00, 2.70047651e+00, 2.70047651e+00, 2.70047651e+00,
       3.23311666e+00, 3.23311666e+00, 3.23311666e+00, 3.23311666e+00,
       3.81304395e+00, 3.81304395e+00, 3.81304395e+00, 3.81304395e+00,
       4.43661839e+00, 4.43661839e+00, 4.43661839e+00, 4.43661839e+00,
       5.09991584e+00, 5.09991584e+00, 5.09991584e+00, 5.09991584e+00,
       5.79890026e+00, 5.79890026e+00, 5.79890026e+00, 5.79890026e+00,
       6.52954505e+00, 6.52954505e+00, 6.52954505e+00, 6.52954505e+00,
       7.28790743e+00, 7.28790743e+00, 7.28790743e+00, 7.28790743e+00,
       8.07016183e+00, 8.07016183e+00, 8.07016183e+00, 8.07016183e+00,
       8.87259884e+00, 8.87259884e+00, 8.87259884e+00, 8.87259884e+00,
       9.69159468e+00, 9.69159468e+00, 9.69159468e+00, 9.69159468e+00,
       1.05235545e+01, 1.05235545e+01, 1.05235545e+01, 1.05235545e+01,
       1.13648293e+01, 1.13648293e+01, 1.13648293e+01, 1.13648293e+01,
       1.22116044e+01, 1.22116044e+01, 1.22116044e+01, 1.22116044e+01,
       1.30597527e+01, 1.30597527e+01, 1.30597527e+01, 1.30597527e+01,
       1.39046431e+01, 1.39046431e+01, 1.39046431e+01, 1.39046431e+01,
       1.47408898e+01, 1.47408898e+01, 1.47408898e+01, 1.47408898e+01,
       1.55620288e+01, 1.55620288e+01, 1.55620288e+01, 1.55620288e+01,
       1.63601078e+01, 1.63601078e+01, 1.63601078e+01, 1.63601078e+01,
       1.71251997e+01, 1.71251997e+01, 1.71251997e+01, 1.71251997e+01,
       1.78448993e+01, 1.78448993e+01, 1.78448993e+01, 1.78448993e+01,
       1.85039895e+01, 1.85039895e+01, 1.85039895e+01, 1.85039895e+01,
       1.90846801e+01, 1.90846801e+01, 1.90846801e+01, 1.90846801e+01,
       1.95681279e+01, 1.95681279e+01, 1.95681279e+01, 1.95681279e+01,
       1.99380647e+01, 1.99380647e+01, 1.99380647e+01, 1.99380647e+01,
       2.01866601e+01, 2.01866601e+01, 2.01866601e+01, 2.01866601e+01,
       2.03205654e+01, 2.03205654e+01, 2.03205654e+01, 2.03205654e+01,
       2.03625340e+01, 2.03625340e+01, 2.03625340e+01, 2.03625340e+01,
       2.03450671e+01, 2.03450671e+01, 2.03450671e+01, 2.03450671e+01,
       2.02991317e+01, 2.02991317e+01, 2.02991317e+01, 2.02991317e+01,
       2.02456046e+01, 2.02456046e+01, 2.02456046e+01, 2.02456046e+01,
       2.01946657e+01, 2.01946657e+01, 2.01946657e+01, 2.01946657e+01,
       2.01495851e+01, 2.01495851e+01, 2.01495851e+01, 2.01495851e+01,
       2.01104796e+01, 2.01104796e+01, 2.01104796e+01, 2.01104796e+01,
       2.00765652e+01, 2.00765652e+01, 2.00765652e+01, 2.00765652e+01,
       2.00469486e+01, 2.00469486e+01, 2.00469486e+01, 2.00469486e+01,
       2.00208526e+01, 2.00208526e+01, 2.00208526e+01, 2.00208526e+01,
       1.99976473e+01, 1.99976473e+01, 1.99976473e+01, 1.99976473e+01,
       1.99768232e+01, 1.99768232e+01, 1.99768232e+01, 1.99768232e+01,
       1.99579134e+01, 1.99579134e+01, 1.99579134e+01, 1.99579134e+01,
       1.99401110e+01, 1.99401110e+01, 1.99401110e+01, 1.99401110e+01,
       1.99203376e+01, 1.99203376e+01, 1.99203376e+01, 1.99203376e+01,
       1.98860888e+01, 1.98860888e+01, 1.98860888e+01, 1.98860888e+01,
       1.98001469e+01, 1.98001469e+01, 1.98001469e+01, 1.98001469e+01,
       1.95757462e+01, 1.95757462e+01, 1.95757462e+01, 1.95757462e+01,
       1.90484237e+01, 1.90484237e+01, 1.90484237e+01, 1.90484237e+01,
       1.79421767e+01, 1.79421767e+01, 1.79421767e+01, 1.79421767e+01,
       1.58163176e+01, 1.58163176e+01, 1.58163176e+01, 1.58163176e+01,
       1.20498338e+01, 1.20498338e+01, 1.20498338e+01, 1.20498338e+01,
       6.43761226e+00, 6.43761226e+00, 6.43761226e+00, 6.43761226e+00,
       1.39778927e+00, 1.39778927e+00, 1.39778927e+00, 1.39778927e+00,
       5.17644049e-02, 5.17644049e-02, 5.17644049e-02, 5.17644049e-02,
       1.82914635e-04, 1.82914635e-04, 1.82914635e-04, 1.82914635e-04,
       7.98774300e-08, 7.98774300e-08, 7.98774300e-08, 7.98774300e-08,
       2.66087619e-11, 2.66087619e-11, 2.66087619e-11, 2.66087619e-11,
       8.81761175e-15, 8.81761175e-15, 8.81761175e-15, 8.81761175e-15,
       2.88036046e-18, 2.88036046e-18, 2.88036046e-18, 2.88036046e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.48220610e+02, 9.48220610e+02, 9.48220610e+02, 9.48220610e+02,
       9.34902944e+02, 9.34902944e+02, 9.34902944e+02, 9.34902944e+02,
       9.19831060e+02, 9.19831060e+02, 9.19831060e+02, 9.19831060e+02,
       9.03151270e+02, 9.03151270e+02, 9.03151270e+02, 9.03151270e+02,
       8.85026662e+02, 8.85026662e+02, 8.85026662e+02, 8.85026662e+02,
       8.65646386e+02, 8.65646386e+02, 8.65646386e+02, 8.65646386e+02,
       8.45213155e+02, 8.45213155e+02, 8.45213155e+02, 8.45213155e+02,
       8.23932702e+02, 8.23932702e+02, 8.23932702e+02, 8.23932702e+02,
       8.02005750e+02, 8.02005750e+02, 8.02005750e+02, 8.02005750e+02,
       7.79622496e+02, 7.79622496e+02, 7.79622496e+02, 7.79622496e+02,
       7.56959321e+02, 7.56959321e+02, 7.56959321e+02, 7.56959321e+02,
       7.34177328e+02, 7.34177328e+02, 7.34177328e+02, 7.34177328e+02,
       7.11422289e+02, 7.11422289e+02, 7.11422289e+02, 7.11422289e+02,
       6.88825627e+02, 6.88825627e+02, 6.88825627e+02, 6.88825627e+02,
       6.66506181e+02, 6.66506181e+02, 6.66506181e+02, 6.66506181e+02,
       6.44572547e+02, 6.44572547e+02, 6.44572547e+02, 6.44572547e+02,
       6.23125941e+02, 6.23125941e+02, 6.23125941e+02, 6.23125941e+02,
       6.02263562e+02, 6.02263562e+02, 6.02263562e+02, 6.02263562e+02,
       5.82082578e+02, 5.82082578e+02, 5.82082578e+02, 5.82082578e+02,
       5.62684871e+02, 5.62684871e+02, 5.62684871e+02, 5.62684871e+02,
       5.44182753e+02, 5.44182753e+02, 5.44182753e+02, 5.44182753e+02,
       5.26705766e+02, 5.26705766e+02, 5.26705766e+02, 5.26705766e+02,
       5.10408370e+02, 5.10408370e+02, 5.10408370e+02, 5.10408370e+02,
       4.95477456e+02, 4.95477456e+02, 4.95477456e+02, 4.95477456e+02,
       4.82136707e+02, 4.82136707e+02, 4.82136707e+02, 4.82136707e+02,
       4.70641376e+02, 4.70641376e+02, 4.70641376e+02, 4.70641376e+02,
       4.61252431e+02, 4.61252431e+02, 4.61252431e+02, 4.61252431e+02,
       4.54177107e+02, 4.54177107e+02, 4.54177107e+02, 4.54177107e+02,
       4.49473996e+02, 4.49473996e+02, 4.49473996e+02, 4.49473996e+02,
       4.46955714e+02, 4.46955714e+02, 4.46955714e+02, 4.46955714e+02,
       4.46165009e+02, 4.46165009e+02, 4.46165009e+02, 4.46165009e+02,
       4.46485695e+02, 4.46485695e+02, 4.46485695e+02, 4.46485695e+02,
       4.47339548e+02, 4.47339548e+02, 4.47339548e+02, 4.47339548e+02,
       4.48337508e+02, 4.48337508e+02, 4.48337508e+02, 4.48337508e+02,
       4.49289395e+02, 4.49289395e+02, 4.49289395e+02, 4.49289395e+02,
       4.50134048e+02, 4.50134048e+02, 4.50134048e+02, 4.50134048e+02,
       4.50869836e+02, 4.50869836e+02, 4.50869836e+02, 4.50869836e+02,
       4.51512780e+02, 4.51512780e+02, 4.51512780e+02, 4.51512780e+02,
       4.52081898e+02, 4.52081898e+02, 4.52081898e+02, 4.52081898e+02,
       4.52595215e+02, 4.52595215e+02, 4.52595215e+02, 4.52595215e+02,
       4.53069511e+02, 4.53069511e+02, 4.53069511e+02, 4.53069511e+02,
       4.53521071e+02, 4.53521071e+02, 4.53521071e+02, 4.53521071e+02,
       4.53965340e+02, 4.53965340e+02, 4.53965340e+02, 4.53965340e+02,
       4.54407381e+02, 4.54407381e+02, 4.54407381e+02, 4.54407381e+02,
       4.54782427e+02, 4.54782427e+02, 4.54782427e+02, 4.54782427e+02,
       4.54679238e+02, 4.54679238e+02, 4.54679238e+02, 4.54679238e+02,
       4.52448893e+02, 4.52448893e+02, 4.52448893e+02, 4.52448893e+02,
       4.43824090e+02, 4.43824090e+02, 4.43824090e+02, 4.43824090e+02,
       4.20337686e+02, 4.20337686e+02, 4.20337686e+02, 4.20337686e+02,
       3.69484546e+02, 3.69484546e+02, 3.69484546e+02, 3.69484546e+02,
       2.80602938e+02, 2.80602938e+02, 2.80602938e+02, 2.80602938e+02,
       1.60681588e+02, 1.60681588e+02, 1.60681588e+02, 1.60681588e+02,
       5.29503080e+01, 5.29503080e+01, 5.29503080e+01, 5.29503080e+01,
       5.56597022e+00, 5.56597022e+00, 5.56597022e+00, 5.56597022e+00,
       7.81466416e-02, 7.81466416e-02, 7.81466416e-02, 7.81466416e-02,
       1.00355924e-02, 1.00355924e-02, 1.00355924e-02, 1.00355924e-02,
       1.00000095e-02, 1.00000095e-02, 1.00000095e-02, 1.00000095e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99009996, 0.99009996, 0.99009996, 0.99009996, 0.98079728,
       0.98079728, 0.98079728, 0.98079728, 0.97117513, 0.97117513,
       0.97117513, 0.97117513, 0.95762729, 0.95762729, 0.95762729,
       0.95762729, 0.94142953, 0.94142953, 0.94142953, 0.94142953,
       0.92272455, 0.92272455, 0.92272455, 0.92272455, 0.90213778,
       0.90213778, 0.90213778, 0.90213778, 0.88019506, 0.88019506,
       0.88019506, 0.88019506, 0.8573279 , 0.8573279 , 0.8573279 ,
       0.8573279 , 0.83388586, 0.83388586, 0.83388586, 0.83388586,
       0.8103593 , 0.8103593 , 0.8103593 , 0.8103593 , 0.78735681,
       0.78735681, 0.78735681, 0.78735681, 0.76511282, 0.76511282,
       0.76511282, 0.76511282, 0.74361635, 0.74361635, 0.74361635,
       0.74361635, 0.72287492, 0.72287492, 0.72287492, 0.72287492,
       0.70291453, 0.70291453, 0.70291453, 0.70291453, 0.68379431,
       0.68379431, 0.68379431, 0.68379431, 0.66561946, 0.66561946,
       0.66561946, 0.66561946, 0.64854061, 0.64854061, 0.64854061,
       0.64854061, 0.63273412, 0.63273412, 0.63273412, 0.63273412,
       0.61836564, 0.61836564, 0.61836564, 0.61836564, 0.60555414,
       0.60555414, 0.60555414, 0.60555414, 0.59436881, 0.59436881,
       0.59436881, 0.59436881, 0.58488492, 0.58488492, 0.58488492,
       0.58488492, 0.57726939, 0.57726939, 0.57726939, 0.57726939,
       0.57177743, 0.57177743, 0.57177743, 0.57177743, 0.56855526,
       0.56855526, 0.56855526, 0.56855526, 0.56733881, 0.56733881,
       0.56733881, 0.56733881, 0.56730464, 0.56730464, 0.56730464,
       0.56730464, 0.56754209, 0.56754209, 0.56754209, 0.56754209,
       0.5676676 , 0.5676676 , 0.5676676 , 0.5676676 , 0.56747076,
       0.56747076, 0.56747076, 0.56747076, 0.56700475, 0.56700475,
       0.56700475, 0.56700475, 0.56673193, 0.56673193, 0.56673193,
       0.56673193, 0.56658818, 0.56658818, 0.56658818, 0.56658818,
       0.56660117, 0.56660117, 0.56660117, 0.56660117, 0.56721514,
       0.56721514, 0.56721514, 0.56721514, 0.56947087, 0.56947087,
       0.56947087, 0.56947087, 0.57522826, 0.57522826, 0.57522826,
       0.57522826, 0.58788102, 0.58788102, 0.58788102, 0.58788102,
       0.61339093, 0.61339093, 0.61339093, 0.61339093, 0.66191566,
       0.66191566, 0.66191566, 0.66191566, 0.7503941 , 0.7503941 ,
       0.7503941 , 0.7503941 , 0.90622262, 0.90622262, 0.90622262,
       0.90622262, 1.17163176, 1.17163176, 1.17163176, 1.17163176,
       1.60647461, 1.60647461, 1.60647461, 1.60647461, 2.28018986,
       2.28018986, 2.28018986, 2.28018986, 3.12452995, 3.12452995,
       3.12452995, 3.12452995, 3.74154011, 3.74154011, 3.74154011,
       3.74154011, 3.94349823, 3.94349823, 3.94349823, 3.94349823,
       3.47975134, 3.47975134, 3.47975134, 3.47975134, 1.76601771,
       1.76601771, 1.76601771, 1.76601771, 1.04278667, 1.04278667,
       1.04278667, 1.04278667, 1.00063976, 1.00063976, 1.00063976,
       1.00063976, 1.000002  , 1.000002  , 1.000002  , 1.000002  ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.71214413e-01, 3.71214413e-01, 3.71214413e-01, 3.71214413e-01,
       7.24051149e-01, 7.24051149e-01, 7.24051149e-01, 7.24051149e-01,
       1.09070799e+00, 1.09070799e+00, 1.09070799e+00, 1.09070799e+00,
       1.61244052e+00, 1.61244052e+00, 1.61244052e+00, 1.61244052e+00,
       2.24398795e+00, 2.24398795e+00, 2.24398795e+00, 2.24398795e+00,
       2.98433948e+00, 2.98433948e+00, 2.98433948e+00, 2.98433948e+00,
       3.81323583e+00, 3.81323583e+00, 3.81323583e+00, 3.81323583e+00,
       4.71361364e+00, 4.71361364e+00, 4.71361364e+00, 4.71361364e+00,
       5.67171883e+00, 5.67171883e+00, 5.67171883e+00, 5.67171883e+00,
       6.67789199e+00, 6.67789199e+00, 6.67789199e+00, 6.67789199e+00,
       7.70441370e+00, 7.70441370e+00, 7.70441370e+00, 7.70441370e+00,
       8.73273268e+00, 8.73273268e+00, 8.73273268e+00, 8.73273268e+00,
       9.75221103e+00, 9.75221103e+00, 9.75221103e+00, 9.75221103e+00,
       1.07599049e+01, 1.07599049e+01, 1.07599049e+01, 1.07599049e+01,
       1.17540097e+01, 1.17540097e+01, 1.17540097e+01, 1.17540097e+01,
       1.27317276e+01, 1.27317276e+01, 1.27317276e+01, 1.27317276e+01,
       1.36888505e+01, 1.36888505e+01, 1.36888505e+01, 1.36888505e+01,
       1.46193231e+01, 1.46193231e+01, 1.46193231e+01, 1.46193231e+01,
       1.55146881e+01, 1.55146881e+01, 1.55146881e+01, 1.55146881e+01,
       1.63636987e+01, 1.63636987e+01, 1.63636987e+01, 1.63636987e+01,
       1.71524418e+01, 1.71524418e+01, 1.71524418e+01, 1.71524418e+01,
       1.78652593e+01, 1.78652593e+01, 1.78652593e+01, 1.78652593e+01,
       1.84866404e+01, 1.84866404e+01, 1.84866404e+01, 1.84866404e+01,
       1.90040865e+01, 1.90040865e+01, 1.90040865e+01, 1.90040865e+01,
       1.94113585e+01, 1.94113585e+01, 1.94113585e+01, 1.94113585e+01,
       1.97105480e+01, 1.97105480e+01, 1.97105480e+01, 1.97105480e+01,
       1.99120445e+01, 1.99120445e+01, 1.99120445e+01, 1.99120445e+01,
       2.00328035e+01, 2.00328035e+01, 2.00328035e+01, 2.00328035e+01,
       2.00939353e+01, 2.00939353e+01, 2.00939353e+01, 2.00939353e+01,
       2.01167707e+01, 2.01167707e+01, 2.01167707e+01, 2.01167707e+01,
       2.01197792e+01, 2.01197792e+01, 2.01197792e+01, 2.01197792e+01,
       2.01074074e+01, 2.01074074e+01, 2.01074074e+01, 2.01074074e+01,
       2.00728629e+01, 2.00728629e+01, 2.00728629e+01, 2.00728629e+01,
       2.00133514e+01, 2.00133514e+01, 2.00133514e+01, 2.00133514e+01,
       1.99495226e+01, 1.99495226e+01, 1.99495226e+01, 1.99495226e+01,
       1.98997208e+01, 1.98997208e+01, 1.98997208e+01, 1.98997208e+01,
       1.98634959e+01, 1.98634959e+01, 1.98634959e+01, 1.98634959e+01,
       1.98359993e+01, 1.98359993e+01, 1.98359993e+01, 1.98359993e+01,
       1.98148995e+01, 1.98148995e+01, 1.98148995e+01, 1.98148995e+01,
       1.97990188e+01, 1.97990188e+01, 1.97990188e+01, 1.97990188e+01,
       1.97864598e+01, 1.97864598e+01, 1.97864598e+01, 1.97864598e+01,
       1.97757303e+01, 1.97757303e+01, 1.97757303e+01, 1.97757303e+01,
       1.97670663e+01, 1.97670663e+01, 1.97670663e+01, 1.97670663e+01,
       1.97606562e+01, 1.97606562e+01, 1.97606562e+01, 1.97606562e+01,
       1.97563225e+01, 1.97563225e+01, 1.97563225e+01, 1.97563225e+01,
       1.97574019e+01, 1.97574019e+01, 1.97574019e+01, 1.97574019e+01,
       1.97535996e+01, 1.97535996e+01, 1.97535996e+01, 1.97535996e+01,
       1.97149405e+01, 1.97149405e+01, 1.97149405e+01, 1.97149405e+01,
       1.95165373e+01, 1.95165373e+01, 1.95165373e+01, 1.95165373e+01,
       1.86180277e+01, 1.86180277e+01, 1.86180277e+01, 1.86180277e+01,
       1.50712409e+01, 1.50712409e+01, 1.50712409e+01, 1.50712409e+01,
       6.44555578e+00, 6.44555578e+00, 6.44555578e+00, 6.44555578e+00,
       3.40134655e-01, 3.40134655e-01, 3.40134655e-01, 3.40134655e-01,
       1.99855938e-03, 1.99855938e-03, 1.99855938e-03, 1.99855938e-03,
       9.27909710e-07, 9.27909710e-07, 9.27909710e-07, 9.27909710e-07,
       1.31626259e-10, 1.31626259e-10, 1.31626259e-10, 1.31626259e-10,
       1.91069012e-14, 1.91069012e-14, 1.91069012e-14, 1.91069012e-14,
       2.79872002e-18, 2.79872002e-18, 2.79872002e-18, 2.79872002e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.86186200e+02, 9.86186200e+02, 9.86186200e+02, 9.86186200e+02,
       9.73240468e+02, 9.73240468e+02, 9.73240468e+02, 9.73240468e+02,
       9.59914409e+02, 9.59914409e+02, 9.59914409e+02, 9.59914409e+02,
       9.41247070e+02, 9.41247070e+02, 9.41247070e+02, 9.41247070e+02,
       9.19065173e+02, 9.19065173e+02, 9.19065173e+02, 9.19065173e+02,
       8.93636756e+02, 8.93636756e+02, 8.93636756e+02, 8.93636756e+02,
       8.65883271e+02, 8.65883271e+02, 8.65883271e+02, 8.65883271e+02,
       8.36573980e+02, 8.36573980e+02, 8.36573980e+02, 8.36573980e+02,
       8.06320572e+02, 8.06320572e+02, 8.06320572e+02, 8.06320572e+02,
       7.75553698e+02, 7.75553698e+02, 7.75553698e+02, 7.75553698e+02,
       7.45017133e+02, 7.45017133e+02, 7.45017133e+02, 7.45017133e+02,
       7.15593221e+02, 7.15593221e+02, 7.15593221e+02, 7.15593221e+02,
       6.87450247e+02, 6.87450247e+02, 6.87450247e+02, 6.87450247e+02,
       6.60567105e+02, 6.60567105e+02, 6.60567105e+02, 6.60567105e+02,
       6.34933561e+02, 6.34933561e+02, 6.34933561e+02, 6.34933561e+02,
       6.10559907e+02, 6.10559907e+02, 6.10559907e+02, 6.10559907e+02,
       5.87481408e+02, 5.87481408e+02, 5.87481408e+02, 5.87481408e+02,
       5.65766844e+02, 5.65766844e+02, 5.65766844e+02, 5.65766844e+02,
       5.45524542e+02, 5.45524542e+02, 5.45524542e+02, 5.45524542e+02,
       5.26905041e+02, 5.26905041e+02, 5.26905041e+02, 5.26905041e+02,
       5.10095754e+02, 5.10095754e+02, 5.10095754e+02, 5.10095754e+02,
       4.95301417e+02, 4.95301417e+02, 4.95301417e+02, 4.95301417e+02,
       4.82707232e+02, 4.82707232e+02, 4.82707232e+02, 4.82707232e+02,
       4.72431235e+02, 4.72431235e+02, 4.72431235e+02, 4.72431235e+02,
       4.64480159e+02, 4.64480159e+02, 4.64480159e+02, 4.64480159e+02,
       4.58720544e+02, 4.58720544e+02, 4.58720544e+02, 4.58720544e+02,
       4.54880415e+02, 4.54880415e+02, 4.54880415e+02, 4.54880415e+02,
       4.52586923e+02, 4.52586923e+02, 4.52586923e+02, 4.52586923e+02,
       4.51430708e+02, 4.51430708e+02, 4.51430708e+02, 4.51430708e+02,
       4.51009436e+02, 4.51009436e+02, 4.51009436e+02, 4.51009436e+02,
       4.50953318e+02, 4.50953318e+02, 4.50953318e+02, 4.50953318e+02,
       4.51185590e+02, 4.51185590e+02, 4.51185590e+02, 4.51185590e+02,
       4.51834808e+02, 4.51834808e+02, 4.51834808e+02, 4.51834808e+02,
       4.52955367e+02, 4.52955367e+02, 4.52955367e+02, 4.52955367e+02,
       4.54157312e+02, 4.54157312e+02, 4.54157312e+02, 4.54157312e+02,
       4.55095241e+02, 4.55095241e+02, 4.55095241e+02, 4.55095241e+02,
       4.55772371e+02, 4.55772371e+02, 4.55772371e+02, 4.55772371e+02,
       4.56264237e+02, 4.56264237e+02, 4.56264237e+02, 4.56264237e+02,
       4.56633348e+02, 4.56633348e+02, 4.56633348e+02, 4.56633348e+02,
       4.56929937e+02, 4.56929937e+02, 4.56929937e+02, 4.56929937e+02,
       4.57171489e+02, 4.57171489e+02, 4.57171489e+02, 4.57171489e+02,
       4.57363668e+02, 4.57363668e+02, 4.57363668e+02, 4.57363668e+02,
       4.57531378e+02, 4.57531378e+02, 4.57531378e+02, 4.57531378e+02,
       4.57709652e+02, 4.57709652e+02, 4.57709652e+02, 4.57709652e+02,
       4.57932536e+02, 4.57932536e+02, 4.57932536e+02, 4.57932536e+02,
       4.58295200e+02, 4.58295200e+02, 4.58295200e+02, 4.58295200e+02,
       4.58599054e+02, 4.58599054e+02, 4.58599054e+02, 4.58599054e+02,
       4.57718786e+02, 4.57718786e+02, 4.57718786e+02, 4.57718786e+02,
       4.48917912e+02, 4.48917912e+02, 4.48917912e+02, 4.48917912e+02,
       4.03800359e+02, 4.03800359e+02, 4.03800359e+02, 4.03800359e+02,
       2.58647864e+02, 2.58647864e+02, 2.58647864e+02, 2.58647864e+02,
       5.37325288e+01, 5.37325288e+01, 5.37325288e+01, 5.37325288e+01,
       1.31811609e+00, 1.31811609e+00, 1.31811609e+00, 1.31811609e+00,
       1.12593786e-02, 1.12593786e-02, 1.12593786e-02, 1.12593786e-02,
       1.00001109e-02, 1.00001109e-02, 1.00001109e-02, 1.00001109e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99116492, 0.99116492, 0.99116492, 0.99116492, 0.98271154,
       0.98271154, 0.98271154, 0.98271154, 0.97383884, 0.97383884,
       0.97383884, 0.97383884, 0.96101554, 0.96101554, 0.96101554,
       0.96101554, 0.9454558 , 0.9454558 , 0.9454558 , 0.9454558 ,
       0.92712036, 0.92712036, 0.92712036, 0.92712036, 0.90667211,
       0.90667211, 0.90667211, 0.90667211, 0.88466881, 0.88466881,
       0.88466881, 0.88466881, 0.86164034, 0.86164034, 0.86164034,
       0.86164034, 0.83800032, 0.83800032, 0.83800032, 0.83800032,
       0.81424415, 0.81424415, 0.81424415, 0.81424415, 0.79085525,
       0.79085525, 0.79085525, 0.79085525, 0.76804363, 0.76804363,
       0.76804363, 0.76804363, 0.74583711, 0.74583711, 0.74583711,
       0.74583711, 0.72421952, 0.72421952, 0.72421952, 0.72421952,
       0.70319112, 0.70319112, 0.70319112, 0.70319112, 0.68277247,
       0.68277247, 0.68277247, 0.68277247, 0.66301832, 0.66301832,
       0.66301832, 0.66301832, 0.64404414, 0.64404414, 0.64404414,
       0.64404414, 0.62606083, 0.62606083, 0.62606083, 0.62606083,
       0.60941523, 0.60941523, 0.60941523, 0.60941523, 0.59461799,
       0.59461799, 0.59461799, 0.59461799, 0.5823152 , 0.5823152 ,
       0.5823152 , 0.5823152 , 0.57313802, 0.57313802, 0.57313802,
       0.57313802, 0.56738503, 0.56738503, 0.56738503, 0.56738503,
       0.56465216, 0.56465216, 0.56465216, 0.56465216, 0.56382693,
       0.56382693, 0.56382693, 0.56382693, 0.56387318, 0.56387318,
       0.56387318, 0.56387318, 0.5652006 , 0.5652006 , 0.5652006 ,
       0.5652006 , 0.56626977, 0.56626977, 0.56626977, 0.56626977,
       0.56702881, 0.56702881, 0.56702881, 0.56702881, 0.56788545,
       0.56788545, 0.56788545, 0.56788545, 0.56880776, 0.56880776,
       0.56880776, 0.56880776, 0.56941945, 0.56941945, 0.56941945,
       0.56941945, 0.56962086, 0.56962086, 0.56962086, 0.56962086,
       0.56956418, 0.56956418, 0.56956418, 0.56956418, 0.56936331,
       0.56936331, 0.56936331, 0.56936331, 0.56934572, 0.56934572,
       0.56934572, 0.56934572, 0.57000584, 0.57000584, 0.57000584,
       0.57000584, 0.5729765 , 0.5729765 , 0.5729765 , 0.5729765 ,
       0.58176493, 0.58176493, 0.58176493, 0.58176493, 0.60341244,
       0.60341244, 0.60341244, 0.60341244, 0.65159534, 0.65159534,
       0.65159534, 0.65159534, 0.75225793, 0.75225793, 0.75225793,
       0.75225793, 0.95396517, 0.95396517, 0.95396517, 0.95396517,
       1.34573563, 1.34573563, 1.34573563, 1.34573563, 2.05647412,
       2.05647412, 2.05647412, 2.05647412, 3.13720518, 3.13720518,
       3.13720518, 3.13720518, 4.01618199, 4.01618199, 4.01618199,
       4.01618199, 4.2713159 , 4.2713159 , 4.2713159 , 4.2713159 ,
       3.78406763, 3.78406763, 3.78406763, 3.78406763, 1.92016659,
       1.92016659, 1.92016659, 1.92016659, 1.058216  , 1.058216  ,
       1.058216  , 1.058216  , 1.00081398, 1.00081398, 1.00081398,
       1.00081398, 1.00000178, 1.00000178, 1.00000178, 1.00000178,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.31199970e-01, 3.31199970e-01, 3.31199970e-01, 3.31199970e-01,
       6.51382280e-01, 6.51382280e-01, 6.51382280e-01, 6.51382280e-01,
       9.88854278e-01, 9.88854278e-01, 9.88854278e-01, 9.88854278e-01,
       1.48150489e+00, 1.48150489e+00, 1.48150489e+00, 1.48150489e+00,
       2.08633147e+00, 2.08633147e+00, 2.08633147e+00, 2.08633147e+00,
       2.80957124e+00, 2.80957124e+00, 2.80957124e+00, 2.80957124e+00,
       3.62985549e+00, 3.62985549e+00, 3.62985549e+00, 3.62985549e+00,
       4.52930744e+00, 4.52930744e+00, 4.52930744e+00, 4.52930744e+00,
       5.49031544e+00, 5.49031544e+00, 5.49031544e+00, 5.49031544e+00,
       6.50069839e+00, 6.50069839e+00, 6.50069839e+00, 6.50069839e+00,
       7.53409154e+00, 7.53409154e+00, 7.53409154e+00, 7.53409154e+00,
       8.57574859e+00, 8.57574859e+00, 8.57574859e+00, 8.57574859e+00,
       9.61670434e+00, 9.61670434e+00, 9.61670434e+00, 9.61670434e+00,
       1.06548968e+01, 1.06548968e+01, 1.06548968e+01, 1.06548968e+01,
       1.16895560e+01, 1.16895560e+01, 1.16895560e+01, 1.16895560e+01,
       1.27199525e+01, 1.27199525e+01, 1.27199525e+01, 1.27199525e+01,
       1.37443488e+01, 1.37443488e+01, 1.37443488e+01, 1.37443488e+01,
       1.47589251e+01, 1.47589251e+01, 1.47589251e+01, 1.47589251e+01,
       1.57563221e+01, 1.57563221e+01, 1.57563221e+01, 1.57563221e+01,
       1.67233146e+01, 1.67233146e+01, 1.67233146e+01, 1.67233146e+01,
       1.76379476e+01, 1.76379476e+01, 1.76379476e+01, 1.76379476e+01,
       1.84673647e+01, 1.84673647e+01, 1.84673647e+01, 1.84673647e+01,
       1.91692758e+01, 1.91692758e+01, 1.91692758e+01, 1.91692758e+01,
       1.97016293e+01, 1.97016293e+01, 1.97016293e+01, 1.97016293e+01,
       2.00421597e+01, 2.00421597e+01, 2.00421597e+01, 2.00421597e+01,
       2.02074474e+01, 2.02074474e+01, 2.02074474e+01, 2.02074474e+01,
       2.02533362e+01, 2.02533362e+01, 2.02533362e+01, 2.02533362e+01,
       2.02422335e+01, 2.02422335e+01, 2.02422335e+01, 2.02422335e+01,
       2.01551609e+01, 2.01551609e+01, 2.01551609e+01, 2.01551609e+01,
       2.00814099e+01, 2.00814099e+01, 2.00814099e+01, 2.00814099e+01,
       2.00377810e+01, 2.00377810e+01, 2.00377810e+01, 2.00377810e+01,
       2.00059391e+01, 2.00059391e+01, 2.00059391e+01, 2.00059391e+01,
       1.99778740e+01, 1.99778740e+01, 1.99778740e+01, 1.99778740e+01,
       1.99509217e+01, 1.99509217e+01, 1.99509217e+01, 1.99509217e+01,
       1.99248183e+01, 1.99248183e+01, 1.99248183e+01, 1.99248183e+01,
       1.99001676e+01, 1.99001676e+01, 1.99001676e+01, 1.99001676e+01,
       1.98776007e+01, 1.98776007e+01, 1.98776007e+01, 1.98776007e+01,
       1.98572942e+01, 1.98572942e+01, 1.98572942e+01, 1.98572942e+01,
       1.98397324e+01, 1.98397324e+01, 1.98397324e+01, 1.98397324e+01,
       1.98254040e+01, 1.98254040e+01, 1.98254040e+01, 1.98254040e+01,
       1.98131310e+01, 1.98131310e+01, 1.98131310e+01, 1.98131310e+01,
       1.98012050e+01, 1.98012050e+01, 1.98012050e+01, 1.98012050e+01,
       1.97898387e+01, 1.97898387e+01, 1.97898387e+01, 1.97898387e+01,
       1.97795675e+01, 1.97795675e+01, 1.97795675e+01, 1.97795675e+01,
       1.97699816e+01, 1.97699816e+01, 1.97699816e+01, 1.97699816e+01,
       1.97635691e+01, 1.97635691e+01, 1.97635691e+01, 1.97635691e+01,
       1.97536393e+01, 1.97536393e+01, 1.97536393e+01, 1.97536393e+01,
       1.97149813e+01, 1.97149813e+01, 1.97149813e+01, 1.97149813e+01,
       1.95399511e+01, 1.95399511e+01, 1.95399511e+01, 1.95399511e+01,
       1.87505825e+01, 1.87505825e+01, 1.87505825e+01, 1.87505825e+01,
       1.56266522e+01, 1.56266522e+01, 1.56266522e+01, 1.56266522e+01,
       6.97439322e+00, 6.97439322e+00, 6.97439322e+00, 6.97439322e+00,
       3.92821064e-01, 3.92821064e-01, 3.92821064e-01, 3.92821064e-01,
       1.89489077e-03, 1.89489077e-03, 1.89489077e-03, 1.89489077e-03,
       6.66095396e-07, 6.66095396e-07, 6.66095396e-07, 6.66095396e-07,
       9.40368073e-11, 9.40368073e-11, 9.40368073e-11, 9.40368073e-11,
       1.38270964e-14, 1.38270964e-14, 1.38270964e-14, 1.38270964e-14,
       2.07028270e-18, 2.07028270e-18, 2.07028270e-18, 2.07028270e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87667905e+02, 9.87667905e+02, 9.87667905e+02, 9.87667905e+02,
       9.75896749e+02, 9.75896749e+02, 9.75896749e+02, 9.75896749e+02,
       9.63596793e+02, 9.63596793e+02, 9.63596793e+02, 9.63596793e+02,
       9.45903496e+02, 9.45903496e+02, 9.45903496e+02, 9.45903496e+02,
       9.24560147e+02, 9.24560147e+02, 9.24560147e+02, 9.24560147e+02,
       8.99586589e+02, 8.99586589e+02, 8.99586589e+02, 8.99586589e+02,
       8.71962692e+02, 8.71962692e+02, 8.71962692e+02, 8.71962692e+02,
       8.42509302e+02, 8.42509302e+02, 8.42509302e+02, 8.42509302e+02,
       8.11982832e+02, 8.11982832e+02, 8.11982832e+02, 8.11982832e+02,
       7.80909598e+02, 7.80909598e+02, 7.80909598e+02, 7.80909598e+02,
       7.50021347e+02, 7.50021347e+02, 7.50021347e+02, 7.50021347e+02,
       7.20044660e+02, 7.20044660e+02, 7.20044660e+02, 7.20044660e+02,
       6.91139600e+02, 6.91139600e+02, 6.91139600e+02, 6.91139600e+02,
       6.63330665e+02, 6.63330665e+02, 6.63330665e+02, 6.63330665e+02,
       6.36575468e+02, 6.36575468e+02, 6.36575468e+02, 6.36575468e+02,
       6.10854195e+02, 6.10854195e+02, 6.10854195e+02, 6.10854195e+02,
       5.86171830e+02, 5.86171830e+02, 5.86171830e+02, 5.86171830e+02,
       5.62573606e+02, 5.62573606e+02, 5.62573606e+02, 5.62573606e+02,
       5.40173609e+02, 5.40173609e+02, 5.40173609e+02, 5.40173609e+02,
       5.19191018e+02, 5.19191018e+02, 5.19191018e+02, 5.19191018e+02,
       4.99991749e+02, 4.99991749e+02, 4.99991749e+02, 4.99991749e+02,
       4.83112346e+02, 4.83112346e+02, 4.83112346e+02, 4.83112346e+02,
       4.69214163e+02, 4.69214163e+02, 4.69214163e+02, 4.69214163e+02,
       4.58903184e+02, 4.58903184e+02, 4.58903184e+02, 4.58903184e+02,
       4.52409336e+02, 4.52409336e+02, 4.52409336e+02, 4.52409336e+02,
       4.49287031e+02, 4.49287031e+02, 4.49287031e+02, 4.49287031e+02,
       4.48422944e+02, 4.48422944e+02, 4.48422944e+02, 4.48422944e+02,
       4.48631188e+02, 4.48631188e+02, 4.48631188e+02, 4.48631188e+02,
       4.50271228e+02, 4.50271228e+02, 4.50271228e+02, 4.50271228e+02,
       4.51662913e+02, 4.51662913e+02, 4.51662913e+02, 4.51662913e+02,
       4.52490638e+02, 4.52490638e+02, 4.52490638e+02, 4.52490638e+02,
       4.53096587e+02, 4.53096587e+02, 4.53096587e+02, 4.53096587e+02,
       4.53627004e+02, 4.53627004e+02, 4.53627004e+02, 4.53627004e+02,
       4.54138029e+02, 4.54138029e+02, 4.54138029e+02, 4.54138029e+02,
       4.54640997e+02, 4.54640997e+02, 4.54640997e+02, 4.54640997e+02,
       4.55121718e+02, 4.55121718e+02, 4.55121718e+02, 4.55121718e+02,
       4.55558744e+02, 4.55558744e+02, 4.55558744e+02, 4.55558744e+02,
       4.55935595e+02, 4.55935595e+02, 4.55935595e+02, 4.55935595e+02,
       4.56261121e+02, 4.56261121e+02, 4.56261121e+02, 4.56261121e+02,
       4.56558739e+02, 4.56558739e+02, 4.56558739e+02, 4.56558739e+02,
       4.56826197e+02, 4.56826197e+02, 4.56826197e+02, 4.56826197e+02,
       4.57052328e+02, 4.57052328e+02, 4.57052328e+02, 4.57052328e+02,
       4.57257152e+02, 4.57257152e+02, 4.57257152e+02, 4.57257152e+02,
       4.57467024e+02, 4.57467024e+02, 4.57467024e+02, 4.57467024e+02,
       4.57704540e+02, 4.57704540e+02, 4.57704540e+02, 4.57704540e+02,
       4.58066570e+02, 4.58066570e+02, 4.58066570e+02, 4.58066570e+02,
       4.58479576e+02, 4.58479576e+02, 4.58479576e+02, 4.58479576e+02,
       4.57718684e+02, 4.57718684e+02, 4.57718684e+02, 4.57718684e+02,
       4.49845047e+02, 4.49845047e+02, 4.49845047e+02, 4.49845047e+02,
       4.09389299e+02, 4.09389299e+02, 4.09389299e+02, 4.09389299e+02,
       2.68194998e+02, 2.68194998e+02, 2.68194998e+02, 2.68194998e+02,
       5.60520652e+01, 5.60520652e+01, 5.60520652e+01, 5.60520652e+01,
       1.14557313e+00, 1.14557313e+00, 1.14557313e+00, 1.14557313e+00,
       1.08687798e-02, 1.08687798e-02, 1.08687798e-02, 1.08687798e-02,
       1.00000791e-02, 1.00000791e-02, 1.00000791e-02, 1.00000791e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99854666, 0.99854666, 0.99854666, 0.99854666,
       0.96845715, 0.96845715, 0.96845715, 0.96845715, 0.81981135,
       0.81981135, 0.81981135, 0.81981135, 1.13644411, 1.13644411,
       1.13644411, 1.13644411, 1.07459565, 1.07459565, 1.07459565,
       1.07459565, 1.00214509, 1.00214509, 1.00214509, 1.00214509,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.44580810e-02, 5.44580810e-02, 5.44580810e-02, 5.44580810e-02,
       1.19786475e+00, 1.19786475e+00, 1.19786475e+00, 1.19786475e+00,
       7.52224860e+00, 7.52224860e+00, 7.52224860e+00, 7.52224860e+00,
       9.36380750e+00, 9.36380750e+00, 9.36380750e+00, 9.36380750e+00,
       1.09132154e+00, 1.09132154e+00, 1.09132154e+00, 1.09132154e+00,
       4.34109741e-03, 4.34109741e-03, 4.34109741e-03, 4.34109741e-03,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.97973078e+02, 9.97973078e+02, 9.97973078e+02, 9.97973078e+02,
       9.57196315e+02, 9.57196315e+02, 9.57196315e+02, 9.57196315e+02,
       7.89728589e+02, 7.89728589e+02, 7.89728589e+02, 7.89728589e+02,
       2.18172604e+02, 2.18172604e+02, 2.18172604e+02, 2.18172604e+02,
       7.20466733e+00, 7.20466733e+00, 7.20466733e+00, 7.20466733e+00,
       1.36969674e-02, 1.36969674e-02, 1.36969674e-02, 1.36969674e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999529,
       0.99999529, 0.99999529, 0.99999529, 0.99981164, 0.99981164,
       0.99981164, 0.99981164, 0.99702376, 0.99702376, 0.99702376,
       0.99702376, 0.97590016, 0.97590016, 0.97590016, 0.97590016,
       0.88930972, 0.88930972, 0.88930972, 0.88930972, 0.71365932,
       0.71365932, 0.71365932, 0.71365932, 1.0710902 , 1.0710902 ,
       1.0710902 , 1.0710902 , 1.31137332, 1.31137332, 1.31137332,
       1.31137332, 1.04072233, 1.04072233, 1.04072233, 1.04072233,
       1.00111398, 1.00111398, 1.00111398, 1.00111398, 1.00000029,
       1.00000029, 1.00000029, 1.00000029, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.76253247e-04, 1.76253247e-04, 1.76253247e-04, 1.76253247e-04,
       7.04865623e-03, 7.04865623e-03, 7.04865623e-03, 7.04865623e-03,
       1.11518467e-01, 1.11518467e-01, 1.11518467e-01, 1.11518467e-01,
       9.09502205e-01, 9.09502205e-01, 9.09502205e-01, 9.09502205e-01,
       4.30216737e+00, 4.30216737e+00, 4.30216737e+00, 4.30216737e+00,
       1.18379965e+01, 1.18379965e+01, 1.18379965e+01, 1.18379965e+01,
       1.62384269e+01, 1.62384269e+01, 1.62384269e+01, 1.62384269e+01,
       5.70889156e+00, 5.70889156e+00, 5.70889156e+00, 5.70889156e+00,
       2.30200189e-01, 2.30200189e-01, 2.30200189e-01, 2.30200189e-01,
       4.83684047e-04, 4.83684047e-04, 4.83684047e-04, 4.83684047e-04,
       3.42098651e-08, 3.42098651e-08, 3.42098651e-08, 3.42098651e-08,
       1.01319811e-12, 1.01319811e-12, 1.01319811e-12, 1.01319811e-12,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99993405e+02, 9.99993405e+02, 9.99993405e+02, 9.99993405e+02,
       9.99736354e+02, 9.99736354e+02, 9.99736354e+02, 9.99736354e+02,
       9.95842977e+02, 9.95842977e+02, 9.95842977e+02, 9.95842977e+02,
       9.66708286e+02, 9.66708286e+02, 9.66708286e+02, 9.66708286e+02,
       8.52052998e+02, 8.52052998e+02, 8.52052998e+02, 8.52052998e+02,
       6.72236296e+02, 6.72236296e+02, 6.72236296e+02, 6.72236296e+02,
       3.62410250e+02, 3.62410250e+02, 3.62410250e+02, 3.62410250e+02,
       6.19189240e+01, 6.19189240e+01, 6.19189240e+01, 6.19189240e+01,
       6.26948951e-01, 6.26948951e-01, 6.26948951e-01, 6.26948951e-01,
       1.01072359e-02, 1.01072359e-02, 1.01072359e-02, 1.01072359e-02,
       1.00000040e-02, 1.00000040e-02, 1.00000040e-02, 1.00000040e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999888, 0.99999888, 0.99999888, 0.99999888,
       0.99997445, 0.99997445, 0.99997445, 0.99997445, 0.99964871,
       0.99964871, 0.99964871, 0.99964871, 0.99689733, 0.99689733,
       0.99689733, 0.99689733, 0.98193702, 0.98193702, 0.98193702,
       0.98193702, 0.9295722 , 0.9295722 , 0.9295722 , 0.9295722 ,
       0.81296623, 0.81296623, 0.81296623, 0.81296623, 0.63611418,
       0.63611418, 0.63611418, 0.63611418, 0.88414578, 0.88414578,
       0.88414578, 0.88414578, 1.57593929, 1.57593929, 1.57593929,
       1.57593929, 1.1715463 , 1.1715463 , 1.1715463 , 1.1715463 ,
       1.01116974, 1.01116974, 1.01116974, 1.01116974, 1.0000899 ,
       1.0000899 , 1.0000899 , 1.0000899 , 1.00000001, 1.00000001,
       1.00000001, 1.00000001, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       7.97153187e-09, 7.97153187e-09, 7.97153187e-09, 7.97153187e-09,
       9.70027498e-07, 9.70027498e-07, 9.70027498e-07, 9.70027498e-07,
       4.20269589e-05, 4.20269589e-05, 4.20269589e-05, 4.20269589e-05,
       9.55942471e-04, 9.55942471e-04, 9.55942471e-04, 9.55942471e-04,
       1.31460868e-02, 1.31460868e-02, 1.31460868e-02, 1.31460868e-02,
       1.16219529e-01, 1.16219529e-01, 1.16219529e-01, 1.16219529e-01,
       6.79969081e-01, 6.79969081e-01, 6.79969081e-01, 6.79969081e-01,
       2.70215530e+00, 2.70215530e+00, 2.70215530e+00, 2.70215530e+00,
       7.57490575e+00, 7.57490575e+00, 7.57490575e+00, 7.57490575e+00,
       1.47743231e+01, 1.47743231e+01, 1.47743231e+01, 1.47743231e+01,
       2.03840035e+01, 2.03840035e+01, 2.03840035e+01, 2.03840035e+01,
       1.19115601e+01, 1.19115601e+01, 1.19115601e+01, 1.19115601e+01,
       1.63710471e+00, 1.63710471e+00, 1.63710471e+00, 1.63710471e+00,
       2.10715183e-02, 2.10715183e-02, 2.10715183e-02, 2.10715183e-02,
       1.32818490e-05, 1.32818490e-05, 1.32818490e-05, 1.32818490e-05,
       1.21621831e-09, 1.21621831e-09, 1.21621831e-09, 1.21621831e-09,
       8.57861505e-14, 8.57861505e-14, 8.57861505e-14, 8.57861505e-14,
       4.41228789e-18, 4.41228789e-18, 4.41228789e-18, 4.41228789e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
       9.99998427e+02, 9.99998427e+02, 9.99998427e+02, 9.99998427e+02,
       9.99964233e+02, 9.99964233e+02, 9.99964233e+02, 9.99964233e+02,
       9.99508326e+02, 9.99508326e+02, 9.99508326e+02, 9.99508326e+02,
       9.95664278e+02, 9.95664278e+02, 9.95664278e+02, 9.95664278e+02,
       9.74918203e+02, 9.74918203e+02, 9.74918203e+02, 9.74918203e+02,
       9.03858041e+02, 9.03858041e+02, 9.03858041e+02, 9.03858041e+02,
       7.52615431e+02, 7.52615431e+02, 7.52615431e+02, 7.52615431e+02,
       5.88404204e+02, 5.88404204e+02, 5.88404204e+02, 5.88404204e+02,
       4.31076258e+02, 4.31076258e+02, 4.31076258e+02, 4.31076258e+02,
       1.87860435e+02, 1.87860435e+02, 1.87860435e+02, 1.87860435e+02,
       8.76910821e+00, 8.76910821e+00, 8.76910821e+00, 8.76910821e+00,
       2.98951467e-02, 2.98951467e-02, 2.98951467e-02, 2.98951467e-02,
       1.00015908e-02, 1.00015908e-02, 1.00015908e-02, 1.00015908e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999979, 0.99999979,
       0.99999979, 0.99999979, 0.9999963 , 0.9999963 , 0.9999963 ,
       0.9999963 , 0.99995364, 0.99995364, 0.99995364, 0.99995364,
       0.99957767, 0.99957767, 0.99957767, 0.99957767, 0.99718309,
       0.99718309, 0.99718309, 0.99718309, 0.98626394, 0.98626394,
       0.98626394, 0.98626394, 0.95106797, 0.95106797, 0.95106797,
       0.95106797, 0.87123171, 0.87123171, 0.87123171, 0.87123171,
       0.74547768, 0.74547768, 0.74547768, 0.74547768, 0.58374479,
       0.58374479, 0.58374479, 0.58374479, 0.73207392, 0.73207392,
       0.73207392, 0.73207392, 1.60503247, 1.60503247, 1.60503247,
       1.60503247, 1.47308433, 1.47308433, 1.47308433, 1.47308433,
       1.05348836, 1.05348836, 1.05348836, 1.05348836, 1.00182288,
       1.00182288, 1.00182288, 1.00182288, 1.00000147, 1.00000147,
       1.00000147, 1.00000147, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       6.26870362e-13, 6.26870362e-13, 6.26870362e-13, 6.26870362e-13,
       1.08486278e-10, 1.08486278e-10, 1.08486278e-10, 1.08486278e-10,
       7.72018265e-09, 7.72018265e-09, 7.72018265e-09, 7.72018265e-09,
       3.08421177e-07, 3.08421177e-07, 3.08421177e-07, 3.08421177e-07,
       7.88931508e-06, 7.88931508e-06, 7.88931508e-06, 7.88931508e-06,
       1.38505209e-04, 1.38505209e-04, 1.38505209e-04, 1.38505209e-04,
       1.73457409e-03, 1.73457409e-03, 1.73457409e-03, 1.73457409e-03,
       1.58044887e-02, 1.58044887e-02, 1.58044887e-02, 1.58044887e-02,
       1.05496410e-01, 1.05496410e-01, 1.05496410e-01, 1.05496410e-01,
       5.16306177e-01, 5.16306177e-01, 5.16306177e-01, 5.16306177e-01,
       1.86327287e+00, 1.86327287e+00, 1.86327287e+00, 1.86327287e+00,
       5.07718607e+00, 5.07718607e+00, 5.07718607e+00, 5.07718607e+00,
       1.06862908e+01, 1.06862908e+01, 1.06862908e+01, 1.06862908e+01,
       1.67930222e+01, 1.67930222e+01, 1.67930222e+01, 1.67930222e+01,
       2.18771845e+01, 2.18771845e+01, 2.18771845e+01, 2.18771845e+01,
       1.69221015e+01, 1.69221015e+01, 1.69221015e+01, 1.69221015e+01,
       5.93555418e+00, 5.93555418e+00, 5.93555418e+00, 5.93555418e+00,
       2.67386567e-01, 2.67386567e-01, 2.67386567e-01, 2.67386567e-01,
       9.03539515e-04, 9.03539515e-04, 9.03539515e-04, 9.03539515e-04,
       1.74483618e-07, 1.74483618e-07, 1.74483618e-07, 1.74483618e-07,
       2.04118254e-11, 2.04118254e-11, 2.04118254e-11, 2.04118254e-11,
       2.17016642e-15, 2.17016642e-15, 2.17016642e-15, 2.17016642e-15,
       1.97944057e-19, 1.97944057e-19, 1.97944057e-19, 1.97944057e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999705e+02, 9.99999705e+02, 9.99999705e+02, 9.99999705e+02,
       9.99994818e+02, 9.99994818e+02, 9.99994818e+02, 9.99994818e+02,
       9.99935102e+02, 9.99935102e+02, 9.99935102e+02, 9.99935102e+02,
       9.99408895e+02, 9.99408895e+02, 9.99408895e+02, 9.99408895e+02,
       9.96061988e+02, 9.96061988e+02, 9.96061988e+02, 9.96061988e+02,
       9.80877450e+02, 9.80877450e+02, 9.80877450e+02, 9.80877450e+02,
       9.32612348e+02, 9.32612348e+02, 9.32612348e+02, 9.32612348e+02,
       8.26315203e+02, 8.26315203e+02, 8.26315203e+02, 8.26315203e+02,
       6.66605385e+02, 6.66605385e+02, 6.66605385e+02, 6.66605385e+02,
       5.27625315e+02, 5.27625315e+02, 5.27625315e+02, 5.27625315e+02,
       4.48693030e+02, 4.48693030e+02, 4.48693030e+02, 4.48693030e+02,
       3.34282701e+02, 3.34282701e+02, 3.34282701e+02, 3.34282701e+02,
       5.93797144e+01, 5.93797144e+01, 5.93797144e+01, 5.93797144e+01,
       6.98066976e-01, 6.98066976e-01, 6.98066976e-01, 6.98066976e-01,
       1.02408618e-02, 1.02408618e-02, 1.02408618e-02, 1.02408618e-02,
       1.00000206e-02, 1.00000206e-02, 1.00000206e-02, 1.00000206e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999945,
       0.99999945, 0.99999945, 0.99999945, 0.99999352, 0.99999352,
       0.99999352, 0.99999352, 0.99994026, 0.99994026, 0.99994026,
       0.99994026, 0.99956877, 0.99956877, 0.99956877, 0.99956877,
       0.99757146, 0.99757146, 0.99757146, 0.99757146, 0.98940582,
       0.98940582, 0.98940582, 0.98940582, 0.96438863, 0.96438863,
       0.96438863, 0.96438863, 0.90735626, 0.90735626, 0.90735626,
       0.90735626, 0.80924072, 0.80924072, 0.80924072, 0.80924072,
       0.69259558, 0.69259558, 0.69259558, 0.69259558, 0.55553296,
       0.55553296, 0.55553296, 0.55553296, 0.63553693, 0.63553693,
       0.63553693, 0.63553693, 1.41397872, 1.41397872, 1.41397872,
       1.41397872, 1.81820124, 1.81820124, 1.81820124, 1.81820124,
       1.20387024, 1.20387024, 1.20387024, 1.20387024, 1.01269879,
       1.01269879, 1.01269879, 1.01269879, 1.00012068, 1.00012068,
       1.00012068, 1.00012068, 1.00000002, 1.00000002, 1.00000002,
       1.00000002, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.25264676e-14, 1.25264676e-14, 1.25264676e-14, 1.25264676e-14,
       1.20223771e-12, 1.20223771e-12, 1.20223771e-12, 1.20223771e-12,
       6.76403932e-11, 6.76403932e-11, 6.76403932e-11, 6.76403932e-11,
       2.53837542e-09, 2.53837542e-09, 2.53837542e-09, 2.53837542e-09,
       6.79851771e-08, 6.79851771e-08, 6.79851771e-08, 6.79851771e-08,
       1.35400957e-06, 1.35400957e-06, 1.35400957e-06, 1.35400957e-06,
       2.05807406e-05, 2.05807406e-05, 2.05807406e-05, 2.05807406e-05,
       2.42573789e-04, 2.42573789e-04, 2.42573789e-04, 2.42573789e-04,
       2.23546366e-03, 2.23546366e-03, 2.23546366e-03, 2.23546366e-03,
       1.61374184e-02, 1.61374184e-02, 1.61374184e-02, 1.61374184e-02,
       9.09392120e-02, 9.09392120e-02, 9.09392120e-02, 9.09392120e-02,
       3.97807519e-01, 3.97807519e-01, 3.97807519e-01, 3.97807519e-01,
       1.34962483e+00, 1.34962483e+00, 1.34962483e+00, 1.34962483e+00,
       3.59635188e+00, 3.59635188e+00, 3.59635188e+00, 3.59635188e+00,
       7.76598011e+00, 7.76598011e+00, 7.76598011e+00, 7.76598011e+00,
       1.32165654e+01, 1.32165654e+01, 1.32165654e+01, 1.32165654e+01,
       1.80416341e+01, 1.80416341e+01, 1.80416341e+01, 1.80416341e+01,
       2.21202361e+01, 2.21202361e+01, 2.21202361e+01, 2.21202361e+01,
       1.94936742e+01, 1.94936742e+01, 1.94936742e+01, 1.94936742e+01,
       1.19370184e+01, 1.19370184e+01, 1.19370184e+01, 1.19370184e+01,
       1.76105690e+00, 1.76105690e+00, 1.76105690e+00, 1.76105690e+00,
       2.41795528e-02, 2.41795528e-02, 2.41795528e-02, 2.41795528e-02,
       1.84851625e-05, 1.84851625e-05, 1.84851625e-05, 1.84851625e-05,
       2.29350661e-09, 2.29350661e-09, 2.29350661e-09, 2.29350661e-09,
       2.81251593e-13, 2.81251593e-13, 2.81251593e-13, 2.81251593e-13,
       3.33754952e-17, 3.33754952e-17, 3.33754952e-17, 3.33754952e-17,
       3.64817469e-21, 3.64817469e-21, 3.64817469e-21, 3.64817469e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
       9.99999949e+02, 9.99999949e+02, 9.99999949e+02, 9.99999949e+02,
       9.99999230e+02, 9.99999230e+02, 9.99999230e+02, 9.99999230e+02,
       9.99990924e+02, 9.99990924e+02, 9.99990924e+02, 9.99990924e+02,
       9.99916362e+02, 9.99916362e+02, 9.99916362e+02, 9.99916362e+02,
       9.99396422e+02, 9.99396422e+02, 9.99396422e+02, 9.99396422e+02,
       9.96603842e+02, 9.96603842e+02, 9.96603842e+02, 9.96603842e+02,
       9.85228286e+02, 9.85228286e+02, 9.85228286e+02, 9.85228286e+02,
       9.50716061e+02, 9.50716061e+02, 9.50716061e+02, 9.50716061e+02,
       8.73656108e+02, 8.73656108e+02, 8.73656108e+02, 8.73656108e+02,
       7.45930207e+02, 7.45930207e+02, 7.45930207e+02, 7.45930207e+02,
       5.98241504e+02, 5.98241504e+02, 5.98241504e+02, 5.98241504e+02,
       4.88987461e+02, 4.88987461e+02, 4.88987461e+02, 4.88987461e+02,
       4.47945739e+02, 4.47945739e+02, 4.47945739e+02, 4.47945739e+02,
       4.21683465e+02, 4.21683465e+02, 4.21683465e+02, 4.21683465e+02,
       1.87467920e+02, 1.87467920e+02, 1.87467920e+02, 1.87467920e+02,
       9.17847574e+00, 9.17847574e+00, 9.17847574e+00, 9.17847574e+00,
       3.36232559e-02, 3.36232559e-02, 3.36232559e-02, 3.36232559e-02,
       1.00022223e-02, 1.00022223e-02, 1.00022223e-02, 1.00022223e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
       0.99999906, 0.99999906, 0.99999906, 0.99999906, 0.9999913 ,
       0.9999913 , 0.9999913 , 0.9999913 , 0.99993411, 0.99993411,
       0.99993411, 0.99993411, 0.99959236, 0.99959236, 0.99959236,
       0.99959236, 0.99795381, 0.99795381, 0.99795381, 0.99795381,
       0.99173747, 0.99173747, 0.99173747, 0.99173747, 0.97334866,
       0.97334866, 0.97334866, 0.97334866, 0.93132225, 0.93132225,
       0.93132225, 0.93132225, 0.85670103, 0.85670103, 0.85670103,
       0.85670103, 0.75179519, 0.75179519, 0.75179519, 0.75179519,
       0.65703686, 0.65703686, 0.65703686, 0.65703686, 0.54101531,
       0.54101531, 0.54101531, 0.54101531, 0.58205108, 0.58205108,
       0.58205108, 0.58205108, 1.1130807 , 1.1130807 , 1.1130807 ,
       1.1130807 , 1.96862265, 1.96862265, 1.96862265, 1.96862265,
       1.57590593, 1.57590593, 1.57590593, 1.57590593, 1.05786987,
       1.05786987, 1.05786987, 1.05786987, 1.00204055, 1.00204055,
       1.00204055, 1.00204055, 1.0000019 , 1.0000019 , 1.0000019 ,
       1.0000019 , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.32029549e-14, 1.32029549e-14, 1.32029549e-14, 1.32029549e-14,
       6.26759693e-13, 6.26759693e-13, 6.26759693e-13, 6.26759693e-13,
       2.24647978e-11, 2.24647978e-11, 2.24647978e-11, 2.24647978e-11,
       6.13853404e-10, 6.13853404e-10, 6.13853404e-10, 6.13853404e-10,
       1.31518549e-08, 1.31518549e-08, 1.31518549e-08, 1.31518549e-08,
       2.25105226e-07, 2.25105226e-07, 2.25105226e-07, 2.25105226e-07,
       3.11704412e-06, 3.11704412e-06, 3.11704412e-06, 3.11704412e-06,
       3.51988240e-05, 3.51988240e-05, 3.51988240e-05, 3.51988240e-05,
       3.25473435e-04, 3.25473435e-04, 3.25473435e-04, 3.25473435e-04,
       2.46554838e-03, 2.46554838e-03, 2.46554838e-03, 2.46554838e-03,
       1.52545971e-02, 1.52545971e-02, 1.52545971e-02, 1.52545971e-02,
       7.66123068e-02, 7.66123068e-02, 7.66123068e-02, 7.66123068e-02,
       3.10021140e-01, 3.10021140e-01, 3.10021140e-01, 3.10021140e-01,
       1.00682526e+00, 1.00682526e+00, 1.00682526e+00, 1.00682526e+00,
       2.63965332e+00, 2.63965332e+00, 2.63965332e+00, 2.63965332e+00,
       5.70034900e+00, 5.70034900e+00, 5.70034900e+00, 5.70034900e+00,
       1.04061053e+01, 1.04061053e+01, 1.04061053e+01, 1.04061053e+01,
       1.52105883e+01, 1.52105883e+01, 1.52105883e+01, 1.52105883e+01,
       1.89069479e+01, 1.89069479e+01, 1.89069479e+01, 1.89069479e+01,
       2.15955068e+01, 2.15955068e+01, 2.15955068e+01, 2.15955068e+01,
       2.04770440e+01, 2.04770440e+01, 2.04770440e+01, 2.04770440e+01,
       1.67010242e+01, 1.67010242e+01, 1.67010242e+01, 1.67010242e+01,
       6.26776546e+00, 6.26776546e+00, 6.26776546e+00, 6.26776546e+00,
       2.93122578e-01, 2.93122578e-01, 2.93122578e-01, 2.93122578e-01,
       1.07322557e-03, 1.07322557e-03, 1.07322557e-03, 1.07322557e-03,
       2.25735626e-07, 2.25735626e-07, 2.25735626e-07, 2.25735626e-07,
       2.90996976e-11, 2.90996976e-11, 2.90996976e-11, 2.90996976e-11,
       3.74345106e-15, 3.74345106e-15, 3.74345106e-15, 3.74345106e-15,
       4.59216061e-19, 4.59216061e-19, 4.59216061e-19, 4.59216061e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999883e+02, 9.99999883e+02, 9.99999883e+02, 9.99999883e+02,
       9.99998683e+02, 9.99998683e+02, 9.99998683e+02, 9.99998683e+02,
       9.99987822e+02, 9.99987822e+02, 9.99987822e+02, 9.99987822e+02,
       9.99907753e+02, 9.99907753e+02, 9.99907753e+02, 9.99907753e+02,
       9.99429417e+02, 9.99429417e+02, 9.99429417e+02, 9.99429417e+02,
       9.97137849e+02, 9.97137849e+02, 9.97137849e+02, 9.97137849e+02,
       9.88467410e+02, 9.88467410e+02, 9.88467410e+02, 9.88467410e+02,
       9.63001130e+02, 9.63001130e+02, 9.63001130e+02, 9.63001130e+02,
       9.05679035e+02, 9.05679035e+02, 9.05679035e+02, 9.05679035e+02,
       8.06647957e+02, 8.06647957e+02, 8.06647957e+02, 8.06647957e+02,
       6.73299670e+02, 6.73299670e+02, 6.73299670e+02, 6.73299670e+02,
       5.52322864e+02, 5.52322864e+02, 5.52322864e+02, 5.52322864e+02,
       4.63896638e+02, 4.63896638e+02, 4.63896638e+02, 4.63896638e+02,
       4.40267965e+02, 4.40267965e+02, 4.40267965e+02, 4.40267965e+02,
       4.55404885e+02, 4.55404885e+02, 4.55404885e+02, 4.55404885e+02,
       3.30608875e+02, 3.30608875e+02, 3.30608875e+02, 3.30608875e+02,
       6.09057285e+01, 6.09057285e+01, 6.09057285e+01, 6.09057285e+01,
       7.84789333e-01, 7.84789333e-01, 7.84789333e-01, 7.84789333e-01,
       1.03005361e-02, 1.03005361e-02, 1.03005361e-02, 1.03005361e-02,
       1.00000267e-02, 1.00000267e-02, 1.00000267e-02, 1.00000267e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999871, 0.99999871, 0.99999871, 0.99999871,
       0.99998991, 0.99998991, 0.99998991, 0.99998991, 0.99993341,
       0.99993341, 0.99993341, 0.99993341, 0.9996311 , 0.9996311 ,
       0.9996311 , 0.9996311 , 0.99829672, 0.99829672, 0.99829672,
       0.99829672, 0.99350175, 0.99350175, 0.99350175, 0.99350175,
       0.97967166, 0.97967166, 0.97967166, 0.97967166, 0.94797565,
       0.94797565, 0.94797565, 0.94797565, 0.89016937, 0.89016937,
       0.89016937, 0.89016937, 0.80411713, 0.80411713, 0.80411713,
       0.80411713, 0.70435588, 0.70435588, 0.70435588, 0.70435588,
       0.63219176, 0.63219176, 0.63219176, 0.63219176, 0.53878399,
       0.53878399, 0.53878399, 0.53878399, 0.55643947, 0.55643947,
       0.55643947, 0.55643947, 0.8772511 , 0.8772511 , 0.8772511 ,
       0.8772511 , 1.82224154, 1.82224154, 1.82224154, 1.82224154,
       2.01854416, 2.01854416, 2.01854416, 2.01854416, 1.22314586,
       1.22314586, 1.22314586, 1.22314586, 1.01361896, 1.01361896,
       1.01361896, 1.01361896, 1.00014201, 1.00014201, 1.00014201,
       1.00014201, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.66827014e-15, 5.66827014e-15, 5.66827014e-15, 5.66827014e-15,
       2.06506951e-13, 2.06506951e-13, 2.06506951e-13, 2.06506951e-13,
       5.66830764e-12, 5.66830764e-12, 5.66830764e-12, 5.66830764e-12,
       1.27515789e-10, 1.27515789e-10, 1.27515789e-10, 1.27515789e-10,
       2.36717323e-09, 2.36717323e-09, 2.36717323e-09, 2.36717323e-09,
       3.66285384e-08, 3.66285384e-08, 3.66285384e-08, 3.66285384e-08,
       4.75793331e-07, 4.75793331e-07, 4.75793331e-07, 4.75793331e-07,
       5.21185121e-06, 5.21185121e-06, 5.21185121e-06, 5.21185121e-06,
       4.82519858e-05, 4.82519858e-05, 4.82519858e-05, 4.82519858e-05,
       3.77579977e-04, 3.77579977e-04, 3.77579977e-04, 3.77579977e-04,
       2.49179255e-03, 2.49179255e-03, 2.49179255e-03, 2.49179255e-03,
       1.38047063e-02, 1.38047063e-02, 1.38047063e-02, 1.38047063e-02,
       6.37665597e-02, 6.37665597e-02, 6.37665597e-02, 6.37665597e-02,
       2.43683102e-01, 2.43683102e-01, 2.43683102e-01, 2.43683102e-01,
       7.66223944e-01, 7.66223944e-01, 7.66223944e-01, 7.66223944e-01,
       1.98617391e+00, 1.98617391e+00, 1.98617391e+00, 1.98617391e+00,
       4.30205955e+00, 4.30205955e+00, 4.30205955e+00, 4.30205955e+00,
       8.00059653e+00, 8.00059653e+00, 8.00059653e+00, 8.00059653e+00,
       1.25346822e+01, 1.25346822e+01, 1.25346822e+01, 1.25346822e+01,
       1.68111435e+01, 1.68111435e+01, 1.68111435e+01, 1.68111435e+01,
       1.95788515e+01, 1.95788515e+01, 1.95788515e+01, 1.95788515e+01,
       2.10731533e+01, 2.10731533e+01, 2.10731533e+01, 2.10731533e+01,
       2.05578258e+01, 2.05578258e+01, 2.05578258e+01, 2.05578258e+01,
       1.90079024e+01, 1.90079024e+01, 1.90079024e+01, 1.90079024e+01,
       1.21008552e+01, 1.21008552e+01, 1.21008552e+01, 1.21008552e+01,
       1.89958249e+00, 1.89958249e+00, 1.89958249e+00, 1.89958249e+00,
       2.69248743e-02, 2.69248743e-02, 2.69248743e-02, 2.69248743e-02,
       2.23176477e-05, 2.23176477e-05, 2.23176477e-05, 2.23176477e-05,
       2.89290650e-09, 2.89290650e-09, 2.89290650e-09, 2.89290650e-09,
       3.71325919e-13, 3.71325919e-13, 3.71325919e-13, 3.71325919e-13,
       4.73822364e-17, 4.73822364e-17, 4.73822364e-17, 4.73822364e-17,
       4.48577786e-21, 4.48577786e-21, 4.48577786e-21, 4.48577786e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999982e+02, 9.99999982e+02, 9.99999982e+02, 9.99999982e+02,
       9.99999805e+02, 9.99999805e+02, 9.99999805e+02, 9.99999805e+02,
       9.99998195e+02, 9.99998195e+02, 9.99998195e+02, 9.99998195e+02,
       9.99985872e+02, 9.99985872e+02, 9.99985872e+02, 9.99985872e+02,
       9.99906771e+02, 9.99906771e+02, 9.99906771e+02, 9.99906771e+02,
       9.99483625e+02, 9.99483625e+02, 9.99483625e+02, 9.99483625e+02,
       9.97617059e+02, 9.97617059e+02, 9.97617059e+02, 9.97617059e+02,
       9.90923338e+02, 9.90923338e+02, 9.90923338e+02, 9.90923338e+02,
       9.71719329e+02, 9.71719329e+02, 9.71719329e+02, 9.71719329e+02,
       9.28208660e+02, 9.28208660e+02, 9.28208660e+02, 9.28208660e+02,
       8.50492018e+02, 8.50492018e+02, 8.50492018e+02, 8.50492018e+02,
       7.38645328e+02, 7.38645328e+02, 7.38645328e+02, 7.38645328e+02,
       6.14927640e+02, 6.14927640e+02, 6.14927640e+02, 6.14927640e+02,
       5.21794916e+02, 5.21794916e+02, 5.21794916e+02, 5.21794916e+02,
       4.51902595e+02, 4.51902595e+02, 4.51902595e+02, 4.51902595e+02,
       4.36518666e+02, 4.36518666e+02, 4.36518666e+02, 4.36518666e+02,
       4.58585341e+02, 4.58585341e+02, 4.58585341e+02, 4.58585341e+02,
       4.14979500e+02, 4.14979500e+02, 4.14979500e+02, 4.14979500e+02,
       1.85583423e+02, 1.85583423e+02, 1.85583423e+02, 1.85583423e+02,
       9.86901789e+00, 9.86901789e+00, 9.86901789e+00, 9.86901789e+00,
       3.72214496e-02, 3.72214496e-02, 3.72214496e-02, 3.72214496e-02,
       1.00026945e-02, 1.00026945e-02, 1.00026945e-02, 1.00026945e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999981, 0.99999981,
       0.99999981, 0.99999981, 0.99999845, 0.99999845, 0.99999845,
       0.99999845, 0.99998928, 0.99998928, 0.99998928, 0.99998928,
       0.9999362 , 0.9999362 , 0.9999362 , 0.9999362 , 0.99967491,
       0.99967491, 0.99967491, 0.99967491, 0.99859164, 0.99859164,
       0.99859164, 0.99859164, 0.99485567, 0.99485567, 0.99485567,
       0.99485567, 0.98427987, 0.98427987, 0.98427987, 0.98427987,
       0.95996373, 0.95996373, 0.95996373, 0.95996373, 0.91464439,
       0.91464439, 0.91464439, 0.91464439, 0.8452093 , 0.8452093 ,
       0.8452093 , 0.8452093 , 0.75573999, 0.75573999, 0.75573999,
       0.75573999, 0.66831355, 0.66831355, 0.66831355, 0.66831355,
       0.61265528, 0.61265528, 0.61265528, 0.61265528, 0.54245435,
       0.54245435, 0.54245435, 0.54245435, 0.54720556, 0.54720556,
       0.54720556, 0.54720556, 0.73287   , 0.73287   , 0.73287   ,
       0.73287   , 1.49708567, 1.49708567, 1.49708567, 1.49708567,
       2.23159213, 2.23159213, 2.23159213, 2.23159213, 1.65090941,
       1.65090941, 1.65090941, 1.65090941, 1.06180375, 1.06180375,
       1.06180375, 1.06180375, 1.00222479, 1.00222479, 1.00222479,
       1.00222479, 1.00000228, 1.00000228, 1.00000228, 1.00000228,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.18160649e-15, 1.18160649e-15, 1.18160649e-15, 1.18160649e-15,
       5.46295183e-14, 5.46295183e-14, 5.46295183e-14, 5.46295183e-14,
       1.23457577e-12, 1.23457577e-12, 1.23457577e-12, 1.23457577e-12,
       2.43162832e-11, 2.43162832e-11, 2.43162832e-11, 2.43162832e-11,
       4.08347672e-10, 4.08347672e-10, 4.08347672e-10, 4.08347672e-10,
       5.88078054e-09, 5.88078054e-09, 5.88078054e-09, 5.88078054e-09,
       7.29422461e-08, 7.29422461e-08, 7.29422461e-08, 7.29422461e-08,
       7.81392346e-07, 7.81392346e-07, 7.81392346e-07, 7.81392346e-07,
       7.23903884e-06, 7.23903884e-06, 7.23903884e-06, 7.23903884e-06,
       5.79920652e-05, 5.79920652e-05, 5.79920652e-05, 5.79920652e-05,
       4.01085979e-04, 4.01085979e-04, 4.01085979e-04, 4.01085979e-04,
       2.38716000e-03, 2.38716000e-03, 2.38716000e-03, 2.38716000e-03,
       1.21649982e-02, 1.21649982e-02, 1.21649982e-02, 1.21649982e-02,
       5.27208845e-02, 5.27208845e-02, 5.27208845e-02, 5.27208845e-02,
       1.92824879e-01, 1.92824879e-01, 1.92824879e-01, 1.92824879e-01,
       5.91551803e-01, 5.91551803e-01, 5.91551803e-01, 5.91551803e-01,
       1.52124836e+00, 1.52124836e+00, 1.52124836e+00, 1.52124836e+00,
       3.30736543e+00, 3.30736543e+00, 3.30736543e+00, 3.30736543e+00,
       6.19589413e+00, 6.19589413e+00, 6.19589413e+00, 6.19589413e+00,
       1.02215292e+01, 1.02215292e+01, 1.02215292e+01, 1.02215292e+01,
       1.42224996e+01, 1.42224996e+01, 1.42224996e+01, 1.42224996e+01,
       1.79365451e+01, 1.79365451e+01, 1.79365451e+01, 1.79365451e+01,
       2.00798991e+01, 2.00798991e+01, 2.00798991e+01, 2.00798991e+01,
       2.07710129e+01, 2.07710129e+01, 2.07710129e+01, 2.07710129e+01,
       2.03738724e+01, 2.03738724e+01, 2.03738724e+01, 2.03738724e+01,
       1.98546337e+01, 1.98546337e+01, 1.98546337e+01, 1.98546337e+01,
       1.64879617e+01, 1.64879617e+01, 1.64879617e+01, 1.64879617e+01,
       6.52271251e+00, 6.52271251e+00, 6.52271251e+00, 6.52271251e+00,
       3.18021766e-01, 3.18021766e-01, 3.18021766e-01, 3.18021766e-01,
       1.23367760e-03, 1.23367760e-03, 1.23367760e-03, 1.23367760e-03,
       2.70934864e-07, 2.70934864e-07, 2.70934864e-07, 2.70934864e-07,
       3.52019501e-11, 3.52019501e-11, 3.52019501e-11, 3.52019501e-11,
       4.64992921e-15, 4.64992921e-15, 4.64992921e-15, 4.64992921e-15,
       6.02331549e-19, 6.02331549e-19, 6.02331549e-19, 6.02331549e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
       9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
       9.99999729e+02, 9.99999729e+02, 9.99999729e+02, 9.99999729e+02,
       9.99997830e+02, 9.99997830e+02, 9.99997830e+02, 9.99997830e+02,
       9.99984993e+02, 9.99984993e+02, 9.99984993e+02, 9.99984993e+02,
       9.99910685e+02, 9.99910685e+02, 9.99910685e+02, 9.99910685e+02,
       9.99544941e+02, 9.99544941e+02, 9.99544941e+02, 9.99544941e+02,
       9.98029370e+02, 9.98029370e+02, 9.98029370e+02, 9.98029370e+02,
       9.92810695e+02, 9.92810695e+02, 9.92810695e+02, 9.92810695e+02,
       9.78097477e+02, 9.78097477e+02, 9.78097477e+02, 9.78097477e+02,
       9.44564417e+02, 9.44564417e+02, 9.44564417e+02, 9.44564417e+02,
       8.83069293e+02, 8.83069293e+02, 8.83069293e+02, 8.83069293e+02,
       7.91287043e+02, 7.91287043e+02, 7.91287043e+02, 7.91287043e+02,
       6.77341634e+02, 6.77341634e+02, 6.77341634e+02, 6.77341634e+02,
       5.71866254e+02, 5.71866254e+02, 5.71866254e+02, 5.71866254e+02,
       4.98838482e+02, 4.98838482e+02, 4.98838482e+02, 4.98838482e+02,
       4.47748470e+02, 4.47748470e+02, 4.47748470e+02, 4.47748470e+02,
       4.36925122e+02, 4.36925122e+02, 4.36925122e+02, 4.36925122e+02,
       4.54783175e+02, 4.54783175e+02, 4.54783175e+02, 4.54783175e+02,
       4.45896460e+02, 4.45896460e+02, 4.45896460e+02, 4.45896460e+02,
       3.20411762e+02, 3.20411762e+02, 3.20411762e+02, 3.20411762e+02,
       6.15900758e+01, 6.15900758e+01, 6.15900758e+01, 6.15900758e+01,
       8.63421907e-01, 8.63421907e-01, 8.63421907e-01, 8.63421907e-01,
       1.03623773e-02, 1.03623773e-02, 1.03623773e-02, 1.03623773e-02,
       1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999976,
       0.99999976, 0.99999976, 0.99999976, 0.99999829, 0.99999829,
       0.99999829, 0.99999829, 0.99998925, 0.99998925, 0.99998925,
       0.99998925, 0.99994097, 0.99994097, 0.99994097, 0.99994097,
       0.99971837, 0.99971837, 0.99971837, 0.99971837, 0.99883983,
       0.99883983, 0.99883983, 0.99883983, 0.99590578, 0.99590578,
       0.99590578, 0.99590578, 0.98771715, 0.98771715, 0.98771715,
       0.98771715, 0.9688216 , 0.9688216 , 0.9688216 , 0.9688216 ,
       0.93291927, 0.93291927, 0.93291927, 0.93291927, 0.87626891,
       0.87626891, 0.87626891, 0.87626891, 0.79977768, 0.79977768,
       0.79977768, 0.79977768, 0.71616692, 0.71616692, 0.71616692,
       0.71616692, 0.6411649 , 0.6411649 , 0.6411649 , 0.6411649 ,
       0.59775517, 0.59775517, 0.59775517, 0.59775517, 0.54673392,
       0.54673392, 0.54673392, 0.54673392, 0.54631056, 0.54631056,
       0.54631056, 0.54631056, 0.65073939, 0.65073939, 0.65073939,
       0.65073939, 1.1624501 , 1.1624501 , 1.1624501 , 1.1624501 ,
       2.15930703, 2.15930703, 2.15930703, 2.15930703, 2.16998   ,
       2.16998   , 2.16998   , 2.16998   , 1.23507778, 1.23507778,
       1.23507778, 1.23507778, 1.0142605 , 1.0142605 , 1.0142605 ,
       1.0142605 , 1.00015687, 1.00015687, 1.00015687, 1.00015687,
       1.00000003, 1.00000003, 1.00000003, 1.00000003, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.27454384e-14, 1.27454384e-14, 1.27454384e-14, 1.27454384e-14,
       2.47272091e-13, 2.47272091e-13, 2.47272091e-13, 2.47272091e-13,
       4.40240671e-12, 4.40240671e-12, 4.40240671e-12, 4.40240671e-12,
       6.86645339e-11, 6.86645339e-11, 6.86645339e-11, 6.86645339e-11,
       9.37022264e-10, 9.37022264e-10, 9.37022264e-10, 9.37022264e-10,
       1.12236099e-08, 1.12236099e-08, 1.12236099e-08, 1.12236099e-08,
       1.18207072e-07, 1.18207072e-07, 1.18207072e-07, 1.18207072e-07,
       1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
       8.93418660e-06, 8.93418660e-06, 8.93418660e-06, 8.93418660e-06,
       6.40278059e-05, 6.40278059e-05, 6.40278059e-05, 6.40278059e-05,
       4.02322799e-04, 4.02322799e-04, 4.02322799e-04, 4.02322799e-04,
       2.20855552e-03, 2.20855552e-03, 2.20855552e-03, 2.20855552e-03,
       1.05384211e-02, 1.05384211e-02, 1.05384211e-02, 1.05384211e-02,
       4.34263931e-02, 4.34263931e-02, 4.34263931e-02, 4.34263931e-02,
       1.53409739e-01, 1.53409739e-01, 1.53409739e-01, 1.53409739e-01,
       4.61635401e-01, 4.61635401e-01, 4.61635401e-01, 4.61635401e-01,
       1.18057615e+00, 1.18057615e+00, 1.18057615e+00, 1.18057615e+00,
       2.57891597e+00, 2.57891597e+00, 2.57891597e+00, 2.57891597e+00,
       4.88068740e+00, 4.88068740e+00, 4.88068740e+00, 4.88068740e+00,
       8.19631338e+00, 8.19631338e+00, 8.19631338e+00, 8.19631338e+00,
       1.20755557e+01, 1.20755557e+01, 1.20755557e+01, 1.20755557e+01,
       1.56119331e+01, 1.56119331e+01, 1.56119331e+01, 1.56119331e+01,
       1.86987153e+01, 1.86987153e+01, 1.86987153e+01, 1.86987153e+01,
       2.03804546e+01, 2.03804546e+01, 2.03804546e+01, 2.03804546e+01,
       2.06321628e+01, 2.06321628e+01, 2.06321628e+01, 2.06321628e+01,
       2.02171402e+01, 2.02171402e+01, 2.02171402e+01, 2.02171402e+01,
       2.00646475e+01, 2.00646475e+01, 2.00646475e+01, 2.00646475e+01,
       1.86620483e+01, 1.86620483e+01, 1.86620483e+01, 1.86620483e+01,
       1.20985558e+01, 1.20985558e+01, 1.20985558e+01, 1.20985558e+01,
       1.97692771e+00, 1.97692771e+00, 1.97692771e+00, 1.97692771e+00,
       2.87213238e-02, 2.87213238e-02, 2.87213238e-02, 2.87213238e-02,
       2.50770351e-05, 2.50770351e-05, 2.50770351e-05, 2.50770351e-05,
       3.37123734e-09, 3.37123734e-09, 3.37123734e-09, 3.37123734e-09,
       4.42163288e-13, 4.42163288e-13, 4.42163288e-13, 4.42163288e-13,
       5.71495239e-17, 5.71495239e-17, 5.71495239e-17, 5.71495239e-17,
       4.50269287e-21, 4.50269287e-21, 4.50269287e-21, 4.50269287e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
       9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
       9.99999666e+02, 9.99999666e+02, 9.99999666e+02, 9.99999666e+02,
       9.99997604e+02, 9.99997604e+02, 9.99997604e+02, 9.99997604e+02,
       9.99984947e+02, 9.99984947e+02, 9.99984947e+02, 9.99984947e+02,
       9.99917367e+02, 9.99917367e+02, 9.99917367e+02, 9.99917367e+02,
       9.99605771e+02, 9.99605771e+02, 9.99605771e+02, 9.99605771e+02,
       9.98376476e+02, 9.98376476e+02, 9.98376476e+02, 9.98376476e+02,
       9.94276002e+02, 9.94276002e+02, 9.94276002e+02, 9.94276002e+02,
       9.82867864e+02, 9.82867864e+02, 9.82867864e+02, 9.82867864e+02,
       9.56722442e+02, 9.56722442e+02, 9.56722442e+02, 9.56722442e+02,
       9.07673554e+02, 9.07673554e+02, 9.07673554e+02, 9.07673554e+02,
       8.31875435e+02, 8.31875435e+02, 8.31875435e+02, 8.31875435e+02,
       7.32668167e+02, 7.32668167e+02, 7.32668167e+02, 7.32668167e+02,
       6.27675900e+02, 6.27675900e+02, 6.27675900e+02, 6.27675900e+02,
       5.40641296e+02, 5.40641296e+02, 5.40641296e+02, 5.40641296e+02,
       4.81411714e+02, 4.81411714e+02, 4.81411714e+02, 4.81411714e+02,
       4.46388141e+02, 4.46388141e+02, 4.46388141e+02, 4.46388141e+02,
       4.39501351e+02, 4.39501351e+02, 4.39501351e+02, 4.39501351e+02,
       4.52157297e+02, 4.52157297e+02, 4.52157297e+02, 4.52157297e+02,
       4.52775903e+02, 4.52775903e+02, 4.52775903e+02, 4.52775903e+02,
       4.01828833e+02, 4.01828833e+02, 4.01828833e+02, 4.01828833e+02,
       1.79447659e+02, 1.79447659e+02, 1.79447659e+02, 1.79447659e+02,
       1.01968433e+01, 1.01968433e+01, 1.01968433e+01, 1.01968433e+01,
       3.95481482e-02, 3.95481482e-02, 3.95481482e-02, 3.95481482e-02,
       1.00030400e-02, 1.00030400e-02, 1.00030400e-02, 1.00030400e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999973, 0.99999973, 0.99999973, 0.99999973, 0.99999822,
       0.99999822, 0.99999822, 0.99999822, 0.99998963, 0.99998963,
       0.99998963, 0.99998963, 0.99994668, 0.99994668, 0.99994668,
       0.99994668, 0.99975882, 0.99975882, 0.99975882, 0.99975882,
       0.99904627, 0.99904627, 0.99904627, 0.99904627, 0.99672714,
       0.99672714, 0.99672714, 0.99672714, 0.99032541, 0.99032541,
       0.99032541, 0.99032541, 0.97549498, 0.97549498, 0.97549498,
       0.97549498, 0.94682189, 0.94682189, 0.94682189, 0.94682189,
       0.90035943, 0.90035943, 0.90035943, 0.90035943, 0.83595399,
       0.83595399, 0.83595399, 0.83595399, 0.75816608, 0.75816608,
       0.75816608, 0.75816608, 0.68548506, 0.68548506, 0.68548506,
       0.68548506, 0.6201578 , 0.6201578 , 0.6201578 , 0.6201578 ,
       0.58688385, 0.58688385, 0.58688385, 0.58688385, 0.55035053,
       0.55035053, 0.55035053, 0.55035053, 0.54815759, 0.54815759,
       0.54815759, 0.54815759, 0.6060835 , 0.6060835 , 0.6060835 ,
       0.6060835 , 0.93361729, 0.93361729, 0.93361729, 0.93361729,
       1.87007459, 1.87007459, 1.87007459, 1.87007459, 2.43252002,
       2.43252002, 2.43252002, 2.43252002, 1.69813853, 1.69813853,
       1.69813853, 1.69813853, 1.06363124, 1.06363124, 1.06363124,
       1.06363124, 1.00230929, 1.00230929, 1.00230929, 1.00230929,
       1.00000249, 1.00000249, 1.00000249, 1.00000249, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.17918877e-15, 1.17918877e-15, 1.17918877e-15, 1.17918877e-15,
       4.63192568e-14, 4.63192568e-14, 4.63192568e-14, 4.63192568e-14,
       7.72269119e-13, 7.72269119e-13, 7.72269119e-13, 7.72269119e-13,
       1.13606117e-11, 1.13606117e-11, 1.13606117e-11, 1.13606117e-11,
       1.48668973e-10, 1.48668973e-10, 1.48668973e-10, 1.48668973e-10,
       1.73273478e-09, 1.73273478e-09, 1.73273478e-09, 1.73273478e-09,
       1.80065644e-08, 1.80065644e-08, 1.80065644e-08, 1.80065644e-08,
       1.66938246e-07, 1.66938246e-07, 1.66938246e-07, 1.66938246e-07,
       1.38047343e-06, 1.38047343e-06, 1.38047343e-06, 1.38047343e-06,
       1.01730358e-05, 1.01730358e-05, 1.01730358e-05, 1.01730358e-05,
       6.66926861e-05, 6.66926861e-05, 6.66926861e-05, 6.66926861e-05,
       3.87946266e-04, 3.87946266e-04, 3.87946266e-04, 3.87946266e-04,
       1.99495582e-03, 1.99495582e-03, 1.99495582e-03, 1.99495582e-03,
       9.02485988e-03, 9.02485988e-03, 9.02485988e-03, 9.02485988e-03,
       3.56969786e-02, 3.56969786e-02, 3.56969786e-02, 3.56969786e-02,
       1.22599309e-01, 1.22599309e-01, 1.22599309e-01, 1.22599309e-01,
       3.63265196e-01, 3.63265196e-01, 3.63265196e-01, 3.63265196e-01,
       9.25486637e-01, 9.25486637e-01, 9.25486637e-01, 9.25486637e-01,
       2.03251679e+00, 2.03251679e+00, 2.03251679e+00, 2.03251679e+00,
       3.88754026e+00, 3.88754026e+00, 3.88754026e+00, 3.88754026e+00,
       6.59692847e+00, 6.59692847e+00, 6.59692847e+00, 6.59692847e+00,
       1.00916624e+01, 1.00916624e+01, 1.00916624e+01, 1.00916624e+01,
       1.36128329e+01, 1.36128329e+01, 1.36128329e+01, 1.36128329e+01,
       1.67200615e+01, 1.67200615e+01, 1.67200615e+01, 1.67200615e+01,
       1.92196842e+01, 1.92196842e+01, 1.92196842e+01, 1.92196842e+01,
       2.05019813e+01, 2.05019813e+01, 2.05019813e+01, 2.05019813e+01,
       2.05553746e+01, 2.05553746e+01, 2.05553746e+01, 2.05553746e+01,
       2.01200849e+01, 2.01200849e+01, 2.01200849e+01, 2.01200849e+01,
       2.00852609e+01, 2.00852609e+01, 2.00852609e+01, 2.00852609e+01,
       1.95505845e+01, 1.95505845e+01, 1.95505845e+01, 1.95505845e+01,
       1.62261910e+01, 1.62261910e+01, 1.62261910e+01, 1.62261910e+01,
       6.54866545e+00, 6.54866545e+00, 6.54866545e+00, 6.54866545e+00,
       3.24170699e-01, 3.24170699e-01, 3.24170699e-01, 3.24170699e-01,
       1.29707680e-03, 1.29707680e-03, 1.29707680e-03, 1.29707680e-03,
       2.95706974e-07, 2.95706974e-07, 2.95706974e-07, 2.95706974e-07,
       3.91707739e-11, 3.91707739e-11, 3.91707739e-11, 3.91707739e-11,
       5.29501501e-15, 5.29501501e-15, 5.29501501e-15, 5.29501501e-15,
       6.89647830e-19, 6.89647830e-19, 6.89647830e-19, 6.89647830e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
       9.99999948e+02, 9.99999948e+02, 9.99999948e+02, 9.99999948e+02,
       9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
       9.99997505e+02, 9.99997505e+02, 9.99997505e+02, 9.99997505e+02,
       9.99985485e+02, 9.99985485e+02, 9.99985485e+02, 9.99985485e+02,
       9.99925359e+02, 9.99925359e+02, 9.99925359e+02, 9.99925359e+02,
       9.99662381e+02, 9.99662381e+02, 9.99662381e+02, 9.99662381e+02,
       9.98665240e+02, 9.98665240e+02, 9.98665240e+02, 9.98665240e+02,
       9.95422968e+02, 9.95422968e+02, 9.95422968e+02, 9.95422968e+02,
       9.86494880e+02, 9.86494880e+02, 9.86494880e+02, 9.86494880e+02,
       9.65922616e+02, 9.65922616e+02, 9.65922616e+02, 9.65922616e+02,
       9.26549448e+02, 9.26549448e+02, 9.26549448e+02, 9.26549448e+02,
       8.63811003e+02, 8.63811003e+02, 8.63811003e+02, 8.63811003e+02,
       7.79005137e+02, 7.79005137e+02, 7.79005137e+02, 7.79005137e+02,
       6.79897934e+02, 6.79897934e+02, 6.79897934e+02, 6.79897934e+02,
       5.89818941e+02, 5.89818941e+02, 5.89818941e+02, 5.89818941e+02,
       5.17012382e+02, 5.17012382e+02, 5.17012382e+02, 5.17012382e+02,
       4.68673522e+02, 4.68673522e+02, 4.68673522e+02, 4.68673522e+02,
       4.45586337e+02, 4.45586337e+02, 4.45586337e+02, 4.45586337e+02,
       4.42497030e+02, 4.42497030e+02, 4.42497030e+02, 4.42497030e+02,
       4.51096789e+02, 4.51096789e+02, 4.51096789e+02, 4.51096789e+02,
       4.53476996e+02, 4.53476996e+02, 4.53476996e+02, 4.53476996e+02,
       4.36824668e+02, 4.36824668e+02, 4.36824668e+02, 4.36824668e+02,
       3.07120077e+02, 3.07120077e+02, 3.07120077e+02, 3.07120077e+02,
       5.92749963e+01, 5.92749963e+01, 5.92749963e+01, 5.92749963e+01,
       8.68726123e-01, 8.68726123e-01, 8.68726123e-01, 8.68726123e-01,
       1.03848280e-02, 1.03848280e-02, 1.03848280e-02, 1.03848280e-02,
       1.00000350e-02, 1.00000350e-02, 1.00000350e-02, 1.00000350e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999996, 0.99999996, 0.99999996,
       0.99999996, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
       0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99999028,
       0.99999028, 0.99999028, 0.99999028, 0.99995266, 0.99995266,
       0.99995266, 0.99995266, 0.99979512, 0.99979512, 0.99979512,
       0.99979512, 0.99921684, 0.99921684, 0.99921684, 0.99921684,
       0.99737403, 0.99737403, 0.99737403, 0.99737403, 0.9923308 ,
       0.9923308 , 0.9923308 , 0.9923308 , 0.98059926, 0.98059926,
       0.98059926, 0.98059926, 0.95755427, 0.95755427, 0.95755427,
       0.95755427, 0.91927574, 0.91927574, 0.91927574, 0.91927574,
       0.86476987, 0.86476987, 0.86476987, 0.86476987, 0.79618357,
       0.79618357, 0.79618357, 0.79618357, 0.72306218, 0.72306218,
       0.72306218, 0.72306218, 0.66150523, 0.66150523, 0.66150523,
       0.66150523, 0.60422085, 0.60422085, 0.60422085, 0.60422085,
       0.57924424, 0.57924424, 0.57924424, 0.57924424, 0.55336757,
       0.55336757, 0.55336757, 0.55336757, 0.55041993, 0.55041993,
       0.55041993, 0.55041993, 0.58277776, 0.58277776, 0.58277776,
       0.58277776, 0.78662431, 0.78662431, 0.78662431, 0.78662431,
       1.48769623, 1.48769623, 1.48769623, 1.48769623, 2.43758196,
       2.43758196, 2.43758196, 2.43758196, 2.27678193, 2.27678193,
       2.27678193, 2.27678193, 1.23532054, 1.23532054, 1.23532054,
       1.23532054, 1.0142013 , 1.0142013 , 1.0142013 , 1.0142013 ,
       1.00015564, 1.00015564, 1.00015564, 1.00015564, 1.00000003,
       1.00000003, 1.00000003, 1.00000003, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       7.84780571e-15, 7.84780571e-15, 7.84780571e-15, 7.84780571e-15,
       1.31247225e-13, 1.31247225e-13, 1.31247225e-13, 1.31247225e-13,
       1.86099744e-12, 1.86099744e-12, 1.86099744e-12, 1.86099744e-12,
       2.35229555e-11, 2.35229555e-11, 2.35229555e-11, 2.35229555e-11,
       2.68230159e-10, 2.68230159e-10, 2.68230159e-10, 2.68230159e-10,
       2.75761076e-09, 2.75761076e-09, 2.75761076e-09, 2.75761076e-09,
       2.55719231e-08, 2.55719231e-08, 2.55719231e-08, 2.55719231e-08,
       2.13858422e-07, 2.13858422e-07, 2.13858422e-07, 2.13858422e-07,
       1.61179086e-06, 1.61179086e-06, 1.61179086e-06, 1.61179086e-06,
       1.09330523e-05, 1.09330523e-05, 1.09330523e-05, 1.09330523e-05,
       6.66147485e-05, 6.66147485e-05, 6.66147485e-05, 6.66147485e-05,
       3.63590132e-04, 3.63590132e-04, 3.63590132e-04, 3.63590132e-04,
       1.77131328e-03, 1.77131328e-03, 1.77131328e-03, 1.77131328e-03,
       7.66654068e-03, 7.66654068e-03, 7.66654068e-03, 7.66654068e-03,
       2.93110700e-02, 2.93110700e-02, 2.93110700e-02, 2.93110700e-02,
       9.83453389e-02, 9.83453389e-02, 9.83453389e-02, 9.83453389e-02,
       2.87757346e-01, 2.87757346e-01, 2.87757346e-01, 2.87757346e-01,
       7.31271666e-01, 7.31271666e-01, 7.31271666e-01, 7.31271666e-01,
       1.61513497e+00, 1.61513497e+00, 1.61513497e+00, 1.61513497e+00,
       3.12319769e+00, 3.12319769e+00, 3.12319769e+00, 3.12319769e+00,
       5.36427327e+00, 5.36427327e+00, 5.36427327e+00, 5.36427327e+00,
       8.35732099e+00, 8.35732099e+00, 8.35732099e+00, 8.35732099e+00,
       1.16892047e+01, 1.16892047e+01, 1.16892047e+01, 1.16892047e+01,
       1.49052400e+01, 1.49052400e+01, 1.49052400e+01, 1.49052400e+01,
       1.76214127e+01, 1.76214127e+01, 1.76214127e+01, 1.76214127e+01,
       1.95882774e+01, 1.95882774e+01, 1.95882774e+01, 1.95882774e+01,
       2.05031852e+01, 2.05031852e+01, 2.05031852e+01, 2.05031852e+01,
       2.04829872e+01, 2.04829872e+01, 2.04829872e+01, 2.04829872e+01,
       2.00863226e+01, 2.00863226e+01, 2.00863226e+01, 2.00863226e+01,
       2.00679880e+01, 2.00679880e+01, 2.00679880e+01, 2.00679880e+01,
       1.98869708e+01, 1.98869708e+01, 1.98869708e+01, 1.98869708e+01,
       1.83990451e+01, 1.83990451e+01, 1.83990451e+01, 1.83990451e+01,
       1.18973605e+01, 1.18973605e+01, 1.18973605e+01, 1.18973605e+01,
       1.92593412e+00, 1.92593412e+00, 1.92593412e+00, 1.92593412e+00,
       2.78926539e-02, 2.78926539e-02, 2.78926539e-02, 2.78926539e-02,
       2.46303900e-05, 2.46303900e-05, 2.46303900e-05, 2.46303900e-05,
       3.45965769e-09, 3.45965769e-09, 3.45965769e-09, 3.45965769e-09,
       4.70814125e-13, 4.70814125e-13, 4.70814125e-13, 4.70814125e-13,
       6.25944971e-17, 6.25944971e-17, 6.25944971e-17, 6.25944971e-17,
       1.40917331e-20, 1.40917331e-20, 1.40917331e-20, 1.40917331e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999940e+02, 9.99999940e+02, 9.99999940e+02, 9.99999940e+02,
       9.99999591e+02, 9.99999591e+02, 9.99999591e+02, 9.99999591e+02,
       9.99997508e+02, 9.99997508e+02, 9.99997508e+02, 9.99997508e+02,
       9.99986396e+02, 9.99986396e+02, 9.99986396e+02, 9.99986396e+02,
       9.99933726e+02, 9.99933726e+02, 9.99933726e+02, 9.99933726e+02,
       9.99713187e+02, 9.99713187e+02, 9.99713187e+02, 9.99713187e+02,
       9.98903881e+02, 9.98903881e+02, 9.98903881e+02, 9.98903881e+02,
       9.96326802e+02, 9.96326802e+02, 9.96326802e+02, 9.96326802e+02,
       9.89287663e+02, 9.89287663e+02, 9.89287663e+02, 9.89287663e+02,
       9.72982839e+02, 9.72982839e+02, 9.72982839e+02, 9.72982839e+02,
       9.41213875e+02, 9.41213875e+02, 9.41213875e+02, 9.41213875e+02,
       8.89161214e+02, 8.89161214e+02, 8.89161214e+02, 8.89161214e+02,
       8.16557244e+02, 8.16557244e+02, 8.16557244e+02, 8.16557244e+02,
       7.27792873e+02, 7.27792873e+02, 7.27792873e+02, 7.27792873e+02,
       6.36091679e+02, 6.36091679e+02, 6.36091679e+02, 6.36091679e+02,
       5.60608656e+02, 5.60608656e+02, 5.60608656e+02, 5.60608656e+02,
       4.99456928e+02, 4.99456928e+02, 4.99456928e+02, 4.99456928e+02,
       4.59916263e+02, 4.59916263e+02, 4.59916263e+02, 4.59916263e+02,
       4.44832936e+02, 4.44832936e+02, 4.44832936e+02, 4.44832936e+02,
       4.44855833e+02, 4.44855833e+02, 4.44855833e+02, 4.44855833e+02,
       4.51329612e+02, 4.51329612e+02, 4.51329612e+02, 4.51329612e+02,
       4.53075538e+02, 4.53075538e+02, 4.53075538e+02, 4.53075538e+02,
       4.48914983e+02, 4.48914983e+02, 4.48914983e+02, 4.48914983e+02,
       3.89344412e+02, 3.89344412e+02, 3.89344412e+02, 3.89344412e+02,
       1.69288930e+02, 1.69288930e+02, 1.69288930e+02, 1.69288930e+02,
       9.65027996e+00, 9.65027996e+00, 9.65027996e+00, 9.65027996e+00,
       3.79449184e-02, 3.79449184e-02, 3.79449184e-02, 3.79449184e-02,
       1.00029784e-02, 1.00029784e-02, 1.00029784e-02, 1.00029784e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.9999997 , 0.9999997 , 0.9999997 ,
       0.9999997 , 0.99999828, 0.99999828, 0.99999828, 0.99999828,
       0.99999108, 0.99999108, 0.99999108, 0.99999108, 0.9999585 ,
       0.9999585 , 0.9999585 , 0.9999585 , 0.99982697, 0.99982697,
       0.99982697, 0.99982697, 0.99935725, 0.99935725, 0.99935725,
       0.99935725, 0.99788644, 0.99788644, 0.99788644, 0.99788644,
       0.99388871, 0.99388871, 0.99388871, 0.99388871, 0.98455003,
       0.98455003, 0.98455003, 0.98455003, 0.96593499, 0.96593499,
       0.96593499, 0.96593499, 0.9342993 , 0.9342993 , 0.9342993 ,
       0.9342993 , 0.88804292, 0.88804292, 0.88804292, 0.88804292,
       0.82849089, 0.82849089, 0.82849089, 0.82849089, 0.75995557,
       0.75995557, 0.75995557, 0.75995557, 0.6948101 , 0.6948101 ,
       0.6948101 , 0.6948101 , 0.64178791, 0.64178791, 0.64178791,
       0.64178791, 0.59207003, 0.59207003, 0.59207003, 0.59207003,
       0.57419756, 0.57419756, 0.57419756, 0.57419756, 0.55596457,
       0.55596457, 0.55596457, 0.55596457, 0.5528484 , 0.5528484 ,
       0.5528484 , 0.5528484 , 0.57066328, 0.57066328, 0.57066328,
       0.57066328, 0.69535413, 0.69535413, 0.69535413, 0.69535413,
       1.17867884, 1.17867884, 1.17867884, 1.17867884, 2.21167836,
       2.21167836, 2.21167836, 2.21167836, 2.60264521, 2.60264521,
       2.60264521, 2.60264521, 1.7128863 , 1.7128863 , 1.7128863 ,
       1.7128863 , 1.06202573, 1.06202573, 1.06202573, 1.06202573,
       1.00220672, 1.00220672, 1.00220672, 1.00220672, 1.00000228,
       1.00000228, 1.00000228, 1.00000228, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.82667535e-16, 5.82667535e-16, 5.82667535e-16, 5.82667535e-16,
       2.37807029e-14, 2.37807029e-14, 2.37807029e-14, 2.37807029e-14,
       3.03202404e-13, 3.03202404e-13, 3.03202404e-13, 3.03202404e-13,
       3.71371250e-12, 3.71371250e-12, 3.71371250e-12, 3.71371250e-12,
       4.16077225e-11, 4.16077225e-11, 4.16077225e-11, 4.16077225e-11,
       4.24016982e-10, 4.24016982e-10, 4.24016982e-10, 4.24016982e-10,
       3.93302512e-09, 3.93302512e-09, 3.93302512e-09, 3.93302512e-09,
       3.32002473e-08, 3.32002473e-08, 3.32002473e-08, 3.32002473e-08,
       2.54903725e-07, 2.54903725e-07, 2.54903725e-07, 2.54903725e-07,
       1.77822075e-06, 1.77822075e-06, 1.77822075e-06, 1.77822075e-06,
       1.12541158e-05, 1.12541158e-05, 1.12541158e-05, 1.12541158e-05,
       6.44841773e-05, 6.44841773e-05, 6.44841773e-05, 6.44841773e-05,
       3.33602038e-04, 3.33602038e-04, 3.33602038e-04, 3.33602038e-04,
       1.55281901e-03, 1.55281901e-03, 1.55281901e-03, 1.55281901e-03,
       6.47471971e-03, 6.47471971e-03, 6.47471971e-03, 6.47471971e-03,
       2.40547896e-02, 2.40547896e-02, 2.40547896e-02, 2.40547896e-02,
       7.91410207e-02, 7.91410207e-02, 7.91410207e-02, 7.91410207e-02,
       2.29173025e-01, 2.29173025e-01, 2.29173025e-01, 2.29173025e-01,
       5.81473724e-01, 5.81473724e-01, 5.81473724e-01, 5.81473724e-01,
       1.29181150e+00, 1.29181150e+00, 1.29181150e+00, 1.29181150e+00,
       2.52541673e+00, 2.52541673e+00, 2.52541673e+00, 2.52541673e+00,
       4.39364483e+00, 4.39364483e+00, 4.39364483e+00, 4.39364483e+00,
       6.92177553e+00, 6.92177553e+00, 6.92177553e+00, 6.92177553e+00,
       1.00062705e+01, 1.00062705e+01, 1.00062705e+01, 1.00062705e+01,
       1.30551463e+01, 1.30551463e+01, 1.30551463e+01, 1.30551463e+01,
       1.59467542e+01, 1.59467542e+01, 1.59467542e+01, 1.59467542e+01,
       1.83397628e+01, 1.83397628e+01, 1.83397628e+01, 1.83397628e+01,
       1.98657446e+01, 1.98657446e+01, 1.98657446e+01, 1.98657446e+01,
       2.04639329e+01, 2.04639329e+01, 2.04639329e+01, 2.04639329e+01,
       2.03869143e+01, 2.03869143e+01, 2.03869143e+01, 2.03869143e+01,
       2.00832064e+01, 2.00832064e+01, 2.00832064e+01, 2.00832064e+01,
       2.00558910e+01, 2.00558910e+01, 2.00558910e+01, 2.00558910e+01,
       1.99917512e+01, 1.99917512e+01, 1.99917512e+01, 1.99917512e+01,
       1.93663021e+01, 1.93663021e+01, 1.93663021e+01, 1.93663021e+01,
       1.59156770e+01, 1.59156770e+01, 1.59156770e+01, 1.59156770e+01,
       6.34602264e+00, 6.34602264e+00, 6.34602264e+00, 6.34602264e+00,
       3.03838005e-01, 3.03838005e-01, 3.03838005e-01, 3.03838005e-01,
       1.18263967e-03, 1.18263967e-03, 1.18263967e-03, 1.18263967e-03,
       2.70515192e-07, 2.70515192e-07, 2.70515192e-07, 2.70515192e-07,
       3.73495771e-11, 3.73495771e-11, 3.73495771e-11, 3.73495771e-11,
       5.26225555e-15, 5.26225555e-15, 5.26225555e-15, 5.26225555e-15,
       7.33233058e-19, 7.33233058e-19, 7.33233058e-19, 7.33233058e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
       9.99999933e+02, 9.99999933e+02, 9.99999933e+02, 9.99999933e+02,
       9.99999579e+02, 9.99999579e+02, 9.99999579e+02, 9.99999579e+02,
       9.99997587e+02, 9.99997587e+02, 9.99997587e+02, 9.99997587e+02,
       9.99987518e+02, 9.99987518e+02, 9.99987518e+02, 9.99987518e+02,
       9.99941901e+02, 9.99941901e+02, 9.99941901e+02, 9.99941901e+02,
       9.99757768e+02, 9.99757768e+02, 9.99757768e+02, 9.99757768e+02,
       9.99100354e+02, 9.99100354e+02, 9.99100354e+02, 9.99100354e+02,
       9.97043041e+02, 9.97043041e+02, 9.97043041e+02, 9.97043041e+02,
       9.91459711e+02, 9.91459711e+02, 9.91459711e+02, 9.91459711e+02,
       9.78461298e+02, 9.78461298e+02, 9.78461298e+02, 9.78461298e+02,
       9.52721066e+02, 9.52721066e+02, 9.52721066e+02, 9.52721066e+02,
       9.09464048e+02, 9.09464048e+02, 9.09464048e+02, 9.09464048e+02,
       8.47290240e+02, 8.47290240e+02, 8.47290240e+02, 8.47290240e+02,
       7.69147303e+02, 7.69147303e+02, 7.69147303e+02, 7.69147303e+02,
       6.81824841e+02, 6.81824841e+02, 6.81824841e+02, 6.81824841e+02,
       6.01613262e+02, 6.01613262e+02, 6.01613262e+02, 6.01613262e+02,
       5.36678519e+02, 5.36678519e+02, 5.36678519e+02, 5.36678519e+02,
       4.86252372e+02, 4.86252372e+02, 4.86252372e+02, 4.86252372e+02,
       4.54602117e+02, 4.54602117e+02, 4.54602117e+02, 4.54602117e+02,
       4.44345600e+02, 4.44345600e+02, 4.44345600e+02, 4.44345600e+02,
       4.46359684e+02, 4.46359684e+02, 4.46359684e+02, 4.46359684e+02,
       4.51901635e+02, 4.51901635e+02, 4.51901635e+02, 4.51901635e+02,
       4.52889504e+02, 4.52889504e+02, 4.52889504e+02, 4.52889504e+02,
       4.52265646e+02, 4.52265646e+02, 4.52265646e+02, 4.52265646e+02,
       4.29084128e+02, 4.29084128e+02, 4.29084128e+02, 4.29084128e+02,
       2.92805528e+02, 2.92805528e+02, 2.92805528e+02, 2.92805528e+02,
       5.43708093e+01, 5.43708093e+01, 5.43708093e+01, 5.43708093e+01,
       7.81644380e-01, 7.81644380e-01, 7.81644380e-01, 7.81644380e-01,
       1.03355903e-02, 1.03355903e-02, 1.03355903e-02, 1.03355903e-02,
       1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
       0.99999995, 0.99999995, 0.99999995, 0.9999997 , 0.9999997 ,
       0.9999997 , 0.9999997 , 0.99999837, 0.99999837, 0.99999837,
       0.99999837, 0.99999195, 0.99999195, 0.99999195, 0.99999195,
       0.99996397, 0.99996397, 0.99996397, 0.99996397, 0.9998545 ,
       0.9998545 , 0.9998545 , 0.9998545 , 0.9994726 , 0.9994726 ,
       0.9994726 , 0.9994726 , 0.9982943 , 0.9982943 , 0.9982943 ,
       0.9982943 , 0.99510915, 0.99510915, 0.99510915, 0.99510915,
       0.98763719, 0.98763719, 0.98763719, 0.98763719, 0.97253998,
       0.97253998, 0.97253998, 0.97253998, 0.94633146, 0.94633146,
       0.94633146, 0.94633146, 0.90701242, 0.90701242, 0.90701242,
       0.90701242, 0.85516088, 0.85516088, 0.85516088, 0.85516088,
       0.79324114, 0.79324114, 0.79324114, 0.79324114, 0.72928116,
       0.72928116, 0.72928116, 0.72928116, 0.67174921, 0.67174921,
       0.67174921, 0.67174921, 0.62584268, 0.62584268, 0.62584268,
       0.62584268, 0.58259287, 0.58259287, 0.58259287, 0.58259287,
       0.57068029, 0.57068029, 0.57068029, 0.57068029, 0.55836177,
       0.55836177, 0.55836177, 0.55836177, 0.55573867, 0.55573867,
       0.55573867, 0.55573867, 0.56443057, 0.56443057, 0.56443057,
       0.56443057, 0.6395892 , 0.6395892 , 0.6395892 , 0.6395892 ,
       0.96358615, 0.96358615, 0.96358615, 0.96358615, 1.83549949,
       1.83549949, 1.83549949, 1.83549949, 2.66715283, 2.66715283,
       2.66715283, 2.66715283, 2.3438958 , 2.3438958 , 2.3438958 ,
       2.3438958 , 1.22354901, 1.22354901, 1.22354901, 1.22354901,
       1.01330763, 1.01330763, 1.01330763, 1.01330763, 1.00013509,
       1.00013509, 1.00013509, 1.00013509, 1.00000003, 1.00000003,
       1.00000003, 1.00000003, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       3.27252719e-15, 3.27252719e-15, 3.27252719e-15, 3.27252719e-15,
       5.02048681e-14, 5.02048681e-14, 5.02048681e-14, 5.02048681e-14,
       5.87307060e-13, 5.87307060e-13, 5.87307060e-13, 5.87307060e-13,
       6.46241559e-12, 6.46241559e-12, 6.46241559e-12, 6.46241559e-12,
       6.53785309e-11, 6.53785309e-11, 6.53785309e-11, 6.53785309e-11,
       6.06614778e-10, 6.06614778e-10, 6.06614778e-10, 6.06614778e-10,
       5.16153797e-09, 5.16153797e-09, 5.16153797e-09, 5.16153797e-09,
       4.02536022e-08, 4.02536022e-08, 4.02536022e-08, 4.02536022e-08,
       2.87499828e-07, 2.87499828e-07, 2.87499828e-07, 2.87499828e-07,
       1.87827130e-06, 1.87827130e-06, 1.87827130e-06, 1.87827130e-06,
       1.12063726e-05, 1.12063726e-05, 1.12063726e-05, 1.12063726e-05,
       6.09321654e-05, 6.09321654e-05, 6.09321654e-05, 6.09321654e-05,
       3.01124184e-04, 3.01124184e-04, 3.01124184e-04, 3.01124184e-04,
       1.34806658e-03, 1.34806658e-03, 1.34806658e-03, 1.34806658e-03,
       5.44437268e-03, 5.44437268e-03, 5.44437268e-03, 5.44437268e-03,
       1.97371145e-02, 1.97371145e-02, 1.97371145e-02, 1.97371145e-02,
       6.38597905e-02, 6.38597905e-02, 6.38597905e-02, 6.38597905e-02,
       1.83325531e-01, 1.83325531e-01, 1.83325531e-01, 1.83325531e-01,
       4.64737704e-01, 4.64737704e-01, 4.64737704e-01, 4.64737704e-01,
       1.03856729e+00, 1.03856729e+00, 1.03856729e+00, 1.03856729e+00,
       2.05236016e+00, 2.05236016e+00, 2.05236016e+00, 2.05236016e+00,
       3.61812720e+00, 3.61812720e+00, 3.61812720e+00, 3.61812720e+00,
       5.77166819e+00, 5.77166819e+00, 5.77166819e+00, 5.77166819e+00,
       8.48843316e+00, 8.48843316e+00, 8.48843316e+00, 8.48843316e+00,
       1.14236988e+01, 1.14236988e+01, 1.14236988e+01, 1.14236988e+01,
       1.42358355e+01, 1.42358355e+01, 1.42358355e+01, 1.42358355e+01,
       1.68025698e+01, 1.68025698e+01, 1.68025698e+01, 1.68025698e+01,
       1.88802206e+01, 1.88802206e+01, 1.88802206e+01, 1.88802206e+01,
       2.00711843e+01, 2.00711843e+01, 2.00711843e+01, 2.00711843e+01,
       2.04384777e+01, 2.04384777e+01, 2.04384777e+01, 2.04384777e+01,
       2.02877280e+01, 2.02877280e+01, 2.02877280e+01, 2.02877280e+01,
       2.00672694e+01, 2.00672694e+01, 2.00672694e+01, 2.00672694e+01,
       2.00505256e+01, 2.00505256e+01, 2.00505256e+01, 2.00505256e+01,
       2.00195354e+01, 2.00195354e+01, 2.00195354e+01, 2.00195354e+01,
       1.97774623e+01, 1.97774623e+01, 1.97774623e+01, 1.97774623e+01,
       1.81444582e+01, 1.81444582e+01, 1.81444582e+01, 1.81444582e+01,
       1.15550729e+01, 1.15550729e+01, 1.15550729e+01, 1.15550729e+01,
       1.77081733e+00, 1.77081733e+00, 1.77081733e+00, 1.77081733e+00,
       2.44888120e-02, 2.44888120e-02, 2.44888120e-02, 2.44888120e-02,
       2.06002983e-05, 2.06002983e-05, 2.06002983e-05, 2.06002983e-05,
       2.98049908e-09, 2.98049908e-09, 2.98049908e-09, 2.98049908e-09,
       4.19450571e-13, 4.19450571e-13, 4.19450571e-13, 4.19450571e-13,
       5.78774071e-17, 5.78774071e-17, 5.78774071e-17, 5.78774071e-17,
       4.37610151e-21, 4.37610151e-21, 4.37610151e-21, 4.37610151e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999930e+02, 9.99999930e+02, 9.99999930e+02, 9.99999930e+02,
       9.99999581e+02, 9.99999581e+02, 9.99999581e+02, 9.99999581e+02,
       9.99997720e+02, 9.99997720e+02, 9.99997720e+02, 9.99997720e+02,
       9.99988733e+02, 9.99988733e+02, 9.99988733e+02, 9.99988733e+02,
       9.99949561e+02, 9.99949561e+02, 9.99949561e+02, 9.99949561e+02,
       9.99796311e+02, 9.99796311e+02, 9.99796311e+02, 9.99796311e+02,
       9.99261774e+02, 9.99261774e+02, 9.99261774e+02, 9.99261774e+02,
       9.97613331e+02, 9.97613331e+02, 9.97613331e+02, 9.97613331e+02,
       9.93162704e+02, 9.93162704e+02, 9.93162704e+02, 9.93162704e+02,
       9.82750522e+02, 9.82750522e+02, 9.82750522e+02, 9.82750522e+02,
       9.61824610e+02, 9.61824610e+02, 9.61824610e+02, 9.61824610e+02,
       9.25831706e+02, 9.25831706e+02, 9.25831706e+02, 9.25831706e+02,
       8.72601859e+02, 8.72601859e+02, 8.72601859e+02, 8.72601859e+02,
       8.03814503e+02, 8.03814503e+02, 8.03814503e+02, 8.03814503e+02,
       7.23838409e+02, 7.23838409e+02, 7.23838409e+02, 7.23838409e+02,
       6.43384851e+02, 6.43384851e+02, 6.43384851e+02, 6.43384851e+02,
       5.74112241e+02, 5.74112241e+02, 5.74112241e+02, 5.74112241e+02,
       5.17349942e+02, 5.17349942e+02, 5.17349942e+02, 5.17349942e+02,
       4.75919956e+02, 4.75919956e+02, 4.75919956e+02, 4.75919956e+02,
       4.51607155e+02, 4.51607155e+02, 4.51607155e+02, 4.51607155e+02,
       4.44470585e+02, 4.44470585e+02, 4.44470585e+02, 4.44470585e+02,
       4.47515366e+02, 4.47515366e+02, 4.47515366e+02, 4.47515366e+02,
       4.52054920e+02, 4.52054920e+02, 4.52054920e+02, 4.52054920e+02,
       4.52910758e+02, 4.52910758e+02, 4.52910758e+02, 4.52910758e+02,
       4.53087888e+02, 4.53087888e+02, 4.53087888e+02, 4.53087888e+02,
       4.45232329e+02, 4.45232329e+02, 4.45232329e+02, 4.45232329e+02,
       3.77819444e+02, 3.77819444e+02, 3.77819444e+02, 3.77819444e+02,
       1.56913286e+02, 1.56913286e+02, 1.56913286e+02, 1.56913286e+02,
       8.48730097e+00, 8.48730097e+00, 8.48730097e+00, 8.48730097e+00,
       3.29887631e-02, 3.29887631e-02, 3.29887631e-02, 3.29887631e-02,
       1.00024710e-02, 1.00024710e-02, 1.00024710e-02, 1.00024710e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999971,
       0.99999971, 0.99999971, 0.99999971, 0.99999849, 0.99999849,
       0.99999849, 0.99999849, 0.99999283, 0.99999283, 0.99999283,
       0.99999283, 0.99996896, 0.99996896, 0.99996896, 0.99996896,
       0.99987805, 0.99987805, 0.99987805, 0.99987805, 0.99956724,
       0.99956724, 0.99956724, 0.99956724, 0.99862027, 0.99862027,
       0.99862027, 0.99862027, 0.99607172, 0.99607172, 0.99607172,
       0.99607172, 0.99006817, 0.99006817, 0.99006817, 0.99006817,
       0.97778423, 0.97778423, 0.97778423, 0.97778423, 0.95603297,
       0.95603297, 0.95603297, 0.95603297, 0.92259283, 0.92259283,
       0.92259283, 0.92259283, 0.87738557, 0.87738557, 0.87738557,
       0.87738557, 0.82228577, 0.82228577, 0.82228577, 0.82228577,
       0.76124912, 0.76124912, 0.76124912, 0.76124912, 0.7039925 ,
       0.7039925 , 0.7039925 , 0.7039925 , 0.65236277, 0.65236277,
       0.65236277, 0.65236277, 0.6131337 , 0.6131337 , 0.6131337 ,
       0.6131337 , 0.57531994, 0.57531994, 0.57531994, 0.57531994,
       0.56785759, 0.56785759, 0.56785759, 0.56785759, 0.56038513,
       0.56038513, 0.56038513, 0.56038513, 0.55900443, 0.55900443,
       0.55900443, 0.55900443, 0.56184189, 0.56184189, 0.56184189,
       0.56184189, 0.60586371, 0.60586371, 0.60586371, 0.60586371,
       0.81871248, 0.81871248, 0.81871248, 0.81871248, 1.4581625 ,
       1.4581625 , 1.4581625 , 1.4581625 , 2.52120104, 2.52120104,
       2.52120104, 2.52120104, 2.74380791, 2.74380791, 2.74380791,
       2.74380791, 1.69735103, 1.69735103, 1.69735103, 1.69735103,
       1.0575523 , 1.0575523 , 1.0575523 , 1.0575523 , 1.00195343,
       1.00195343, 1.00195343, 1.00195343, 1.00000178, 1.00000178,
       1.00000178, 1.00000178, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.91889946e-15, 5.91889946e-15, 5.91889946e-15, 5.91889946e-15,
       9.30184492e-14, 9.30184492e-14, 9.30184492e-14, 9.30184492e-14,
       1.00936002e-12, 1.00936002e-12, 1.00936002e-12, 1.00936002e-12,
       1.01033815e-11, 1.01033815e-11, 1.01033815e-11, 1.01033815e-11,
       9.37627227e-11, 9.37627227e-11, 9.37627227e-11, 9.37627227e-11,
       8.03306517e-10, 8.03306517e-10, 8.03306517e-10, 8.03306517e-10,
       6.34932257e-09, 6.34932257e-09, 6.34932257e-09, 6.34932257e-09,
       4.62683708e-08, 4.62683708e-08, 4.62683708e-08, 4.62683708e-08,
       3.10550365e-07, 3.10550365e-07, 3.10550365e-07, 3.10550365e-07,
       1.91739687e-06, 1.91739687e-06, 1.91739687e-06, 1.91739687e-06,
       1.08719093e-05, 1.08719093e-05, 1.08719093e-05, 1.08719093e-05,
       5.64951242e-05, 5.64951242e-05, 5.64951242e-05, 5.64951242e-05,
       2.68353586e-04, 2.68353586e-04, 2.68353586e-04, 2.68353586e-04,
       1.16148888e-03, 1.16148888e-03, 1.16148888e-03, 1.16148888e-03,
       4.56296110e-03, 4.56296110e-03, 4.56296110e-03, 4.56296110e-03,
       1.61948234e-02, 1.61948234e-02, 1.61948234e-02, 1.61948234e-02,
       5.16501942e-02, 5.16501942e-02, 5.16501942e-02, 5.16501942e-02,
       1.47193741e-01, 1.47193741e-01, 1.47193741e-01, 1.47193741e-01,
       3.73008312e-01, 3.73008312e-01, 3.73008312e-01, 3.73008312e-01,
       8.38464798e-01, 8.38464798e-01, 8.38464798e-01, 8.38464798e-01,
       1.67451578e+00, 1.67451578e+00, 1.67451578e+00, 1.67451578e+00,
       2.99122036e+00, 2.99122036e+00, 2.99122036e+00, 2.99122036e+00,
       4.83584276e+00, 4.83584276e+00, 4.83584276e+00, 4.83584276e+00,
       7.19273469e+00, 7.19273469e+00, 7.19273469e+00, 7.19273469e+00,
       9.93587440e+00, 9.93587440e+00, 9.93587440e+00, 9.93587440e+00,
       1.26632029e+01, 1.26632029e+01, 1.26632029e+01, 1.26632029e+01,
       1.52391788e+01, 1.52391788e+01, 1.52391788e+01, 1.52391788e+01,
       1.75131368e+01, 1.75131368e+01, 1.75131368e+01, 1.75131368e+01,
       1.92750068e+01, 1.92750068e+01, 1.92750068e+01, 1.92750068e+01,
       2.02071764e+01, 2.02071764e+01, 2.02071764e+01, 2.02071764e+01,
       2.04224324e+01, 2.04224324e+01, 2.04224324e+01, 2.04224324e+01,
       2.02143397e+01, 2.02143397e+01, 2.02143397e+01, 2.02143397e+01,
       2.00448842e+01, 2.00448842e+01, 2.00448842e+01, 2.00448842e+01,
       2.00355481e+01, 2.00355481e+01, 2.00355481e+01, 2.00355481e+01,
       2.00263366e+01, 2.00263366e+01, 2.00263366e+01, 2.00263366e+01,
       1.99415493e+01, 1.99415493e+01, 1.99415493e+01, 1.99415493e+01,
       1.92029402e+01, 1.92029402e+01, 1.92029402e+01, 1.92029402e+01,
       1.55549094e+01, 1.55549094e+01, 1.55549094e+01, 1.55549094e+01,
       5.98150672e+00, 5.98150672e+00, 5.98150672e+00, 5.98150672e+00,
       2.65685194e-01, 2.65685194e-01, 2.65685194e-01, 2.65685194e-01,
       9.54732742e-04, 9.54732742e-04, 9.54732742e-04, 9.54732742e-04,
       2.10803427e-07, 2.10803427e-07, 2.10803427e-07, 2.10803427e-07,
       3.02033655e-11, 3.02033655e-11, 3.02033655e-11, 3.02033655e-11,
       4.41057656e-15, 4.41057656e-15, 4.41057656e-15, 4.41057656e-15,
       6.12854624e-19, 6.12854624e-19, 6.12854624e-19, 6.12854624e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999928e+02, 9.99999928e+02, 9.99999928e+02, 9.99999928e+02,
       9.99999593e+02, 9.99999593e+02, 9.99999593e+02, 9.99999593e+02,
       9.99997886e+02, 9.99997886e+02, 9.99997886e+02, 9.99997886e+02,
       9.99989959e+02, 9.99989959e+02, 9.99989959e+02, 9.99989959e+02,
       9.99956542e+02, 9.99956542e+02, 9.99956542e+02, 9.99956542e+02,
       9.99829284e+02, 9.99829284e+02, 9.99829284e+02, 9.99829284e+02,
       9.99394226e+02, 9.99394226e+02, 9.99394226e+02, 9.99394226e+02,
       9.98069219e+02, 9.98069219e+02, 9.98069219e+02, 9.98069219e+02,
       9.94506766e+02, 9.94506766e+02, 9.94506766e+02, 9.94506766e+02,
       9.86133189e+02, 9.86133189e+02, 9.86133189e+02, 9.86133189e+02,
       9.69074355e+02, 9.69074355e+02, 9.69074355e+02, 9.69074355e+02,
       9.39098214e+02, 9.39098214e+02, 9.39098214e+02, 9.39098214e+02,
       8.93564448e+02, 8.93564448e+02, 8.93564448e+02, 8.93564448e+02,
       8.33059937e+02, 8.33059937e+02, 8.33059937e+02, 8.33059937e+02,
       7.60987238e+02, 7.60987238e+02, 7.60987238e+02, 7.60987238e+02,
       6.83226607e+02, 6.83226607e+02, 6.83226607e+02, 6.83226607e+02,
       6.12243005e+02, 6.12243005e+02, 6.12243005e+02, 6.12243005e+02,
       5.51401650e+02, 5.51401650e+02, 5.51401650e+02, 5.51401650e+02,
       5.01944900e+02, 5.01944900e+02, 5.01944900e+02, 5.01944900e+02,
       4.67782716e+02, 4.67782716e+02, 4.67782716e+02, 4.67782716e+02,
       4.49784516e+02, 4.49784516e+02, 4.49784516e+02, 4.49784516e+02,
       4.45064233e+02, 4.45064233e+02, 4.45064233e+02, 4.45064233e+02,
       4.48787029e+02, 4.48787029e+02, 4.48787029e+02, 4.48787029e+02,
       4.51978695e+02, 4.51978695e+02, 4.51978695e+02, 4.51978695e+02,
       4.52793680e+02, 4.52793680e+02, 4.52793680e+02, 4.52793680e+02,
       4.53282403e+02, 4.53282403e+02, 4.53282403e+02, 4.53282403e+02,
       4.50955061e+02, 4.50955061e+02, 4.50955061e+02, 4.50955061e+02,
       4.22213148e+02, 4.22213148e+02, 4.22213148e+02, 4.22213148e+02,
       2.77875953e+02, 2.77875953e+02, 2.77875953e+02, 2.77875953e+02,
       4.81022077e+01, 4.81022077e+01, 4.81022077e+01, 4.81022077e+01,
       6.43549685e-01, 6.43549685e-01, 6.43549685e-01, 6.43549685e-01,
       1.02488911e-02, 1.02488911e-02, 1.02488911e-02, 1.02488911e-02,
       1.00000249e-02, 1.00000249e-02, 1.00000249e-02, 1.00000249e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999995, 0.99999995, 0.99999995, 0.99999995,
       0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999862,
       0.99999862, 0.99999862, 0.99999862, 0.99999367, 0.99999367,
       0.99999367, 0.99999367, 0.99997341, 0.99997341, 0.99997341,
       0.99997341, 0.99989805, 0.99989805, 0.99989805, 0.99989805,
       0.99964482, 0.99964482, 0.99964482, 0.99964482, 0.99888164,
       0.99888164, 0.99888164, 0.99888164, 0.99683513, 0.99683513,
       0.99683513, 0.99683513, 0.99199451, 0.99199451, 0.99199451,
       0.99199451, 0.9819733 , 0.9819733 , 0.9819733 , 0.9819733 ,
       0.96389763, 0.96389763, 0.96389763, 0.96389763, 0.93545495,
       0.93545495, 0.93545495, 0.93545495, 0.89604286, 0.89604286,
       0.89604286, 0.89604286, 0.84702851, 0.84702851, 0.84702851,
       0.84702851, 0.79079924, 0.79079924, 0.79079924, 0.79079924,
       0.73376007, 0.73376007, 0.73376007, 0.73376007, 0.68273638,
       0.68273638, 0.68273638, 0.68273638, 0.63612561, 0.63612561,
       0.63612561, 0.63612561, 0.60307654, 0.60307654, 0.60307654,
       0.60307654, 0.57002222, 0.57002222, 0.57002222, 0.57002222,
       0.56543931, 0.56543931, 0.56543931, 0.56543931, 0.56183756,
       0.56183756, 0.56183756, 0.56183756, 0.56199531, 0.56199531,
       0.56199531, 0.56199531, 0.56171758, 0.56171758, 0.56171758,
       0.56171758, 0.58609083, 0.58609083, 0.58609083, 0.58609083,
       0.72311334, 0.72311334, 0.72311334, 0.72311334, 1.17609219,
       1.17609219, 1.17609219, 1.17609219, 2.18113668, 2.18113668,
       2.18113668, 2.18113668, 2.86626909, 2.86626909, 2.86626909,
       2.86626909, 2.37228972, 2.37228972, 2.37228972, 2.37228972,
       1.2039004 , 1.2039004 , 1.2039004 , 1.2039004 , 1.01187606,
       1.01187606, 1.01187606, 1.01187606, 1.00010508, 1.00010508,
       1.00010508, 1.00010508, 1.00000002, 1.00000002, 1.00000002,
       1.00000002, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.33539348e-14, 1.33539348e-14, 1.33539348e-14, 1.33539348e-14,
       1.55607325e-13, 1.55607325e-13, 1.55607325e-13, 1.55607325e-13,
       1.56402128e-12, 1.56402128e-12, 1.56402128e-12, 1.56402128e-12,
       1.45324292e-11, 1.45324292e-11, 1.45324292e-11, 1.45324292e-11,
       1.25185482e-10, 1.25185482e-10, 1.25185482e-10, 1.25185482e-10,
       1.00094143e-09, 1.00094143e-09, 1.00094143e-09, 1.00094143e-09,
       7.42144171e-09, 7.42144171e-09, 7.42144171e-09, 7.42144171e-09,
       5.09825802e-08, 5.09825802e-08, 5.09825802e-08, 5.09825802e-08,
       3.24157733e-07, 3.24157733e-07, 3.24157733e-07, 3.24157733e-07,
       1.90508651e-06, 1.90508651e-06, 1.90508651e-06, 1.90508651e-06,
       1.03318499e-05, 1.03318499e-05, 1.03318499e-05, 1.03318499e-05,
       5.16016816e-05, 5.16016816e-05, 5.16016816e-05, 5.16016816e-05,
       2.36752814e-04, 2.36752814e-04, 2.36752814e-04, 2.36752814e-04,
       9.94861791e-04, 9.94861791e-04, 9.94861791e-04, 9.94861791e-04,
       3.81489106e-03, 3.81489106e-03, 3.81489106e-03, 3.81489106e-03,
       1.32911013e-02, 1.32911013e-02, 1.32911013e-02, 1.32911013e-02,
       4.18617207e-02, 4.18617207e-02, 4.18617207e-02, 4.18617207e-02,
       1.18555604e-01, 1.18555604e-01, 1.18555604e-01, 1.18555604e-01,
       3.00441076e-01, 3.00441076e-01, 3.00441076e-01, 3.00441076e-01,
       6.79231840e-01, 6.79231840e-01, 6.79231840e-01, 6.79231840e-01,
       1.37049927e+00, 1.37049927e+00, 1.37049927e+00, 1.37049927e+00,
       2.48027947e+00, 2.48027947e+00, 2.48027947e+00, 2.48027947e+00,
       4.06534852e+00, 4.06534852e+00, 4.06534852e+00, 4.06534852e+00,
       6.11874426e+00, 6.11874426e+00, 6.11874426e+00, 6.11874426e+00,
       8.59698769e+00, 8.59698769e+00, 8.59698769e+00, 8.59698769e+00,
       1.11984851e+01, 1.11984851e+01, 1.11984851e+01, 1.11984851e+01,
       1.37435738e+01, 1.37435738e+01, 1.37435738e+01, 1.37435738e+01,
       1.61020009e+01, 1.61020009e+01, 1.61020009e+01, 1.61020009e+01,
       1.81047370e+01, 1.81047370e+01, 1.81047370e+01, 1.81047370e+01,
       1.95637081e+01, 1.95637081e+01, 1.95637081e+01, 1.95637081e+01,
       2.02802090e+01, 2.02802090e+01, 2.02802090e+01, 2.02802090e+01,
       2.03974866e+01, 2.03974866e+01, 2.03974866e+01, 2.03974866e+01,
       2.01688547e+01, 2.01688547e+01, 2.01688547e+01, 2.01688547e+01,
       2.00346701e+01, 2.00346701e+01, 2.00346701e+01, 2.00346701e+01,
       2.00176538e+01, 2.00176538e+01, 2.00176538e+01, 2.00176538e+01,
       2.00209769e+01, 2.00209769e+01, 2.00209769e+01, 2.00209769e+01,
       1.99976377e+01, 1.99976377e+01, 1.99976377e+01, 1.99976377e+01,
       1.96779963e+01, 1.96779963e+01, 1.96779963e+01, 1.96779963e+01,
       1.78764303e+01, 1.78764303e+01, 1.78764303e+01, 1.78764303e+01,
       1.11193485e+01, 1.11193485e+01, 1.11193485e+01, 1.11193485e+01,
       1.55576781e+00, 1.55576781e+00, 1.55576781e+00, 1.55576781e+00,
       1.98900933e-02, 1.98900933e-02, 1.98900933e-02, 1.98900933e-02,
       1.52255734e-05, 1.52255734e-05, 1.52255734e-05, 1.52255734e-05,
       2.23363364e-09, 2.23363364e-09, 2.23363364e-09, 2.23363364e-09,
       3.21107467e-13, 3.21107467e-13, 3.21107467e-13, 3.21107467e-13,
       4.55567759e-17, 4.55567759e-17, 4.55567759e-17, 4.55567759e-17,
       4.26370518e-21, 4.26370518e-21, 4.26370518e-21, 4.26370518e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999929e+02, 9.99999929e+02, 9.99999929e+02, 9.99999929e+02,
       9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
       9.99998069e+02, 9.99998069e+02, 9.99998069e+02, 9.99998069e+02,
       9.99991142e+02, 9.99991142e+02, 9.99991142e+02, 9.99991142e+02,
       9.99962776e+02, 9.99962776e+02, 9.99962776e+02, 9.99962776e+02,
       9.99857270e+02, 9.99857270e+02, 9.99857270e+02, 9.99857270e+02,
       9.99502814e+02, 9.99502814e+02, 9.99502814e+02, 9.99502814e+02,
       9.98434853e+02, 9.98434853e+02, 9.98434853e+02, 9.98434853e+02,
       9.95573298e+02, 9.95573298e+02, 9.95573298e+02, 9.95573298e+02,
       9.88816876e+02, 9.88816876e+02, 9.88816876e+02, 9.88816876e+02,
       9.74879194e+02, 9.74879194e+02, 9.74879194e+02, 9.74879194e+02,
       9.49898234e+02, 9.49898234e+02, 9.49898234e+02, 9.49898234e+02,
       9.10986409e+02, 9.10986409e+02, 9.10986409e+02, 9.10986409e+02,
       8.57855860e+02, 8.57855860e+02, 8.57855860e+02, 8.57855860e+02,
       7.93072862e+02, 7.93072862e+02, 7.93072862e+02, 7.93072862e+02,
       7.20578542e+02, 7.20578542e+02, 7.20578542e+02, 7.20578542e+02,
       6.48800650e+02, 6.48800650e+02, 6.48800650e+02, 6.48800650e+02,
       5.86389112e+02, 5.86389112e+02, 5.86389112e+02, 5.86389112e+02,
       5.32725608e+02, 5.32725608e+02, 5.32725608e+02, 5.32725608e+02,
       4.89778956e+02, 4.89778956e+02, 4.89778956e+02, 4.89778956e+02,
       4.61519534e+02, 4.61519534e+02, 4.61519534e+02, 4.61519534e+02,
       4.48525367e+02, 4.48525367e+02, 4.48525367e+02, 4.48525367e+02,
       4.45928711e+02, 4.45928711e+02, 4.45928711e+02, 4.45928711e+02,
       4.49956676e+02, 4.49956676e+02, 4.49956676e+02, 4.49956676e+02,
       4.52076499e+02, 4.52076499e+02, 4.52076499e+02, 4.52076499e+02,
       4.52643316e+02, 4.52643316e+02, 4.52643316e+02, 4.52643316e+02,
       4.53164778e+02, 4.53164778e+02, 4.53164778e+02, 4.53164778e+02,
       4.52705085e+02, 4.52705085e+02, 4.52705085e+02, 4.52705085e+02,
       4.42106466e+02, 4.42106466e+02, 4.42106466e+02, 4.42106466e+02,
       3.66606419e+02, 3.66606419e+02, 3.66606419e+02, 3.66606419e+02,
       1.43278417e+02, 1.43278417e+02, 1.43278417e+02, 1.43278417e+02,
       7.05131525e+00, 7.05131525e+00, 7.05131525e+00, 7.05131525e+00,
       2.69964841e-02, 2.69964841e-02, 2.69964841e-02, 2.69964841e-02,
       1.00018104e-02, 1.00018104e-02, 1.00018104e-02, 1.00018104e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999995, 0.99999995, 0.99999995,
       0.99999995, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
       0.99999876, 0.99999876, 0.99999876, 0.99999876, 0.99999446,
       0.99999446, 0.99999446, 0.99999446, 0.99997733, 0.99997733,
       0.99997733, 0.99997733, 0.99991492, 0.99991492, 0.99991492,
       0.99991492, 0.99970841, 0.99970841, 0.99970841, 0.99970841,
       0.99909185, 0.99909185, 0.99909185, 0.99909185, 0.99744342,
       0.99744342, 0.99744342, 0.99744342, 0.99352897, 0.99352897,
       0.99352897, 0.99352897, 0.98533607, 0.98533607, 0.98533607,
       0.98533607, 0.9703007 , 0.9703007 , 0.9703007 , 0.9703007 ,
       0.94611525, 0.94611525, 0.94611525, 0.94611525, 0.91178545,
       0.91178545, 0.91178545, 0.91178545, 0.8681275 , 0.8681275 ,
       0.8681275 , 0.8681275 , 0.81711896, 0.81711896, 0.81711896,
       0.81711896, 0.76228815, 0.76228815, 0.76228815, 0.76228815,
       0.71063528, 0.71063528, 0.71063528, 0.71063528, 0.66449658,
       0.66449658, 0.66449658, 0.66449658, 0.62236199, 0.62236199,
       0.62236199, 0.62236199, 0.59504764, 0.59504764, 0.59504764,
       0.59504764, 0.56660492, 0.56660492, 0.56660492, 0.56660492,
       0.56344579, 0.56344579, 0.56344579, 0.56344579, 0.56277418,
       0.56277418, 0.56277418, 0.56277418, 0.56425748, 0.56425748,
       0.56425748, 0.56425748, 0.56271208, 0.56271208, 0.56271208,
       0.56271208, 0.57532902, 0.57532902, 0.57532902, 0.57532902,
       0.66138282, 0.66138282, 0.66138282, 0.66138282, 0.97477241,
       0.97477241, 0.97477241, 0.97477241, 1.76866995, 1.76866995,
       1.76866995, 1.76866995, 2.79140624, 2.79140624, 2.79140624,
       2.79140624, 2.85504716, 2.85504716, 2.85504716, 2.85504716,
       1.6572704 , 1.6572704 , 1.6572704 , 1.6572704 , 1.05142481,
       1.05142481, 1.05142481, 1.05142481, 1.00163012, 1.00163012,
       1.00163012, 1.00163012, 1.00000124, 1.00000124, 1.00000124,
       1.00000124, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.24969420e-13, 2.24969420e-13, 2.24969420e-13, 2.24969420e-13,
       2.25206716e-12, 2.25206716e-12, 2.25206716e-12, 2.25206716e-12,
       1.95360740e-11, 1.95360740e-11, 1.95360740e-11, 1.95360740e-11,
       1.57777129e-10, 1.57777129e-10, 1.57777129e-10, 1.57777129e-10,
       1.18752511e-09, 1.18752511e-09, 1.18752511e-09, 1.18752511e-09,
       8.32407101e-09, 8.32407101e-09, 8.32407101e-09, 8.32407101e-09,
       5.42910740e-08, 5.42910740e-08, 5.42910740e-08, 5.42910740e-08,
       3.29113213e-07, 3.29113213e-07, 3.29113213e-07, 3.29113213e-07,
       1.85184067e-06, 1.85184067e-06, 1.85184067e-06, 1.85184067e-06,
       9.65592764e-06, 9.65592764e-06, 9.65592764e-06, 9.65592764e-06,
       4.65650184e-05, 4.65650184e-05, 4.65650184e-05, 4.65650184e-05,
       2.07190385e-04, 2.07190385e-04, 2.07190385e-04, 2.07190385e-04,
       8.48170242e-04, 8.48170242e-04, 8.48170242e-04, 8.48170242e-04,
       3.18354794e-03, 3.18354794e-03, 3.18354794e-03, 3.18354794e-03,
       1.09115255e-02, 1.09115255e-02, 1.09115255e-02, 1.09115255e-02,
       3.39908368e-02, 3.39908368e-02, 3.39908368e-02, 3.39908368e-02,
       9.57478717e-02, 9.57478717e-02, 9.57478717e-02, 9.57478717e-02,
       2.42712876e-01, 2.42712876e-01, 2.42712876e-01, 2.42712876e-01,
       5.51793377e-01, 5.51793377e-01, 5.51793377e-01, 5.51793377e-01,
       1.12446443e+00, 1.12446443e+00, 1.12446443e+00, 1.12446443e+00,
       2.06118893e+00, 2.06118893e+00, 2.06118893e+00, 2.06118893e+00,
       3.42552666e+00, 3.42552666e+00, 3.42552666e+00, 3.42552666e+00,
       5.22314600e+00, 5.22314600e+00, 5.22314600e+00, 5.22314600e+00,
       7.41906287e+00, 7.41906287e+00, 7.41906287e+00, 7.41906287e+00,
       9.88411479e+00, 9.88411479e+00, 9.88411479e+00, 9.88411479e+00,
       1.23254490e+01, 1.23254490e+01, 1.23254490e+01, 1.23254490e+01,
       1.46753619e+01, 1.46753619e+01, 1.46753619e+01, 1.46753619e+01,
       1.68362063e+01, 1.68362063e+01, 1.68362063e+01, 1.68362063e+01,
       1.85972036e+01, 1.85972036e+01, 1.85972036e+01, 1.85972036e+01,
       1.97810316e+01, 1.97810316e+01, 1.97810316e+01, 1.97810316e+01,
       2.03056736e+01, 2.03056736e+01, 2.03056736e+01, 2.03056736e+01,
       2.03583742e+01, 2.03583742e+01, 2.03583742e+01, 2.03583742e+01,
       2.01400339e+01, 2.01400339e+01, 2.01400339e+01, 2.01400339e+01,
       2.00353247e+01, 2.00353247e+01, 2.00353247e+01, 2.00353247e+01,
       2.00086210e+01, 2.00086210e+01, 2.00086210e+01, 2.00086210e+01,
       2.00116248e+01, 2.00116248e+01, 2.00116248e+01, 2.00116248e+01,
       2.00091285e+01, 2.00091285e+01, 2.00091285e+01, 2.00091285e+01,
       1.98825700e+01, 1.98825700e+01, 1.98825700e+01, 1.98825700e+01,
       1.90344265e+01, 1.90344265e+01, 1.90344265e+01, 1.90344265e+01,
       1.51585367e+01, 1.51585367e+01, 1.51585367e+01, 1.51585367e+01,
       5.49808022e+00, 5.49808022e+00, 5.49808022e+00, 5.49808022e+00,
       2.20110268e-01, 2.20110268e-01, 2.20110268e-01, 2.20110268e-01,
       7.04288698e-04, 7.04288698e-04, 7.04288698e-04, 7.04288698e-04,
       1.46929013e-07, 1.46929013e-07, 1.46929013e-07, 1.46929013e-07,
       2.17393213e-11, 2.17393213e-11, 2.17393213e-11, 2.17393213e-11,
       3.25874024e-15, 3.25874024e-15, 3.25874024e-15, 3.25874024e-15,
       4.93883641e-19, 4.93883641e-19, 4.93883641e-19, 4.93883641e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999931e+02, 9.99999931e+02, 9.99999931e+02, 9.99999931e+02,
       9.99999639e+02, 9.99999639e+02, 9.99999639e+02, 9.99999639e+02,
       9.99998258e+02, 9.99998258e+02, 9.99998258e+02, 9.99998258e+02,
       9.99992248e+02, 9.99992248e+02, 9.99992248e+02, 9.99992248e+02,
       9.99968265e+02, 9.99968265e+02, 9.99968265e+02, 9.99968265e+02,
       9.99880890e+02, 9.99880890e+02, 9.99880890e+02, 9.99880890e+02,
       9.99591810e+02, 9.99591810e+02, 9.99591810e+02, 9.99591810e+02,
       9.98728953e+02, 9.98728953e+02, 9.98728953e+02, 9.98728953e+02,
       9.96423469e+02, 9.96423469e+02, 9.96423469e+02, 9.96423469e+02,
       9.90956621e+02, 9.90956621e+02, 9.90956621e+02, 9.90956621e+02,
       9.79547910e+02, 9.79547910e+02, 9.79547910e+02, 9.79547910e+02,
       9.58721154e+02, 9.58721154e+02, 9.58721154e+02, 9.58721154e+02,
       9.25505523e+02, 9.25505523e+02, 9.25505523e+02, 9.25505523e+02,
       8.78949351e+02, 8.78949351e+02, 8.78949351e+02, 8.78949351e+02,
       8.20748601e+02, 8.20748601e+02, 8.20748601e+02, 8.20748601e+02,
       7.54214683e+02, 7.54214683e+02, 7.54214683e+02, 7.54214683e+02,
       6.84375067e+02, 6.84375067e+02, 6.84375067e+02, 6.84375067e+02,
       6.20368568e+02, 6.20368568e+02, 6.20368568e+02, 6.20368568e+02,
       5.64370431e+02, 5.64370431e+02, 5.64370431e+02, 5.64370431e+02,
       5.17160227e+02, 5.17160227e+02, 5.17160227e+02, 5.17160227e+02,
       4.80250812e+02, 4.80250812e+02, 4.80250812e+02, 4.80250812e+02,
       4.56943598e+02, 4.56943598e+02, 4.56943598e+02, 4.56943598e+02,
       4.47678145e+02, 4.47678145e+02, 4.47678145e+02, 4.47678145e+02,
       4.46796826e+02, 4.46796826e+02, 4.46796826e+02, 4.46796826e+02,
       4.50880096e+02, 4.50880096e+02, 4.50880096e+02, 4.50880096e+02,
       4.52357569e+02, 4.52357569e+02, 4.52357569e+02, 4.52357569e+02,
       4.52616932e+02, 4.52616932e+02, 4.52616932e+02, 4.52616932e+02,
       4.52970783e+02, 4.52970783e+02, 4.52970783e+02, 4.52970783e+02,
       4.53046444e+02, 4.53046444e+02, 4.53046444e+02, 4.53046444e+02,
       4.49923083e+02, 4.49923083e+02, 4.49923083e+02, 4.49923083e+02,
       4.15828843e+02, 4.15828843e+02, 4.15828843e+02, 4.15828843e+02,
       2.62221323e+02, 2.62221323e+02, 2.62221323e+02, 2.62221323e+02,
       4.12019102e+01, 4.12019102e+01, 4.12019102e+01, 4.12019102e+01,
       4.94445574e-01, 4.94445574e-01, 4.94445574e-01, 4.94445574e-01,
       1.01642073e-02, 1.01642073e-02, 1.01642073e-02, 1.01642073e-02,
       1.00000174e-02, 1.00000174e-02, 1.00000174e-02, 1.00000174e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.99999976, 0.99999976, 0.99999976,
       0.99999976, 0.99999889, 0.99999889, 0.99999889, 0.99999889,
       0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99998075,
       0.99998075, 0.99998075, 0.99998075, 0.9999291 , 0.9999291 ,
       0.9999291 , 0.9999291 , 0.99976052, 0.99976052, 0.99976052,
       0.99976052, 0.99926135, 0.99926135, 0.99926135, 0.99926135,
       0.99793005, 0.99793005, 0.99793005, 0.99793005, 0.99475663,
       0.99475663, 0.99475663, 0.99475663, 0.98804657, 0.98804657,
       0.98804657, 0.98804657, 0.97553184, 0.97553184, 0.97553184,
       0.97553184, 0.95497685, 0.95497685, 0.95497685, 0.95497685,
       0.92511099, 0.92511099, 0.92511099, 0.92511099, 0.88625836,
       0.88625836, 0.88625836, 0.88625836, 0.84008392, 0.84008392,
       0.84008392, 0.84008392, 0.78876117, 0.78876117, 0.78876117,
       0.78876117, 0.73758834, 0.73758834, 0.73758834, 0.73758834,
       0.69072274, 0.69072274, 0.69072274, 0.69072274, 0.64901095,
       0.64901095, 0.64901095, 0.64901095, 0.61063333, 0.61063333,
       0.61063333, 0.61063333, 0.58838435, 0.58838435, 0.58838435,
       0.58838435, 0.56482776, 0.56482776, 0.56482776, 0.56482776,
       0.56211874, 0.56211874, 0.56211874, 0.56211874, 0.56323644,
       0.56323644, 0.56323644, 0.56323644, 0.56573502, 0.56573502,
       0.56573502, 0.56573502, 0.56392989, 0.56392989, 0.56392989,
       0.56392989, 0.56998742, 0.56998742, 0.56998742, 0.56998742,
       0.62261429, 0.62261429, 0.62261429, 0.62261429, 0.83494329,
       0.83494329, 0.83494329, 0.83494329, 1.42257004, 1.42257004,
       1.42257004, 1.42257004, 2.51165741, 2.51165741, 2.51165741,
       2.51165741, 3.03556687, 3.03556687, 3.03556687, 3.03556687,
       2.3649753 , 2.3649753 , 2.3649753 , 2.3649753 , 1.18082651,
       1.18082651, 1.18082651, 1.18082651, 1.01021472, 1.01021472,
       1.01021472, 1.01021472, 1.0000747 , 1.0000747 , 1.0000747 ,
       1.0000747 , 1.00000001, 1.00000001, 1.00000001, 1.00000001,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.83938532e-12, 2.83938532e-12, 2.83938532e-12, 2.83938532e-12,
       2.48780551e-11, 2.48780551e-11, 2.48780551e-11, 2.48780551e-11,
       1.89659153e-10, 1.89659153e-10, 1.89659153e-10, 1.89659153e-10,
       1.35318050e-09, 1.35318050e-09, 1.35318050e-09, 1.35318050e-09,
       9.02461193e-09, 9.02461193e-09, 9.02461193e-09, 9.02461193e-09,
       5.62089401e-08, 5.62089401e-08, 5.62089401e-08, 5.62089401e-08,
       3.26589983e-07, 3.26589983e-07, 3.26589983e-07, 3.26589983e-07,
       1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
       8.90072519e-06, 8.90072519e-06, 8.90072519e-06, 8.90072519e-06,
       4.16033994e-05, 4.16033994e-05, 4.16033994e-05, 4.16033994e-05,
       1.80121521e-04, 1.80121521e-04, 1.80121521e-04, 1.80121521e-04,
       7.20378916e-04, 7.20378916e-04, 7.20378916e-04, 7.20378916e-04,
       2.65286556e-03, 2.65286556e-03, 2.65286556e-03, 2.65286556e-03,
       8.96132297e-03, 8.96132297e-03, 8.96132297e-03, 8.96132297e-03,
       2.76450137e-02, 2.76450137e-02, 2.76450137e-02, 2.76450137e-02,
       7.75091590e-02, 7.75091590e-02, 7.75091590e-02, 7.75091590e-02,
       1.96575287e-01, 1.96575287e-01, 1.96575287e-01, 1.96575287e-01,
       4.49321350e-01, 4.49321350e-01, 4.49321350e-01, 4.49321350e-01,
       9.24431499e-01, 9.24431499e-01, 9.24431499e-01, 9.24431499e-01,
       1.71576116e+00, 1.71576116e+00, 1.71576116e+00, 1.71576116e+00,
       2.89106042e+00, 2.89106042e+00, 2.89106042e+00, 2.89106042e+00,
       4.46780650e+00, 4.46780650e+00, 4.46780650e+00, 4.46780650e+00,
       6.41677343e+00, 6.41677343e+00, 6.41677343e+00, 6.41677343e+00,
       8.68601329e+00, 8.68601329e+00, 8.68601329e+00, 8.68601329e+00,
       1.10249054e+01, 1.10249054e+01, 1.10249054e+01, 1.10249054e+01,
       1.33220447e+01, 1.33220447e+01, 1.33220447e+01, 1.33220447e+01,
       1.54925996e+01, 1.54925996e+01, 1.54925996e+01, 1.54925996e+01,
       1.74546801e+01, 1.74546801e+01, 1.74546801e+01, 1.74546801e+01,
       1.89986134e+01, 1.89986134e+01, 1.89986134e+01, 1.89986134e+01,
       1.99480450e+01, 1.99480450e+01, 1.99480450e+01, 1.99480450e+01,
       2.03051988e+01, 2.03051988e+01, 2.03051988e+01, 2.03051988e+01,
       2.03097963e+01, 2.03097963e+01, 2.03097963e+01, 2.03097963e+01,
       2.01135364e+01, 2.01135364e+01, 2.01135364e+01, 2.01135364e+01,
       2.00395134e+01, 2.00395134e+01, 2.00395134e+01, 2.00395134e+01,
       2.00112282e+01, 2.00112282e+01, 2.00112282e+01, 2.00112282e+01,
       2.00045207e+01, 2.00045207e+01, 2.00045207e+01, 2.00045207e+01,
       2.00069683e+01, 2.00069683e+01, 2.00069683e+01, 2.00069683e+01,
       1.99578722e+01, 1.99578722e+01, 1.99578722e+01, 1.99578722e+01,
       1.95688870e+01, 1.95688870e+01, 1.95688870e+01, 1.95688870e+01,
       1.75969855e+01, 1.75969855e+01, 1.75969855e+01, 1.75969855e+01,
       1.06108424e+01, 1.06108424e+01, 1.06108424e+01, 1.06108424e+01,
       1.32398591e+00, 1.32398591e+00, 1.32398591e+00, 1.32398591e+00,
       1.52470806e-02, 1.52470806e-02, 1.52470806e-02, 1.52470806e-02,
       1.02514744e-05, 1.02514744e-05, 1.02514744e-05, 1.02514744e-05,
       1.51595044e-09, 1.51595044e-09, 1.51595044e-09, 1.51595044e-09,
       2.21449669e-13, 2.21449669e-13, 2.21449669e-13, 2.21449669e-13,
       3.21821680e-17, 3.21821680e-17, 3.21821680e-17, 3.21821680e-17,
       4.22583135e-21, 4.22583135e-21, 4.22583135e-21, 4.22583135e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
       9.99999667e+02, 9.99999667e+02, 9.99999667e+02, 9.99999667e+02,
       9.99998443e+02, 9.99998443e+02, 9.99998443e+02, 9.99998443e+02,
       9.99993260e+02, 9.99993260e+02, 9.99993260e+02, 9.99993260e+02,
       9.99973046e+02, 9.99973046e+02, 9.99973046e+02, 9.99973046e+02,
       9.99900744e+02, 9.99900744e+02, 9.99900744e+02, 9.99900744e+02,
       9.99664753e+02, 9.99664753e+02, 9.99664753e+02, 9.99664753e+02,
       9.98966129e+02, 9.98966129e+02, 9.98966129e+02, 9.98966129e+02,
       9.97103821e+02, 9.97103821e+02, 9.97103821e+02, 9.97103821e+02,
       9.92669836e+02, 9.92669836e+02, 9.92669836e+02, 9.92669836e+02,
       9.83316822e+02, 9.83316822e+02, 9.83316822e+02, 9.83316822e+02,
       9.65949266e+02, 9.65949266e+02, 9.65949266e+02, 9.65949266e+02,
       9.37629572e+02, 9.37629572e+02, 9.37629572e+02, 9.37629572e+02,
       8.96925524e+02, 8.96925524e+02, 8.96925524e+02, 8.96925524e+02,
       8.44757270e+02, 8.44757270e+02, 8.44757270e+02, 8.44757270e+02,
       7.83932229e+02, 7.83932229e+02, 7.83932229e+02, 7.83932229e+02,
       7.17860197e+02, 7.17860197e+02, 7.17860197e+02, 7.17860197e+02,
       6.53411534e+02, 6.53411534e+02, 6.53411534e+02, 6.53411534e+02,
       5.96226302e+02, 5.96226302e+02, 5.96226302e+02, 5.96226302e+02,
       5.45775399e+02, 5.45775399e+02, 5.45775399e+02, 5.45775399e+02,
       5.04059456e+02, 5.04059456e+02, 5.04059456e+02, 5.04059456e+02,
       4.72707776e+02, 4.72707776e+02, 4.72707776e+02, 4.72707776e+02,
       4.53820542e+02, 4.53820542e+02, 4.53820542e+02, 4.53820542e+02,
       4.47282842e+02, 4.47282842e+02, 4.47282842e+02, 4.47282842e+02,
       4.47539085e+02, 4.47539085e+02, 4.47539085e+02, 4.47539085e+02,
       4.51468618e+02, 4.51468618e+02, 4.51468618e+02, 4.51468618e+02,
       4.52679279e+02, 4.52679279e+02, 4.52679279e+02, 4.52679279e+02,
       4.52744959e+02, 4.52744959e+02, 4.52744959e+02, 4.52744959e+02,
       4.52862141e+02, 4.52862141e+02, 4.52862141e+02, 4.52862141e+02,
       4.53025731e+02, 4.53025731e+02, 4.53025731e+02, 4.53025731e+02,
       4.52509333e+02, 4.52509333e+02, 4.52509333e+02, 4.52509333e+02,
       4.39197326e+02, 4.39197326e+02, 4.39197326e+02, 4.39197326e+02,
       3.55061144e+02, 3.55061144e+02, 3.55061144e+02, 3.55061144e+02,
       1.28955744e+02, 1.28955744e+02, 1.28955744e+02, 1.28955744e+02,
       5.63751354e+00, 5.63751354e+00, 5.63751354e+00, 5.63751354e+00,
       2.16308297e-02, 2.16308297e-02, 2.16308297e-02, 2.16308297e-02,
       1.00012116e-02, 1.00012116e-02, 1.00012116e-02, 1.00012116e-02,
       1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
       0.99999996, 0.99999996, 0.99999996, 0.99999978, 0.99999978,
       0.99999978, 0.99999978, 0.99999901, 0.99999901, 0.99999901,
       0.99999901, 0.99999584, 0.99999584, 0.99999584, 0.99999584,
       0.9999837 , 0.9999837 , 0.9999837 , 0.9999837 , 0.99994098,
       0.99994098, 0.99994098, 0.99994098, 0.99980323, 0.99980323,
       0.99980323, 0.99980323, 0.99939833, 0.99939833, 0.99939833,
       0.99939833, 0.99832066, 0.99832066, 0.99832066, 0.99832066,
       0.99574245, 0.99574245, 0.99574245, 0.99574245, 0.99023874,
       0.99023874, 0.99023874, 0.99023874, 0.97981742, 0.97981742,
       0.97981742, 0.97981742, 0.96235966, 0.96235966, 0.96235966,
       0.96235966, 0.93641648, 0.93641648, 0.93641648, 0.93641648,
       0.90189237, 0.90189237, 0.90189237, 0.90189237, 0.86005507,
       0.86005507, 0.86005507, 0.86005507, 0.81274868, 0.81274868,
       0.81274868, 0.81274868, 0.76311269, 0.76311269, 0.76311269,
       0.76311269, 0.71642   , 0.71642   , 0.71642   , 0.71642   ,
       0.67333822, 0.67333822, 0.67333822, 0.67333822, 0.63583393,
       0.63583393, 0.63583393, 0.63583393, 0.6007504 , 0.6007504 ,
       0.6007504 , 0.6007504 , 0.58279291, 0.58279291, 0.58279291,
       0.58279291, 0.56410322, 0.56410322, 0.56410322, 0.56410322,
       0.56160416, 0.56160416, 0.56160416, 0.56160416, 0.56332121,
       0.56332121, 0.56332121, 0.56332121, 0.56656977, 0.56656977,
       0.56656977, 0.56656977, 0.56500324, 0.56500324, 0.56500324,
       0.56500324, 0.56762   , 0.56762   , 0.56762   , 0.56762   ,
       0.59894803, 0.59894803, 0.59894803, 0.59894803, 0.74001262,
       0.74001262, 0.74001262, 0.74001262, 1.16399112, 1.16399112,
       1.16399112, 1.16399112, 2.10522387, 2.10522387, 2.10522387,
       2.10522387, 3.01416422, 3.01416422, 3.01416422, 3.01416422,
       2.93378532, 2.93378532, 2.93378532, 2.93378532, 1.60066424,
       1.60066424, 1.60066424, 1.60066424, 1.0447292 , 1.0447292 ,
       1.0447292 , 1.0447292 , 1.00129844, 1.00129844, 1.00129844,
       1.00129844, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.79929625e-11, 2.79929625e-11, 2.79929625e-11, 2.79929625e-11,
       2.19420258e-10, 2.19420258e-10, 2.19420258e-10, 2.19420258e-10,
       1.49116083e-09, 1.49116083e-09, 1.49116083e-09, 1.49116083e-09,
       9.51188129e-09, 9.51188129e-09, 9.51188129e-09, 9.51188129e-09,
       5.68485475e-08, 5.68485475e-08, 5.68485475e-08, 5.68485475e-08,
       3.17985043e-07, 3.17985043e-07, 3.17985043e-07, 3.17985043e-07,
       1.66248056e-06, 1.66248056e-06, 1.66248056e-06, 1.66248056e-06,
       8.11135729e-06, 8.11135729e-06, 8.11135729e-06, 8.11135729e-06,
       3.68655451e-05, 3.68655451e-05, 3.68655451e-05, 3.68655451e-05,
       1.55738945e-04, 1.55738945e-04, 1.55738945e-04, 1.55738945e-04,
       6.09972860e-04, 6.09972860e-04, 6.09972860e-04, 6.09972860e-04,
       2.20822367e-03, 2.20822367e-03, 2.20822367e-03, 2.20822367e-03,
       7.36278800e-03, 7.36278800e-03, 7.36278800e-03, 7.36278800e-03,
       2.25170918e-02, 2.25170918e-02, 2.25170918e-02, 2.25170918e-02,
       6.28736376e-02, 6.28736376e-02, 6.28736376e-02, 6.28736376e-02,
       1.59557051e-01, 1.59557051e-01, 1.59557051e-01, 1.59557051e-01,
       3.66605239e-01, 3.66605239e-01, 3.66605239e-01, 3.66605239e-01,
       7.61197294e-01, 7.61197294e-01, 7.61197294e-01, 7.61197294e-01,
       1.42997959e+00, 1.42997959e+00, 1.42997959e+00, 1.42997959e+00,
       2.44258800e+00, 2.44258800e+00, 2.44258800e+00, 2.44258800e+00,
       3.82666940e+00, 3.82666940e+00, 3.82666940e+00, 3.82666940e+00,
       5.56323490e+00, 5.56323490e+00, 5.56323490e+00, 5.56323490e+00,
       7.61102512e+00, 7.61102512e+00, 7.61102512e+00, 7.61102512e+00,
       9.84104209e+00, 9.84104209e+00, 9.84104209e+00, 9.84104209e+00,
       1.20553642e+01, 1.20553642e+01, 1.20553642e+01, 1.20553642e+01,
       1.42019457e+01, 1.42019457e+01, 1.42019457e+01, 1.42019457e+01,
       1.62097468e+01, 1.62097468e+01, 1.62097468e+01, 1.62097468e+01,
       1.79765031e+01, 1.79765031e+01, 1.79765031e+01, 1.79765031e+01,
       1.93158941e+01, 1.93158941e+01, 1.93158941e+01, 1.93158941e+01,
       2.00703083e+01, 2.00703083e+01, 2.00703083e+01, 2.00703083e+01,
       2.03013658e+01, 2.03013658e+01, 2.03013658e+01, 2.03013658e+01,
       2.02568791e+01, 2.02568791e+01, 2.02568791e+01, 2.02568791e+01,
       2.00856952e+01, 2.00856952e+01, 2.00856952e+01, 2.00856952e+01,
       2.00397257e+01, 2.00397257e+01, 2.00397257e+01, 2.00397257e+01,
       2.00181798e+01, 2.00181798e+01, 2.00181798e+01, 2.00181798e+01,
       2.00054208e+01, 2.00054208e+01, 2.00054208e+01, 2.00054208e+01,
       2.00025663e+01, 2.00025663e+01, 2.00025663e+01, 2.00025663e+01,
       1.99793630e+01, 1.99793630e+01, 1.99793630e+01, 1.99793630e+01,
       1.98071108e+01, 1.98071108e+01, 1.98071108e+01, 1.98071108e+01,
       1.88547396e+01, 1.88547396e+01, 1.88547396e+01, 1.88547396e+01,
       1.47204337e+01, 1.47204337e+01, 1.47204337e+01, 1.47204337e+01,
       4.95781616e+00, 4.95781616e+00, 4.95781616e+00, 4.95781616e+00,
       1.75493310e-01, 1.75493310e-01, 1.75493310e-01, 1.75493310e-01,
       4.85757486e-04, 4.85757486e-04, 4.85757486e-04, 4.85757486e-04,
       9.51110561e-08, 9.51110561e-08, 9.51110561e-08, 9.51110561e-08,
       1.44293431e-11, 1.44293431e-11, 1.44293431e-11, 1.44293431e-11,
       2.19762024e-15, 2.19762024e-15, 2.19762024e-15, 2.19762024e-15,
       3.19887277e-19, 3.19887277e-19, 3.19887277e-19, 3.19887277e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999938e+02, 9.99999938e+02, 9.99999938e+02, 9.99999938e+02,
       9.99999697e+02, 9.99999697e+02, 9.99999697e+02, 9.99999697e+02,
       9.99998621e+02, 9.99998621e+02, 9.99998621e+02, 9.99998621e+02,
       9.99994173e+02, 9.99994173e+02, 9.99994173e+02, 9.99994173e+02,
       9.99977177e+02, 9.99977177e+02, 9.99977177e+02, 9.99977177e+02,
       9.99917379e+02, 9.99917379e+02, 9.99917379e+02, 9.99917379e+02,
       9.99724547e+02, 9.99724547e+02, 9.99724547e+02, 9.99724547e+02,
       9.99157826e+02, 9.99157826e+02, 9.99157826e+02, 9.99157826e+02,
       9.97650081e+02, 9.97650081e+02, 9.97650081e+02, 9.97650081e+02,
       9.94046407e+02, 9.94046407e+02, 9.94046407e+02, 9.94046407e+02,
       9.86368788e+02, 9.86368788e+02, 9.86368788e+02, 9.86368788e+02,
       9.71884304e+02, 9.71884304e+02, 9.71884304e+02, 9.71884304e+02,
       9.47768311e+02, 9.47768311e+02, 9.47768311e+02, 9.47768311e+02,
       9.12263212e+02, 9.12263212e+02, 9.12263212e+02, 9.12263212e+02,
       8.65625167e+02, 8.65625167e+02, 8.65625167e+02, 8.65625167e+02,
       8.10053427e+02, 8.10053427e+02, 8.10053427e+02, 8.10053427e+02,
       7.48503051e+02, 7.48503051e+02, 7.48503051e+02, 7.48503051e+02,
       6.85291622e+02, 6.85291622e+02, 6.85291622e+02, 6.85291622e+02,
       6.27294016e+02, 6.27294016e+02, 6.27294016e+02, 6.27294016e+02,
       5.75413147e+02, 5.75413147e+02, 5.75413147e+02, 5.75413147e+02,
       5.30001905e+02, 5.30001905e+02, 5.30001905e+02, 5.30001905e+02,
       4.93087463e+02, 4.93087463e+02, 4.93087463e+02, 4.93087463e+02,
       4.66655572e+02, 4.66655572e+02, 4.66655572e+02, 4.66655572e+02,
       4.51807159e+02, 4.51807159e+02, 4.51807159e+02, 4.51807159e+02,
       4.47311434e+02, 4.47311434e+02, 4.47311434e+02, 4.47311434e+02,
       4.48215613e+02, 4.48215613e+02, 4.48215613e+02, 4.48215613e+02,
       4.51762807e+02, 4.51762807e+02, 4.51762807e+02, 4.51762807e+02,
       4.52868403e+02, 4.52868403e+02, 4.52868403e+02, 4.52868403e+02,
       4.52955491e+02, 4.52955491e+02, 4.52955491e+02, 4.52955491e+02,
       4.52909327e+02, 4.52909327e+02, 4.52909327e+02, 4.52909327e+02,
       4.52981643e+02, 4.52981643e+02, 4.52981643e+02, 4.52981643e+02,
       4.53214804e+02, 4.53214804e+02, 4.53214804e+02, 4.53214804e+02,
       4.48990326e+02, 4.48990326e+02, 4.48990326e+02, 4.48990326e+02,
       4.09131640e+02, 4.09131640e+02, 4.09131640e+02, 4.09131640e+02,
       2.45517697e+02, 2.45517697e+02, 2.45517697e+02, 2.45517697e+02,
       3.47160317e+01, 3.47160317e+01, 3.47160317e+01, 3.47160317e+01,
       3.62894316e-01, 3.62894316e-01, 3.62894316e-01, 3.62894316e-01,
       1.00998011e-02, 1.00998011e-02, 1.00998011e-02, 1.00998011e-02,
       1.00000113e-02, 1.00000113e-02, 1.00000113e-02, 1.00000113e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
       0.9999998 , 0.9999998 , 0.9999998 , 0.99999913, 0.99999913,
       0.99999913, 0.99999913, 0.99999642, 0.99999642, 0.99999642,
       0.99999642, 0.99998623, 0.99998623, 0.99998623, 0.99998623,
       0.99995092, 0.99995092, 0.99995092, 0.99995092, 0.99983826,
       0.99983826, 0.99983826, 0.99983826, 0.99950927, 0.99950927,
       0.99950927, 0.99950927, 0.99863513, 0.99863513, 0.99863513,
       0.99863513, 0.9965366 , 0.9965366 , 0.9965366 , 0.9965366 ,
       0.99201676, 0.99201676, 0.99201676, 0.99201676, 0.9833362 ,
       0.9833362 , 0.9833362 , 0.9833362 , 0.9685206 , 0.9685206 ,
       0.9685206 , 0.9685206 , 0.94602219, 0.94602219, 0.94602219,
       0.94602219, 0.91540395, 0.91540395, 0.91540395, 0.91540395,
       0.87753992, 0.87753992, 0.87753992, 0.87753992, 0.83410395,
       0.83410395, 0.83410395, 0.83410395, 0.78704832, 0.78704832,
       0.78704832, 0.78704832, 0.74068485, 0.74068485, 0.74068485,
       0.74068485, 0.69785748, 0.69785748, 0.69785748, 0.69785748,
       0.65816589, 0.65816589, 0.65816589, 0.65816589, 0.62460018,
       0.62460018, 0.62460018, 0.62460018, 0.59255793, 0.59255793,
       0.59255793, 0.59255793, 0.57817326, 0.57817326, 0.57817326,
       0.57817326, 0.56387564, 0.56387564, 0.56387564, 0.56387564,
       0.56157127, 0.56157127, 0.56157127, 0.56157127, 0.56360366,
       0.56360366, 0.56360366, 0.56360366, 0.56687447, 0.56687447,
       0.56687447, 0.56687447, 0.56576392, 0.56576392, 0.56576392,
       0.56576392, 0.56670663, 0.56670663, 0.56670663, 0.56670663,
       0.58490731, 0.58490731, 0.58490731, 0.58490731, 0.67692226,
       0.67692226, 0.67692226, 0.67692226, 0.97656008, 0.97656008,
       0.97656008, 0.97656008, 1.70128216, 1.70128216, 1.70128216,
       1.70128216, 2.81354886, 2.81354886, 2.81354886, 2.81354886,
       3.17648847, 3.17648847, 3.17648847, 3.17648847, 2.32407513,
       2.32407513, 2.32407513, 2.32407513, 1.15871544, 1.15871544,
       1.15871544, 1.15871544, 1.00857175, 1.00857175, 1.00857175,
       1.00857175, 1.0000498 , 1.0000498 , 1.0000498 , 1.0000498 ,
       1.00000001, 1.00000001, 1.00000001, 1.00000001, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.25428777e-10, 2.25428777e-10, 2.25428777e-10, 2.25428777e-10,
       1.59940645e-09, 1.59940645e-09, 1.59940645e-09, 1.59940645e-09,
       9.78961596e-09, 9.78961596e-09, 9.78961596e-09, 9.78961596e-09,
       5.63719016e-08, 5.63719016e-08, 5.63719016e-08, 5.63719016e-08,
       3.04684391e-07, 3.04684391e-07, 3.04684391e-07, 3.04684391e-07,
       1.54374637e-06, 1.54374637e-06, 1.54374637e-06, 1.54374637e-06,
       7.32124407e-06, 7.32124407e-06, 7.32124407e-06, 7.32124407e-06,
       3.24422534e-05, 3.24422534e-05, 3.24422534e-05, 3.24422534e-05,
       1.34046928e-04, 1.34046928e-04, 1.34046928e-04, 1.34046928e-04,
       5.15190666e-04, 5.15190666e-04, 5.15190666e-04, 5.15190666e-04,
       1.83655079e-03, 1.83655079e-03, 1.83655079e-03, 1.83655079e-03,
       6.05207452e-03, 6.05207452e-03, 6.05207452e-03, 6.05207452e-03,
       1.83647896e-02, 1.83647896e-02, 1.83647896e-02, 1.83647896e-02,
       5.10941202e-02, 5.10941202e-02, 5.10941202e-02, 5.10941202e-02,
       1.29756782e-01, 1.29756782e-01, 1.29756782e-01, 1.29756782e-01,
       2.99620921e-01, 2.99620921e-01, 2.99620921e-01, 2.99620921e-01,
       6.27596355e-01, 6.27596355e-01, 6.27596355e-01, 6.27596355e-01,
       1.19286361e+00, 1.19286361e+00, 1.19286361e+00, 1.19286361e+00,
       2.06504248e+00, 2.06504248e+00, 2.06504248e+00, 2.06504248e+00,
       3.27992371e+00, 3.27992371e+00, 3.27992371e+00, 3.27992371e+00,
       4.82922171e+00, 4.82922171e+00, 4.82922171e+00, 4.82922171e+00,
       6.67464424e+00, 6.67464424e+00, 6.67464424e+00, 6.67464424e+00,
       8.75964265e+00, 8.75964265e+00, 8.75964265e+00, 8.75964265e+00,
       1.08803472e+01, 1.08803472e+01, 1.08803472e+01, 1.08803472e+01,
       1.29739884e+01, 1.29739884e+01, 1.29739884e+01, 1.29739884e+01,
       1.49859636e+01, 1.49859636e+01, 1.49859636e+01, 1.49859636e+01,
       1.68387724e+01, 1.68387724e+01, 1.68387724e+01, 1.68387724e+01,
       1.84176517e+01, 1.84176517e+01, 1.84176517e+01, 1.84176517e+01,
       1.95597613e+01, 1.95597613e+01, 1.95597613e+01, 1.95597613e+01,
       2.01515305e+01, 2.01515305e+01, 2.01515305e+01, 2.01515305e+01,
       2.02967332e+01, 2.02967332e+01, 2.02967332e+01, 2.02967332e+01,
       2.02120023e+01, 2.02120023e+01, 2.02120023e+01, 2.02120023e+01,
       2.00605248e+01, 2.00605248e+01, 2.00605248e+01, 2.00605248e+01,
       2.00318688e+01, 2.00318688e+01, 2.00318688e+01, 2.00318688e+01,
       2.00221885e+01, 2.00221885e+01, 2.00221885e+01, 2.00221885e+01,
       2.00111763e+01, 2.00111763e+01, 2.00111763e+01, 2.00111763e+01,
       2.00014053e+01, 2.00014053e+01, 2.00014053e+01, 2.00014053e+01,
       1.99837206e+01, 1.99837206e+01, 1.99837206e+01, 1.99837206e+01,
       1.99044089e+01, 1.99044089e+01, 1.99044089e+01, 1.99044089e+01,
       1.94532334e+01, 1.94532334e+01, 1.94532334e+01, 1.94532334e+01,
       1.72959877e+01, 1.72959877e+01, 1.72959877e+01, 1.72959877e+01,
       1.00492404e+01, 1.00492404e+01, 1.00492404e+01, 1.00492404e+01,
       1.10583216e+00, 1.10583216e+00, 1.10583216e+00, 1.10583216e+00,
       1.12632792e-02, 1.12632792e-02, 1.12632792e-02, 1.12632792e-02,
       6.51995106e-06, 6.51995106e-06, 6.51995106e-06, 6.51995106e-06,
       9.65569412e-10, 9.65569412e-10, 9.65569412e-10, 9.65569412e-10,
       1.42316510e-13, 1.42316510e-13, 1.42316510e-13, 1.42316510e-13,
       2.10270857e-17, 2.10270857e-17, 2.10270857e-17, 2.10270857e-17,
       4.23110662e-21, 4.23110662e-21, 4.23110662e-21, 4.23110662e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999942e+02, 9.99999942e+02, 9.99999942e+02, 9.99999942e+02,
       9.99999726e+02, 9.99999726e+02, 9.99999726e+02, 9.99999726e+02,
       9.99998786e+02, 9.99998786e+02, 9.99998786e+02, 9.99998786e+02,
       9.99994984e+02, 9.99994984e+02, 9.99994984e+02, 9.99994984e+02,
       9.99980724e+02, 9.99980724e+02, 9.99980724e+02, 9.99980724e+02,
       9.99931285e+02, 9.99931285e+02, 9.99931285e+02, 9.99931285e+02,
       9.99773577e+02, 9.99773577e+02, 9.99773577e+02, 9.99773577e+02,
       9.99313077e+02, 9.99313077e+02, 9.99313077e+02, 9.99313077e+02,
       9.98089948e+02, 9.98089948e+02, 9.98089948e+02, 9.98089948e+02,
       9.95155853e+02, 9.95155853e+02, 9.95155853e+02, 9.95155853e+02,
       9.88846648e+02, 9.88846648e+02, 9.88846648e+02, 9.88846648e+02,
       9.76766510e+02, 9.76766510e+02, 9.76766510e+02, 9.76766510e+02,
       9.56255473e+02, 9.56255473e+02, 9.56255473e+02, 9.56255473e+02,
       9.25357054e+02, 9.25357054e+02, 9.25357054e+02, 9.25357054e+02,
       8.83782170e+02, 8.83782170e+02, 8.83782170e+02, 8.83782170e+02,
       8.33130130e+02, 8.33130130e+02, 8.33130130e+02, 8.33130130e+02,
       7.76085650e+02, 7.76085650e+02, 7.76085650e+02, 7.76085650e+02,
       7.15578042e+02, 7.15578042e+02, 7.15578042e+02, 7.15578042e+02,
       6.57188937e+02, 6.57188937e+02, 6.57188937e+02, 6.57188937e+02,
       6.04619926e+02, 6.04619926e+02, 6.04619926e+02, 6.04619926e+02,
       5.57478206e+02, 5.57478206e+02, 5.57478206e+02, 5.57478206e+02,
       5.16581813e+02, 5.16581813e+02, 5.16581813e+02, 5.16581813e+02,
       4.83986410e+02, 4.83986410e+02, 4.83986410e+02, 4.83986410e+02,
       4.61832276e+02, 4.61832276e+02, 4.61832276e+02, 4.61832276e+02,
       4.50505747e+02, 4.50505747e+02, 4.50505747e+02, 4.50505747e+02,
       4.47530062e+02, 4.47530062e+02, 4.47530062e+02, 4.47530062e+02,
       4.49051988e+02, 4.49051988e+02, 4.49051988e+02, 4.49051988e+02,
       4.51904449e+02, 4.51904449e+02, 4.51904449e+02, 4.51904449e+02,
       4.52866779e+02, 4.52866779e+02, 4.52866779e+02, 4.52866779e+02,
       4.53094164e+02, 4.53094164e+02, 4.53094164e+02, 4.53094164e+02,
       4.53054312e+02, 4.53054312e+02, 4.53054312e+02, 4.53054312e+02,
       4.53063775e+02, 4.53063775e+02, 4.53063775e+02, 4.53063775e+02,
       4.53395324e+02, 4.53395324e+02, 4.53395324e+02, 4.53395324e+02,
       4.52569474e+02, 4.52569474e+02, 4.52569474e+02, 4.52569474e+02,
       4.35977197e+02, 4.35977197e+02, 4.35977197e+02, 4.35977197e+02,
       3.42570389e+02, 3.42570389e+02, 3.42570389e+02, 3.42570389e+02,
       1.14587893e+02, 1.14587893e+02, 1.14587893e+02, 1.14587893e+02,
       4.38695457e+00, 4.38695457e+00, 4.38695457e+00, 4.38695457e+00,
       1.75831808e-02, 1.75831808e-02, 1.75831808e-02, 1.75831808e-02,
       1.00007686e-02, 1.00007686e-02, 1.00007686e-02, 1.00007686e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999924,
       0.99999924, 0.99999924, 0.99999924, 0.99999693, 0.99999693,
       0.99999693, 0.99999693, 0.99998839, 0.99998839, 0.99998839,
       0.99998839, 0.99995921, 0.99995921, 0.99995921, 0.99995921,
       0.99986699, 0.99986699, 0.99986699, 0.99986699, 0.99959927,
       0.99959927, 0.99959927, 0.99959927, 0.99888896, 0.99888896,
       0.99888896, 0.99888896, 0.99717807, 0.99717807, 0.99717807,
       0.99717807, 0.99346233, 0.99346233, 0.99346233, 0.99346233,
       0.98623061, 0.98623061, 0.98623061, 0.98623061, 0.97366804,
       0.97366804, 0.97366804, 0.97366804, 0.954191  , 0.954191  ,
       0.954191  , 0.954191  , 0.92709612, 0.92709612, 0.92709612,
       0.92709612, 0.89288639, 0.89288639, 0.89288639, 0.89288639,
       0.85299165, 0.85299165, 0.85299165, 0.85299165, 0.80903108,
       0.80903108, 0.80903108, 0.80903108, 0.7637975 , 0.7637975 ,
       0.7637975 , 0.7637975 , 0.72115406, 0.72115406, 0.72115406,
       0.72115406, 0.68149355, 0.68149355, 0.68149355, 0.68149355,
       0.64480222, 0.64480222, 0.64480222, 0.64480222, 0.61500168,
       0.61500168, 0.61500168, 0.61500168, 0.58590592, 0.58590592,
       0.58590592, 0.58590592, 0.57439796, 0.57439796, 0.57439796,
       0.57439796, 0.56387515, 0.56387515, 0.56387515, 0.56387515,
       0.56183788, 0.56183788, 0.56183788, 0.56183788, 0.56406492,
       0.56406492, 0.56406492, 0.56406492, 0.56696563, 0.56696563,
       0.56696563, 0.56696563, 0.5662629 , 0.5662629 , 0.5662629 ,
       0.5662629 , 0.56641131, 0.56641131, 0.56641131, 0.56641131,
       0.576761  , 0.576761  , 0.576761  , 0.576761  , 0.63578575,
       0.63578575, 0.63578575, 0.63578575, 0.84379069, 0.84379069,
       0.84379069, 0.84379069, 1.38572903, 1.38572903, 1.38572903,
       1.38572903, 2.44002612, 2.44002612, 2.44002612, 2.44002612,
       3.20653483, 3.20653483, 3.20653483, 3.20653483, 2.97456245,
       2.97456245, 2.97456245, 2.97456245, 1.53663558, 1.53663558,
       1.53663558, 1.53663558, 1.0381715 , 1.0381715 , 1.0381715 ,
       1.0381715 , 1.00099782, 1.00099782, 1.00099782, 1.00099782,
       1.0000005 , 1.0000005 , 1.0000005 , 1.0000005 , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.52640217e-09, 1.52640217e-09, 1.52640217e-09, 1.52640217e-09,
       9.88802864e-09, 9.88802864e-09, 9.88802864e-09, 9.88802864e-09,
       5.49631705e-08, 5.49631705e-08, 5.49631705e-08, 5.49631705e-08,
       2.87970269e-07, 2.87970269e-07, 2.87970269e-07, 2.87970269e-07,
       1.41808509e-06, 1.41808509e-06, 1.41808509e-06, 1.41808509e-06,
       6.55412036e-06, 6.55412036e-06, 6.55412036e-06, 6.55412036e-06,
       2.83823463e-05, 2.83823463e-05, 2.83823463e-05, 2.83823463e-05,
       1.14933820e-04, 1.14933820e-04, 1.14933820e-04, 1.14933820e-04,
       4.34223292e-04, 4.34223292e-04, 4.34223292e-04, 4.34223292e-04,
       1.52641599e-03, 1.52641599e-03, 1.52641599e-03, 1.52641599e-03,
       4.97687894e-03, 4.97687894e-03, 4.97687894e-03, 4.97687894e-03,
       1.49961991e-02, 1.49961991e-02, 1.49961991e-02, 1.49961991e-02,
       4.15882459e-02, 4.15882459e-02, 4.15882459e-02, 4.15882459e-02,
       1.05698320e-01, 1.05698320e-01, 1.05698320e-01, 1.05698320e-01,
       2.45229407e-01, 2.45229407e-01, 2.45229407e-01, 2.45229407e-01,
       5.17987106e-01, 5.17987106e-01, 5.17987106e-01, 5.17987106e-01,
       9.95694132e-01, 9.95694132e-01, 9.95694132e-01, 9.95694132e-01,
       1.74644988e+00, 1.74644988e+00, 1.74644988e+00, 1.74644988e+00,
       2.81214874e+00, 2.81214874e+00, 2.81214874e+00, 2.81214874e+00,
       4.19480869e+00, 4.19480869e+00, 4.19480869e+00, 4.19480869e+00,
       5.86264757e+00, 5.86264757e+00, 5.86264757e+00, 5.86264757e+00,
       7.77472797e+00, 7.77472797e+00, 7.77472797e+00, 7.77472797e+00,
       9.80655654e+00, 9.80655654e+00, 9.80655654e+00, 9.80655654e+00,
       1.18277382e+01, 1.18277382e+01, 1.18277382e+01, 1.18277382e+01,
       1.37971680e+01, 1.37971680e+01, 1.37971680e+01, 1.37971680e+01,
       1.56822647e+01, 1.56822647e+01, 1.56822647e+01, 1.56822647e+01,
       1.73889246e+01, 1.73889246e+01, 1.73889246e+01, 1.73889246e+01,
       1.87901005e+01, 1.87901005e+01, 1.87901005e+01, 1.87901005e+01,
       1.97450558e+01, 1.97450558e+01, 1.97450558e+01, 1.97450558e+01,
       2.01997684e+01, 2.01997684e+01, 2.01997684e+01, 2.01997684e+01,
       2.02877405e+01, 2.02877405e+01, 2.02877405e+01, 2.02877405e+01,
       2.01725864e+01, 2.01725864e+01, 2.01725864e+01, 2.01725864e+01,
       2.00462536e+01, 2.00462536e+01, 2.00462536e+01, 2.00462536e+01,
       2.00208235e+01, 2.00208235e+01, 2.00208235e+01, 2.00208235e+01,
       2.00194733e+01, 2.00194733e+01, 2.00194733e+01, 2.00194733e+01,
       2.00147202e+01, 2.00147202e+01, 2.00147202e+01, 2.00147202e+01,
       2.00035230e+01, 2.00035230e+01, 2.00035230e+01, 2.00035230e+01,
       1.99845714e+01, 1.99845714e+01, 1.99845714e+01, 1.99845714e+01,
       1.99388525e+01, 1.99388525e+01, 1.99388525e+01, 1.99388525e+01,
       1.97268563e+01, 1.97268563e+01, 1.97268563e+01, 1.97268563e+01,
       1.86628873e+01, 1.86628873e+01, 1.86628873e+01, 1.86628873e+01,
       1.42510014e+01, 1.42510014e+01, 1.42510014e+01, 1.42510014e+01,
       4.38724950e+00, 4.38724950e+00, 4.38724950e+00, 4.38724950e+00,
       1.35671717e-01, 1.35671717e-01, 1.35671717e-01, 1.35671717e-01,
       3.19338310e-04, 3.19338310e-04, 3.19338310e-04, 3.19338310e-04,
       5.91067532e-08, 5.91067532e-08, 5.91067532e-08, 5.91067532e-08,
       9.14545156e-12, 9.14545156e-12, 9.14545156e-12, 9.14545156e-12,
       1.40083653e-15, 1.40083653e-15, 1.40083653e-15, 1.40083653e-15,
       2.06948752e-19, 2.06948752e-19, 2.06948752e-19, 2.06948752e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
       9.99999755e+02, 9.99999755e+02, 9.99999755e+02, 9.99999755e+02,
       9.99998938e+02, 9.99998938e+02, 9.99998938e+02, 9.99998938e+02,
       9.99995700e+02, 9.99995700e+02, 9.99995700e+02, 9.99995700e+02,
       9.99983753e+02, 9.99983753e+02, 9.99983753e+02, 9.99983753e+02,
       9.99942888e+02, 9.99942888e+02, 9.99942888e+02, 9.99942888e+02,
       9.99813799e+02, 9.99813799e+02, 9.99813799e+02, 9.99813799e+02,
       9.99439043e+02, 9.99439043e+02, 9.99439043e+02, 9.99439043e+02,
       9.98445046e+02, 9.98445046e+02, 9.98445046e+02, 9.98445046e+02,
       9.96052372e+02, 9.96052372e+02, 9.96052372e+02, 9.96052372e+02,
       9.90862868e+02, 9.90862868e+02, 9.90862868e+02, 9.90862868e+02,
       9.80788585e+02, 9.80788585e+02, 9.80788585e+02, 9.80788585e+02,
       9.63364916e+02, 9.63364916e+02, 9.63364916e+02, 9.63364916e+02,
       9.36537037e+02, 9.36537037e+02, 9.36537037e+02, 9.36537037e+02,
       8.99584844e+02, 8.99584844e+02, 8.99584844e+02, 8.99584844e+02,
       8.53541949e+02, 8.53541949e+02, 8.53541949e+02, 8.53541949e+02,
       8.00725978e+02, 8.00725978e+02, 8.00725978e+02, 8.00725978e+02,
       7.43656312e+02, 7.43656312e+02, 7.43656312e+02, 7.43656312e+02,
       6.86069806e+02, 6.86069806e+02, 6.86069806e+02, 6.86069806e+02,
       6.33063024e+02, 6.33063024e+02, 6.33063024e+02, 6.33063024e+02,
       5.84804742e+02, 5.84804742e+02, 5.84804742e+02, 5.84804742e+02,
       5.41876353e+02, 5.41876353e+02, 5.41876353e+02, 5.41876353e+02,
       5.05141177e+02, 5.05141177e+02, 5.05141177e+02, 5.05141177e+02,
       4.76536346e+02, 4.76536346e+02, 4.76536346e+02, 4.76536346e+02,
       4.58081353e+02, 4.58081353e+02, 4.58081353e+02, 4.58081353e+02,
       4.49630363e+02, 4.49630363e+02, 4.49630363e+02, 4.49630363e+02,
       4.47839670e+02, 4.47839670e+02, 4.47839670e+02, 4.47839670e+02,
       4.49917497e+02, 4.49917497e+02, 4.49917497e+02, 4.49917497e+02,
       4.52105100e+02, 4.52105100e+02, 4.52105100e+02, 4.52105100e+02,
       4.52784421e+02, 4.52784421e+02, 4.52784421e+02, 4.52784421e+02,
       4.53082540e+02, 4.53082540e+02, 4.53082540e+02, 4.53082540e+02,
       4.53173248e+02, 4.53173248e+02, 4.53173248e+02, 4.53173248e+02,
       4.53232634e+02, 4.53232634e+02, 4.53232634e+02, 4.53232634e+02,
       4.53513027e+02, 4.53513027e+02, 4.53513027e+02, 4.53513027e+02,
       4.53743580e+02, 4.53743580e+02, 4.53743580e+02, 4.53743580e+02,
       4.47885607e+02, 4.47885607e+02, 4.47885607e+02, 4.47885607e+02,
       4.01687163e+02, 4.01687163e+02, 4.01687163e+02, 4.01687163e+02,
       2.28101815e+02, 2.28101815e+02, 2.28101815e+02, 2.28101815e+02,
       2.86587243e+01, 2.86587243e+01, 2.86587243e+01, 2.86587243e+01,
       2.56567373e-01, 2.56567373e-01, 2.56567373e-01, 2.56567373e-01,
       1.00575986e-02, 1.00575986e-02, 1.00575986e-02, 1.00575986e-02,
       1.00000070e-02, 1.00000070e-02, 1.00000070e-02, 1.00000070e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
       0.99999934, 0.99999934, 0.99999934, 0.99999934, 0.99999737,
       0.99999737, 0.99999737, 0.99999737, 0.99999024, 0.99999024,
       0.99999024, 0.99999024, 0.99996611, 0.99996611, 0.99996611,
       0.99996611, 0.99989058, 0.99989058, 0.99989058, 0.99989058,
       0.99967241, 0.99967241, 0.99967241, 0.99967241, 0.9990943 ,
       0.9990943 , 0.9990943 , 0.9990943 , 0.99769746, 0.99769746,
       0.99769746, 0.99769746, 0.99464004, 0.99464004, 0.99464004,
       0.99464004, 0.98861492, 0.98861492, 0.98861492, 0.98861492,
       0.97797231, 0.97797231, 0.97797231, 0.97797231, 0.96114094,
       0.96114094, 0.96114094, 0.96114094, 0.93721972, 0.93721972,
       0.93721972, 0.93721972, 0.9063806 , 0.9063806 , 0.9063806 ,
       0.9063806 , 0.86977129, 0.86977129, 0.86977129, 0.86977129,
       0.8289238 , 0.8289238 , 0.8289238 , 0.8289238 , 0.78560018,
       0.78560018, 0.78560018, 0.78560018, 0.74329928, 0.74329928,
       0.74329928, 0.74329928, 0.70377185, 0.70377185, 0.70377185,
       0.70377185, 0.66708371, 0.66708371, 0.66708371, 0.66708371,
       0.6330064 , 0.6330064 , 0.6330064 , 0.6330064 , 0.60675478,
       0.60675478, 0.60675478, 0.60675478, 0.58061389, 0.58061389,
       0.58061389, 0.58061389, 0.57133748, 0.57133748, 0.57133748,
       0.57133748, 0.56401096, 0.56401096, 0.56401096, 0.56401096,
       0.56229948, 0.56229948, 0.56229948, 0.56229948, 0.56457284,
       0.56457284, 0.56457284, 0.56457284, 0.56699615, 0.56699615,
       0.56699615, 0.56699615, 0.56661875, 0.56661875, 0.56661875,
       0.56661875, 0.56639427, 0.56639427, 0.56639427, 0.56639427,
       0.57210261, 0.57210261, 0.57210261, 0.57210261, 0.60938253,
       0.60938253, 0.60938253, 0.60938253, 0.75154823, 0.75154823,
       0.75154823, 0.75154823, 1.14834311, 1.14834311, 1.14834311,
       1.14834311, 2.00753778, 2.00753778, 2.00753778, 2.00753778,
       3.07707073, 3.07707073, 3.07707073, 3.07707073, 3.28851254,
       3.28851254, 3.28851254, 3.28851254, 2.25822824, 2.25822824,
       2.25822824, 2.25822824, 1.136885  , 1.136885  , 1.136885  ,
       1.136885  , 1.00702667, 1.00702667, 1.00702667, 1.00702667,
       1.00003133, 1.00003133, 1.00003133, 1.00003133, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.88472523e-09, 8.88472523e-09, 8.88472523e-09, 8.88472523e-09,
       5.29210904e-08, 5.29210904e-08, 5.29210904e-08, 5.29210904e-08,
       2.68968990e-07, 2.68968990e-07, 2.68968990e-07, 2.68968990e-07,
       1.29058596e-06, 1.29058596e-06, 1.29058596e-06, 1.29058596e-06,
       5.82613011e-06, 5.82613011e-06, 5.82613011e-06, 5.82613011e-06,
       2.47055828e-05, 2.47055828e-05, 2.47055828e-05, 2.47055828e-05,
       9.82232922e-05, 9.82232922e-05, 9.82232922e-05, 9.82232922e-05,
       3.65333376e-04, 3.65333376e-04, 3.65333376e-04, 3.65333376e-04,
       1.26798274e-03, 1.26798274e-03, 1.26798274e-03, 1.26798274e-03,
       4.09445985e-03, 4.09445985e-03, 4.09445985e-03, 4.09445985e-03,
       1.22588183e-02, 1.22588183e-02, 1.22588183e-02, 1.22588183e-02,
       3.38993827e-02, 3.38993827e-02, 3.38993827e-02, 3.38993827e-02,
       8.62271626e-02, 8.62271626e-02, 8.62271626e-02, 8.62271626e-02,
       2.00962075e-01, 2.00962075e-01, 2.00962075e-01, 2.00962075e-01,
       4.27886788e-01, 4.27886788e-01, 4.27886788e-01, 4.27886788e-01,
       8.31469810e-01, 8.31469810e-01, 8.31469810e-01, 8.31469810e-01,
       1.47715354e+00, 1.47715354e+00, 1.47715354e+00, 1.47715354e+00,
       2.41104027e+00, 2.41104027e+00, 2.41104027e+00, 2.41104027e+00,
       3.64432706e+00, 3.64432706e+00, 3.64432706e+00, 3.64432706e+00,
       5.15349521e+00, 5.15349521e+00, 5.15349521e+00, 5.15349521e+00,
       6.89898043e+00, 6.89898043e+00, 6.89898043e+00, 6.89898043e+00,
       8.82107363e+00, 8.82107363e+00, 8.82107363e+00, 8.82107363e+00,
       1.07606034e+01, 1.07606034e+01, 1.07606034e+01, 1.07606034e+01,
       1.26809719e+01, 1.26809719e+01, 1.26809719e+01, 1.26809719e+01,
       1.45408992e+01, 1.45408992e+01, 1.45408992e+01, 1.45408992e+01,
       1.63011956e+01, 1.63011956e+01, 1.63011956e+01, 1.63011956e+01,
       1.78659797e+01, 1.78659797e+01, 1.78659797e+01, 1.78659797e+01,
       1.91016597e+01, 1.91016597e+01, 1.91016597e+01, 1.91016597e+01,
       1.98864085e+01, 1.98864085e+01, 1.98864085e+01, 1.98864085e+01,
       2.02241697e+01, 2.02241697e+01, 2.02241697e+01, 2.02241697e+01,
       2.02710826e+01, 2.02710826e+01, 2.02710826e+01, 2.02710826e+01,
       2.01384385e+01, 2.01384385e+01, 2.01384385e+01, 2.01384385e+01,
       2.00398023e+01, 2.00398023e+01, 2.00398023e+01, 2.00398023e+01,
       2.00141317e+01, 2.00141317e+01, 2.00141317e+01, 2.00141317e+01,
       2.00125047e+01, 2.00125047e+01, 2.00125047e+01, 2.00125047e+01,
       2.00117339e+01, 2.00117339e+01, 2.00117339e+01, 2.00117339e+01,
       2.00041797e+01, 2.00041797e+01, 2.00041797e+01, 2.00041797e+01,
       1.99838495e+01, 1.99838495e+01, 1.99838495e+01, 1.99838495e+01,
       1.99519757e+01, 1.99519757e+01, 1.99519757e+01, 1.99519757e+01,
       1.98474175e+01, 1.98474175e+01, 1.98474175e+01, 1.98474175e+01,
       1.93323898e+01, 1.93323898e+01, 1.93323898e+01, 1.93323898e+01,
       1.69770632e+01, 1.69770632e+01, 1.69770632e+01, 1.69770632e+01,
       9.43267908e+00, 9.43267908e+00, 9.43267908e+00, 9.43267908e+00,
       8.98850413e-01, 8.98850413e-01, 8.98850413e-01, 8.98850413e-01,
       7.99452553e-03, 7.99452553e-03, 7.99452553e-03, 7.99452553e-03,
       3.95277914e-06, 3.95277914e-06, 3.95277914e-06, 3.95277914e-06,
       5.87204713e-10, 5.87204713e-10, 5.87204713e-10, 5.87204713e-10,
       8.74454638e-14, 8.74454638e-14, 8.74454638e-14, 8.74454638e-14,
       1.31382467e-17, 1.31382467e-17, 1.31382467e-17, 1.31382467e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
       9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
       9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
       9.99999076e+02, 9.99999076e+02, 9.99999076e+02, 9.99999076e+02,
       9.99996325e+02, 9.99996325e+02, 9.99996325e+02, 9.99996325e+02,
       9.99986331e+02, 9.99986331e+02, 9.99986331e+02, 9.99986331e+02,
       9.99952558e+02, 9.99952558e+02, 9.99952558e+02, 9.99952558e+02,
       9.99846811e+02, 9.99846811e+02, 9.99846811e+02, 9.99846811e+02,
       9.99541417e+02, 9.99541417e+02, 9.99541417e+02, 9.99541417e+02,
       9.98732356e+02, 9.98732356e+02, 9.98732356e+02, 9.98732356e+02,
       9.96778496e+02, 9.96778496e+02, 9.96778496e+02, 9.96778496e+02,
       9.92506573e+02, 9.92506573e+02, 9.92506573e+02, 9.92506573e+02,
       9.84106027e+02, 9.84106027e+02, 9.84106027e+02, 9.84106027e+02,
       9.69322749e+02, 9.69322749e+02, 9.69322749e+02, 9.69322749e+02,
       9.46081288e+02, 9.46081288e+02, 9.46081288e+02, 9.46081288e+02,
       9.13335017e+02, 9.13335017e+02, 9.13335017e+02, 9.13335017e+02,
       8.71610214e+02, 8.71610214e+02, 8.71610214e+02, 8.71610214e+02,
       8.22805647e+02, 8.22805647e+02, 8.22805647e+02, 8.22805647e+02,
       7.69307087e+02, 7.69307087e+02, 7.69307087e+02, 7.69307087e+02,
       7.13651394e+02, 7.13651394e+02, 7.13651394e+02, 7.13651394e+02,
       6.60389331e+02, 6.60389331e+02, 6.60389331e+02, 6.60389331e+02,
       6.11811082e+02, 6.11811082e+02, 6.11811082e+02, 6.11811082e+02,
       5.67482808e+02, 5.67482808e+02, 5.67482808e+02, 5.67482808e+02,
       5.28269968e+02, 5.28269968e+02, 5.28269968e+02, 5.28269968e+02,
       4.95352222e+02, 4.95352222e+02, 4.95352222e+02, 4.95352222e+02,
       4.70492622e+02, 4.70492622e+02, 4.70492622e+02, 4.70492622e+02,
       4.55270406e+02, 4.55270406e+02, 4.55270406e+02, 4.55270406e+02,
       4.49060619e+02, 4.49060619e+02, 4.49060619e+02, 4.49060619e+02,
       4.48201927e+02, 4.48201927e+02, 4.48201927e+02, 4.48201927e+02,
       4.50695933e+02, 4.50695933e+02, 4.50695933e+02, 4.50695933e+02,
       4.52345569e+02, 4.52345569e+02, 4.52345569e+02, 4.52345569e+02,
       4.52754082e+02, 4.52754082e+02, 4.52754082e+02, 4.52754082e+02,
       4.52997015e+02, 4.52997015e+02, 4.52997015e+02, 4.52997015e+02,
       4.53174880e+02, 4.53174880e+02, 4.53174880e+02, 4.53174880e+02,
       4.53361382e+02, 4.53361382e+02, 4.53361382e+02, 4.53361382e+02,
       4.53679663e+02, 4.53679663e+02, 4.53679663e+02, 4.53679663e+02,
       4.54190653e+02, 4.54190653e+02, 4.54190653e+02, 4.54190653e+02,
       4.52637868e+02, 4.52637868e+02, 4.52637868e+02, 4.52637868e+02,
       4.32258483e+02, 4.32258483e+02, 4.32258483e+02, 4.32258483e+02,
       3.29015504e+02, 3.29015504e+02, 3.29015504e+02, 3.29015504e+02,
       1.00405385e+02, 1.00405385e+02, 1.00405385e+02, 1.00405385e+02,
       3.29045820e+00, 3.29045820e+00, 3.29045820e+00, 3.29045820e+00,
       1.46741752e-02, 1.46741752e-02, 1.46741752e-02, 1.46741752e-02,
       1.00004659e-02, 1.00004659e-02, 1.00004659e-02, 1.00004659e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
       0.99999997, 0.99999997, 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999943, 0.99999943, 0.99999943, 0.99999943,
       0.99999776, 0.99999776, 0.99999776, 0.99999776, 0.9999918 ,
       0.9999918 , 0.9999918 , 0.9999918 , 0.99997186, 0.99997186,
       0.99997186, 0.99997186, 0.99990994, 0.99990994, 0.99990994,
       0.99990994, 0.99973194, 0.99973194, 0.99973194, 0.99973194,
       0.99926076, 0.99926076, 0.99926076, 0.99926076, 0.99811888,
       0.99811888, 0.99811888, 0.99811888, 0.9956012 , 0.9956012 ,
       0.9956012 , 0.9956012 , 0.99058136, 0.99058136, 0.99058136,
       0.99058136, 0.98157355, 0.98157355, 0.98157355, 0.98157355,
       0.96705453, 0.96705453, 0.96705453, 0.96705453, 0.94598589,
       0.94598589, 0.94598589, 0.94598589, 0.91825438, 0.91825438,
       0.91825438, 0.91825438, 0.88471667, 0.88471667, 0.88471667,
       0.88471667, 0.84678775, 0.84678775, 0.84678775, 0.84678775,
       0.8058432 , 0.8058432 , 0.8058432 , 0.8058432 , 0.76438015,
       0.76438015, 0.76438015, 0.76438015, 0.72517919, 0.72517919,
       0.72517919, 0.72517919, 0.68826098, 0.68826098, 0.68826098,
       0.68826098, 0.65432311, 0.65432311, 0.65432311, 0.65432311,
       0.62261428, 0.62261428, 0.62261428, 0.62261428, 0.59964198,
       0.59964198, 0.59964198, 0.59964198, 0.57647962, 0.57647962,
       0.57647962, 0.57647962, 0.56891377, 0.56891377, 0.56891377,
       0.56891377, 0.5642295 , 0.5642295 , 0.5642295 , 0.5642295 ,
       0.56291649, 0.56291649, 0.56291649, 0.56291649, 0.56496715,
       0.56496715, 0.56496715, 0.56496715, 0.5670335 , 0.5670335 ,
       0.5670335 , 0.5670335 , 0.56691285, 0.56691285, 0.56691285,
       0.56691285, 0.56649394, 0.56649394, 0.56649394, 0.56649394,
       0.56954649, 0.56954649, 0.56954649, 0.56954649, 0.59269675,
       0.59269675, 0.59269675, 0.59269675, 0.68846425, 0.68846425,
       0.68846425, 0.68846425, 0.97389537, 0.97389537, 0.97389537,
       0.97389537, 1.63730131, 1.63730131, 1.63730131, 1.63730131,
       2.75902555, 2.75902555, 2.75902555, 2.75902555, 3.37028342,
       3.37028342, 3.37028342, 3.37028342, 2.98215238, 2.98215238,
       2.98215238, 2.98215238, 1.46829751, 1.46829751, 1.46829751,
       1.46829751, 1.03187752, 1.03187752, 1.03187752, 1.03187752,
       1.00073195, 1.00073195, 1.00073195, 1.00073195, 1.0000003 ,
       1.0000003 , 1.0000003 , 1.0000003 , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([4.52514197e-08, 4.52514197e-08, 4.52514197e-08, 4.52514197e-08,
       2.49281931e-07, 2.49281931e-07, 2.49281931e-07, 2.49281931e-07,
       1.16502486e-06, 1.16502486e-06, 1.16502486e-06, 1.16502486e-06,
       5.14742918e-06, 5.14742918e-06, 5.14742918e-06, 5.14742918e-06,
       2.14115184e-05, 2.14115184e-05, 2.14115184e-05, 2.14115184e-05,
       8.37057786e-05, 8.37057786e-05, 8.37057786e-05, 8.37057786e-05,
       3.06910769e-04, 3.06910769e-04, 3.06910769e-04, 3.06910769e-04,
       1.05286130e-03, 1.05286130e-03, 1.05286130e-03, 1.05286130e-03,
       3.36989687e-03, 3.36989687e-03, 3.36989687e-03, 3.36989687e-03,
       1.00310100e-02, 1.00310100e-02, 1.00310100e-02, 1.00310100e-02,
       2.76674775e-02, 2.76674775e-02, 2.76674775e-02, 2.76674775e-02,
       7.04345400e-02, 7.04345400e-02, 7.04345400e-02, 7.04345400e-02,
       1.64864079e-01, 1.64864079e-01, 1.64864079e-01, 1.64864079e-01,
       3.53706435e-01, 3.53706435e-01, 3.53706435e-01, 3.53706435e-01,
       6.94517417e-01, 6.94517417e-01, 6.94517417e-01, 6.94517417e-01,
       1.24926788e+00, 1.24926788e+00, 1.24926788e+00, 1.24926788e+00,
       2.06658717e+00, 2.06658717e+00, 2.06658717e+00, 2.06658717e+00,
       3.16549040e+00, 3.16549040e+00, 3.16549040e+00, 3.16549040e+00,
       4.53121338e+00, 4.53121338e+00, 4.53121338e+00, 4.53121338e+00,
       6.12705253e+00, 6.12705253e+00, 6.12705253e+00, 6.12705253e+00,
       7.91542783e+00, 7.91542783e+00, 7.91542783e+00, 7.91542783e+00,
       9.77789566e+00, 9.77789566e+00, 9.77789566e+00, 9.77789566e+00,
       1.16347704e+01, 1.16347704e+01, 1.16347704e+01, 1.16347704e+01,
       1.34551790e+01, 1.34551790e+01, 1.34551790e+01, 1.34551790e+01,
       1.52122136e+01, 1.52122136e+01, 1.52122136e+01, 1.52122136e+01,
       1.68521553e+01, 1.68521553e+01, 1.68521553e+01, 1.68521553e+01,
       1.82765818e+01, 1.82765818e+01, 1.82765818e+01, 1.82765818e+01,
       1.93576979e+01, 1.93576979e+01, 1.93576979e+01, 1.93576979e+01,
       1.99942621e+01, 1.99942621e+01, 1.99942621e+01, 1.99942621e+01,
       2.02328594e+01, 2.02328594e+01, 2.02328594e+01, 2.02328594e+01,
       2.02456712e+01, 2.02456712e+01, 2.02456712e+01, 2.02456712e+01,
       2.01101923e+01, 2.01101923e+01, 2.01101923e+01, 2.01101923e+01,
       2.00369389e+01, 2.00369389e+01, 2.00369389e+01, 2.00369389e+01,
       2.00131267e+01, 2.00131267e+01, 2.00131267e+01, 2.00131267e+01,
       2.00070966e+01, 2.00070966e+01, 2.00070966e+01, 2.00070966e+01,
       2.00052693e+01, 2.00052693e+01, 2.00052693e+01, 2.00052693e+01,
       1.99989897e+01, 1.99989897e+01, 1.99989897e+01, 1.99989897e+01,
       1.99805077e+01, 1.99805077e+01, 1.99805077e+01, 1.99805077e+01,
       1.99568809e+01, 1.99568809e+01, 1.99568809e+01, 1.99568809e+01,
       1.98969783e+01, 1.98969783e+01, 1.98969783e+01, 1.98969783e+01,
       1.96461093e+01, 1.96461093e+01, 1.96461093e+01, 1.96461093e+01,
       1.84628990e+01, 1.84628990e+01, 1.84628990e+01, 1.84628990e+01,
       1.37419915e+01, 1.37419915e+01, 1.37419915e+01, 1.37419915e+01,
       3.80245394e+00, 3.80245394e+00, 3.80245394e+00, 3.80245394e+00,
       1.00964393e-01, 1.00964393e-01, 1.00964393e-01, 1.00964393e-01,
       1.97893986e-04, 1.97893986e-04, 1.97893986e-04, 1.97893986e-04,
       3.50167417e-08, 3.50167417e-08, 3.50167417e-08, 3.50167417e-08,
       5.53183762e-12, 5.53183762e-12, 5.53183762e-12, 5.53183762e-12,
       8.51924516e-16, 8.51924516e-16, 8.51924516e-16, 8.51924516e-16,
       1.36608685e-19, 1.36608685e-19, 1.36608685e-19, 1.36608685e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
       9.99999956e+02, 9.99999956e+02, 9.99999956e+02, 9.99999956e+02,
       9.99999807e+02, 9.99999807e+02, 9.99999807e+02, 9.99999807e+02,
       9.99999199e+02, 9.99999199e+02, 9.99999199e+02, 9.99999199e+02,
       9.99996868e+02, 9.99996868e+02, 9.99996868e+02, 9.99996868e+02,
       9.99988517e+02, 9.99988517e+02, 9.99988517e+02, 9.99988517e+02,
       9.99960606e+02, 9.99960606e+02, 9.99960606e+02, 9.99960606e+02,
       9.99873918e+02, 9.99873918e+02, 9.99873918e+02, 9.99873918e+02,
       9.99624741e+02, 9.99624741e+02, 9.99624741e+02, 9.99624741e+02,
       9.98965280e+02, 9.98965280e+02, 9.98965280e+02, 9.98965280e+02,
       9.97367799e+02, 9.97367799e+02, 9.97367799e+02, 9.97367799e+02,
       9.93848786e+02, 9.93848786e+02, 9.93848786e+02, 9.93848786e+02,
       9.86844939e+02, 9.86844939e+02, 9.86844939e+02, 9.86844939e+02,
       9.74316549e+02, 9.74316549e+02, 9.74316549e+02, 9.74316549e+02,
       9.54225804e+02, 9.54225804e+02, 9.54225804e+02, 9.54225804e+02,
       9.25291883e+02, 9.25291883e+02, 9.25291883e+02, 9.25291883e+02,
       8.87600888e+02, 8.87600888e+02, 8.87600888e+02, 8.87600888e+02,
       8.42619539e+02, 8.42619539e+02, 8.42619539e+02, 8.42619539e+02,
       7.92557878e+02, 7.92557878e+02, 7.92557878e+02, 7.92557878e+02,
       7.39509078e+02, 7.39509078e+02, 7.39509078e+02, 7.39509078e+02,
       6.86734806e+02, 6.86734806e+02, 6.86734806e+02, 6.86734806e+02,
       6.37955173e+02, 6.37955173e+02, 6.37955173e+02, 6.37955173e+02,
       5.93035458e+02, 5.93035458e+02, 5.93035458e+02, 5.93035458e+02,
       5.52230567e+02, 5.52230567e+02, 5.52230567e+02, 5.52230567e+02,
       5.16416992e+02, 5.16416992e+02, 5.16416992e+02, 5.16416992e+02,
       4.86984397e+02, 4.86984397e+02, 4.86984397e+02, 4.86984397e+02,
       4.65596969e+02, 4.65596969e+02, 4.65596969e+02, 4.65596969e+02,
       4.53240066e+02, 4.53240066e+02, 4.53240066e+02, 4.53240066e+02,
       4.48778450e+02, 4.48778450e+02, 4.48778450e+02, 4.48778450e+02,
       4.48639462e+02, 4.48639462e+02, 4.48639462e+02, 4.48639462e+02,
       4.51263622e+02, 4.51263622e+02, 4.51263622e+02, 4.51263622e+02,
       4.52567685e+02, 4.52567685e+02, 4.52567685e+02, 4.52567685e+02,
       4.52811496e+02, 4.52811496e+02, 4.52811496e+02, 4.52811496e+02,
       4.52945111e+02, 4.52945111e+02, 4.52945111e+02, 4.52945111e+02,
       4.53123466e+02, 4.53123466e+02, 4.53123466e+02, 4.53123466e+02,
       4.53394325e+02, 4.53394325e+02, 4.53394325e+02, 4.53394325e+02,
       4.53835168e+02, 4.53835168e+02, 4.53835168e+02, 4.53835168e+02,
       4.54404144e+02, 4.54404144e+02, 4.54404144e+02, 4.54404144e+02,
       4.54398815e+02, 4.54398815e+02, 4.54398815e+02, 4.54398815e+02,
       4.46505808e+02, 4.46505808e+02, 4.46505808e+02, 4.46505808e+02,
       3.93317262e+02, 3.93317262e+02, 3.93317262e+02, 3.93317262e+02,
       2.10080070e+02, 2.10080070e+02, 2.10080070e+02, 2.10080070e+02,
       2.32249751e+01, 2.32249751e+01, 2.32249751e+01, 2.32249751e+01,
       1.73430791e-01, 1.73430791e-01, 1.73430791e-01, 1.73430791e-01,
       1.00314003e-02, 1.00314003e-02, 1.00314003e-02, 1.00314003e-02,
       1.00000041e-02, 1.00000041e-02, 1.00000041e-02, 1.00000041e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.99999988, 0.99999988,
       0.99999988, 0.99999988, 0.99999951, 0.99999951, 0.99999951,
       0.99999951, 0.9999981 , 0.9999981 , 0.9999981 , 0.9999981 ,
       0.99999312, 0.99999312, 0.99999312, 0.99999312, 0.99997664,
       0.99997664, 0.99997664, 0.99997664, 0.99992585, 0.99992585,
       0.99992585, 0.99992585, 0.99978045, 0.99978045, 0.99978045,
       0.99978045, 0.99939593, 0.99939593, 0.99939593, 0.99939593,
       0.99846143, 0.99846143, 0.99846143, 0.99846143, 0.99638683,
       0.99638683, 0.99638683, 0.99638683, 0.99220475, 0.99220475,
       0.99220475, 0.99220475, 0.98458761, 0.98458761, 0.98458761,
       0.98458761, 0.9720855 , 0.9720855 , 0.9720855 , 0.9720855 ,
       0.95357426, 0.95357426, 0.95357426, 0.95357426, 0.92870343,
       0.92870343, 0.92870343, 0.92870343, 0.89804865, 0.89804865,
       0.89804865, 0.89804865, 0.86284217, 0.86284217, 0.86284217,
       0.86284217, 0.82441149, 0.82441149, 0.82441149, 0.82441149,
       0.78436898, 0.78436898, 0.78436898, 0.78436898, 0.74552409,
       0.74552409, 0.74552409, 0.74552409, 0.70888758, 0.70888758,
       0.70888758, 0.70888758, 0.67437483, 0.67437483, 0.67437483,
       0.67437483, 0.6430066 , 0.6430066 , 0.6430066 , 0.6430066 ,
       0.61348618, 0.61348618, 0.61348618, 0.61348618, 0.59349049,
       0.59349049, 0.59349049, 0.59349049, 0.57331869, 0.57331869,
       0.57331869, 0.57331869, 0.56704679, 0.56704679, 0.56704679,
       0.56704679, 0.56447692, 0.56447692, 0.56447692, 0.56447692,
       0.56362867, 0.56362867, 0.56362867, 0.56362867, 0.56531162,
       0.56531162, 0.56531162, 0.56531162, 0.567019  , 0.567019  ,
       0.567019  , 0.567019  , 0.56709383, 0.56709383, 0.56709383,
       0.56709383, 0.5667092 , 0.5667092 , 0.5667092 , 0.5667092 ,
       0.56824252, 0.56824252, 0.56824252, 0.56824252, 0.58236395,
       0.58236395, 0.58236395, 0.58236395, 0.6459472 , 0.6459472 ,
       0.6459472 , 0.6459472 , 0.84807929, 0.84807929, 0.84807929,
       0.84807929, 1.34919174, 1.34919174, 1.34919174, 1.34919174,
       2.33541132, 2.33541132, 2.33541132, 2.33541132, 3.2926407 ,
       3.2926407 , 3.2926407 , 3.2926407 , 3.37752881, 3.37752881,
       3.37752881, 3.37752881, 2.16954992, 2.16954992, 2.16954992,
       2.16954992, 1.1172986 , 1.1172986 , 1.1172986 , 1.1172986 ,
       1.00560841, 1.00560841, 1.00560841, 1.00560841, 1.00001853,
       1.00001853, 1.00001853, 1.00001853, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.04607737e-07, 2.04607737e-07, 2.04607737e-07, 2.04607737e-07,
       1.04753503e-06, 1.04753503e-06, 1.04753503e-06, 1.04753503e-06,
       4.52318125e-06, 4.52318125e-06, 4.52318125e-06, 4.52318125e-06,
       1.84864298e-05, 1.84864298e-05, 1.84864298e-05, 1.84864298e-05,
       7.11599517e-05, 7.11599517e-05, 7.11599517e-05, 7.11599517e-05,
       2.57499723e-04, 2.57499723e-04, 2.57499723e-04, 2.57499723e-04,
       8.73945333e-04, 8.73945333e-04, 8.73945333e-04, 8.73945333e-04,
       2.77466387e-03, 2.77466387e-03, 2.77466387e-03, 2.77466387e-03,
       8.21545316e-03, 8.21545316e-03, 8.21545316e-03, 8.21545316e-03,
       2.26072838e-02, 2.26072838e-02, 2.26072838e-02, 2.26072838e-02,
       5.76012133e-02, 5.76012133e-02, 5.76012133e-02, 5.76012133e-02,
       1.35378501e-01, 1.35378501e-01, 1.35378501e-01, 1.35378501e-01,
       2.92554805e-01, 2.92554805e-01, 2.92554805e-01, 2.92554805e-01,
       5.80205845e-01, 5.80205845e-01, 5.80205845e-01, 5.80205845e-01,
       1.05628947e+00, 1.05628947e+00, 1.05628947e+00, 1.05628947e+00,
       1.77052666e+00, 1.77052666e+00, 1.77052666e+00, 1.77052666e+00,
       2.74829898e+00, 2.74829898e+00, 2.74829898e+00, 2.74829898e+00,
       3.98331961e+00, 3.98331961e+00, 3.98331961e+00, 3.98331961e+00,
       5.44451310e+00, 5.44451310e+00, 5.44451310e+00, 5.44451310e+00,
       7.09514684e+00, 7.09514684e+00, 7.09514684e+00, 7.09514684e+00,
       8.87295070e+00, 8.87295070e+00, 8.87295070e+00, 8.87295070e+00,
       1.06594721e+01, 1.06594721e+01, 1.06594721e+01, 1.06594721e+01,
       1.24293602e+01, 1.24293602e+01, 1.24293602e+01, 1.24293602e+01,
       1.41607204e+01, 1.41607204e+01, 1.41607204e+01, 1.41607204e+01,
       1.58187383e+01, 1.58187383e+01, 1.58187383e+01, 1.58187383e+01,
       1.73419873e+01, 1.73419873e+01, 1.73419873e+01, 1.73419873e+01,
       1.86283641e+01, 1.86283641e+01, 1.86283641e+01, 1.86283641e+01,
       1.95639138e+01, 1.95639138e+01, 1.95639138e+01, 1.95639138e+01,
       2.00736039e+01, 2.00736039e+01, 2.00736039e+01, 2.00736039e+01,
       2.02330193e+01, 2.02330193e+01, 2.02330193e+01, 2.02330193e+01,
       2.02158212e+01, 2.02158212e+01, 2.02158212e+01, 2.02158212e+01,
       2.00862699e+01, 2.00862699e+01, 2.00862699e+01, 2.00862699e+01,
       2.00336687e+01, 2.00336687e+01, 2.00336687e+01, 2.00336687e+01,
       2.00150798e+01, 2.00150798e+01, 2.00150798e+01, 2.00150798e+01,
       2.00060876e+01, 2.00060876e+01, 2.00060876e+01, 2.00060876e+01,
       1.99998383e+01, 1.99998383e+01, 1.99998383e+01, 1.99998383e+01,
       1.99906385e+01, 1.99906385e+01, 1.99906385e+01, 1.99906385e+01,
       1.99726435e+01, 1.99726435e+01, 1.99726435e+01, 1.99726435e+01,
       1.99540496e+01, 1.99540496e+01, 1.99540496e+01, 1.99540496e+01,
       1.99172472e+01, 1.99172472e+01, 1.99172472e+01, 1.99172472e+01,
       1.97905611e+01, 1.97905611e+01, 1.97905611e+01, 1.97905611e+01,
       1.92093064e+01, 1.92093064e+01, 1.92093064e+01, 1.92093064e+01,
       1.66360985e+01, 1.66360985e+01, 1.66360985e+01, 1.66360985e+01,
       8.75489385e+00, 8.75489385e+00, 8.75489385e+00, 8.75489385e+00,
       7.20452697e-01, 7.20452697e-01, 7.20452697e-01, 7.20452697e-01,
       5.43172134e-03, 5.43172134e-03, 5.43172134e-03, 5.43172134e-03,
       2.27604406e-06, 2.27604406e-06, 2.27604406e-06, 2.27604406e-06,
       3.38472840e-10, 3.38472840e-10, 3.38472840e-10, 3.38472840e-10,
       5.10071735e-14, 5.10071735e-14, 5.10071735e-14, 5.10071735e-14,
       7.83554591e-18, 7.83554591e-18, 7.83554591e-18, 7.83554591e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999961e+02, 9.99999961e+02, 9.99999961e+02, 9.99999961e+02,
       9.99999831e+02, 9.99999831e+02, 9.99999831e+02, 9.99999831e+02,
       9.99999308e+02, 9.99999308e+02, 9.99999308e+02, 9.99999308e+02,
       9.99997337e+02, 9.99997337e+02, 9.99997337e+02, 9.99997337e+02,
       9.99990365e+02, 9.99990365e+02, 9.99990365e+02, 9.99990365e+02,
       9.99967300e+02, 9.99967300e+02, 9.99967300e+02, 9.99967300e+02,
       9.99896187e+02, 9.99896187e+02, 9.99896187e+02, 9.99896187e+02,
       9.99692651e+02, 9.99692651e+02, 9.99692651e+02, 9.99692651e+02,
       9.99154448e+02, 9.99154448e+02, 9.99154448e+02, 9.99154448e+02,
       9.97846913e+02, 9.97846913e+02, 9.97846913e+02, 9.97846913e+02,
       9.94946365e+02, 9.94946365e+02, 9.94946365e+02, 9.94946365e+02,
       9.89107997e+02, 9.89107997e+02, 9.89107997e+02, 9.89107997e+02,
       9.78502508e+02, 9.78502508e+02, 9.78502508e+02, 9.78502508e+02,
       9.61171766e+02, 9.61171766e+02, 9.61171766e+02, 9.61171766e+02,
       9.35679962e+02, 9.35679962e+02, 9.35679962e+02, 9.35679962e+02,
       9.01743661e+02, 9.01743661e+02, 9.01743661e+02, 9.01743661e+02,
       8.60410587e+02, 8.60410587e+02, 8.60410587e+02, 8.60410587e+02,
       8.13626053e+02, 8.13626053e+02, 8.13626053e+02, 8.13626053e+02,
       7.63416647e+02, 7.63416647e+02, 7.63416647e+02, 7.63416647e+02,
       7.12019797e+02, 7.12019797e+02, 7.12019797e+02, 7.12019797e+02,
       6.63120871e+02, 6.63120871e+02, 6.63120871e+02, 6.63120871e+02,
       6.17966596e+02, 6.17966596e+02, 6.17966596e+02, 6.17966596e+02,
       5.76387663e+02, 5.76387663e+02, 5.76387663e+02, 5.76387663e+02,
       5.38762205e+02, 5.38762205e+02, 5.38762205e+02, 5.38762205e+02,
       5.06102905e+02, 5.06102905e+02, 5.06102905e+02, 5.06102905e+02,
       4.79873679e+02, 4.79873679e+02, 4.79873679e+02, 4.79873679e+02,
       4.61632451e+02, 4.61632451e+02, 4.61632451e+02, 4.61632451e+02,
       4.51822663e+02, 4.51822663e+02, 4.51822663e+02, 4.51822663e+02,
       4.48755045e+02, 4.48755045e+02, 4.48755045e+02, 4.48755045e+02,
       4.49111914e+02, 4.49111914e+02, 4.49111914e+02, 4.49111914e+02,
       4.51654090e+02, 4.51654090e+02, 4.51654090e+02, 4.51654090e+02,
       4.52718346e+02, 4.52718346e+02, 4.52718346e+02, 4.52718346e+02,
       4.52919431e+02, 4.52919431e+02, 4.52919431e+02, 4.52919431e+02,
       4.52976550e+02, 4.52976550e+02, 4.52976550e+02, 4.52976550e+02,
       4.53103923e+02, 4.53103923e+02, 4.53103923e+02, 4.53103923e+02,
       4.53388509e+02, 4.53388509e+02, 4.53388509e+02, 4.53388509e+02,
       4.53898765e+02, 4.53898765e+02, 4.53898765e+02, 4.53898765e+02,
       4.54482141e+02, 4.54482141e+02, 4.54482141e+02, 4.54482141e+02,
       4.55085093e+02, 4.55085093e+02, 4.55085093e+02, 4.55085093e+02,
       4.52596174e+02, 4.52596174e+02, 4.52596174e+02, 4.52596174e+02,
       4.27900465e+02, 4.27900465e+02, 4.27900465e+02, 4.27900465e+02,
       3.14451641e+02, 3.14451641e+02, 3.14451641e+02, 3.14451641e+02,
       8.65631679e+01, 8.65631679e+01, 8.65631679e+01, 8.65631679e+01,
       2.41830497e+00, 2.41830497e+00, 2.41830497e+00, 2.41830497e+00,
       1.27132333e-02, 1.27132333e-02, 1.27132333e-02, 1.27132333e-02,
       1.00002685e-02, 1.00002685e-02, 1.00002685e-02, 1.00002685e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
       0.99999989, 0.99999989, 0.99999989, 0.99999957, 0.99999957,
       0.99999957, 0.99999957, 0.99999839, 0.99999839, 0.99999839,
       0.99999839, 0.99999423, 0.99999423, 0.99999423, 0.99999423,
       0.99998062, 0.99998062, 0.99998062, 0.99998062, 0.99993892,
       0.99993892, 0.99993892, 0.99993892, 0.99982004, 0.99982004,
       0.99982004, 0.99982004, 0.99950587, 0.99950587, 0.99950587,
       0.99950587, 0.99874031, 0.99874031, 0.99874031, 0.99874031,
       0.99702982, 0.99702982, 0.99702982, 0.99702982, 0.99354599,
       0.99354599, 0.99354599, 0.99354599, 0.98711067, 0.98711067,
       0.98711067, 0.98711067, 0.97636406, 0.97636406, 0.97636406,
       0.97636406, 0.96013913, 0.96013913, 0.96013913, 0.96013913,
       0.93789515, 0.93789515, 0.93789515, 0.93789515, 0.90994657,
       0.90994657, 0.90994657, 0.90994657, 0.8773198 , 0.8773198 ,
       0.8773198 , 0.8773198 , 0.84131053, 0.84131053, 0.84131053,
       0.84131053, 0.80309318, 0.80309318, 0.80309318, 0.80309318,
       0.76488582, 0.76488582, 0.76488582, 0.76488582, 0.72862882,
       0.72862882, 0.72862882, 0.72862882, 0.69424027, 0.69424027,
       0.69424027, 0.69424027, 0.66187235, 0.66187235, 0.66187235,
       0.66187235, 0.63295763, 0.63295763, 0.63295763, 0.63295763,
       0.60550311, 0.60550311, 0.60550311, 0.60550311, 0.58821214,
       0.58821214, 0.58821214, 0.58821214, 0.57094445, 0.57094445,
       0.57094445, 0.57094445, 0.56567273, 0.56567273, 0.56567273,
       0.56567273, 0.56457433, 0.56457433, 0.56457433, 0.56457433,
       0.56452234, 0.56452234, 0.56452234, 0.56452234, 0.56563963,
       0.56563963, 0.56563963, 0.56563963, 0.56692819, 0.56692819,
       0.56692819, 0.56692819, 0.56718804, 0.56718804, 0.56718804,
       0.56718804, 0.56693567, 0.56693567, 0.56693567, 0.56693567,
       0.56767338, 0.56767338, 0.56767338, 0.56767338, 0.57613836,
       0.57613836, 0.57613836, 0.57613836, 0.61774062, 0.61774062,
       0.61774062, 0.61774062, 0.75887044, 0.75887044, 0.75887044,
       0.75887044, 1.13039106, 1.13039106, 1.13039106, 1.13039106,
       1.91581709, 1.91581709, 1.91581709, 1.91581709, 3.05001354,
       3.05001354, 3.05001354, 3.05001354, 3.50876949, 3.50876949,
       3.50876949, 3.50876949, 2.9569208 , 2.9569208 , 2.9569208 ,
       2.9569208 , 1.40056125, 1.40056125, 1.40056125, 1.40056125,
       1.02615253, 1.02615253, 1.02615253, 1.02615253, 1.00051302,
       1.00051302, 1.00051302, 1.00051302, 1.00000017, 1.00000017,
       1.00000017, 1.00000017, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.31212456e-07, 8.31212456e-07, 8.31212456e-07, 8.31212456e-07,
       3.97120544e-06, 3.97120544e-06, 3.97120544e-06, 3.97120544e-06,
       1.59059987e-05, 1.59059987e-05, 1.59059987e-05, 1.59059987e-05,
       6.03664366e-05, 6.03664366e-05, 6.03664366e-05, 6.03664366e-05,
       2.15805643e-04, 2.15805643e-04, 2.15805643e-04, 2.15805643e-04,
       7.25243296e-04, 7.25243296e-04, 7.25243296e-04, 7.25243296e-04,
       2.28544773e-03, 2.28544773e-03, 2.28544773e-03, 2.28544773e-03,
       6.73404888e-03, 6.73404888e-03, 6.73404888e-03, 6.73404888e-03,
       1.84918575e-02, 1.84918575e-02, 1.84918575e-02, 1.84918575e-02,
       4.71552363e-02, 4.71552363e-02, 4.71552363e-02, 4.71552363e-02,
       1.11259276e-01, 1.11259276e-01, 1.11259276e-01, 1.11259276e-01,
       2.42090826e-01, 2.42090826e-01, 2.42090826e-01, 2.42090826e-01,
       4.84732171e-01, 4.84732171e-01, 4.84732171e-01, 4.84732171e-01,
       8.92811756e-01, 8.92811756e-01, 8.92811756e-01, 8.92811756e-01,
       1.51595482e+00, 1.51595482e+00, 1.51595482e+00, 1.51595482e+00,
       2.38448316e+00, 2.38448316e+00, 2.38448316e+00, 2.38448316e+00,
       3.49994899e+00, 3.49994899e+00, 3.49994899e+00, 3.49994899e+00,
       4.83781455e+00, 4.83781455e+00, 4.83781455e+00, 4.83781455e+00,
       6.36160827e+00, 6.36160827e+00, 6.36160827e+00, 6.36160827e+00,
       8.03629840e+00, 8.03629840e+00, 8.03629840e+00, 8.03629840e+00,
       9.75414415e+00, 9.75414415e+00, 9.75414415e+00, 9.75414415e+00,
       1.14703604e+01, 1.14703604e+01, 1.14703604e+01, 1.14703604e+01,
       1.31577649e+01, 1.31577649e+01, 1.31577649e+01, 1.31577649e+01,
       1.48036949e+01, 1.48036949e+01, 1.48036949e+01, 1.48036949e+01,
       1.63662284e+01, 1.63662284e+01, 1.63662284e+01, 1.63662284e+01,
       1.77761853e+01, 1.77761853e+01, 1.77761853e+01, 1.77761853e+01,
       1.89288293e+01, 1.89288293e+01, 1.89288293e+01, 1.89288293e+01,
       1.97266212e+01, 1.97266212e+01, 1.97266212e+01, 1.97266212e+01,
       2.01268304e+01, 2.01268304e+01, 2.01268304e+01, 2.01268304e+01,
       2.02304156e+01, 2.02304156e+01, 2.02304156e+01, 2.02304156e+01,
       2.01855356e+01, 2.01855356e+01, 2.01855356e+01, 2.01855356e+01,
       2.00664233e+01, 2.00664233e+01, 2.00664233e+01, 2.00664233e+01,
       2.00284165e+01, 2.00284165e+01, 2.00284165e+01, 2.00284165e+01,
       2.00164011e+01, 2.00164011e+01, 2.00164011e+01, 2.00164011e+01,
       2.00075438e+01, 2.00075438e+01, 2.00075438e+01, 2.00075438e+01,
       1.99976330e+01, 1.99976330e+01, 1.99976330e+01, 1.99976330e+01,
       1.99833671e+01, 1.99833671e+01, 1.99833671e+01, 1.99833671e+01,
       1.99631313e+01, 1.99631313e+01, 1.99631313e+01, 1.99631313e+01,
       1.99444762e+01, 1.99444762e+01, 1.99444762e+01, 1.99444762e+01,
       1.99229151e+01, 1.99229151e+01, 1.99229151e+01, 1.99229151e+01,
       1.98546912e+01, 1.98546912e+01, 1.98546912e+01, 1.98546912e+01,
       1.95683651e+01, 1.95683651e+01, 1.95683651e+01, 1.95683651e+01,
       1.82512117e+01, 1.82512117e+01, 1.82512117e+01, 1.82512117e+01,
       1.31946812e+01, 1.31946812e+01, 1.31946812e+01, 1.31946812e+01,
       3.22197950e+00, 3.22197950e+00, 3.22197950e+00, 3.22197950e+00,
       7.26448767e-02, 7.26448767e-02, 7.26448767e-02, 7.26448767e-02,
       1.16941338e-04, 1.16941338e-04, 1.16941338e-04, 1.16941338e-04,
       2.00485498e-08, 2.00485498e-08, 2.00485498e-08, 2.00485498e-08,
       3.19846760e-12, 3.19846760e-12, 3.19846760e-12, 3.19846760e-12,
       4.91826059e-16, 4.91826059e-16, 4.91826059e-16, 4.91826059e-16,
       6.67643390e-20, 6.67643390e-20, 6.67643390e-20, 6.67643390e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999969e+02, 9.99999969e+02, 9.99999969e+02, 9.99999969e+02,
       9.99999851e+02, 9.99999851e+02, 9.99999851e+02, 9.99999851e+02,
       9.99999405e+02, 9.99999405e+02, 9.99999405e+02, 9.99999405e+02,
       9.99997741e+02, 9.99997741e+02, 9.99997741e+02, 9.99997741e+02,
       9.99991925e+02, 9.99991925e+02, 9.99991925e+02, 9.99991925e+02,
       9.99972864e+02, 9.99972864e+02, 9.99972864e+02, 9.99972864e+02,
       9.99914490e+02, 9.99914490e+02, 9.99914490e+02, 9.99914490e+02,
       9.99748065e+02, 9.99748065e+02, 9.99748065e+02, 9.99748065e+02,
       9.99308322e+02, 9.99308322e+02, 9.99308322e+02, 9.99308322e+02,
       9.98237056e+02, 9.98237056e+02, 9.98237056e+02, 9.98237056e+02,
       9.95845011e+02, 9.95845011e+02, 9.95845011e+02, 9.95845011e+02,
       9.90979078e+02, 9.90979078e+02, 9.90979078e+02, 9.90979078e+02,
       9.82011051e+02, 9.82011051e+02, 9.82011051e+02, 9.82011051e+02,
       9.67091266e+02, 9.67091266e+02, 9.67091266e+02, 9.67091266e+02,
       9.44695117e+02, 9.44695117e+02, 9.44695117e+02, 9.44695117e+02,
       9.14239174e+02, 9.14239174e+02, 9.14239174e+02, 9.14239174e+02,
       8.76379529e+02, 8.76379529e+02, 8.76379529e+02, 8.76379529e+02,
       8.32762793e+02, 8.32762793e+02, 8.32762793e+02, 8.32762793e+02,
       7.85366006e+02, 7.85366006e+02, 7.85366006e+02, 7.85366006e+02,
       7.35932360e+02, 7.35932360e+02, 7.35932360e+02, 7.35932360e+02,
       6.87323424e+02, 6.87323424e+02, 6.87323424e+02, 6.87323424e+02,
       6.42175077e+02, 6.42175077e+02, 6.42175077e+02, 6.42175077e+02,
       6.00145773e+02, 6.00145773e+02, 6.00145773e+02, 6.00145773e+02,
       5.61538265e+02, 5.61538265e+02, 5.61538265e+02, 5.61538265e+02,
       5.26840609e+02, 5.26840609e+02, 5.26840609e+02, 5.26840609e+02,
       4.97140791e+02, 4.97140791e+02, 4.97140791e+02, 4.97140791e+02,
       4.73884379e+02, 4.73884379e+02, 4.73884379e+02, 4.73884379e+02,
       4.58462049e+02, 4.58462049e+02, 4.58462049e+02, 4.58462049e+02,
       4.50871407e+02, 4.50871407e+02, 4.50871407e+02, 4.50871407e+02,
       4.48847969e+02, 4.48847969e+02, 4.48847969e+02, 4.48847969e+02,
       4.49672702e+02, 4.49672702e+02, 4.49672702e+02, 4.49672702e+02,
       4.51922948e+02, 4.51922948e+02, 4.51922948e+02, 4.51922948e+02,
       4.52785224e+02, 4.52785224e+02, 4.52785224e+02, 4.52785224e+02,
       4.53005867e+02, 4.53005867e+02, 4.53005867e+02, 4.53005867e+02,
       4.53063737e+02, 4.53063737e+02, 4.53063737e+02, 4.53063737e+02,
       4.53160041e+02, 4.53160041e+02, 4.53160041e+02, 4.53160041e+02,
       4.53422261e+02, 4.53422261e+02, 4.53422261e+02, 4.53422261e+02,
       4.53914136e+02, 4.53914136e+02, 4.53914136e+02, 4.53914136e+02,
       4.54500339e+02, 4.54500339e+02, 4.54500339e+02, 4.54500339e+02,
       4.55295261e+02, 4.55295261e+02, 4.55295261e+02, 4.55295261e+02,
       4.55007290e+02, 4.55007290e+02, 4.55007290e+02, 4.55007290e+02,
       4.44699313e+02, 4.44699313e+02, 4.44699313e+02, 4.44699313e+02,
       3.84060326e+02, 3.84060326e+02, 3.84060326e+02, 3.84060326e+02,
       1.91713252e+02, 1.91713252e+02, 1.91713252e+02, 1.91713252e+02,
       1.83826676e+01, 1.83826676e+01, 1.83826676e+01, 1.83826676e+01,
       1.13135376e-01, 1.13135376e-01, 1.13135376e-01, 1.13135376e-01,
       1.00165770e-02, 1.00165770e-02, 1.00165770e-02, 1.00165770e-02,
       1.00000024e-02, 1.00000024e-02, 1.00000024e-02, 1.00000024e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999963,
       0.99999963, 0.99999963, 0.99999963, 0.99999863, 0.99999863,
       0.99999863, 0.99999863, 0.99999517, 0.99999517, 0.99999517,
       0.99999517, 0.99998392, 0.99998392, 0.99998392, 0.99998392,
       0.99994967, 0.99994967, 0.99994967, 0.99994967, 0.99985237,
       0.99985237, 0.99985237, 0.99985237, 0.99959542, 0.99959542,
       0.99959542, 0.99959542, 0.9989677 , 0.9989677 , 0.9989677 ,
       0.9989677 , 0.99755668, 0.99755668, 0.99755668, 0.99755668,
       0.99465483, 0.99465483, 0.99465483, 0.99465483, 0.98922278,
       0.98922278, 0.98922278, 0.98922278, 0.98000087, 0.98000087,
       0.98000087, 0.98000087, 0.96581386, 0.96581386, 0.96581386,
       0.96581386, 0.94597479, 0.94597479, 0.94597479, 0.94597479,
       0.92056352, 0.92056352, 0.92056352, 0.92056352, 0.89039   ,
       0.89039   , 0.89039   , 0.89039   , 0.85665144, 0.85665144,
       0.85665144, 0.85665144, 0.82046164, 0.82046164, 0.82046164,
       0.82046164, 0.78331999, 0.78331999, 0.78331999, 0.78331999,
       0.74742401, 0.74742401, 0.74742401, 0.74742401, 0.71331198,
       0.71331198, 0.71331198, 0.71331198, 0.68102127, 0.68102127,
       0.68102127, 0.68102127, 0.65059716, 0.65059716, 0.65059716,
       0.65059716, 0.6240258 , 0.6240258 , 0.6240258 , 0.6240258 ,
       0.59855044, 0.59855044, 0.59855044, 0.59855044, 0.58370503,
       0.58370503, 0.58370503, 0.58370503, 0.56923565, 0.56923565,
       0.56923565, 0.56923565, 0.5647148 , 0.5647148 , 0.5647148 ,
       0.5647148 , 0.5645406 , 0.5645406 , 0.5645406 , 0.5645406 ,
       0.56538346, 0.56538346, 0.56538346, 0.56538346, 0.56608138,
       0.56608138, 0.56608138, 0.56608138, 0.56681268, 0.56681268,
       0.56681268, 0.56681268, 0.56720477, 0.56720477, 0.56720477,
       0.56720477, 0.56710473, 0.56710473, 0.56710473, 0.56710473,
       0.56748519, 0.56748519, 0.56748519, 0.56748519, 0.5725192 ,
       0.5725192 , 0.5725192 , 0.5725192 , 0.59936974, 0.59936974,
       0.59936974, 0.59936974, 0.69655554, 0.69655554, 0.69655554,
       0.69655554, 0.9676065 , 0.9676065 , 0.9676065 , 0.9676065 ,
       1.57749515, 1.57749515, 1.57749515, 1.57749515, 2.65892925,
       2.65892925, 2.65892925, 2.65892925, 3.47677245, 3.47677245,
       3.47677245, 3.47677245, 3.4415978 , 3.4415978 , 3.4415978 ,
       3.4415978 , 2.06542454, 2.06542454, 2.06542454, 2.06542454,
       1.09918894, 1.09918894, 1.09918894, 1.09918894, 1.00437867,
       1.00437867, 1.00437867, 1.00437867, 1.00001045, 1.00001045,
       1.00001045, 1.00001045, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.06442751e-06, 3.06442751e-06, 3.06442751e-06, 3.06442751e-06,
       1.37096058e-05, 1.37096058e-05, 1.37096058e-05, 1.37096058e-05,
       5.11071441e-05, 5.11071441e-05, 5.11071441e-05, 5.11071441e-05,
       1.80696441e-04, 1.80696441e-04, 1.80696441e-04, 1.80696441e-04,
       6.01731053e-04, 6.01731053e-04, 6.01731053e-04, 6.01731053e-04,
       1.88320977e-03, 1.88320977e-03, 1.88320977e-03, 1.88320977e-03,
       5.52400997e-03, 5.52400997e-03, 5.52400997e-03, 5.52400997e-03,
       1.51400717e-02, 1.51400717e-02, 1.51400717e-02, 1.51400717e-02,
       3.86400960e-02, 3.86400960e-02, 3.86400960e-02, 3.86400960e-02,
       9.15052429e-02, 9.15052429e-02, 9.15052429e-02, 9.15052429e-02,
       2.00411209e-01, 2.00411209e-01, 2.00411209e-01, 2.00411209e-01,
       4.04958870e-01, 4.04958870e-01, 4.04958870e-01, 4.04958870e-01,
       7.54311496e-01, 7.54311496e-01, 7.54311496e-01, 7.54311496e-01,
       1.29704807e+00, 1.29704807e+00, 1.29704807e+00, 1.29704807e+00,
       2.06709372e+00, 2.06709372e+00, 2.06709372e+00, 2.06709372e+00,
       3.07296603e+00, 3.07296603e+00, 3.07296603e+00, 3.07296603e+00,
       4.29705387e+00, 4.29705387e+00, 4.29705387e+00, 4.29705387e+00,
       5.70596036e+00, 5.70596036e+00, 5.70596036e+00, 5.70596036e+00,
       7.26745760e+00, 7.26745760e+00, 7.26745760e+00, 7.26745760e+00,
       8.91729908e+00, 8.91729908e+00, 8.91729908e+00, 8.91729908e+00,
       1.05722640e+01, 1.05722640e+01, 1.05722640e+01, 1.05722640e+01,
       1.22139882e+01, 1.22139882e+01, 1.22139882e+01, 1.22139882e+01,
       1.38271695e+01, 1.38271695e+01, 1.38271695e+01, 1.38271695e+01,
       1.53909420e+01, 1.53909420e+01, 1.53909420e+01, 1.53909420e+01,
       1.68595079e+01, 1.68595079e+01, 1.68595079e+01, 1.68595079e+01,
       1.81589814e+01, 1.81589814e+01, 1.81589814e+01, 1.81589814e+01,
       1.91837824e+01, 1.91837824e+01, 1.91837824e+01, 1.91837824e+01,
       1.98529322e+01, 1.98529322e+01, 1.98529322e+01, 1.98529322e+01,
       2.01599348e+01, 2.01599348e+01, 2.01599348e+01, 2.01599348e+01,
       2.02242115e+01, 2.02242115e+01, 2.02242115e+01, 2.02242115e+01,
       2.01558715e+01, 2.01558715e+01, 2.01558715e+01, 2.01558715e+01,
       2.00527078e+01, 2.00527078e+01, 2.00527078e+01, 2.00527078e+01,
       2.00224238e+01, 2.00224238e+01, 2.00224238e+01, 2.00224238e+01,
       2.00150070e+01, 2.00150070e+01, 2.00150070e+01, 2.00150070e+01,
       2.00079684e+01, 2.00079684e+01, 2.00079684e+01, 2.00079684e+01,
       1.99973046e+01, 1.99973046e+01, 1.99973046e+01, 1.99973046e+01,
       1.99790344e+01, 1.99790344e+01, 1.99790344e+01, 1.99790344e+01,
       1.99548828e+01, 1.99548828e+01, 1.99548828e+01, 1.99548828e+01,
       1.99337003e+01, 1.99337003e+01, 1.99337003e+01, 1.99337003e+01,
       1.99182352e+01, 1.99182352e+01, 1.99182352e+01, 1.99182352e+01,
       1.98796077e+01, 1.98796077e+01, 1.98796077e+01, 1.98796077e+01,
       1.97369800e+01, 1.97369800e+01, 1.97369800e+01, 1.97369800e+01,
       1.90826196e+01, 1.90826196e+01, 1.90826196e+01, 1.90826196e+01,
       1.62655591e+01, 1.62655591e+01, 1.62655591e+01, 1.62655591e+01,
       8.02647381e+00, 8.02647381e+00, 8.02647381e+00, 8.02647381e+00,
       5.66390276e-01, 5.66390276e-01, 5.66390276e-01, 5.66390276e-01,
       3.57075007e-03, 3.57075007e-03, 3.57075007e-03, 3.57075007e-03,
       1.26227765e-06, 1.26227765e-06, 1.26227765e-06, 1.26227765e-06,
       1.87417390e-10, 1.87417390e-10, 1.87417390e-10, 1.87417390e-10,
       2.86649447e-14, 2.86649447e-14, 2.86649447e-14, 2.86649447e-14,
       4.45854151e-18, 4.45854151e-18, 4.45854151e-18, 4.45854151e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
       9.99999487e+02, 9.99999487e+02, 9.99999487e+02, 9.99999487e+02,
       9.99998088e+02, 9.99998088e+02, 9.99998088e+02, 9.99998088e+02,
       9.99993239e+02, 9.99993239e+02, 9.99993239e+02, 9.99993239e+02,
       9.99977486e+02, 9.99977486e+02, 9.99977486e+02, 9.99977486e+02,
       9.99929539e+02, 9.99929539e+02, 9.99929539e+02, 9.99929539e+02,
       9.99793331e+02, 9.99793331e+02, 9.99793331e+02, 9.99793331e+02,
       9.99433661e+02, 9.99433661e+02, 9.99433661e+02, 9.99433661e+02,
       9.98555189e+02, 9.98555189e+02, 9.98555189e+02, 9.98555189e+02,
       9.96581570e+02, 9.96581570e+02, 9.96581570e+02, 9.96581570e+02,
       9.92526877e+02, 9.92526877e+02, 9.92526877e+02, 9.92526877e+02,
       9.84951309e+02, 9.84951309e+02, 9.84951309e+02, 9.84951309e+02,
       9.72131850e+02, 9.72131850e+02, 9.72131850e+02, 9.72131850e+02,
       9.52508972e+02, 9.52508972e+02, 9.52508972e+02, 9.52508972e+02,
       9.25264888e+02, 9.25264888e+02, 9.25264888e+02, 9.25264888e+02,
       8.90701571e+02, 8.90701571e+02, 8.90701571e+02, 8.90701571e+02,
       8.50150128e+02, 8.50150128e+02, 8.50150128e+02, 8.50150128e+02,
       8.05448379e+02, 8.05448379e+02, 8.05448379e+02, 8.05448379e+02,
       7.58271461e+02, 7.58271461e+02, 7.58271461e+02, 7.58271461e+02,
       7.10634261e+02, 7.10634261e+02, 7.10634261e+02, 7.10634261e+02,
       6.65455423e+02, 6.65455423e+02, 6.65455423e+02, 6.65455423e+02,
       6.23352527e+02, 6.23352527e+02, 6.23352527e+02, 6.23352527e+02,
       5.84182279e+02, 5.84182279e+02, 5.84182279e+02, 5.84182279e+02,
       5.48269428e+02, 5.48269428e+02, 5.48269428e+02, 5.48269428e+02,
       5.16272042e+02, 5.16272042e+02, 5.16272042e+02, 5.16272042e+02,
       4.89358572e+02, 4.89358572e+02, 4.89358572e+02, 4.89358572e+02,
       4.68892875e+02, 4.68892875e+02, 4.68892875e+02, 4.68892875e+02,
       4.55991188e+02, 4.55991188e+02, 4.55991188e+02, 4.55991188e+02,
       4.50239990e+02, 4.50239990e+02, 4.50239990e+02, 4.50239990e+02,
       4.49001549e+02, 4.49001549e+02, 4.49001549e+02, 4.49001549e+02,
       4.50267586e+02, 4.50267586e+02, 4.50267586e+02, 4.50267586e+02,
       4.52156184e+02, 4.52156184e+02, 4.52156184e+02, 4.52156184e+02,
       4.52802596e+02, 4.52802596e+02, 4.52802596e+02, 4.52802596e+02,
       4.53038480e+02, 4.53038480e+02, 4.53038480e+02, 4.53038480e+02,
       4.53140657e+02, 4.53140657e+02, 4.53140657e+02, 4.53140657e+02,
       4.53267209e+02, 4.53267209e+02, 4.53267209e+02, 4.53267209e+02,
       4.53531394e+02, 4.53531394e+02, 4.53531394e+02, 4.53531394e+02,
       4.53971062e+02, 4.53971062e+02, 4.53971062e+02, 4.53971062e+02,
       4.54514025e+02, 4.54514025e+02, 4.54514025e+02, 4.54514025e+02,
       4.55259395e+02, 4.55259395e+02, 4.55259395e+02, 4.55259395e+02,
       4.55867897e+02, 4.55867897e+02, 4.55867897e+02, 4.55867897e+02,
       4.52235462e+02, 4.52235462e+02, 4.52235462e+02, 4.52235462e+02,
       4.22918025e+02, 4.22918025e+02, 4.22918025e+02, 4.22918025e+02,
       2.98696478e+02, 2.98696478e+02, 2.98696478e+02, 2.98696478e+02,
       7.35671819e+01, 7.35671819e+01, 7.35671819e+01, 7.35671819e+01,
       1.73816088e+00, 1.73816088e+00, 1.73816088e+00, 1.73816088e+00,
       1.15098232e-02, 1.15098232e-02, 1.15098232e-02, 1.15098232e-02,
       1.00001491e-02, 1.00001491e-02, 1.00001491e-02, 1.00001491e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999884,
       0.99999884, 0.99999884, 0.99999884, 0.99999596, 0.99999596,
       0.99999596, 0.99999596, 0.99998666, 0.99998666, 0.99998666,
       0.99998666, 0.99995851, 0.99995851, 0.99995851, 0.99995851,
       0.99987881, 0.99987881, 0.99987881, 0.99987881, 0.99966846,
       0.99966846, 0.99966846, 0.99966846, 0.99915332, 0.99915332,
       0.99915332, 0.99915332, 0.99798882, 0.99798882, 0.99798882,
       0.99798882, 0.99557202, 0.99557202, 0.99557202, 0.99557202,
       0.99099076, 0.99099076, 0.99099076, 0.99099076, 0.98309025,
       0.98309025, 0.98309025, 0.98309025, 0.97071425, 0.97071425,
       0.97071425, 0.97071425, 0.95306962, 0.95306962, 0.95306962,
       0.95306962, 0.93003166, 0.93003166, 0.93003166, 0.93003166,
       0.90219494, 0.90219494, 0.90219494, 0.90219494, 0.8706268 ,
       0.8706268 , 0.8706268 , 0.8706268 , 0.83644936, 0.83644936,
       0.83644936, 0.83644936, 0.80070998, 0.80070998, 0.80070998,
       0.80070998, 0.76534052, 0.76534052, 0.76534052, 0.76534052,
       0.73160157, 0.73160157, 0.73160157, 0.73160157, 0.69941663,
       0.69941663, 0.69941663, 0.69941663, 0.66904404, 0.66904404,
       0.66904404, 0.66904404, 0.640412  , 0.640412  , 0.640412  ,
       0.640412  , 0.61609193, 0.61609193, 0.61609193, 0.61609193,
       0.59253553, 0.59253553, 0.59253553, 0.59253553, 0.57985082,
       0.57985082, 0.57985082, 0.57985082, 0.56807488, 0.56807488,
       0.56807488, 0.56807488, 0.56414175, 0.56414175, 0.56414175,
       0.56414175, 0.56447501, 0.56447501, 0.56447501, 0.56447501,
       0.56608222, 0.56608222, 0.56608222, 0.56608222, 0.5665232 ,
       0.5665232 , 0.5665232 , 0.5665232 , 0.56679339, 0.56679339,
       0.56679339, 0.56679339, 0.56717873, 0.56717873, 0.56717873,
       0.56717873, 0.5672011 , 0.5672011 , 0.5672011 , 0.5672011 ,
       0.56745182, 0.56745182, 0.56745182, 0.56745182, 0.57048317,
       0.57048317, 0.57048317, 0.57048317, 0.58763359, 0.58763359,
       0.58763359, 0.58763359, 0.65365865, 0.65365865, 0.65365865,
       0.65365865, 0.84867448, 0.84867448, 0.84867448, 0.84867448,
       1.31307086, 1.31307086, 1.31307086, 1.31307086, 2.21646901,
       2.21646901, 2.21646901, 2.21646901, 3.30517749, 3.30517749,
       3.30517749, 3.30517749, 3.62340282, 3.62340282, 3.62340282,
       3.62340282, 2.90056638, 2.90056638, 2.90056638, 2.90056638,
       1.33694683, 1.33694683, 1.33694683, 1.33694683, 1.0212743 ,
       1.0212743 , 1.0212743 , 1.0212743 , 1.00034859, 1.00034859,
       1.00034859, 1.00034859, 1.0000001 , 1.0000001 , 1.0000001 ,
       1.0000001 , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.03392125e-05, 1.03392125e-05, 1.03392125e-05, 1.03392125e-05,
       4.34400060e-05, 4.34400060e-05, 4.34400060e-05, 4.34400060e-05,
       1.51141917e-04, 1.51141917e-04, 1.51141917e-04, 1.51141917e-04,
       4.99195131e-04, 4.99195131e-04, 4.99195131e-04, 4.99195131e-04,
       1.55234811e-03, 1.55234811e-03, 1.55234811e-03, 1.55234811e-03,
       4.53464427e-03, 4.53464427e-03, 4.53464427e-03, 4.53464427e-03,
       1.24067118e-02, 1.24067118e-02, 1.24067118e-02, 1.24067118e-02,
       3.16898153e-02, 3.16898153e-02, 3.16898153e-02, 3.16898153e-02,
       7.53087747e-02, 7.53087747e-02, 7.53087747e-02, 7.53087747e-02,
       1.65962861e-01, 1.65962861e-01, 1.65962861e-01, 1.65962861e-01,
       3.38287464e-01, 3.38287464e-01, 3.38287464e-01, 3.38287464e-01,
       6.36985732e-01, 6.36985732e-01, 6.36985732e-01, 6.36985732e-01,
       1.10885693e+00, 1.10885693e+00, 1.10885693e+00, 1.10885693e+00,
       1.79021928e+00, 1.79021928e+00, 1.79021928e+00, 1.79021928e+00,
       2.69557108e+00, 2.69557108e+00, 2.69557108e+00, 2.69557108e+00,
       3.81416950e+00, 3.81416950e+00, 3.81416950e+00, 3.81416950e+00,
       5.11690819e+00, 5.11690819e+00, 5.11690819e+00, 5.11690819e+00,
       6.57068197e+00, 6.57068197e+00, 6.57068197e+00, 6.57068197e+00,
       8.14009276e+00, 8.14009276e+00, 8.14009276e+00, 8.14009276e+00,
       9.73476120e+00, 9.73476120e+00, 9.73476120e+00, 9.73476120e+00,
       1.13275023e+01, 1.13275023e+01, 1.13275023e+01, 1.13275023e+01,
       1.29006498e+01, 1.29006498e+01, 1.29006498e+01, 1.29006498e+01,
       1.44427973e+01, 1.44427973e+01, 1.44427973e+01, 1.44427973e+01,
       1.59276078e+01, 1.59276078e+01, 1.59276078e+01, 1.59276078e+01,
       1.73033647e+01, 1.73033647e+01, 1.73033647e+01, 1.73033647e+01,
       1.84940290e+01, 1.84940290e+01, 1.84940290e+01, 1.84940290e+01,
       1.93974938e+01, 1.93974938e+01, 1.93974938e+01, 1.93974938e+01,
       1.99500228e+01, 1.99500228e+01, 1.99500228e+01, 1.99500228e+01,
       2.01786156e+01, 2.01786156e+01, 2.01786156e+01, 2.01786156e+01,
       2.02141830e+01, 2.02141830e+01, 2.02141830e+01, 2.02141830e+01,
       2.01270312e+01, 2.01270312e+01, 2.01270312e+01, 2.01270312e+01,
       2.00438391e+01, 2.00438391e+01, 2.00438391e+01, 2.00438391e+01,
       2.00180478e+01, 2.00180478e+01, 2.00180478e+01, 2.00180478e+01,
       2.00116554e+01, 2.00116554e+01, 2.00116554e+01, 2.00116554e+01,
       2.00060169e+01, 2.00060169e+01, 2.00060169e+01, 2.00060169e+01,
       1.99957578e+01, 1.99957578e+01, 1.99957578e+01, 1.99957578e+01,
       1.99760299e+01, 1.99760299e+01, 1.99760299e+01, 1.99760299e+01,
       1.99495430e+01, 1.99495430e+01, 1.99495430e+01, 1.99495430e+01,
       1.99258351e+01, 1.99258351e+01, 1.99258351e+01, 1.99258351e+01,
       1.99068524e+01, 1.99068524e+01, 1.99068524e+01, 1.99068524e+01,
       1.98862615e+01, 1.98862615e+01, 1.98862615e+01, 1.98862615e+01,
       1.98134680e+01, 1.98134680e+01, 1.98134680e+01, 1.98134680e+01,
       1.94905556e+01, 1.94905556e+01, 1.94905556e+01, 1.94905556e+01,
       1.80230680e+01, 1.80230680e+01, 1.80230680e+01, 1.80230680e+01,
       1.26076173e+01, 1.26076173e+01, 1.26076173e+01, 1.26076173e+01,
       2.67311141e+00, 2.67311141e+00, 2.67311141e+00, 2.67311141e+00,
       5.14361403e-02, 5.14361403e-02, 5.14361403e-02, 5.14361403e-02,
       6.80950934e-05, 6.80950934e-05, 6.80950934e-05, 6.80950934e-05,
       1.13412667e-08, 1.13412667e-08, 1.13412667e-08, 1.13412667e-08,
       1.79486084e-12, 1.79486084e-12, 1.79486084e-12, 1.79486084e-12,
       2.73952290e-16, 2.73952290e-16, 2.73952290e-16, 2.73952290e-16,
       5.00064164e-20, 5.00064164e-20, 5.00064164e-20, 5.00064164e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
       9.99998375e+02, 9.99998375e+02, 9.99998375e+02, 9.99998375e+02,
       9.99994345e+02, 9.99994345e+02, 9.99994345e+02, 9.99994345e+02,
       9.99981322e+02, 9.99981322e+02, 9.99981322e+02, 9.99981322e+02,
       9.99941918e+02, 9.99941918e+02, 9.99941918e+02, 9.99941918e+02,
       9.99830343e+02, 9.99830343e+02, 9.99830343e+02, 9.99830343e+02,
       9.99535884e+02, 9.99535884e+02, 9.99535884e+02, 9.99535884e+02,
       9.98814928e+02, 9.98814928e+02, 9.98814928e+02, 9.98814928e+02,
       9.97185851e+02, 9.97185851e+02, 9.97185851e+02, 9.97185851e+02,
       9.93807795e+02, 9.93807795e+02, 9.93807795e+02, 9.93807795e+02,
       9.87414745e+02, 9.87414745e+02, 9.87414745e+02, 9.87414745e+02,
       9.76420200e+02, 9.76420200e+02, 9.76420200e+02, 9.76420200e+02,
       9.59272359e+02, 9.59272359e+02, 9.59272359e+02, 9.59272359e+02,
       9.34979017e+02, 9.34979017e+02, 9.34979017e+02, 9.34979017e+02,
       9.03531113e+02, 9.03531113e+02, 9.03531113e+02, 9.03531113e+02,
       8.65943868e+02, 8.65943868e+02, 8.65943868e+02, 8.65943868e+02,
       8.23870991e+02, 8.23870991e+02, 8.23870991e+02, 8.23870991e+02,
       7.78998721e+02, 7.78998721e+02, 7.78998721e+02, 7.78998721e+02,
       7.32829097e+02, 7.32829097e+02, 7.32829097e+02, 7.32829097e+02,
       6.87867667e+02, 6.87867667e+02, 6.87867667e+02, 6.87867667e+02,
       6.45811417e+02, 6.45811417e+02, 6.45811417e+02, 6.45811417e+02,
       6.06420020e+02, 6.06420020e+02, 6.06420020e+02, 6.06420020e+02,
       5.69812260e+02, 5.69812260e+02, 5.69812260e+02, 5.69812260e+02,
       5.36391612e+02, 5.36391612e+02, 5.36391612e+02, 5.36391612e+02,
       5.06909342e+02, 5.06909342e+02, 5.06909342e+02, 5.06909342e+02,
       4.82613586e+02, 4.82613586e+02, 4.82613586e+02, 4.82613586e+02,
       4.64771665e+02, 4.64771665e+02, 4.64771665e+02, 4.64771665e+02,
       4.54120136e+02, 4.54120136e+02, 4.54120136e+02, 4.54120136e+02,
       4.49846503e+02, 4.49846503e+02, 4.49846503e+02, 4.49846503e+02,
       4.49195989e+02, 4.49195989e+02, 4.49195989e+02, 4.49195989e+02,
       4.50838120e+02, 4.50838120e+02, 4.50838120e+02, 4.50838120e+02,
       4.52365430e+02, 4.52365430e+02, 4.52365430e+02, 4.52365430e+02,
       4.52826151e+02, 4.52826151e+02, 4.52826151e+02, 4.52826151e+02,
       4.53036969e+02, 4.53036969e+02, 4.53036969e+02, 4.53036969e+02,
       4.53180502e+02, 4.53180502e+02, 4.53180502e+02, 4.53180502e+02,
       4.53367904e+02, 4.53367904e+02, 4.53367904e+02, 4.53367904e+02,
       4.53682043e+02, 4.53682043e+02, 4.53682043e+02, 4.53682043e+02,
       4.54101255e+02, 4.54101255e+02, 4.54101255e+02, 4.54101255e+02,
       4.54550055e+02, 4.54550055e+02, 4.54550055e+02, 4.54550055e+02,
       4.55181873e+02, 4.55181873e+02, 4.55181873e+02, 4.55181873e+02,
       4.56088869e+02, 4.56088869e+02, 4.56088869e+02, 4.56088869e+02,
       4.55314517e+02, 4.55314517e+02, 4.55314517e+02, 4.55314517e+02,
       4.42432305e+02, 4.42432305e+02, 4.42432305e+02, 4.42432305e+02,
       3.73791360e+02, 3.73791360e+02, 3.73791360e+02, 3.73791360e+02,
       1.73331140e+02, 1.73331140e+02, 1.73331140e+02, 1.73331140e+02,
       1.42286314e+01, 1.42286314e+01, 1.42286314e+01, 1.42286314e+01,
       7.35026594e-02, 7.35026594e-02, 7.35026594e-02, 7.35026594e-02,
       1.00088839e-02, 1.00088839e-02, 1.00088839e-02, 1.00088839e-02,
       1.00000013e-02, 1.00000013e-02, 1.00000013e-02, 1.00000013e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999914, 0.99999914, 0.99999914, 0.99999914, 0.9999966 ,
       0.9999966 , 0.9999966 , 0.9999966 , 0.99998894, 0.99998894,
       0.99998894, 0.99998894, 0.99996579, 0.99996579, 0.99996579,
       0.99996579, 0.99990045, 0.99990045, 0.99990045, 0.99990045,
       0.99972809, 0.99972809, 0.99972809, 0.99972809, 0.99930503,
       0.99930503, 0.99930503, 0.99930503, 0.99834358, 0.99834358,
       0.99834358, 0.99834358, 0.99633101, 0.99633101, 0.99633101,
       0.99633101, 0.99247048, 0.99247048, 0.99247048, 0.99247048,
       0.98571275, 0.98571275, 0.98571275, 0.98571275, 0.97494122,
       0.97494122, 0.97494122, 0.97494122, 0.95929193, 0.95929193,
       0.95929193, 0.95929193, 0.93846719, 0.93846719, 0.93846719,
       0.93846719, 0.91285499, 0.91285499, 0.91285499, 0.91285499,
       0.88337065, 0.88337065, 0.88337065, 0.88337065, 0.85110869,
       0.85110869, 0.85110869, 0.85110869, 0.81698796, 0.81698796,
       0.81698796, 0.81698796, 0.78242051, 0.78242051, 0.78242051,
       0.78242051, 0.74907398, 0.74907398, 0.74907398, 0.74907398,
       0.7171757 , 0.7171757 , 0.7171757 , 0.7171757 , 0.68675454,
       0.68675454, 0.68675454, 0.68675454, 0.65817399, 0.65817399,
       0.65817399, 0.65817399, 0.63120015, 0.63120015, 0.63120015,
       0.63120015, 0.60905285, 0.60905285, 0.60905285, 0.60905285,
       0.58738819, 0.58738819, 0.58738819, 0.58738819, 0.57655812,
       0.57655812, 0.57655812, 0.57655812, 0.56731141, 0.56731141,
       0.56731141, 0.56731141, 0.5639553 , 0.5639553 , 0.5639553 ,
       0.5639553 , 0.56439893, 0.56439893, 0.56439893, 0.56439893,
       0.5666221 , 0.5666221 , 0.5666221 , 0.5666221 , 0.56689879,
       0.56689879, 0.56689879, 0.56689879, 0.56688439, 0.56688439,
       0.56688439, 0.56688439, 0.56712646, 0.56712646, 0.56712646,
       0.56712646, 0.56724753, 0.56724753, 0.56724753, 0.56724753,
       0.56747625, 0.56747625, 0.56747625, 0.56747625, 0.56936103,
       0.56936103, 0.56936103, 0.56936103, 0.58025147, 0.58025147,
       0.58025147, 0.58025147, 0.62459777, 0.62459777, 0.62459777,
       0.62459777, 0.76306356, 0.76306356, 0.76306356, 0.76306356,
       1.11089581, 1.11089581, 1.11089581, 1.11089581, 1.83047175,
       1.83047175, 1.83047175, 1.83047175, 2.96543117, 2.96543117,
       2.96543117, 2.96543117, 3.63638824, 3.63638824, 3.63638824,
       3.63638824, 3.47481596, 3.47481596, 3.47481596, 3.47481596,
       1.95403945, 1.95403945, 1.95403945, 1.95403945, 1.08283494,
       1.08283494, 1.08283494, 1.08283494, 1.00335988, 1.00335988,
       1.00335988, 1.00335988, 1.00000576, 1.00000576, 1.00000576,
       1.00000576, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.21524399e-05, 3.21524399e-05, 3.21524399e-05, 3.21524399e-05,
       1.27174228e-04, 1.27174228e-04, 1.27174228e-04, 1.27174228e-04,
       4.13952526e-04, 4.13952526e-04, 4.13952526e-04, 4.13952526e-04,
       1.28010235e-03, 1.28010235e-03, 1.28010235e-03, 1.28010235e-03,
       3.72494678e-03, 3.72494678e-03, 3.72494678e-03, 3.72494678e-03,
       1.01750372e-02, 1.01750372e-02, 1.01750372e-02, 1.01750372e-02,
       2.60100958e-02, 2.60100958e-02, 2.60100958e-02, 2.60100958e-02,
       6.20163885e-02, 6.20163885e-02, 6.20163885e-02, 6.20163885e-02,
       1.37474769e-01, 1.37474769e-01, 1.37474769e-01, 1.37474769e-01,
       2.82559370e-01, 2.82559370e-01, 2.82559370e-01, 2.82559370e-01,
       5.37624629e-01, 5.37624629e-01, 5.37624629e-01, 5.37624629e-01,
       9.47149548e-01, 9.47149548e-01, 9.47149548e-01, 9.47149548e-01,
       1.54878183e+00, 1.54878183e+00, 1.54878183e+00, 1.54878183e+00,
       2.36197526e+00, 2.36197526e+00, 2.36197526e+00, 2.36197526e+00,
       3.38252055e+00, 3.38252055e+00, 3.38252055e+00, 3.38252055e+00,
       4.58640867e+00, 4.58640867e+00, 4.58640867e+00, 4.58640867e+00,
       5.94121401e+00, 5.94121401e+00, 5.94121401e+00, 5.94121401e+00,
       7.41947260e+00, 7.41947260e+00, 7.41947260e+00, 7.41947260e+00,
       8.95560830e+00, 8.95560830e+00, 8.95560830e+00, 8.95560830e+00,
       1.04968275e+01, 1.04968275e+01, 1.04968275e+01, 1.04968275e+01,
       1.20259513e+01, 1.20259513e+01, 1.20259513e+01, 1.20259513e+01,
       1.35357208e+01, 1.35357208e+01, 1.35357208e+01, 1.35357208e+01,
       1.50098538e+01, 1.50098538e+01, 1.50098538e+01, 1.50098538e+01,
       1.64177832e+01, 1.64177832e+01, 1.64177832e+01, 1.64177832e+01,
       1.77019691e+01, 1.77019691e+01, 1.77019691e+01, 1.77019691e+01,
       1.87851353e+01, 1.87851353e+01, 1.87851353e+01, 1.87851353e+01,
       1.95738145e+01, 1.95738145e+01, 1.95738145e+01, 1.95738145e+01,
       2.00235953e+01, 2.00235953e+01, 2.00235953e+01, 2.00235953e+01,
       2.01873321e+01, 2.01873321e+01, 2.01873321e+01, 2.01873321e+01,
       2.01992370e+01, 2.01992370e+01, 2.01992370e+01, 2.01992370e+01,
       2.01017551e+01, 2.01017551e+01, 2.01017551e+01, 2.01017551e+01,
       2.00372744e+01, 2.00372744e+01, 2.00372744e+01, 2.00372744e+01,
       2.00157926e+01, 2.00157926e+01, 2.00157926e+01, 2.00157926e+01,
       2.00082959e+01, 2.00082959e+01, 2.00082959e+01, 2.00082959e+01,
       2.00024907e+01, 2.00024907e+01, 2.00024907e+01, 2.00024907e+01,
       1.99918498e+01, 1.99918498e+01, 1.99918498e+01, 1.99918498e+01,
       1.99718075e+01, 1.99718075e+01, 1.99718075e+01, 1.99718075e+01,
       1.99458177e+01, 1.99458177e+01, 1.99458177e+01, 1.99458177e+01,
       1.99210292e+01, 1.99210292e+01, 1.99210292e+01, 1.99210292e+01,
       1.98969554e+01, 1.98969554e+01, 1.98969554e+01, 1.98969554e+01,
       1.98826323e+01, 1.98826323e+01, 1.98826323e+01, 1.98826323e+01,
       1.98432269e+01, 1.98432269e+01, 1.98432269e+01, 1.98432269e+01,
       1.96844946e+01, 1.96844946e+01, 1.96844946e+01, 1.96844946e+01,
       1.89485092e+01, 1.89485092e+01, 1.89485092e+01, 1.89485092e+01,
       1.58676586e+01, 1.58676586e+01, 1.58676586e+01, 1.58676586e+01,
       7.25693697e+00, 7.25693697e+00, 7.25693697e+00, 7.25693697e+00,
       4.34921777e-01, 4.34921777e-01, 4.34921777e-01, 4.34921777e-01,
       2.27948590e-03, 2.27948590e-03, 2.27948590e-03, 2.27948590e-03,
       6.88627382e-07, 6.88627382e-07, 6.88627382e-07, 6.88627382e-07,
       1.03089844e-10, 1.03089844e-10, 1.03089844e-10, 1.03089844e-10,
       1.60056279e-14, 1.60056279e-14, 1.60056279e-14, 1.60056279e-14,
       2.53568291e-18, 2.53568291e-18, 2.53568291e-18, 2.53568291e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99998797e+02, 9.99998797e+02, 9.99998797e+02, 9.99998797e+02,
       9.99995242e+02, 9.99995242e+02, 9.99995242e+02, 9.99995242e+02,
       9.99984511e+02, 9.99984511e+02, 9.99984511e+02, 9.99984511e+02,
       9.99952104e+02, 9.99952104e+02, 9.99952104e+02, 9.99952104e+02,
       9.99860634e+02, 9.99860634e+02, 9.99860634e+02, 9.99860634e+02,
       9.99619353e+02, 9.99619353e+02, 9.99619353e+02, 9.99619353e+02,
       9.99027231e+02, 9.99027231e+02, 9.99027231e+02, 9.99027231e+02,
       9.97682034e+02, 9.97682034e+02, 9.97682034e+02, 9.97682034e+02,
       9.94868221e+02, 9.94868221e+02, 9.94868221e+02, 9.94868221e+02,
       9.89478098e+02, 9.89478098e+02, 9.89478098e+02, 9.89478098e+02,
       9.80065169e+02, 9.80065169e+02, 9.80065169e+02, 9.80065169e+02,
       9.65118065e+02, 9.65118065e+02, 9.65118065e+02, 9.65118065e+02,
       9.43523368e+02, 9.43523368e+02, 9.43523368e+02, 9.43523368e+02,
       9.15006674e+02, 9.15006674e+02, 9.15006674e+02, 9.15006674e+02,
       8.80278342e+02, 8.80278342e+02, 8.80278342e+02, 8.80278342e+02,
       8.40775285e+02, 8.40775285e+02, 8.40775285e+02, 8.40775285e+02,
       7.98145941e+02, 7.98145941e+02, 7.98145941e+02, 7.98145941e+02,
       7.53755098e+02, 7.53755098e+02, 7.53755098e+02, 7.53755098e+02,
       7.09452587e+02, 7.09452587e+02, 7.09452587e+02, 7.09452587e+02,
       6.67485676e+02, 6.67485676e+02, 6.67485676e+02, 6.67485676e+02,
       6.28046689e+02, 6.28046689e+02, 6.28046689e+02, 6.28046689e+02,
       5.91112375e+02, 5.91112375e+02, 5.91112375e+02, 5.91112375e+02,
       5.56843157e+02, 5.56843157e+02, 5.56843157e+02, 5.56843157e+02,
       5.25742971e+02, 5.25742971e+02, 5.25742971e+02, 5.25742971e+02,
       4.98632093e+02, 4.98632093e+02, 4.98632093e+02, 4.98632093e+02,
       4.76795490e+02, 4.76795490e+02, 4.76795490e+02, 4.76795490e+02,
       4.61393393e+02, 4.61393393e+02, 4.61393393e+02, 4.61393393e+02,
       4.52740843e+02, 4.52740843e+02, 4.52740843e+02, 4.52740843e+02,
       4.49648853e+02, 4.49648853e+02, 4.49648853e+02, 4.49648853e+02,
       4.49459232e+02, 4.49459232e+02, 4.49459232e+02, 4.49459232e+02,
       4.51321023e+02, 4.51321023e+02, 4.51321023e+02, 4.51321023e+02,
       4.52531111e+02, 4.52531111e+02, 4.52531111e+02, 4.52531111e+02,
       4.52874067e+02, 4.52874067e+02, 4.52874067e+02, 4.52874067e+02,
       4.53039653e+02, 4.53039653e+02, 4.53039653e+02, 4.53039653e+02,
       4.53200233e+02, 4.53200233e+02, 4.53200233e+02, 4.53200233e+02,
       4.53441075e+02, 4.53441075e+02, 4.53441075e+02, 4.53441075e+02,
       4.53821299e+02, 4.53821299e+02, 4.53821299e+02, 4.53821299e+02,
       4.54260100e+02, 4.54260100e+02, 4.54260100e+02, 4.54260100e+02,
       4.54669989e+02, 4.54669989e+02, 4.54669989e+02, 4.54669989e+02,
       4.55190229e+02, 4.55190229e+02, 4.55190229e+02, 4.55190229e+02,
       4.56011617e+02, 4.56011617e+02, 4.56011617e+02, 4.56011617e+02,
       4.56384643e+02, 4.56384643e+02, 4.56384643e+02, 4.56384643e+02,
       4.51490886e+02, 4.51490886e+02, 4.51490886e+02, 4.51490886e+02,
       4.17208973e+02, 4.17208973e+02, 4.17208973e+02, 4.17208973e+02,
       2.82109903e+02, 2.82109903e+02, 2.82109903e+02, 2.82109903e+02,
       6.13627160e+01, 6.13627160e+01, 6.13627160e+01, 6.13627160e+01,
       1.21031418e+00, 1.21031418e+00, 1.21031418e+00, 1.21031418e+00,
       1.08068264e-02, 1.08068264e-02, 1.08068264e-02, 1.08068264e-02,
       1.00000814e-02, 1.00000814e-02, 1.00000814e-02, 1.00000814e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999752, 0.99999752, 0.99999752, 0.99999752, 0.99999075,
       0.99999075, 0.99999075, 0.99999075, 0.99997179, 0.99997179,
       0.99997179, 0.99997179, 0.99991817, 0.99991817, 0.99991817,
       0.99991817, 0.99977683, 0.99977683, 0.99977683, 0.99977683,
       0.99942915, 0.99942915, 0.99942915, 0.99942915, 0.99863505,
       0.99863505, 0.99863505, 0.99863505, 0.99695933, 0.99695933,
       0.99695933, 0.99695933, 0.9937087 , 0.9937087 , 0.9937087 ,
       0.9937087 , 0.98793721, 0.98793721, 0.98793721, 0.98793721,
       0.9785829 , 0.9785829 , 0.9785829 , 0.9785829 , 0.96474136,
       0.96474136, 0.96474136, 0.96474136, 0.94597339, 0.94597339,
       0.94597339, 0.94597339, 0.92247486, 0.92247486, 0.92247486,
       0.92247486, 0.89499831, 0.89499831, 0.89499831, 0.89499831,
       0.86456812, 0.86456812, 0.86456812, 0.86456812, 0.83212124,
       0.83212124, 0.83212124, 0.83212124, 0.79863526, 0.79863526,
       0.79863526, 0.79863526, 0.76573988, 0.76573988, 0.76573988,
       0.76573988, 0.73420588, 0.73420588, 0.73420588, 0.73420588,
       0.703996  , 0.703996  , 0.703996  , 0.703996  , 0.67517948,
       0.67517948, 0.67517948, 0.67517948, 0.64829444, 0.64829444,
       0.64829444, 0.64829444, 0.62286674, 0.62286674, 0.62286674,
       0.62286674, 0.60281401, 0.60281401, 0.60281401, 0.60281401,
       0.58304717, 0.58304717, 0.58304717, 0.58304717, 0.5737585 ,
       0.5737585 , 0.5737585 , 0.5737585 , 0.56680383, 0.56680383,
       0.56680383, 0.56680383, 0.56406554, 0.56406554, 0.56406554,
       0.56406554, 0.56445674, 0.56445674, 0.56445674, 0.56445674,
       0.56689479, 0.56689479, 0.56689479, 0.56689479, 0.56721005,
       0.56721005, 0.56721005, 0.56721005, 0.56705228, 0.56705228,
       0.56705228, 0.56705228, 0.56711649, 0.56711649, 0.56711649,
       0.56711649, 0.5672706 , 0.5672706 , 0.5672706 , 0.5672706 ,
       0.56752476, 0.56752476, 0.56752476, 0.56752476, 0.5687617 ,
       0.5687617 , 0.5687617 , 0.5687617 , 0.5756626 , 0.5756626 ,
       0.5756626 , 0.5756626 , 0.60517122, 0.60517122, 0.60517122,
       0.60517122, 0.70225684, 0.70225684, 0.70225684, 0.70225684,
       0.95916964, 0.95916964, 0.95916964, 0.95916964, 1.52074205,
       1.52074205, 1.52074205, 1.52074205, 2.53366254, 2.53366254,
       2.53366254, 2.53366254, 3.51709808, 3.51709808, 3.51709808,
       3.51709808, 3.71733154, 3.71733154, 3.71733154, 3.71733154,
       2.81684948, 2.81684948, 2.81684948, 2.81684948, 1.27928976,
       1.27928976, 1.27928976, 1.27928976, 1.01706333, 1.01706333,
       1.01706333, 1.01706333, 1.00022545, 1.00022545, 1.00022545,
       1.00022545, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([9.27169916e-05, 9.27169916e-05, 9.27169916e-05, 9.27169916e-05,
       3.45942523e-04, 3.45942523e-04, 3.45942523e-04, 3.45942523e-04,
       1.05548283e-03, 1.05548283e-03, 1.05548283e-03, 1.05548283e-03,
       3.06180591e-03, 3.06180591e-03, 3.06180591e-03, 3.06180591e-03,
       8.35099130e-03, 8.35099130e-03, 8.35099130e-03, 8.35099130e-03,
       2.13637129e-02, 2.13637129e-02, 2.13637129e-02, 2.13637129e-02,
       5.10980585e-02, 5.10980585e-02, 5.10980585e-02, 5.10980585e-02,
       1.13904438e-01, 1.13904438e-01, 1.13904438e-01, 1.13904438e-01,
       2.35977350e-01, 2.35977350e-01, 2.35977350e-01, 2.35977350e-01,
       4.53511059e-01, 4.53511059e-01, 4.53511059e-01, 4.53511059e-01,
       8.08290869e-01, 8.08290869e-01, 8.08290869e-01, 8.08290869e-01,
       1.33838461e+00, 1.33838461e+00, 1.33838461e+00, 1.33838461e+00,
       2.06718875e+00, 2.06718875e+00, 2.06718875e+00, 2.06718875e+00,
       2.99650453e+00, 2.99650453e+00, 2.99650453e+00, 2.99650453e+00,
       4.10776410e+00, 4.10776410e+00, 4.10776410e+00, 4.10776410e+00,
       5.37093252e+00, 5.37093252e+00, 5.37093252e+00, 5.37093252e+00,
       6.75756651e+00, 6.75756651e+00, 6.75756651e+00, 6.75756651e+00,
       8.23003026e+00, 8.23003026e+00, 8.23003026e+00, 8.23003026e+00,
       9.71810036e+00, 9.71810036e+00, 9.71810036e+00, 9.71810036e+00,
       1.12035998e+01, 1.12035998e+01, 1.12035998e+01, 1.12035998e+01,
       1.26747396e+01, 1.26747396e+01, 1.26747396e+01, 1.26747396e+01,
       1.41241052e+01, 1.41241052e+01, 1.41241052e+01, 1.41241052e+01,
       1.55324405e+01, 1.55324405e+01, 1.55324405e+01, 1.55324405e+01,
       1.68648788e+01, 1.68648788e+01, 1.68648788e+01, 1.68648788e+01,
       1.80587444e+01, 1.80587444e+01, 1.80587444e+01, 1.80587444e+01,
       1.90363513e+01, 1.90363513e+01, 1.90363513e+01, 1.90363513e+01,
       1.97169663e+01, 1.97169663e+01, 1.97169663e+01, 1.97169663e+01,
       2.00776225e+01, 2.00776225e+01, 2.00776225e+01, 2.00776225e+01,
       2.01888597e+01, 2.01888597e+01, 2.01888597e+01, 2.01888597e+01,
       2.01801125e+01, 2.01801125e+01, 2.01801125e+01, 2.01801125e+01,
       2.00812778e+01, 2.00812778e+01, 2.00812778e+01, 2.00812778e+01,
       2.00318261e+01, 2.00318261e+01, 2.00318261e+01, 2.00318261e+01,
       2.00146648e+01, 2.00146648e+01, 2.00146648e+01, 2.00146648e+01,
       2.00061042e+01, 2.00061042e+01, 2.00061042e+01, 2.00061042e+01,
       1.99986959e+01, 1.99986959e+01, 1.99986959e+01, 1.99986959e+01,
       1.99863432e+01, 1.99863432e+01, 1.99863432e+01, 1.99863432e+01,
       1.99656179e+01, 1.99656179e+01, 1.99656179e+01, 1.99656179e+01,
       1.99415041e+01, 1.99415041e+01, 1.99415041e+01, 1.99415041e+01,
       1.99167435e+01, 1.99167435e+01, 1.99167435e+01, 1.99167435e+01,
       1.98912290e+01, 1.98912290e+01, 1.98912290e+01, 1.98912290e+01,
       1.98732047e+01, 1.98732047e+01, 1.98732047e+01, 1.98732047e+01,
       1.98526648e+01, 1.98526648e+01, 1.98526648e+01, 1.98526648e+01,
       1.97731261e+01, 1.97731261e+01, 1.97731261e+01, 1.97731261e+01,
       1.94093352e+01, 1.94093352e+01, 1.94093352e+01, 1.94093352e+01,
       1.77776801e+01, 1.77776801e+01, 1.77776801e+01, 1.77776801e+01,
       1.19820754e+01, 1.19820754e+01, 1.19820754e+01, 1.19820754e+01,
       2.16019726e+00, 2.16019726e+00, 2.16019726e+00, 2.16019726e+00,
       3.53014742e-02, 3.53014742e-02, 3.53014742e-02, 3.53014742e-02,
       3.82045712e-05, 3.82045712e-05, 3.82045712e-05, 3.82045712e-05,
       6.27267874e-09, 6.27267874e-09, 6.27267874e-09, 6.27267874e-09,
       9.86981788e-13, 9.86981788e-13, 9.86981788e-13, 9.86981788e-13,
       1.50628633e-16, 1.50628633e-16, 1.50628633e-16, 1.50628633e-16,
       1.80645712e-20, 1.80645712e-20, 1.80645712e-20, 1.80645712e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99996531e+02, 9.99996531e+02, 9.99996531e+02, 9.99996531e+02,
       9.99987056e+02, 9.99987056e+02, 9.99987056e+02, 9.99987056e+02,
       9.99960508e+02, 9.99960508e+02, 9.99960508e+02, 9.99960508e+02,
       9.99885444e+02, 9.99885444e+02, 9.99885444e+02, 9.99885444e+02,
       9.99687580e+02, 9.99687580e+02, 9.99687580e+02, 9.99687580e+02,
       9.99200940e+02, 9.99200940e+02, 9.99200940e+02, 9.99200940e+02,
       9.98089767e+02, 9.98089767e+02, 9.98089767e+02, 9.98089767e+02,
       9.95746369e+02, 9.95746369e+02, 9.95746369e+02, 9.95746369e+02,
       9.91205796e+02, 9.91205796e+02, 9.91205796e+02, 9.91205796e+02,
       9.83160321e+02, 9.83160321e+02, 9.83160321e+02, 9.83160321e+02,
       9.70163089e+02, 9.70163089e+02, 9.70163089e+02, 9.70163089e+02,
       9.51025501e+02, 9.51025501e+02, 9.51025501e+02, 9.51025501e+02,
       9.25253700e+02, 9.25253700e+02, 9.25253700e+02, 9.25253700e+02,
       8.93272718e+02, 8.93272718e+02, 8.93272718e+02, 8.93272718e+02,
       8.56285555e+02, 8.56285555e+02, 8.56285555e+02, 8.56285555e+02,
       8.15844374e+02, 8.15844374e+02, 8.15844374e+02, 8.15844374e+02,
       7.73342136e+02, 7.73342136e+02, 7.73342136e+02, 7.73342136e+02,
       7.30129913e+02, 7.30129913e+02, 7.30129913e+02, 7.30129913e+02,
       6.88352942e+02, 6.88352942e+02, 6.88352942e+02, 6.88352942e+02,
       6.49007221e+02, 6.49007221e+02, 6.49007221e+02, 6.49007221e+02,
       6.11939746e+02, 6.11939746e+02, 6.11939746e+02, 6.11939746e+02,
       5.77224777e+02, 5.77224777e+02, 5.77224777e+02, 5.77224777e+02,
       5.45110602e+02, 5.45110602e+02, 5.45110602e+02, 5.45110602e+02,
       5.16188887e+02, 5.16188887e+02, 5.16188887e+02, 5.16188887e+02,
       4.91335604e+02, 4.91335604e+02, 4.91335604e+02, 4.91335604e+02,
       4.71814716e+02, 4.71814716e+02, 4.71814716e+02, 4.71814716e+02,
       4.58644756e+02, 4.58644756e+02, 4.58644756e+02, 4.58644756e+02,
       4.51748779e+02, 4.51748779e+02, 4.51748779e+02, 4.51748779e+02,
       4.49620320e+02, 4.49620320e+02, 4.49620320e+02, 4.49620320e+02,
       4.49793173e+02, 4.49793173e+02, 4.49793173e+02, 4.49793173e+02,
       4.51686270e+02, 4.51686270e+02, 4.51686270e+02, 4.51686270e+02,
       4.52653139e+02, 4.52653139e+02, 4.52653139e+02, 4.52653139e+02,
       4.52934776e+02, 4.52934776e+02, 4.52934776e+02, 4.52934776e+02,
       4.53069098e+02, 4.53069098e+02, 4.53069098e+02, 4.53069098e+02,
       4.53226281e+02, 4.53226281e+02, 4.53226281e+02, 4.53226281e+02,
       4.53501144e+02, 4.53501144e+02, 4.53501144e+02, 4.53501144e+02,
       4.53932351e+02, 4.53932351e+02, 4.53932351e+02, 4.53932351e+02,
       4.54403842e+02, 4.54403842e+02, 4.54403842e+02, 4.54403842e+02,
       4.54828470e+02, 4.54828470e+02, 4.54828470e+02, 4.54828470e+02,
       4.55256571e+02, 4.55256571e+02, 4.55256571e+02, 4.55256571e+02,
       4.55891222e+02, 4.55891222e+02, 4.55891222e+02, 4.55891222e+02,
       4.56695880e+02, 4.56695880e+02, 4.56695880e+02, 4.56695880e+02,
       4.55303353e+02, 4.55303353e+02, 4.55303353e+02, 4.55303353e+02,
       4.39632542e+02, 4.39632542e+02, 4.39632542e+02, 4.39632542e+02,
       3.62585344e+02, 3.62585344e+02, 3.62585344e+02, 3.62585344e+02,
       1.55123980e+02, 1.55123980e+02, 1.55123980e+02, 1.55123980e+02,
       1.06526829e+01, 1.06526829e+01, 1.06526829e+01, 1.06526829e+01,
       4.72581949e-02, 4.72581949e-02, 4.72581949e-02, 4.72581949e-02,
       1.00047111e-02, 1.00047111e-02, 1.00047111e-02, 1.00047111e-02,
       1.00000007e-02, 1.00000007e-02, 1.00000007e-02, 1.00000007e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999334, 0.99999334, 0.99999334, 0.99999334, 0.99997652,
       0.99997652, 0.99997652, 0.99997652, 0.99993274, 0.99993274,
       0.99993274, 0.99993274, 0.9998167 , 0.9998167 , 0.9998167 ,
       0.9998167 , 0.9995308 , 0.9995308 , 0.9995308 , 0.9995308 ,
       0.9988747 , 0.9988747 , 0.9988747 , 0.9988747 , 0.99747962,
       0.99747962, 0.99747962, 0.99747962, 0.99474458, 0.99474458,
       0.99474458, 0.99474458, 0.98982255, 0.98982255, 0.98982255,
       0.98982255, 0.98171633, 0.98171633, 0.98171633, 0.98171633,
       0.96950664, 0.96950664, 0.96950664, 0.96950664, 0.95264288,
       0.95264288, 0.95264288, 0.95264288, 0.93114717, 0.93114717,
       0.93114717, 0.93114717, 0.90560556, 0.90560556, 0.90560556,
       0.90560556, 0.8769476 , 0.8769476 , 0.8769476 , 0.8769476 ,
       0.8461295 , 0.8461295 , 0.8461295 , 0.8461295 , 0.81392176,
       0.81392176, 0.81392176, 0.81392176, 0.78165473, 0.78165473,
       0.78165473, 0.78165473, 0.75050172, 0.75050172, 0.75050172,
       0.75050172, 0.72057659, 0.72057659, 0.72057659, 0.72057659,
       0.69190945, 0.69190945, 0.69190945, 0.69190945, 0.66457344,
       0.66457344, 0.66457344, 0.66457344, 0.63931001, 0.63931001,
       0.63931001, 0.63931001, 0.61533571, 0.61533571, 0.61533571,
       0.61533571, 0.59728585, 0.59728585, 0.59728585, 0.59728585,
       0.57944602, 0.57944602, 0.57944602, 0.57944602, 0.57141549,
       0.57141549, 0.57141549, 0.57141549, 0.56646332, 0.56646332,
       0.56646332, 0.56646332, 0.56429638, 0.56429638, 0.56429638,
       0.56429638, 0.56474556, 0.56474556, 0.56474556, 0.56474556,
       0.56696375, 0.56696375, 0.56696375, 0.56696375, 0.56741743,
       0.56741743, 0.56741743, 0.56741743, 0.5672394 , 0.5672394 ,
       0.5672394 , 0.5672394 , 0.56719598, 0.56719598, 0.56719598,
       0.56719598, 0.56730067, 0.56730067, 0.56730067, 0.56730067,
       0.56757971, 0.56757971, 0.56757971, 0.56757971, 0.5684633 ,
       0.5684633 , 0.5684633 , 0.5684633 , 0.57284684, 0.57284684,
       0.57284684, 0.57284684, 0.59231821, 0.59231821, 0.59231821,
       0.59231821, 0.6596568 , 0.6596568 , 0.6596568 , 0.6596568 ,
       0.84699717, 0.84699717, 0.84699717, 0.84699717, 1.27785893,
       1.27785893, 1.27785893, 1.27785893, 2.10551451, 2.10551451,
       2.10551451, 2.10551451, 3.24550952, 3.24550952, 3.24550952,
       3.24550952, 3.77306813, 3.77306813, 3.77306813, 3.77306813,
       3.47838258, 3.47838258, 3.47838258, 3.47838258, 1.83959453,
       1.83959453, 1.83959453, 1.83959453, 1.0682824 , 1.0682824 ,
       1.0682824 , 1.0682824 , 1.00250794, 1.00250794, 1.00250794,
       1.00250794, 1.00000304, 1.00000304, 1.00000304, 1.00000304,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.49214926e-04, 2.49214926e-04, 2.49214926e-04, 2.49214926e-04,
       8.78604657e-04, 8.78604657e-04, 8.78604657e-04, 8.78604657e-04,
       2.51662102e-03, 2.51662102e-03, 2.51662102e-03, 2.51662102e-03,
       6.85892762e-03, 6.85892762e-03, 6.85892762e-03, 6.85892762e-03,
       1.75588961e-02, 1.75588961e-02, 1.75588961e-02, 1.75588961e-02,
       4.21228901e-02, 4.21228901e-02, 4.21228901e-02, 4.21228901e-02,
       9.43950927e-02, 9.43950927e-02, 9.43950927e-02, 9.43950927e-02,
       1.97042335e-01, 1.97042335e-01, 1.97042335e-01, 1.97042335e-01,
       3.82340085e-01, 3.82340085e-01, 3.82340085e-01, 3.82340085e-01,
       6.89147758e-01, 6.89147758e-01, 6.89147758e-01, 6.89147758e-01,
       1.15519736e+00, 1.15519736e+00, 1.15519736e+00, 1.15519736e+00,
       1.80686376e+00, 1.80686376e+00, 1.80686376e+00, 1.80686376e+00,
       2.65131500e+00, 2.65131500e+00, 2.65131500e+00, 2.65131500e+00,
       3.67550739e+00, 3.67550739e+00, 3.67550739e+00, 3.67550739e+00,
       4.85271275e+00, 4.85271275e+00, 4.85271275e+00, 4.85271275e+00,
       6.15350432e+00, 6.15350432e+00, 6.15350432e+00, 6.15350432e+00,
       7.55357680e+00, 7.55357680e+00, 7.55357680e+00, 7.55357680e+00,
       8.98941000e+00, 8.98941000e+00, 8.98941000e+00, 8.98941000e+00,
       1.04303820e+01, 1.04303820e+01, 1.04303820e+01, 1.04303820e+01,
       1.18617350e+01, 1.18617350e+01, 1.18617350e+01, 1.18617350e+01,
       1.32783330e+01, 1.32783330e+01, 1.32783330e+01, 1.32783330e+01,
       1.46700989e+01, 1.46700989e+01, 1.46700989e+01, 1.46700989e+01,
       1.60141500e+01, 1.60141500e+01, 1.60141500e+01, 1.60141500e+01,
       1.72717577e+01, 1.72717577e+01, 1.72717577e+01, 1.72717577e+01,
       1.83764937e+01, 1.83764937e+01, 1.83764937e+01, 1.83764937e+01,
       1.92517132e+01, 1.92517132e+01, 1.92517132e+01, 1.92517132e+01,
       1.98312363e+01, 1.98312363e+01, 1.98312363e+01, 1.98312363e+01,
       2.01141790e+01, 2.01141790e+01, 2.01141790e+01, 2.01141790e+01,
       2.01871661e+01, 2.01871661e+01, 2.01871661e+01, 2.01871661e+01,
       2.01587304e+01, 2.01587304e+01, 2.01587304e+01, 2.01587304e+01,
       2.00649247e+01, 2.00649247e+01, 2.00649247e+01, 2.00649247e+01,
       2.00267116e+01, 2.00267116e+01, 2.00267116e+01, 2.00267116e+01,
       2.00134137e+01, 2.00134137e+01, 2.00134137e+01, 2.00134137e+01,
       2.00048366e+01, 2.00048366e+01, 2.00048366e+01, 2.00048366e+01,
       1.99955344e+01, 1.99955344e+01, 1.99955344e+01, 1.99955344e+01,
       1.99804744e+01, 1.99804744e+01, 1.99804744e+01, 1.99804744e+01,
       1.99582608e+01, 1.99582608e+01, 1.99582608e+01, 1.99582608e+01,
       1.99352201e+01, 1.99352201e+01, 1.99352201e+01, 1.99352201e+01,
       1.99120283e+01, 1.99120283e+01, 1.99120283e+01, 1.99120283e+01,
       1.98878907e+01, 1.98878907e+01, 1.98878907e+01, 1.98878907e+01,
       1.98653154e+01, 1.98653154e+01, 1.98653154e+01, 1.98653154e+01,
       1.98516094e+01, 1.98516094e+01, 1.98516094e+01, 1.98516094e+01,
       1.98100006e+01, 1.98100006e+01, 1.98100006e+01, 1.98100006e+01,
       1.96316470e+01, 1.96316470e+01, 1.96316470e+01, 1.96316470e+01,
       1.88041286e+01, 1.88041286e+01, 1.88041286e+01, 1.88041286e+01,
       1.54317797e+01, 1.54317797e+01, 1.54317797e+01, 1.54317797e+01,
       6.46630891e+00, 6.46630891e+00, 6.46630891e+00, 6.46630891e+00,
       3.26471041e-01, 3.26471041e-01, 3.26471041e-01, 3.26471041e-01,
       1.39752195e-03, 1.39752195e-03, 1.39752195e-03, 1.39752195e-03,
       3.61410681e-07, 3.61410681e-07, 3.61410681e-07, 3.61410681e-07,
       5.50928989e-11, 5.50928989e-11, 5.50928989e-11, 5.50928989e-11,
       8.73446544e-15, 8.73446544e-15, 8.73446544e-15, 8.73446544e-15,
       1.37689406e-18, 1.37689406e-18, 1.37689406e-18, 1.37689406e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99990675e+02, 9.99990675e+02, 9.99990675e+02, 9.99990675e+02,
       9.99967126e+02, 9.99967126e+02, 9.99967126e+02, 9.99967126e+02,
       9.99905841e+02, 9.99905841e+02, 9.99905841e+02, 9.99905841e+02,
       9.99743393e+02, 9.99743393e+02, 9.99743393e+02, 9.99743393e+02,
       9.99343207e+02, 9.99343207e+02, 9.99343207e+02, 9.99343207e+02,
       9.98425049e+02, 9.98425049e+02, 9.98425049e+02, 9.98425049e+02,
       9.96473752e+02, 9.96473752e+02, 9.96473752e+02, 9.96473752e+02,
       9.92651960e+02, 9.92651960e+02, 9.92651960e+02, 9.92651960e+02,
       9.85786061e+02, 9.85786061e+02, 9.85786061e+02, 9.85786061e+02,
       9.74510522e+02, 9.74510522e+02, 9.74510522e+02, 9.74510522e+02,
       9.57600381e+02, 9.57600381e+02, 9.57600381e+02, 9.57600381e+02,
       9.34386650e+02, 9.34386650e+02, 9.34386650e+02, 9.34386650e+02,
       9.05034576e+02, 9.05034576e+02, 9.05034576e+02, 9.05034576e+02,
       8.70506126e+02, 8.70506126e+02, 8.70506126e+02, 8.70506126e+02,
       8.32221605e+02, 8.32221605e+02, 8.32221605e+02, 8.32221605e+02,
       7.91601867e+02, 7.91601867e+02, 7.91601867e+02, 7.91601867e+02,
       7.49771930e+02, 7.49771930e+02, 7.49771930e+02, 7.49771930e+02,
       7.08448789e+02, 7.08448789e+02, 7.08448789e+02, 7.08448789e+02,
       6.69249654e+02, 6.69249654e+02, 6.69249654e+02, 6.69249654e+02,
       6.32199855e+02, 6.32199855e+02, 6.32199855e+02, 6.32199855e+02,
       5.97271856e+02, 5.97271856e+02, 5.97271856e+02, 5.97271856e+02,
       5.64593117e+02, 5.64593117e+02, 5.64593117e+02, 5.64593117e+02,
       5.34481735e+02, 5.34481735e+02, 5.34481735e+02, 5.34481735e+02,
       5.07617179e+02, 5.07617179e+02, 5.07617179e+02, 5.07617179e+02,
       4.84923891e+02, 4.84923891e+02, 4.84923891e+02, 4.84923891e+02,
       4.67588272e+02, 4.67588272e+02, 4.67588272e+02, 4.67588272e+02,
       4.56440880e+02, 4.56440880e+02, 4.56440880e+02, 4.56440880e+02,
       4.51073579e+02, 4.51073579e+02, 4.51073579e+02, 4.51073579e+02,
       4.49670476e+02, 4.49670476e+02, 4.49670476e+02, 4.49670476e+02,
       4.50197414e+02, 4.50197414e+02, 4.50197414e+02, 4.50197414e+02,
       4.51964568e+02, 4.51964568e+02, 4.51964568e+02, 4.51964568e+02,
       4.52734660e+02, 4.52734660e+02, 4.52734660e+02, 4.52734660e+02,
       4.52988476e+02, 4.52988476e+02, 4.52988476e+02, 4.52988476e+02,
       4.53122020e+02, 4.53122020e+02, 4.53122020e+02, 4.53122020e+02,
       4.53277355e+02, 4.53277355e+02, 4.53277355e+02, 4.53277355e+02,
       4.53570948e+02, 4.53570948e+02, 4.53570948e+02, 4.53570948e+02,
       4.54027799e+02, 4.54027799e+02, 4.54027799e+02, 4.54027799e+02,
       4.54514822e+02, 4.54514822e+02, 4.54514822e+02, 4.54514822e+02,
       4.54967633e+02, 4.54967633e+02, 4.54967633e+02, 4.54967633e+02,
       4.55383145e+02, 4.55383145e+02, 4.55383145e+02, 4.55383145e+02,
       4.55885058e+02, 4.55885058e+02, 4.55885058e+02, 4.55885058e+02,
       4.56660485e+02, 4.56660485e+02, 4.56660485e+02, 4.56660485e+02,
       4.56707224e+02, 4.56707224e+02, 4.56707224e+02, 4.56707224e+02,
       4.50332485e+02, 4.50332485e+02, 4.50332485e+02, 4.50332485e+02,
       4.10745038e+02, 4.10745038e+02, 4.10745038e+02, 4.10745038e+02,
       2.64438188e+02, 2.64438188e+02, 2.64438188e+02, 2.64438188e+02,
       5.04920492e+01, 5.04920492e+01, 5.04920492e+01, 5.04920492e+01,
       8.21200453e-01, 8.21200453e-01, 8.21200453e-01, 8.21200453e-01,
       1.04110586e-02, 1.04110586e-02, 1.04110586e-02, 1.04110586e-02,
       1.00000427e-02, 1.00000427e-02, 1.00000427e-02, 1.00000427e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998324, 0.99998324, 0.99998324, 0.99998324, 0.99994409,
       0.99994409, 0.99994409, 0.99994409, 0.99984947, 0.99984947,
       0.99984947, 0.99984947, 0.99961409, 0.99961409, 0.99961409,
       0.99961409, 0.99907186, 0.99907186, 0.99907186, 0.99907186,
       0.99791058, 0.99791058, 0.99791058, 0.99791058, 0.99561098,
       0.99561098, 0.99561098, 0.99561098, 0.99141916, 0.99141916,
       0.99141916, 0.99141916, 0.98440893, 0.98440893, 0.98440893,
       0.98440893, 0.97366694, 0.97366694, 0.97366694, 0.97366694,
       0.95855926, 0.95855926, 0.95855926, 0.95855926, 0.93895505,
       0.93895505, 0.93895505, 0.93895505, 0.91527616, 0.91527616,
       0.91527616, 0.91527616, 0.88833959, 0.88833959, 0.88833959,
       0.88833959, 0.85907786, 0.85907786, 0.85907786, 0.85907786,
       0.82825782, 0.82825782, 0.82825782, 0.82825782, 0.79682367,
       0.79682367, 0.79682367, 0.79682367, 0.7660904 , 0.7660904 ,
       0.7660904 , 0.7660904 , 0.73649342, 0.73649342, 0.73649342,
       0.73649342, 0.7080382 , 0.7080382 , 0.7080382 , 0.7080382 ,
       0.68079751, 0.68079751, 0.68079751, 0.68079751, 0.65483468,
       0.65483468, 0.65483468, 0.65483468, 0.63114051, 0.63114051,
       0.63114051, 0.63114051, 0.60854849, 0.60854849, 0.60854849,
       0.60854849, 0.59238504, 0.59238504, 0.59238504, 0.59238504,
       0.57651033, 0.57651033, 0.57651033, 0.57651033, 0.56951125,
       0.56951125, 0.56951125, 0.56951125, 0.5662106 , 0.5662106 ,
       0.5662106 , 0.5662106 , 0.56457441, 0.56457441, 0.56457441,
       0.56457441, 0.56518521, 0.56518521, 0.56518521, 0.56518521,
       0.5669638 , 0.5669638 , 0.5669638 , 0.5669638 , 0.56753478,
       0.56753478, 0.56753478, 0.56753478, 0.56741507, 0.56741507,
       0.56741507, 0.56741507, 0.56730543, 0.56730543, 0.56730543,
       0.56730543, 0.56737641, 0.56737641, 0.56737641, 0.56737641,
       0.56765193, 0.56765193, 0.56765193, 0.56765193, 0.56833782,
       0.56833782, 0.56833782, 0.56833782, 0.57115323, 0.57115323,
       0.57115323, 0.57115323, 0.58390602, 0.58390602, 0.58390602,
       0.58390602, 0.63015878, 0.63015878, 0.63015878, 0.63015878,
       0.76511277, 0.76511277, 0.76511277, 0.76511277, 1.09098504,
       1.09098504, 1.09098504, 1.09098504, 1.75190783, 1.75190783,
       1.75190783, 1.75190783, 2.84524356, 2.84524356, 2.84524356,
       2.84524356, 3.69818791, 3.69818791, 3.69818791, 3.69818791,
       3.79299239, 3.79299239, 3.79299239, 3.79299239, 2.70622572,
       2.70622572, 2.70622572, 2.70622572, 1.23074962, 1.23074962,
       1.23074962, 1.23074962, 1.01357481, 1.01357481, 1.01357481,
       1.01357481, 1.00013936, 1.00013936, 1.00013936, 1.00013936,
       1.00000003, 1.00000003, 1.00000003, 1.00000003, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([6.27176089e-04, 6.27176089e-04, 6.27176089e-04, 6.27176089e-04,
       2.09197510e-03, 2.09197510e-03, 2.09197510e-03, 2.09197510e-03,
       5.63246589e-03, 5.63246589e-03, 5.63246589e-03, 5.63246589e-03,
       1.44413910e-02, 1.44413910e-02, 1.44413910e-02, 1.44413910e-02,
       3.47398084e-02, 3.47398084e-02, 3.47398084e-02, 3.47398084e-02,
       7.82416435e-02, 7.82416435e-02, 7.82416435e-02, 7.82416435e-02,
       1.64502448e-01, 1.64502448e-01, 1.64502448e-01, 1.64502448e-01,
       3.22153674e-01, 3.22153674e-01, 3.22153674e-01, 3.22153674e-01,
       5.87013093e-01, 5.87013093e-01, 5.87013093e-01, 5.87013093e-01,
       9.95867432e-01, 9.95867432e-01, 9.95867432e-01, 9.95867432e-01,
       1.57717960e+00, 1.57717960e+00, 1.57717960e+00, 1.57717960e+00,
       2.34277075e+00, 2.34277075e+00, 2.34277075e+00, 2.34277075e+00,
       3.28498965e+00, 3.28498965e+00, 3.28498965e+00, 3.28498965e+00,
       4.38103253e+00, 4.38103253e+00, 4.38103253e+00, 4.38103253e+00,
       5.60227400e+00, 5.60227400e+00, 5.60227400e+00, 5.60227400e+00,
       6.92499000e+00, 6.92499000e+00, 6.92499000e+00, 6.92499000e+00,
       8.30862980e+00, 8.30862980e+00, 8.30862980e+00, 8.30862980e+00,
       9.70342488e+00, 9.70342488e+00, 9.70342488e+00, 9.70342488e+00,
       1.10947376e+01, 1.10947376e+01, 1.10947376e+01, 1.10947376e+01,
       1.24759421e+01, 1.24759421e+01, 1.24759421e+01, 1.24759421e+01,
       1.38409096e+01, 1.38409096e+01, 1.38409096e+01, 1.38409096e+01,
       1.51771753e+01, 1.51771753e+01, 1.51771753e+01, 1.51771753e+01,
       1.64580614e+01, 1.64580614e+01, 1.64580614e+01, 1.64580614e+01,
       1.76410460e+01, 1.76410460e+01, 1.76410460e+01, 1.76410460e+01,
       1.86577470e+01, 1.86577470e+01, 1.86577470e+01, 1.86577470e+01,
       1.94346504e+01, 1.94346504e+01, 1.94346504e+01, 1.94346504e+01,
       1.99206783e+01, 1.99206783e+01, 1.99206783e+01, 1.99206783e+01,
       2.01373825e+01, 2.01373825e+01, 2.01373825e+01, 2.01373825e+01,
       2.01827557e+01, 2.01827557e+01, 2.01827557e+01, 2.01827557e+01,
       2.01362430e+01, 2.01362430e+01, 2.01362430e+01, 2.01362430e+01,
       2.00527163e+01, 2.00527163e+01, 2.00527163e+01, 2.00527163e+01,
       2.00220889e+01, 2.00220889e+01, 2.00220889e+01, 2.00220889e+01,
       2.00113415e+01, 2.00113415e+01, 2.00113415e+01, 2.00113415e+01,
       2.00032017e+01, 2.00032017e+01, 2.00032017e+01, 2.00032017e+01,
       1.99928716e+01, 1.99928716e+01, 1.99928716e+01, 1.99928716e+01,
       1.99752195e+01, 1.99752195e+01, 1.99752195e+01, 1.99752195e+01,
       1.99510048e+01, 1.99510048e+01, 1.99510048e+01, 1.99510048e+01,
       1.99278369e+01, 1.99278369e+01, 1.99278369e+01, 1.99278369e+01,
       1.99060511e+01, 1.99060511e+01, 1.99060511e+01, 1.99060511e+01,
       1.98834898e+01, 1.98834898e+01, 1.98834898e+01, 1.98834898e+01,
       1.98602307e+01, 1.98602307e+01, 1.98602307e+01, 1.98602307e+01,
       1.98460230e+01, 1.98460230e+01, 1.98460230e+01, 1.98460230e+01,
       1.98231060e+01, 1.98231060e+01, 1.98231060e+01, 1.98231060e+01,
       1.97344284e+01, 1.97344284e+01, 1.97344284e+01, 1.97344284e+01,
       1.93234157e+01, 1.93234157e+01, 1.93234157e+01, 1.93234157e+01,
       1.75098690e+01, 1.75098690e+01, 1.75098690e+01, 1.75098690e+01,
       1.13120733e+01, 1.13120733e+01, 1.13120733e+01, 1.13120733e+01,
       1.72019020e+00, 1.72019020e+00, 1.72019020e+00, 1.72019020e+00,
       2.39627567e-02, 2.39627567e-02, 2.39627567e-02, 2.39627567e-02,
       2.10492230e-05, 2.10492230e-05, 2.10492230e-05, 2.10492230e-05,
       3.37580296e-09, 3.37580296e-09, 3.37580296e-09, 3.37580296e-09,
       5.24794943e-13, 5.24794943e-13, 5.24794943e-13, 5.24794943e-13,
       8.00869120e-17, 8.00869120e-17, 8.00869120e-17, 8.00869120e-17,
       1.80543624e-20, 1.80543624e-20, 1.80543624e-20, 1.80543624e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99976534e+02, 9.99976534e+02, 9.99976534e+02, 9.99976534e+02,
       9.99921728e+02, 9.99921728e+02, 9.99921728e+02, 9.99921728e+02,
       9.99789273e+02, 9.99789273e+02, 9.99789273e+02, 9.99789273e+02,
       9.99459788e+02, 9.99459788e+02, 9.99459788e+02, 9.99459788e+02,
       9.98700933e+02, 9.98700933e+02, 9.98700933e+02, 9.98700933e+02,
       9.97076380e+02, 9.97076380e+02, 9.97076380e+02, 9.97076380e+02,
       9.93862050e+02, 9.93862050e+02, 9.93862050e+02, 9.93862050e+02,
       9.88011449e+02, 9.88011449e+02, 9.88011449e+02, 9.88011449e+02,
       9.78251147e+02, 9.78251147e+02, 9.78251147e+02, 9.78251147e+02,
       9.63351703e+02, 9.63351703e+02, 9.63351703e+02, 9.63351703e+02,
       9.42510461e+02, 9.42510461e+02, 9.42510461e+02, 9.42510461e+02,
       9.15662316e+02, 9.15662316e+02, 9.15662316e+02, 9.15662316e+02,
       8.83529955e+02, 8.83529955e+02, 8.83529955e+02, 8.83529955e+02,
       8.47375347e+02, 8.47375347e+02, 8.47375347e+02, 8.47375347e+02,
       8.08589521e+02, 8.08589521e+02, 8.08589521e+02, 8.08589521e+02,
       7.68302840e+02, 7.68302840e+02, 7.68302840e+02, 7.68302840e+02,
       7.27777466e+02, 7.27777466e+02, 7.27777466e+02, 7.27777466e+02,
       6.88776134e+02, 6.88776134e+02, 6.88776134e+02, 6.88776134e+02,
       6.51822493e+02, 6.51822493e+02, 6.51822493e+02, 6.51822493e+02,
       6.16850793e+02, 6.16850793e+02, 6.16850793e+02, 6.16850793e+02,
       5.83873049e+02, 5.83873049e+02, 5.83873049e+02, 5.83873049e+02,
       5.53077621e+02, 5.53077621e+02, 5.53077621e+02, 5.53077621e+02,
       5.24847307e+02, 5.24847307e+02, 5.24847307e+02, 5.24847307e+02,
       4.99936052e+02, 4.99936052e+02, 4.99936052e+02, 4.99936052e+02,
       4.79307983e+02, 4.79307983e+02, 4.79307983e+02, 4.79307983e+02,
       4.64037017e+02, 4.64037017e+02, 4.64037017e+02, 4.64037017e+02,
       4.54717049e+02, 4.54717049e+02, 4.54717049e+02, 4.54717049e+02,
       4.50630729e+02, 4.50630729e+02, 4.50630729e+02, 4.50630729e+02,
       4.49766128e+02, 4.49766128e+02, 4.49766128e+02, 4.49766128e+02,
       4.50635760e+02, 4.50635760e+02, 4.50635760e+02, 4.50635760e+02,
       4.52192339e+02, 4.52192339e+02, 4.52192339e+02, 4.52192339e+02,
       4.52791836e+02, 4.52791836e+02, 4.52791836e+02, 4.52791836e+02,
       4.53026052e+02, 4.53026052e+02, 4.53026052e+02, 4.53026052e+02,
       4.53174609e+02, 4.53174609e+02, 4.53174609e+02, 4.53174609e+02,
       4.53352116e+02, 4.53352116e+02, 4.53352116e+02, 4.53352116e+02,
       4.53668407e+02, 4.53668407e+02, 4.53668407e+02, 4.53668407e+02,
       4.54129426e+02, 4.54129426e+02, 4.54129426e+02, 4.54129426e+02,
       4.54606825e+02, 4.54606825e+02, 4.54606825e+02, 4.54606825e+02,
       4.55071542e+02, 4.55071542e+02, 4.55071542e+02, 4.55071542e+02,
       4.55519242e+02, 4.55519242e+02, 4.55519242e+02, 4.55519242e+02,
       4.55942322e+02, 4.55942322e+02, 4.55942322e+02, 4.55942322e+02,
       4.56555572e+02, 4.56555572e+02, 4.56555572e+02, 4.56555572e+02,
       4.57153744e+02, 4.57153744e+02, 4.57153744e+02, 4.57153744e+02,
       4.55012364e+02, 4.55012364e+02, 4.55012364e+02, 4.55012364e+02,
       4.36291749e+02, 4.36291749e+02, 4.36291749e+02, 4.36291749e+02,
       3.50253071e+02, 3.50253071e+02, 3.50253071e+02, 3.50253071e+02,
       1.37331684e+02, 1.37331684e+02, 1.37331684e+02, 1.37331684e+02,
       7.81961782e+00, 7.81961782e+00, 7.81961782e+00, 7.81961782e+00,
       3.15710255e-02, 3.15710255e-02, 3.15710255e-02, 3.15710255e-02,
       1.00025204e-02, 1.00025204e-02, 1.00025204e-02, 1.00025204e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99996035, 0.99996035, 0.99996035, 0.99996035, 0.99987476,
       0.99987476, 0.99987476, 0.99987476, 0.99968276, 0.99968276,
       0.99968276, 0.99968276, 0.99923411, 0.99923411, 0.99923411,
       0.99923411, 0.99826762, 0.99826762, 0.99826762, 0.99826762,
       0.99633541, 0.99633541, 0.99633541, 0.99633541, 0.99277013,
       0.99277013, 0.99277013, 0.99277013, 0.98671964, 0.98671964,
       0.98671964, 0.98671964, 0.977293  , 0.977293  , 0.977293  ,
       0.977293  , 0.96379833, 0.96379833, 0.96379833, 0.96379833,
       0.94597383, 0.94597383, 0.94597383, 0.94597383, 0.9240842 ,
       0.9240842 , 0.9240842 , 0.9240842 , 0.89882269, 0.89882269,
       0.89882269, 0.89882269, 0.87107325, 0.87107325, 0.87107325,
       0.87107325, 0.84163799, 0.84163799, 0.84163799, 0.84163799,
       0.81121158, 0.81121158, 0.81121158, 0.81121158, 0.7809964 ,
       0.7809964 , 0.7809964 , 0.7809964 , 0.75175867, 0.75175867,
       0.75175867, 0.75175867, 0.72358262, 0.72358262, 0.72358262,
       0.72358262, 0.69646996, 0.69646996, 0.69646996, 0.69646996,
       0.67055951, 0.67055951, 0.67055951, 0.67055951, 0.64587767,
       0.64587767, 0.64587767, 0.64587767, 0.62371507, 0.62371507,
       0.62371507, 0.62371507, 0.60245905, 0.60245905, 0.60245905,
       0.60245905, 0.58804181, 0.58804181, 0.58804181, 0.58804181,
       0.57415787, 0.57415787, 0.57415787, 0.57415787, 0.56801698,
       0.56801698, 0.56801698, 0.56801698, 0.56600286, 0.56600286,
       0.56600286, 0.56600286, 0.56486913, 0.56486913, 0.56486913,
       0.56486913, 0.56568532, 0.56568532, 0.56568532, 0.56568532,
       0.56697037, 0.56697037, 0.56697037, 0.56697037, 0.567595  ,
       0.567595  , 0.567595  , 0.567595  , 0.56755691, 0.56755691,
       0.56755691, 0.56755691, 0.56742984, 0.56742984, 0.56742984,
       0.56742984, 0.56748199, 0.56748199, 0.56748199, 0.56748199,
       0.56775104, 0.56775104, 0.56775104, 0.56775104, 0.56831532,
       0.56831532, 0.56831532, 0.56831532, 0.57016477, 0.57016477,
       0.57016477, 0.57016477, 0.57848067, 0.57848067, 0.57848067,
       0.57848067, 0.60993862, 0.60993862, 0.60993862, 0.60993862,
       0.70608446, 0.70608446, 0.70608446, 0.70608446, 0.94942581,
       0.94942581, 0.94942581, 0.94942581, 1.46794713, 1.46794713,
       1.46794713, 1.46794713, 2.399093  , 2.399093  , 2.399093  ,
       2.399093  , 3.49161502, 3.49161502, 3.49161502, 3.49161502,
       3.88909392, 3.88909392, 3.88909392, 3.88909392, 3.45166183,
       3.45166183, 3.45166183, 3.45166183, 1.72693552, 1.72693552,
       1.72693552, 1.72693552, 1.05571813, 1.05571813, 1.05571813,
       1.05571813, 1.00183475, 1.00183475, 1.00183475, 1.00183475,
       1.00000159, 1.00000159, 1.00000159, 1.00000159, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.48343235e-03, 1.48343235e-03, 1.48343235e-03, 1.48343235e-03,
       4.68625754e-03, 4.68625754e-03, 4.68625754e-03, 4.68625754e-03,
       1.18714812e-02, 1.18714812e-02, 1.18714812e-02, 1.18714812e-02,
       2.86653854e-02, 2.86653854e-02, 2.86653854e-02, 2.86653854e-02,
       6.48624680e-02, 6.48624680e-02, 6.48624680e-02, 6.48624680e-02,
       1.37311383e-01, 1.37311383e-01, 1.37311383e-01, 1.37311383e-01,
       2.71286993e-01, 2.71286993e-01, 2.71286993e-01, 2.71286993e-01,
       4.99544165e-01, 4.99544165e-01, 4.99544165e-01, 4.99544165e-01,
       8.57450278e-01, 8.57450278e-01, 8.57450278e-01, 8.57450278e-01,
       1.37475596e+00, 1.37475596e+00, 1.37475596e+00, 1.37475596e+00,
       2.06719154e+00, 2.06719154e+00, 2.06719154e+00, 2.06719154e+00,
       2.93221227e+00, 2.93221227e+00, 2.93221227e+00, 2.93221227e+00,
       3.95128996e+00, 3.95128996e+00, 3.95128996e+00, 3.95128996e+00,
       5.09756199e+00, 5.09756199e+00, 5.09756199e+00, 5.09756199e+00,
       6.34579257e+00, 6.34579257e+00, 6.34579257e+00, 6.34579257e+00,
       7.67146094e+00, 7.67146094e+00, 7.67146094e+00, 7.67146094e+00,
       9.01982632e+00, 9.01982632e+00, 9.01982632e+00, 9.01982632e+00,
       1.03717565e+01, 1.03717565e+01, 1.03717565e+01, 1.03717565e+01,
       1.17165199e+01, 1.17165199e+01, 1.17165199e+01, 1.17165199e+01,
       1.30503359e+01, 1.30503359e+01, 1.30503359e+01, 1.30503359e+01,
       1.43659229e+01, 1.43659229e+01, 1.43659229e+01, 1.43659229e+01,
       1.56482456e+01, 1.56482456e+01, 1.56482456e+01, 1.56482456e+01,
       1.68667491e+01, 1.68667491e+01, 1.68667491e+01, 1.68667491e+01,
       1.79752388e+01, 1.79752388e+01, 1.79752388e+01, 1.79752388e+01,
       1.89049267e+01, 1.89049267e+01, 1.89049267e+01, 1.89049267e+01,
       1.95880409e+01, 1.95880409e+01, 1.95880409e+01, 1.95880409e+01,
       1.99895045e+01, 1.99895045e+01, 1.99895045e+01, 1.99895045e+01,
       2.01509131e+01, 2.01509131e+01, 2.01509131e+01, 2.01509131e+01,
       2.01756935e+01, 2.01756935e+01, 2.01756935e+01, 2.01756935e+01,
       2.01136639e+01, 2.01136639e+01, 2.01136639e+01, 2.01136639e+01,
       2.00436849e+01, 2.00436849e+01, 2.00436849e+01, 2.00436849e+01,
       2.00184695e+01, 2.00184695e+01, 2.00184695e+01, 2.00184695e+01,
       2.00087073e+01, 2.00087073e+01, 2.00087073e+01, 2.00087073e+01,
       2.00007501e+01, 2.00007501e+01, 2.00007501e+01, 2.00007501e+01,
       1.99896154e+01, 1.99896154e+01, 1.99896154e+01, 1.99896154e+01,
       1.99701656e+01, 1.99701656e+01, 1.99701656e+01, 1.99701656e+01,
       1.99446240e+01, 1.99446240e+01, 1.99446240e+01, 1.99446240e+01,
       1.99208683e+01, 1.99208683e+01, 1.99208683e+01, 1.99208683e+01,
       1.98989526e+01, 1.98989526e+01, 1.98989526e+01, 1.98989526e+01,
       1.98779645e+01, 1.98779645e+01, 1.98779645e+01, 1.98779645e+01,
       1.98568827e+01, 1.98568827e+01, 1.98568827e+01, 1.98568827e+01,
       1.98394425e+01, 1.98394425e+01, 1.98394425e+01, 1.98394425e+01,
       1.98253039e+01, 1.98253039e+01, 1.98253039e+01, 1.98253039e+01,
       1.97798791e+01, 1.97798791e+01, 1.97798791e+01, 1.97798791e+01,
       1.95773152e+01, 1.95773152e+01, 1.95773152e+01, 1.95773152e+01,
       1.86462995e+01, 1.86462995e+01, 1.86462995e+01, 1.86462995e+01,
       1.49605093e+01, 1.49605093e+01, 1.49605093e+01, 1.49605093e+01,
       5.66403104e+00, 5.66403104e+00, 5.66403104e+00, 5.66403104e+00,
       2.39671368e-01, 2.39671368e-01, 2.39671368e-01, 2.39671368e-01,
       8.33807575e-04, 8.33807575e-04, 8.33807575e-04, 8.33807575e-04,
       1.88954541e-07, 1.88954541e-07, 1.88954541e-07, 1.88954541e-07,
       2.94104736e-11, 2.94104736e-11, 2.94104736e-11, 2.94104736e-11,
       4.70101359e-15, 4.70101359e-15, 4.70101359e-15, 4.70101359e-15,
       7.41275834e-19, 7.41275834e-19, 7.41275834e-19, 7.41275834e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99944497e+02, 9.99944497e+02, 9.99944497e+02, 9.99944497e+02,
       9.99824671e+02, 9.99824671e+02, 9.99824671e+02, 9.99824671e+02,
       9.99555901e+02, 9.99555901e+02, 9.99555901e+02, 9.99555901e+02,
       9.98927969e+02, 9.98927969e+02, 9.98927969e+02, 9.98927969e+02,
       9.97575760e+02, 9.97575760e+02, 9.97575760e+02, 9.97575760e+02,
       9.94874250e+02, 9.94874250e+02, 9.94874250e+02, 9.94874250e+02,
       9.89895755e+02, 9.89895755e+02, 9.89895755e+02, 9.89895755e+02,
       9.81464823e+02, 9.81464823e+02, 9.81464823e+02, 9.81464823e+02,
       9.68372978e+02, 9.68372978e+02, 9.68372978e+02, 9.68372978e+02,
       9.49721618e+02, 9.49721618e+02, 9.49721618e+02, 9.49721618e+02,
       9.25246848e+02, 9.25246848e+02, 9.25246848e+02, 9.25246848e+02,
       8.95440766e+02, 8.95440766e+02, 8.95440766e+02, 8.95440766e+02,
       8.61389674e+02, 8.61389674e+02, 8.61389674e+02, 8.61389674e+02,
       8.24419634e+02, 8.24419634e+02, 8.24419634e+02, 8.24419634e+02,
       7.85711897e+02, 7.85711897e+02, 7.85711897e+02, 7.85711897e+02,
       7.46248517e+02, 7.46248517e+02, 7.46248517e+02, 7.46248517e+02,
       7.07596025e+02, 7.07596025e+02, 7.07596025e+02, 7.07596025e+02,
       6.70801074e+02, 6.70801074e+02, 6.70801074e+02, 6.70801074e+02,
       6.35877624e+02, 6.35877624e+02, 6.35877624e+02, 6.35877624e+02,
       6.02787079e+02, 6.02787079e+02, 6.02787079e+02, 6.02787079e+02,
       5.71599803e+02, 5.71599803e+02, 5.71599803e+02, 5.71599803e+02,
       5.42561321e+02, 5.42561321e+02, 5.42561321e+02, 5.42561321e+02,
       5.16114337e+02, 5.16114337e+02, 5.16114337e+02, 5.16114337e+02,
       4.93068680e+02, 4.93068680e+02, 4.93068680e+02, 4.93068680e+02,
       4.74411379e+02, 4.74411379e+02, 4.74411379e+02, 4.74411379e+02,
       4.61084454e+02, 4.61084454e+02, 4.61084454e+02, 4.61084454e+02,
       4.53401496e+02, 4.53401496e+02, 4.53401496e+02, 4.53401496e+02,
       4.50361189e+02, 4.50361189e+02, 4.50361189e+02, 4.50361189e+02,
       4.49900506e+02, 4.49900506e+02, 4.49900506e+02, 4.49900506e+02,
       4.51070680e+02, 4.51070680e+02, 4.51070680e+02, 4.51070680e+02,
       4.52380461e+02, 4.52380461e+02, 4.52380461e+02, 4.52380461e+02,
       4.52845112e+02, 4.52845112e+02, 4.52845112e+02, 4.52845112e+02,
       4.53055158e+02, 4.53055158e+02, 4.53055158e+02, 4.53055158e+02,
       4.53218903e+02, 4.53218903e+02, 4.53218903e+02, 4.53218903e+02,
       4.53431056e+02, 4.53431056e+02, 4.53431056e+02, 4.53431056e+02,
       4.53786396e+02, 4.53786396e+02, 4.53786396e+02, 4.53786396e+02,
       4.54248310e+02, 4.54248310e+02, 4.54248310e+02, 4.54248310e+02,
       4.54702361e+02, 4.54702361e+02, 4.54702361e+02, 4.54702361e+02,
       4.55162009e+02, 4.55162009e+02, 4.55162009e+02, 4.55162009e+02,
       4.55624655e+02, 4.55624655e+02, 4.55624655e+02, 4.55624655e+02,
       4.56025036e+02, 4.56025036e+02, 4.56025036e+02, 4.56025036e+02,
       4.56514938e+02, 4.56514938e+02, 4.56514938e+02, 4.56514938e+02,
       4.57215307e+02, 4.57215307e+02, 4.57215307e+02, 4.57215307e+02,
       4.56862932e+02, 4.56862932e+02, 4.56862932e+02, 4.56862932e+02,
       4.48795942e+02, 4.48795942e+02, 4.48795942e+02, 4.48795942e+02,
       4.03414163e+02, 4.03414163e+02, 4.03414163e+02, 4.03414163e+02,
       2.46087022e+02, 2.46087022e+02, 2.46087022e+02, 2.46087022e+02,
       4.07741358e+01, 4.07741358e+01, 4.07741358e+01, 4.07741358e+01,
       5.40974800e-01, 5.40974800e-01, 5.40974800e-01, 5.40974800e-01,
       1.02032471e-02, 1.02032471e-02, 1.02032471e-02, 1.02032471e-02,
       1.00000224e-02, 1.00000224e-02, 1.00000224e-02, 1.00000224e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99991158, 0.99991158, 0.99991158, 0.99991158, 0.99973526,
       0.99973526, 0.99973526, 0.99973526, 0.99936862, 0.99936862,
       0.99936862, 0.99936862, 0.9985633 , 0.9985633 , 0.9985633 ,
       0.9985633 , 0.99694101, 0.99694101, 0.99694101, 0.99694101,
       0.99391234, 0.99391234, 0.99391234, 0.99391234, 0.9887    ,
       0.9887    , 0.9887    , 0.9887    , 0.98044802, 0.98044802,
       0.98044802, 0.98044802, 0.968429  , 0.968429  , 0.968429  ,
       0.968429  , 0.95227242, 0.95227242, 0.95227242, 0.95227242,
       0.93209641, 0.93209641, 0.93209641, 0.93209641, 0.90846461,
       0.90846461, 0.90846461, 0.90846461, 0.88219172, 0.88219172,
       0.88219172, 0.88219172, 0.8540954 , 0.8540954 , 0.8540954 ,
       0.8540954 , 0.82480124, 0.82480124, 0.82480124, 0.82480124,
       0.7952339 , 0.7952339 , 0.7952339 , 0.7952339 , 0.7663955 ,
       0.7663955 , 0.7663955 , 0.7663955 , 0.73852584, 0.73852584,
       0.73852584, 0.73852584, 0.71164018, 0.71164018, 0.71164018,
       0.71164018, 0.6857697 , 0.6857697 , 0.6857697 , 0.6857697 ,
       0.66111252, 0.66111252, 0.66111252, 0.66111252, 0.63763059,
       0.63763059, 0.63763059, 0.63763059, 0.6169687 , 0.6169687 ,
       0.6169687 , 0.6169687 , 0.59702916, 0.59702916, 0.59702916,
       0.59702916, 0.58420196, 0.58420196, 0.58420196, 0.58420196,
       0.57229985, 0.57229985, 0.57229985, 0.57229985, 0.56689435,
       0.56689435, 0.56689435, 0.56689435, 0.56582645, 0.56582645,
       0.56582645, 0.56582645, 0.56516822, 0.56516822, 0.56516822,
       0.56516822, 0.56616647, 0.56616647, 0.56616647, 0.56616647,
       0.56702185, 0.56702185, 0.56702185, 0.56702185, 0.56762457,
       0.56762457, 0.56762457, 0.56762457, 0.56765827, 0.56765827,
       0.56765827, 0.56765827, 0.56756729, 0.56756729, 0.56756729,
       0.56756729, 0.56761051, 0.56761051, 0.56761051, 0.56761051,
       0.56786939, 0.56786939, 0.56786939, 0.56786939, 0.56835266,
       0.56835266, 0.56835266, 0.56835266, 0.5696172 , 0.5696172 ,
       0.5696172 , 0.5696172 , 0.57503406, 0.57503406, 0.57503406,
       0.57503406, 0.59623637, 0.59623637, 0.59623637, 0.59623637,
       0.66403011, 0.66403011, 0.66403011, 0.66403011, 0.84354865,
       0.84354865, 0.84354865, 0.84354865, 1.24434905, 1.24434905,
       1.24434905, 1.24434905, 2.00424343, 2.00424343, 2.00424343,
       2.00424343, 3.13960403, 3.13960403, 3.13960403, 3.13960403,
       3.85414213, 3.85414213, 3.85414213, 3.85414213, 3.84786708,
       3.84786708, 3.84786708, 3.84786708, 2.5771983 , 2.5771983 ,
       2.5771983 , 2.5771983 , 1.18896322, 1.18896322, 1.18896322,
       1.18896322, 1.01065342, 1.01065342, 1.01065342, 1.01065342,
       1.00008186, 1.00008186, 1.00008186, 1.00008186, 1.00000002,
       1.00000002, 1.00000002, 1.00000002, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.30857813e-03, 3.30857813e-03, 3.30857813e-03, 3.30857813e-03,
       9.90650995e-03, 9.90650995e-03, 9.90650995e-03, 9.90650995e-03,
       2.36295980e-02, 2.36295980e-02, 2.36295980e-02, 2.36295980e-02,
       5.37860149e-02, 5.37860149e-02, 5.37860149e-02, 5.37860149e-02,
       1.14592327e-01, 1.14592327e-01, 1.14592327e-01, 1.14592327e-01,
       2.28324216e-01, 2.28324216e-01, 2.28324216e-01, 2.28324216e-01,
       4.24711771e-01, 4.24711771e-01, 4.24711771e-01, 4.24711771e-01,
       7.37353653e-01, 7.37353653e-01, 7.37353653e-01, 7.37353653e-01,
       1.19658658e+00, 1.19658658e+00, 1.19658658e+00, 1.19658658e+00,
       1.82130732e+00, 1.82130732e+00, 1.82130732e+00, 1.82130732e+00,
       2.61367668e+00, 2.61367668e+00, 2.61367668e+00, 2.61367668e+00,
       3.55960001e+00, 3.55960001e+00, 3.55960001e+00, 3.55960001e+00,
       4.63473086e+00, 4.63473086e+00, 4.63473086e+00, 4.63473086e+00,
       5.81317888e+00, 5.81317888e+00, 5.81317888e+00, 5.81317888e+00,
       7.07525107e+00, 7.07525107e+00, 7.07525107e+00, 7.07525107e+00,
       8.37802334e+00, 8.37802334e+00, 8.37802334e+00, 8.37802334e+00,
       9.69020641e+00, 9.69020641e+00, 9.69020641e+00, 9.69020641e+00,
       1.09986461e+01, 1.09986461e+01, 1.09986461e+01, 1.09986461e+01,
       1.22993392e+01, 1.22993392e+01, 1.22993392e+01, 1.22993392e+01,
       1.35884048e+01, 1.35884048e+01, 1.35884048e+01, 1.35884048e+01,
       1.48563893e+01, 1.48563893e+01, 1.48563893e+01, 1.48563893e+01,
       1.60857753e+01, 1.60857753e+01, 1.60857753e+01, 1.60857753e+01,
       1.72423634e+01, 1.72423634e+01, 1.72423634e+01, 1.72423634e+01,
       1.82765856e+01, 1.82765856e+01, 1.82765856e+01, 1.82765856e+01,
       1.91204857e+01, 1.91204857e+01, 1.91204857e+01, 1.91204857e+01,
       1.97147730e+01, 1.97147730e+01, 1.97147730e+01, 1.97147730e+01,
       2.00413906e+01, 2.00413906e+01, 2.00413906e+01, 2.00413906e+01,
       2.01574495e+01, 2.01574495e+01, 2.01574495e+01, 2.01574495e+01,
       2.01659188e+01, 2.01659188e+01, 2.01659188e+01, 2.01659188e+01,
       2.00925092e+01, 2.00925092e+01, 2.00925092e+01, 2.00925092e+01,
       2.00365890e+01, 2.00365890e+01, 2.00365890e+01, 2.00365890e+01,
       2.00158066e+01, 2.00158066e+01, 2.00158066e+01, 2.00158066e+01,
       2.00060951e+01, 2.00060951e+01, 2.00060951e+01, 2.00060951e+01,
       1.99977273e+01, 1.99977273e+01, 1.99977273e+01, 1.99977273e+01,
       1.99853901e+01, 1.99853901e+01, 1.99853901e+01, 1.99853901e+01,
       1.99645055e+01, 1.99645055e+01, 1.99645055e+01, 1.99645055e+01,
       1.99389693e+01, 1.99389693e+01, 1.99389693e+01, 1.99389693e+01,
       1.99147513e+01, 1.99147513e+01, 1.99147513e+01, 1.99147513e+01,
       1.98919906e+01, 1.98919906e+01, 1.98919906e+01, 1.98919906e+01,
       1.98717727e+01, 1.98717727e+01, 1.98717727e+01, 1.98717727e+01,
       1.98525425e+01, 1.98525425e+01, 1.98525425e+01, 1.98525425e+01,
       1.98340626e+01, 1.98340626e+01, 1.98340626e+01, 1.98340626e+01,
       1.98228656e+01, 1.98228656e+01, 1.98228656e+01, 1.98228656e+01,
       1.97973138e+01, 1.97973138e+01, 1.97973138e+01, 1.97973138e+01,
       1.96970829e+01, 1.96970829e+01, 1.96970829e+01, 1.96970829e+01,
       1.92311319e+01, 1.92311319e+01, 1.92311319e+01, 1.92311319e+01,
       1.72194921e+01, 1.72194921e+01, 1.72194921e+01, 1.72194921e+01,
       1.05940203e+01, 1.05940203e+01, 1.05940203e+01, 1.05940203e+01,
       1.33734950e+00, 1.33734950e+00, 1.33734950e+00, 1.33734950e+00,
       1.58314232e-02, 1.58314232e-02, 1.58314232e-02, 1.58314232e-02,
       1.13008501e-05, 1.13008501e-05, 1.13008501e-05, 1.13008501e-05,
       1.78142403e-09, 1.78142403e-09, 1.78142403e-09, 1.78142403e-09,
       2.75475972e-13, 2.75475972e-13, 2.75475972e-13, 2.75475972e-13,
       4.22869040e-17, 4.22869040e-17, 4.22869040e-17, 4.22869040e-17,
       4.15971299e-21, 4.15971299e-21, 4.15971299e-21, 4.15971299e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99876214e+02, 9.99876214e+02, 9.99876214e+02, 9.99876214e+02,
       9.99629396e+02, 9.99629396e+02, 9.99629396e+02, 9.99629396e+02,
       9.99116221e+02, 9.99116221e+02, 9.99116221e+02, 9.99116221e+02,
       9.97989363e+02, 9.97989363e+02, 9.97989363e+02, 9.97989363e+02,
       9.95720692e+02, 9.95720692e+02, 9.95720692e+02, 9.95720692e+02,
       9.91489781e+02, 9.91489781e+02, 9.91489781e+02, 9.91489781e+02,
       9.84221698e+02, 9.84221698e+02, 9.84221698e+02, 9.84221698e+02,
       9.72748451e+02, 9.72748451e+02, 9.72748451e+02, 9.72748451e+02,
       9.56108956e+02, 9.56108956e+02, 9.56108956e+02, 9.56108956e+02,
       9.33872727e+02, 9.33872727e+02, 9.33872727e+02, 9.33872727e+02,
       9.06315492e+02, 9.06315492e+02, 9.06315492e+02, 9.06315492e+02,
       8.74337896e+02, 8.74337896e+02, 8.74337896e+02, 8.74337896e+02,
       8.39171349e+02, 8.39171349e+02, 8.39171349e+02, 8.39171349e+02,
       8.02021280e+02, 8.02021280e+02, 8.02021280e+02, 8.02021280e+02,
       7.63802020e+02, 7.63802020e+02, 7.63802020e+02, 7.63802020e+02,
       7.25718152e+02, 7.25718152e+02, 7.25718152e+02, 7.25718152e+02,
       6.89144129e+02, 6.89144129e+02, 6.89144129e+02, 6.89144129e+02,
       6.54324851e+02, 6.54324851e+02, 6.54324851e+02, 6.54324851e+02,
       6.21229262e+02, 6.21229262e+02, 6.21229262e+02, 6.21229262e+02,
       5.89863923e+02, 5.89863923e+02, 5.89863923e+02, 5.89863923e+02,
       5.60333915e+02, 5.60333915e+02, 5.60333915e+02, 5.60333915e+02,
       5.32945780e+02, 5.32945780e+02, 5.32945780e+02, 5.32945780e+02,
       5.08201682e+02, 5.08201682e+02, 5.08201682e+02, 5.08201682e+02,
       4.86948766e+02, 4.86948766e+02, 4.86948766e+02, 4.86948766e+02,
       4.70169922e+02, 4.70169922e+02, 4.70169922e+02, 4.70169922e+02,
       4.58655322e+02, 4.58655322e+02, 4.58655322e+02, 4.58655322e+02,
       4.52421155e+02, 4.52421155e+02, 4.52421155e+02, 4.52421155e+02,
       4.50227207e+02, 4.50227207e+02, 4.50227207e+02, 4.50227207e+02,
       4.50078663e+02, 4.50078663e+02, 4.50078663e+02, 4.50078663e+02,
       4.51471203e+02, 4.51471203e+02, 4.51471203e+02, 4.51471203e+02,
       4.52529169e+02, 4.52529169e+02, 4.52529169e+02, 4.52529169e+02,
       4.52901471e+02, 4.52901471e+02, 4.52901471e+02, 4.52901471e+02,
       4.53088208e+02, 4.53088208e+02, 4.53088208e+02, 4.53088208e+02,
       4.53261283e+02, 4.53261283e+02, 4.53261283e+02, 4.53261283e+02,
       4.53508024e+02, 4.53508024e+02, 4.53508024e+02, 4.53508024e+02,
       4.53907221e+02, 4.53907221e+02, 4.53907221e+02, 4.53907221e+02,
       4.54378816e+02, 4.54378816e+02, 4.54378816e+02, 4.54378816e+02,
       4.54816020e+02, 4.54816020e+02, 4.54816020e+02, 4.54816020e+02,
       4.55254101e+02, 4.55254101e+02, 4.55254101e+02, 4.55254101e+02,
       4.55702968e+02, 4.55702968e+02, 4.55702968e+02, 4.55702968e+02,
       4.56112277e+02, 4.56112277e+02, 4.56112277e+02, 4.56112277e+02,
       4.56533652e+02, 4.56533652e+02, 4.56533652e+02, 4.56533652e+02,
       4.57147821e+02, 4.57147821e+02, 4.57147821e+02, 4.57147821e+02,
       4.57487722e+02, 4.57487722e+02, 4.57487722e+02, 4.57487722e+02,
       4.54489765e+02, 4.54489765e+02, 4.54489765e+02, 4.54489765e+02,
       4.32367414e+02, 4.32367414e+02, 4.32367414e+02, 4.32367414e+02,
       3.36891352e+02, 3.36891352e+02, 3.36891352e+02, 3.36891352e+02,
       1.20082128e+02, 1.20082128e+02, 1.20082128e+02, 1.20082128e+02,
       5.54711825e+00, 5.54711825e+00, 5.54711825e+00, 5.54711825e+00,
       2.19907181e-02, 2.19907181e-02, 2.19907181e-02, 2.19907181e-02,
       1.00013363e-02, 1.00013363e-02, 1.00013363e-02, 1.00013363e-02,
       1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99981351, 0.99981351, 0.99981351, 0.99981351, 0.99947054,
       0.99947054, 0.99947054, 0.99947054, 0.9988105 , 0.9988105 ,
       0.9988105 , 0.9988105 , 0.99744661, 0.99744661, 0.99744661,
       0.99744661, 0.99487737, 0.99487737, 0.99487737, 0.99487737,
       0.99039499, 0.99039499, 0.99039499, 0.99039499, 0.98318849,
       0.98318849, 0.98318849, 0.98318849, 0.97251404, 0.97251404,
       0.97251404, 0.97251404, 0.95791416, 0.95791416, 0.95791416,
       0.95791416, 0.9393737 , 0.9393737 , 0.9393737 , 0.9393737 ,
       0.91732519, 0.91732519, 0.91732519, 0.91732519, 0.8924994 ,
       0.8924994 , 0.8924994 , 0.8924994 , 0.86569902, 0.86569902,
       0.86569902, 0.86569902, 0.83758007, 0.83758007, 0.83758007,
       0.83758007, 0.80880936, 0.80880936, 0.80880936, 0.80880936,
       0.78041711, 0.78041711, 0.78041711, 0.78041711, 0.75287396,
       0.75287396, 0.75287396, 0.75287396, 0.7262632 , 0.7262632 ,
       0.7262632 , 0.7262632 , 0.70056925, 0.70056925, 0.70056925,
       0.70056925, 0.67584993, 0.67584993, 0.67584993, 0.67584993,
       0.65238615, 0.65238615, 0.65238615, 0.65238615, 0.63003424,
       0.63003424, 0.63003424, 0.63003424, 0.61084192, 0.61084192,
       0.61084192, 0.61084192, 0.59222361, 0.59222361, 0.59222361,
       0.59222361, 0.58082307, 0.58082307, 0.58082307, 0.58082307,
       0.57084769, 0.57084769, 0.57084769, 0.57084769, 0.56609991,
       0.56609991, 0.56609991, 0.56609991, 0.56568386, 0.56568386,
       0.56568386, 0.56568386, 0.56548787, 0.56548787, 0.56548787,
       0.56548787, 0.56657134, 0.56657134, 0.56657134, 0.56657134,
       0.56710969, 0.56710969, 0.56710969, 0.56710969, 0.56763591,
       0.56763591, 0.56763591, 0.56763591, 0.56774535, 0.56774535,
       0.56774535, 0.56774535, 0.56770037, 0.56770037, 0.56770037,
       0.56770037, 0.56775753, 0.56775753, 0.56775753, 0.56775753,
       0.568006  , 0.568006  , 0.568006  , 0.568006  , 0.56842167,
       0.56842167, 0.56842167, 0.56842167, 0.56933391, 0.56933391,
       0.56933391, 0.56933391, 0.57288369, 0.57288369, 0.57288369,
       0.57288369, 0.58706794, 0.58706794, 0.58706794, 0.58706794,
       0.6343945 , 0.6343945 , 0.6343945 , 0.6343945 , 0.76532497,
       0.76532497, 0.76532497, 0.76532497, 1.0710979 , 1.0710979 ,
       1.0710979 , 1.0710979 , 1.67993717, 1.67993717, 1.67993717,
       1.67993717, 2.70591502, 2.70591502, 2.70591502, 2.70591502,
       3.70007988, 3.70007988, 3.70007988, 3.70007988, 3.98442962,
       3.98442962, 3.98442962, 3.98442962, 3.39924656, 3.39924656,
       3.39924656, 3.39924656, 1.61726694, 1.61726694, 1.61726694,
       1.61726694, 1.04481323, 1.04481323, 1.04481323, 1.04481323,
       1.00129504, 1.00129504, 1.00129504, 1.00129504, 1.00000081,
       1.00000081, 1.00000081, 1.00000081, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([6.97829163e-03, 6.97829163e-03, 6.97829163e-03, 6.97829163e-03,
       1.98144360e-02, 1.98144360e-02, 1.98144360e-02, 1.98144360e-02,
       4.45271720e-02, 4.45271720e-02, 4.45271720e-02, 4.45271720e-02,
       9.56332947e-02, 9.56332947e-02, 9.56332947e-02, 9.56332947e-02,
       1.92056185e-01, 1.92056185e-01, 1.92056185e-01, 1.92056185e-01,
       3.60758718e-01, 3.60758718e-01, 3.60758718e-01, 3.60758718e-01,
       6.33292020e-01, 6.33292020e-01, 6.33292020e-01, 6.33292020e-01,
       1.03998760e+00, 1.03998760e+00, 1.03998760e+00, 1.03998760e+00,
       1.60218999e+00, 1.60218999e+00, 1.60218999e+00, 1.60218999e+00,
       2.32628483e+00, 2.32628483e+00, 2.32628483e+00, 2.32628483e+00,
       3.20261012e+00, 3.20261012e+00, 3.20261012e+00, 3.20261012e+00,
       4.20983812e+00, 4.20983812e+00, 4.20983812e+00, 4.20983812e+00,
       5.32266284e+00, 5.32266284e+00, 5.32266284e+00, 5.32266284e+00,
       6.52018139e+00, 6.52018139e+00, 6.52018139e+00, 6.52018139e+00,
       7.77578750e+00, 7.77578750e+00, 7.77578750e+00, 7.77578750e+00,
       9.04696669e+00, 9.04696669e+00, 9.04696669e+00, 9.04696669e+00,
       1.03198134e+01, 1.03198134e+01, 1.03198134e+01, 1.03198134e+01,
       1.15876099e+01, 1.15876099e+01, 1.15876099e+01, 1.15876099e+01,
       1.28468639e+01, 1.28468639e+01, 1.28468639e+01, 1.28468639e+01,
       1.40930929e+01, 1.40930929e+01, 1.40930929e+01, 1.40930929e+01,
       1.53148719e+01, 1.53148719e+01, 1.53148719e+01, 1.53148719e+01,
       1.64919282e+01, 1.64919282e+01, 1.64919282e+01, 1.64919282e+01,
       1.75867321e+01, 1.75867321e+01, 1.75867321e+01, 1.75867321e+01,
       1.85470262e+01, 1.85470262e+01, 1.85470262e+01, 1.85470262e+01,
       1.93069541e+01, 1.93069541e+01, 1.93069541e+01, 1.93069541e+01,
       1.98179609e+01, 1.98179609e+01, 1.98179609e+01, 1.98179609e+01,
       2.00793284e+01, 2.00793284e+01, 2.00793284e+01, 2.00793284e+01,
       2.01586176e+01, 2.01586176e+01, 2.01586176e+01, 2.01586176e+01,
       2.01524831e+01, 2.01524831e+01, 2.01524831e+01, 2.01524831e+01,
       2.00752058e+01, 2.00752058e+01, 2.00752058e+01, 2.00752058e+01,
       2.00307498e+01, 2.00307498e+01, 2.00307498e+01, 2.00307498e+01,
       2.00136099e+01, 2.00136099e+01, 2.00136099e+01, 2.00136099e+01,
       2.00037603e+01, 2.00037603e+01, 2.00037603e+01, 2.00037603e+01,
       1.99945192e+01, 1.99945192e+01, 1.99945192e+01, 1.99945192e+01,
       1.99804496e+01, 1.99804496e+01, 1.99804496e+01, 1.99804496e+01,
       1.99580977e+01, 1.99580977e+01, 1.99580977e+01, 1.99580977e+01,
       1.99332124e+01, 1.99332124e+01, 1.99332124e+01, 1.99332124e+01,
       1.99091877e+01, 1.99091877e+01, 1.99091877e+01, 1.99091877e+01,
       1.98860108e+01, 1.98860108e+01, 1.98860108e+01, 1.98860108e+01,
       1.98654280e+01, 1.98654280e+01, 1.98654280e+01, 1.98654280e+01,
       1.98471370e+01, 1.98471370e+01, 1.98471370e+01, 1.98471370e+01,
       1.98298574e+01, 1.98298574e+01, 1.98298574e+01, 1.98298574e+01,
       1.98171370e+01, 1.98171370e+01, 1.98171370e+01, 1.98171370e+01,
       1.98030159e+01, 1.98030159e+01, 1.98030159e+01, 1.98030159e+01,
       1.97516465e+01, 1.97516465e+01, 1.97516465e+01, 1.97516465e+01,
       1.95204012e+01, 1.95204012e+01, 1.95204012e+01, 1.95204012e+01,
       1.84745602e+01, 1.84745602e+01, 1.84745602e+01, 1.84745602e+01,
       1.44416174e+01, 1.44416174e+01, 1.44416174e+01, 1.44416174e+01,
       4.87006574e+00, 4.87006574e+00, 4.87006574e+00, 4.87006574e+00,
       1.70878215e-01, 1.70878215e-01, 1.70878215e-01, 1.70878215e-01,
       4.74222438e-04, 4.74222438e-04, 4.74222438e-04, 4.74222438e-04,
       9.62797091e-08, 9.62797091e-08, 9.62797091e-08, 9.62797091e-08,
       1.54134491e-11, 1.54134491e-11, 1.54134491e-11, 1.54134491e-11,
       2.48678570e-15, 2.48678570e-15, 2.48678570e-15, 2.48678570e-15,
       3.95125006e-19, 3.95125006e-19, 3.95125006e-19, 3.95125006e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99738937e+02, 9.99738937e+02, 9.99738937e+02, 9.99738937e+02,
       9.99258865e+02, 9.99258865e+02, 9.99258865e+02, 9.99258865e+02,
       9.98335213e+02, 9.98335213e+02, 9.98335213e+02, 9.98335213e+02,
       9.96427546e+02, 9.96427546e+02, 9.96427546e+02, 9.96427546e+02,
       9.92837210e+02, 9.92837210e+02, 9.92837210e+02, 9.92837210e+02,
       9.86583249e+02, 9.86583249e+02, 9.86583249e+02, 9.86583249e+02,
       9.76553906e+02, 9.76553906e+02, 9.76553906e+02, 9.76553906e+02,
       9.61754277e+02, 9.61754277e+02, 9.61754277e+02, 9.61754277e+02,
       9.41618962e+02, 9.41618962e+02, 9.41618962e+02, 9.41618962e+02,
       9.16225667e+02, 9.16225667e+02, 9.16225667e+02, 9.16225667e+02,
       8.86285914e+02, 8.86285914e+02, 8.86285914e+02, 8.86285914e+02,
       8.52914522e+02, 8.52914522e+02, 8.52914522e+02, 8.52914522e+02,
       8.17299685e+02, 8.17299685e+02, 8.17299685e+02, 8.17299685e+02,
       7.80401265e+02, 7.80401265e+02, 7.80401265e+02, 7.80401265e+02,
       7.43128313e+02, 7.43128313e+02, 7.43128313e+02, 7.43128313e+02,
       7.06850048e+02, 7.06850048e+02, 7.06850048e+02, 7.06850048e+02,
       6.72179206e+02, 6.72179206e+02, 6.72179206e+02, 6.72179206e+02,
       6.39161893e+02, 6.39161893e+02, 6.39161893e+02, 6.39161893e+02,
       6.07736695e+02, 6.07736695e+02, 6.07736695e+02, 6.07736695e+02,
       5.77958609e+02, 5.77958609e+02, 5.77958609e+02, 5.77958609e+02,
       5.49975461e+02, 5.49975461e+02, 5.49975461e+02, 5.49975461e+02,
       5.24148628e+02, 5.24148628e+02, 5.24148628e+02, 5.24148628e+02,
       5.01038900e+02, 5.01038900e+02, 5.01038900e+02, 5.01038900e+02,
       4.81516564e+02, 4.81516564e+02, 4.81516564e+02, 4.81516564e+02,
       4.66526226e+02, 4.66526226e+02, 4.66526226e+02, 4.66526226e+02,
       4.56679419e+02, 4.56679419e+02, 4.56679419e+02, 4.56679419e+02,
       4.51709116e+02, 4.51709116e+02, 4.51709116e+02, 4.51709116e+02,
       4.50204516e+02, 4.50204516e+02, 4.50204516e+02, 4.50204516e+02,
       4.50323474e+02, 4.50323474e+02, 4.50323474e+02, 4.50323474e+02,
       4.51792099e+02, 4.51792099e+02, 4.51792099e+02, 4.51792099e+02,
       4.52644533e+02, 4.52644533e+02, 4.52644533e+02, 4.52644533e+02,
       4.52957374e+02, 4.52957374e+02, 4.52957374e+02, 4.52957374e+02,
       4.53131411e+02, 4.53131411e+02, 4.53131411e+02, 4.53131411e+02,
       4.53310711e+02, 4.53310711e+02, 4.53310711e+02, 4.53310711e+02,
       4.53588206e+02, 4.53588206e+02, 4.53588206e+02, 4.53588206e+02,
       4.54024216e+02, 4.54024216e+02, 4.54024216e+02, 4.54024216e+02,
       4.54505579e+02, 4.54505579e+02, 4.54505579e+02, 4.54505579e+02,
       4.54941322e+02, 4.54941322e+02, 4.54941322e+02, 4.54941322e+02,
       4.55358316e+02, 4.55358316e+02, 4.55358316e+02, 4.55358316e+02,
       4.55776216e+02, 4.55776216e+02, 4.55776216e+02, 4.55776216e+02,
       4.56187451e+02, 4.56187451e+02, 4.56187451e+02, 4.56187451e+02,
       4.56567868e+02, 4.56567868e+02, 4.56567868e+02, 4.56567868e+02,
       4.57061252e+02, 4.57061252e+02, 4.57061252e+02, 4.57061252e+02,
       4.57670049e+02, 4.57670049e+02, 4.57670049e+02, 4.57670049e+02,
       4.56861977e+02, 4.56861977e+02, 4.56861977e+02, 4.56861977e+02,
       4.46897134e+02, 4.46897134e+02, 4.46897134e+02, 4.46897134e+02,
       3.95213842e+02, 3.95213842e+02, 3.95213842e+02, 3.95213842e+02,
       2.27017462e+02, 2.27017462e+02, 2.27017462e+02, 2.27017462e+02,
       3.24722316e+01, 3.24722316e+01, 3.24722316e+01, 3.24722316e+01,
       3.44215454e-01, 3.44215454e-01, 3.44215454e-01, 3.44215454e-01,
       1.00956522e-02, 1.00956522e-02, 1.00956522e-02, 1.00956522e-02,
       1.00000114e-02, 1.00000114e-02, 1.00000114e-02, 1.00000114e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99962715, 0.99962715, 0.99962715, 0.99962715, 0.9989959 ,
       0.9989959 , 0.9989959 , 0.9989959 , 0.99787399, 0.99787399,
       0.99787399, 0.99787399, 0.99569077, 0.99569077, 0.99569077,
       0.99569077, 0.99184415, 0.99184415, 0.99184415, 0.99184415,
       0.98556472, 0.98556472, 0.98556472, 0.98556472, 0.97611065,
       0.97611065, 0.97611065, 0.97611065, 0.96295756, 0.96295756,
       0.96295756, 0.96295756, 0.94597218, 0.94597218, 0.94597218,
       0.94597218, 0.92545827, 0.92545827, 0.92545827, 0.92545827,
       0.90205196, 0.90205196, 0.90205196, 0.90205196, 0.87652198,
       0.87652198, 0.87652198, 0.87652198, 0.84956063, 0.84956063,
       0.84956063, 0.84956063, 0.82170304, 0.82170304, 0.82170304,
       0.82170304, 0.79383738, 0.79383738, 0.79383738, 0.79383738,
       0.76665912, 0.76665912, 0.76665912, 0.76665912, 0.74033691,
       0.74033691, 0.74033691, 0.74033691, 0.71486688, 0.71486688,
       0.71486688, 0.71486688, 0.69028102, 0.69028102, 0.69028102,
       0.69028102, 0.6666371 , 0.6666371 , 0.6666371 , 0.6666371 ,
       0.64432028, 0.64432028, 0.64432028, 0.64432028, 0.62304012,
       0.62304012, 0.62304012, 0.62304012, 0.60528142, 0.60528142,
       0.60528142, 0.60528142, 0.58800675, 0.58800675, 0.58800675,
       0.58800675, 0.5778694 , 0.5778694 , 0.5778694 , 0.5778694 ,
       0.56972246, 0.56972246, 0.56972246, 0.56972246, 0.56560315,
       0.56560315, 0.56560315, 0.56560315, 0.56553233, 0.56553233,
       0.56553233, 0.56553233, 0.56584834, 0.56584834, 0.56584834,
       0.56584834, 0.56690991, 0.56690991, 0.56690991, 0.56690991,
       0.56721384, 0.56721384, 0.56721384, 0.56721384, 0.56762924,
       0.56762924, 0.56762924, 0.56762924, 0.56782241, 0.56782241,
       0.56782241, 0.56782241, 0.56782868, 0.56782868, 0.56782868,
       0.56782868, 0.56791572, 0.56791572, 0.56791572, 0.56791572,
       0.56816164, 0.56816164, 0.56816164, 0.56816164, 0.56851365,
       0.56851365, 0.56851365, 0.56851365, 0.56920152, 0.56920152,
       0.56920152, 0.56920152, 0.57156713, 0.57156713, 0.57156713,
       0.57156713, 0.58101327, 0.58101327, 0.58101327, 0.58101327,
       0.61373599, 0.61373599, 0.61373599, 0.61373599, 0.70822132,
       0.70822132, 0.70822132, 0.70822132, 0.93867528, 0.93867528,
       0.93867528, 0.93867528, 1.41891316, 1.41891316, 1.41891316,
       1.41891316, 2.27525624, 2.27525624, 2.27525624, 2.27525624,
       3.41072177, 3.41072177, 3.41072177, 3.41072177, 3.98667427,
       3.98667427, 3.98667427, 3.98667427, 3.87982047, 3.87982047,
       3.87982047, 3.87982047, 2.43231843, 2.43231843, 2.43231843,
       2.43231843, 1.15615318, 1.15615318, 1.15615318, 1.15615318,
       1.00824283, 1.00824283, 1.00824283, 1.00824283, 1.0000454 ,
       1.0000454 , 1.0000454 , 1.0000454 , 1.00000001, 1.00000001,
       1.00000001, 1.00000001, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.39530183e-02, 1.39530183e-02, 1.39530183e-02, 1.39530183e-02,
       3.75848880e-02, 3.75848880e-02, 3.75848880e-02, 3.75848880e-02,
       7.96128157e-02, 7.96128157e-02, 7.96128157e-02, 7.96128157e-02,
       1.61508250e-01, 1.61508250e-01, 1.61508250e-01, 1.61508250e-01,
       3.06150477e-01, 3.06150477e-01, 3.06150477e-01, 3.06150477e-01,
       5.43251766e-01, 5.43251766e-01, 5.43251766e-01, 5.43251766e-01,
       9.02556002e-01, 9.02556002e-01, 9.02556002e-01, 9.02556002e-01,
       1.40720176e+00, 1.40720176e+00, 1.40720176e+00, 1.40720176e+00,
       2.06726331e+00, 2.06726331e+00, 2.06726331e+00, 2.06726331e+00,
       2.87738380e+00, 2.87738380e+00, 2.87738380e+00, 2.87738380e+00,
       3.81959664e+00, 3.81959664e+00, 3.81959664e+00, 3.81959664e+00,
       4.86989842e+00, 4.86989842e+00, 4.86989842e+00, 4.86989842e+00,
       6.00593747e+00, 6.00593747e+00, 6.00593747e+00, 6.00593747e+00,
       7.20976710e+00, 7.20976710e+00, 7.20976710e+00, 7.20976710e+00,
       8.44013430e+00, 8.44013430e+00, 8.44013430e+00, 8.44013430e+00,
       9.67820971e+00, 9.67820971e+00, 9.67820971e+00, 9.67820971e+00,
       1.09131010e+01, 1.09131010e+01, 1.09131010e+01, 1.09131010e+01,
       1.21419057e+01, 1.21419057e+01, 1.21419057e+01, 1.21419057e+01,
       1.33619281e+01, 1.33619281e+01, 1.33619281e+01, 1.33619281e+01,
       1.45669883e+01, 1.45669883e+01, 1.45669883e+01, 1.45669883e+01,
       1.57435737e+01, 1.57435737e+01, 1.57435737e+01, 1.57435737e+01,
       1.68686020e+01, 1.68686020e+01, 1.68686020e+01, 1.68686020e+01,
       1.79014772e+01, 1.79014772e+01, 1.79014772e+01, 1.79014772e+01,
       1.87882849e+01, 1.87882849e+01, 1.87882849e+01, 1.87882849e+01,
       1.94668837e+01, 1.94668837e+01, 1.94668837e+01, 1.94668837e+01,
       1.99006239e+01, 1.99006239e+01, 1.99006239e+01, 1.99006239e+01,
       2.01050731e+01, 2.01050731e+01, 2.01050731e+01, 2.01050731e+01,
       2.01571544e+01, 2.01571544e+01, 2.01571544e+01, 2.01571544e+01,
       2.01363521e+01, 2.01363521e+01, 2.01363521e+01, 2.01363521e+01,
       2.00613129e+01, 2.00613129e+01, 2.00613129e+01, 2.00613129e+01,
       2.00257473e+01, 2.00257473e+01, 2.00257473e+01, 2.00257473e+01,
       2.00113940e+01, 2.00113940e+01, 2.00113940e+01, 2.00113940e+01,
       2.00016210e+01, 2.00016210e+01, 2.00016210e+01, 2.00016210e+01,
       1.99912688e+01, 1.99912688e+01, 1.99912688e+01, 1.99912688e+01,
       1.99751513e+01, 1.99751513e+01, 1.99751513e+01, 1.99751513e+01,
       1.99512938e+01, 1.99512938e+01, 1.99512938e+01, 1.99512938e+01,
       1.99269046e+01, 1.99269046e+01, 1.99269046e+01, 1.99269046e+01,
       1.99037068e+01, 1.99037068e+01, 1.99037068e+01, 1.99037068e+01,
       1.98807884e+01, 1.98807884e+01, 1.98807884e+01, 1.98807884e+01,
       1.98596458e+01, 1.98596458e+01, 1.98596458e+01, 1.98596458e+01,
       1.98416867e+01, 1.98416867e+01, 1.98416867e+01, 1.98416867e+01,
       1.98257179e+01, 1.98257179e+01, 1.98257179e+01, 1.98257179e+01,
       1.98115993e+01, 1.98115993e+01, 1.98115993e+01, 1.98115993e+01,
       1.98022942e+01, 1.98022942e+01, 1.98022942e+01, 1.98022942e+01,
       1.97745446e+01, 1.97745446e+01, 1.97745446e+01, 1.97745446e+01,
       1.96599658e+01, 1.96599658e+01, 1.96599658e+01, 1.96599658e+01,
       1.91316282e+01, 1.91316282e+01, 1.91316282e+01, 1.91316282e+01,
       1.68989432e+01, 1.68989432e+01, 1.68989432e+01, 1.68989432e+01,
       9.82776433e+00, 9.82776433e+00, 9.82776433e+00, 9.82776433e+00,
       1.03966586e+00, 1.03966586e+00, 1.03966586e+00, 1.03966586e+00,
       1.02686172e-02, 1.02686172e-02, 1.02686172e-02, 1.02686172e-02,
       5.87596530e-06, 5.87596530e-06, 5.87596530e-06, 5.87596530e-06,
       9.09802870e-10, 9.09802870e-10, 9.09802870e-10, 9.09802870e-10,
       1.40162828e-13, 1.40162828e-13, 1.40162828e-13, 1.40162828e-13,
       2.18096263e-17, 2.18096263e-17, 2.18096263e-17, 2.18096263e-17,
       4.14673755e-21, 4.14673755e-21, 4.14673755e-21, 4.14673755e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99478084e+02, 9.99478084e+02, 9.99478084e+02, 9.99478084e+02,
       9.98594612e+02, 9.98594612e+02, 9.98594612e+02, 9.98594612e+02,
       9.97025182e+02, 9.97025182e+02, 9.97025182e+02, 9.97025182e+02,
       9.93973403e+02, 9.93973403e+02, 9.93973403e+02, 9.93973403e+02,
       9.88603735e+02, 9.88603735e+02, 9.88603735e+02, 9.88603735e+02,
       9.79857278e+02, 9.79857278e+02, 9.79857278e+02, 9.79857278e+02,
       9.66732858e+02, 9.66732858e+02, 9.66732858e+02, 9.66732858e+02,
       9.48559568e+02, 9.48559568e+02, 9.48559568e+02, 9.48559568e+02,
       9.25238470e+02, 9.25238470e+02, 9.25238470e+02, 9.25238470e+02,
       8.97294073e+02, 8.97294073e+02, 8.97294073e+02, 8.97294073e+02,
       8.65708163e+02, 8.65708163e+02, 8.65708163e+02, 8.65708163e+02,
       8.31624879e+02, 8.31624879e+02, 8.31624879e+02, 8.31624879e+02,
       7.96056352e+02, 7.96056352e+02, 7.96056352e+02, 7.96056352e+02,
       7.59769847e+02, 7.59769847e+02, 7.59769847e+02, 7.59769847e+02,
       7.23915193e+02, 7.23915193e+02, 7.23915193e+02, 7.23915193e+02,
       6.89464378e+02, 6.89464378e+02, 6.89464378e+02, 6.89464378e+02,
       6.56557931e+02, 6.56557931e+02, 6.56557931e+02, 6.56557931e+02,
       6.25161940e+02, 6.25161940e+02, 6.25161940e+02, 6.25161940e+02,
       5.95273088e+02, 5.95273088e+02, 5.95273088e+02, 5.95273088e+02,
       5.66968750e+02, 5.66968750e+02, 5.66968750e+02, 5.66968750e+02,
       5.40439673e+02, 5.40439673e+02, 5.40439673e+02, 5.40439673e+02,
       5.16100425e+02, 5.16100425e+02, 5.16100425e+02, 5.16100425e+02,
       4.94565963e+02, 4.94565963e+02, 4.94565963e+02, 4.94565963e+02,
       4.76716435e+02, 4.76716435e+02, 4.76716435e+02, 4.76716435e+02,
       4.63423824e+02, 4.63423824e+02, 4.63423824e+02, 4.63423824e+02,
       4.55097958e+02, 4.55097958e+02, 4.55097958e+02, 4.55097958e+02,
       4.51223672e+02, 4.51223672e+02, 4.51223672e+02, 4.51223672e+02,
       4.50235886e+02, 4.50235886e+02, 4.50235886e+02, 4.50235886e+02,
       4.50627214e+02, 4.50627214e+02, 4.50627214e+02, 4.50627214e+02,
       4.52045781e+02, 4.52045781e+02, 4.52045781e+02, 4.52045781e+02,
       4.52733619e+02, 4.52733619e+02, 4.52733619e+02, 4.52733619e+02,
       4.53008677e+02, 4.53008677e+02, 4.53008677e+02, 4.53008677e+02,
       4.53183711e+02, 4.53183711e+02, 4.53183711e+02, 4.53183711e+02,
       4.53371405e+02, 4.53371405e+02, 4.53371405e+02, 4.53371405e+02,
       4.53677995e+02, 4.53677995e+02, 4.53677995e+02, 4.53677995e+02,
       4.54140504e+02, 4.54140504e+02, 4.54140504e+02, 4.54140504e+02,
       4.54621285e+02, 4.54621285e+02, 4.54621285e+02, 4.54621285e+02,
       4.55065003e+02, 4.55065003e+02, 4.55065003e+02, 4.55065003e+02,
       4.55473454e+02, 4.55473454e+02, 4.55473454e+02, 4.55473454e+02,
       4.55862605e+02, 4.55862605e+02, 4.55862605e+02, 4.55862605e+02,
       4.56251236e+02, 4.56251236e+02, 4.56251236e+02, 4.56251236e+02,
       4.56613227e+02, 4.56613227e+02, 4.56613227e+02, 4.56613227e+02,
       4.57031953e+02, 4.57031953e+02, 4.57031953e+02, 4.57031953e+02,
       4.57636572e+02, 4.57636572e+02, 4.57636572e+02, 4.57636572e+02,
       4.57734018e+02, 4.57734018e+02, 4.57734018e+02, 4.57734018e+02,
       4.53736791e+02, 4.53736791e+02, 4.53736791e+02, 4.53736791e+02,
       4.27841681e+02, 4.27841681e+02, 4.27841681e+02, 4.27841681e+02,
       3.22491407e+02, 3.22491407e+02, 3.22491407e+02, 3.22491407e+02,
       1.03503221e+02, 1.03503221e+02, 1.03503221e+02, 1.03503221e+02,
       3.92201766e+00, 3.92201766e+00, 3.92201766e+00, 3.92201766e+00,
       1.65463831e-02, 1.65463831e-02, 1.65463831e-02, 1.65463831e-02,
       1.00006926e-02, 1.00006926e-02, 1.00006926e-02, 1.00006926e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99929182, 0.99929182, 0.99929182, 0.99929182, 0.99819056,
       0.99819056, 0.99819056, 0.99819056, 0.99638774, 0.99638774,
       0.99638774, 0.99638774, 0.99307857, 0.99307857, 0.99307857,
       0.99307857, 0.98762234, 0.98762234, 0.98762234, 0.98762234,
       0.97927076, 0.97927076, 0.97927076, 0.97927076, 0.96745681,
       0.96745681, 0.96745681, 0.96745681, 0.95194398, 0.95194398,
       0.95194398, 0.95194398, 0.93291304, 0.93291304, 0.93291304,
       0.93291304, 0.91089851, 0.91089851, 0.91089851, 0.91089851,
       0.88661886, 0.88661886, 0.88661886, 0.88661886, 0.86077838,
       0.86077838, 0.86077838, 0.86077838, 0.83390834, 0.83390834,
       0.83390834, 0.83390834, 0.80667351, 0.80667351, 0.80667351,
       0.80667351, 0.77989973, 0.77989973, 0.77989973, 0.77989973,
       0.75387045, 0.75387045, 0.75387045, 0.75387045, 0.72866226,
       0.72866226, 0.72866226, 0.72866226, 0.70425431, 0.70425431,
       0.70425431, 0.70425431, 0.68070198, 0.68070198, 0.68070198,
       0.68070198, 0.65806701, 0.65806701, 0.65806701, 0.65806701,
       0.63686275, 0.63686275, 0.63686275, 0.63686275, 0.61660877,
       0.61660877, 0.61660877, 0.61660877, 0.60023979, 0.60023979,
       0.60023979, 0.60023979, 0.58434031, 0.58434031, 0.58434031,
       0.58434031, 0.57531196, 0.57531196, 0.57531196, 0.57531196,
       0.56885665, 0.56885665, 0.56885665, 0.56885665, 0.56535251,
       0.56535251, 0.56535251, 0.56535251, 0.56542652, 0.56542652,
       0.56542652, 0.56542652, 0.56613675, 0.56613675, 0.56613675,
       0.56613675, 0.56722021, 0.56722021, 0.56722021, 0.56722021,
       0.56734999, 0.56734999, 0.56734999, 0.56734999, 0.56761109,
       0.56761109, 0.56761109, 0.56761109, 0.56787835, 0.56787835,
       0.56787835, 0.56787835, 0.56795177, 0.56795177, 0.56795177,
       0.56795177, 0.56808491, 0.56808491, 0.56808491, 0.56808491,
       0.56833262, 0.56833262, 0.56833262, 0.56833262, 0.56862979,
       0.56862979, 0.56862979, 0.56862979, 0.56915933, 0.56915933,
       0.56915933, 0.56915933, 0.570773  , 0.570773  , 0.570773  ,
       0.570773  , 0.57706088, 0.57706088, 0.57706088, 0.57706088,
       0.59949934, 0.59949934, 0.59949934, 0.59949934, 0.66700177,
       0.66700177, 0.66700177, 0.66700177, 0.83868505, 0.83868505,
       0.83868505, 0.83868505, 1.21237055, 1.21237055, 1.21237055,
       1.21237055, 1.91223289, 1.91223289, 1.91223289, 1.91223289,
       3.007806  , 3.007806  , 3.007806  , 3.007806  , 3.87809533,
       3.87809533, 3.87809533, 3.87809533, 4.06550349, 4.06550349,
       4.06550349, 4.06550349, 3.31660165, 3.31660165, 3.31660165,
       3.31660165, 1.51650855, 1.51650855, 1.51650855, 1.51650855,
       1.03580283, 1.03580283, 1.03580283, 1.03580283, 1.00089283,
       1.00089283, 1.00089283, 1.00089283, 1.00000042, 1.00000042,
       1.00000042, 1.00000042, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.65061748e-02, 2.65061748e-02, 2.65061748e-02, 2.65061748e-02,
       6.77521323e-02, 6.77521323e-02, 6.77521323e-02, 6.77521323e-02,
       1.35347197e-01, 1.35347197e-01, 1.35347197e-01, 1.35347197e-01,
       2.59685207e-01, 2.59685207e-01, 2.59685207e-01, 2.59685207e-01,
       4.65425979e-01, 4.65425979e-01, 4.65425979e-01, 4.65425979e-01,
       7.82144211e-01, 7.82144211e-01, 7.82144211e-01, 7.82144211e-01,
       1.23395371e+00, 1.23395371e+00, 1.23395371e+00, 1.23395371e+00,
       1.83410775e+00, 1.83410775e+00, 1.83410775e+00, 1.83410775e+00,
       2.58131290e+00, 2.58131290e+00, 2.58131290e+00, 2.58131290e+00,
       3.46116458e+00, 3.46116458e+00, 3.46116458e+00, 3.46116458e+00,
       4.45155217e+00, 4.45155217e+00, 4.45155217e+00, 4.45155217e+00,
       5.52969690e+00, 5.52969690e+00, 5.52969690e+00, 5.52969690e+00,
       6.67852811e+00, 6.67852811e+00, 6.67852811e+00, 6.67852811e+00,
       7.86873820e+00, 7.86873820e+00, 7.86873820e+00, 7.86873820e+00,
       9.07107121e+00, 9.07107121e+00, 9.07107121e+00, 9.07107121e+00,
       1.02736328e+01, 1.02736328e+01, 1.02736328e+01, 1.02736328e+01,
       1.14723262e+01, 1.14723262e+01, 1.14723262e+01, 1.14723262e+01,
       1.26646432e+01, 1.26646432e+01, 1.26646432e+01, 1.26646432e+01,
       1.38470920e+01, 1.38470920e+01, 1.38470920e+01, 1.38470920e+01,
       1.50122685e+01, 1.50122685e+01, 1.50122685e+01, 1.50122685e+01,
       1.61443786e+01, 1.61443786e+01, 1.61443786e+01, 1.61443786e+01,
       1.72174436e+01, 1.72174436e+01, 1.72174436e+01, 1.72174436e+01,
       1.81881157e+01, 1.81881157e+01, 1.81881157e+01, 1.81881157e+01,
       1.90020678e+01, 1.90020678e+01, 1.90020678e+01, 1.90020678e+01,
       1.96026064e+01, 1.96026064e+01, 1.96026064e+01, 1.96026064e+01,
       1.99654493e+01, 1.99654493e+01, 1.99654493e+01, 1.99654493e+01,
       2.01215540e+01, 2.01215540e+01, 2.01215540e+01, 2.01215540e+01,
       2.01536613e+01, 2.01536613e+01, 2.01536613e+01, 2.01536613e+01,
       2.01186860e+01, 2.01186860e+01, 2.01186860e+01, 2.01186860e+01,
       2.00503930e+01, 2.00503930e+01, 2.00503930e+01, 2.00503930e+01,
       2.00214278e+01, 2.00214278e+01, 2.00214278e+01, 2.00214278e+01,
       2.00088918e+01, 2.00088918e+01, 2.00088918e+01, 2.00088918e+01,
       1.99992270e+01, 1.99992270e+01, 1.99992270e+01, 1.99992270e+01,
       1.99879478e+01, 1.99879478e+01, 1.99879478e+01, 1.99879478e+01,
       1.99697555e+01, 1.99697555e+01, 1.99697555e+01, 1.99697555e+01,
       1.99444645e+01, 1.99444645e+01, 1.99444645e+01, 1.99444645e+01,
       1.99203251e+01, 1.99203251e+01, 1.99203251e+01, 1.99203251e+01,
       1.98978235e+01, 1.98978235e+01, 1.98978235e+01, 1.98978235e+01,
       1.98758306e+01, 1.98758306e+01, 1.98758306e+01, 1.98758306e+01,
       1.98547615e+01, 1.98547615e+01, 1.98547615e+01, 1.98547615e+01,
       1.98366120e+01, 1.98366120e+01, 1.98366120e+01, 1.98366120e+01,
       1.98210642e+01, 1.98210642e+01, 1.98210642e+01, 1.98210642e+01,
       1.98067178e+01, 1.98067178e+01, 1.98067178e+01, 1.98067178e+01,
       1.97979636e+01, 1.97979636e+01, 1.97979636e+01, 1.97979636e+01,
       1.97829582e+01, 1.97829582e+01, 1.97829582e+01, 1.97829582e+01,
       1.97247063e+01, 1.97247063e+01, 1.97247063e+01, 1.97247063e+01,
       1.94611034e+01, 1.94611034e+01, 1.94611034e+01, 1.94611034e+01,
       1.82839011e+01, 1.82839011e+01, 1.82839011e+01, 1.82839011e+01,
       1.38817854e+01, 1.38817854e+01, 1.38817854e+01, 1.38817854e+01,
       4.10564450e+00, 4.10564450e+00, 4.10564450e+00, 4.10564450e+00,
       1.19559981e-01, 1.19559981e-01, 1.19559981e-01, 1.19559981e-01,
       2.64879102e-04, 2.64879102e-04, 2.64879102e-04, 2.64879102e-04,
       4.95793305e-08, 4.95793305e-08, 4.95793305e-08, 4.95793305e-08,
       8.02645853e-12, 8.02645853e-12, 8.02645853e-12, 8.02645853e-12,
       1.28397217e-15, 1.28397217e-15, 1.28397217e-15, 1.28397217e-15,
       1.96745591e-19, 1.96745591e-19, 1.96745591e-19, 1.96745591e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99008791e+02, 9.99008791e+02, 9.99008791e+02, 9.99008791e+02,
       9.97467896e+02, 9.97467896e+02, 9.97467896e+02, 9.97467896e+02,
       9.94947317e+02, 9.94947317e+02, 9.94947317e+02, 9.94947317e+02,
       9.90325847e+02, 9.90325847e+02, 9.90325847e+02, 9.90325847e+02,
       9.82720519e+02, 9.82720519e+02, 9.82720519e+02, 9.82720519e+02,
       9.71113593e+02, 9.71113593e+02, 9.71113593e+02, 9.71113593e+02,
       9.54764008e+02, 9.54764008e+02, 9.54764008e+02, 9.54764008e+02,
       9.33417401e+02, 9.33417401e+02, 9.33417401e+02, 9.33417401e+02,
       9.07418550e+02, 9.07418550e+02, 9.07418550e+02, 9.07418550e+02,
       8.77605065e+02, 8.77605065e+02, 8.77605065e+02, 8.77605065e+02,
       8.45053460e+02, 8.45053460e+02, 8.45053460e+02, 8.45053460e+02,
       8.10795758e+02, 8.10795758e+02, 8.10795758e+02, 8.10795758e+02,
       7.75604847e+02, 7.75604847e+02, 7.75604847e+02, 7.75604847e+02,
       7.40358342e+02, 7.40358342e+02, 7.40358342e+02, 7.40358342e+02,
       7.06183106e+02, 7.06183106e+02, 7.06183106e+02, 7.06183106e+02,
       6.73414104e+02, 6.73414104e+02, 6.73414104e+02, 6.73414104e+02,
       6.42106090e+02, 6.42106090e+02, 6.42106090e+02, 6.42106090e+02,
       6.12205307e+02, 6.12205307e+02, 6.12205307e+02, 6.12205307e+02,
       5.83733464e+02, 5.83733464e+02, 5.83733464e+02, 5.83733464e+02,
       5.56805862e+02, 5.56805862e+02, 5.56805862e+02, 5.56805862e+02,
       5.31654012e+02, 5.31654012e+02, 5.31654012e+02, 5.31654012e+02,
       5.08742192e+02, 5.08742192e+02, 5.08742192e+02, 5.08742192e+02,
       4.88731625e+02, 4.88731625e+02, 4.88731625e+02, 4.88731625e+02,
       4.72495806e+02, 4.72495806e+02, 4.72495806e+02, 4.72495806e+02,
       4.60808275e+02, 4.60808275e+02, 4.60808275e+02, 4.60808275e+02,
       4.53862047e+02, 4.53862047e+02, 4.53862047e+02, 4.53862047e+02,
       4.50909195e+02, 4.50909195e+02, 4.50909195e+02, 4.50909195e+02,
       4.50303363e+02, 4.50303363e+02, 4.50303363e+02, 4.50303363e+02,
       4.50963314e+02, 4.50963314e+02, 4.50963314e+02, 4.50963314e+02,
       4.52251030e+02, 4.52251030e+02, 4.52251030e+02, 4.52251030e+02,
       4.52805650e+02, 4.52805650e+02, 4.52805650e+02, 4.52805650e+02,
       4.53054444e+02, 4.53054444e+02, 4.53054444e+02, 4.53054444e+02,
       4.53236462e+02, 4.53236462e+02, 4.53236462e+02, 4.53236462e+02,
       4.53444188e+02, 4.53444188e+02, 4.53444188e+02, 4.53444188e+02,
       4.53782015e+02, 4.53782015e+02, 4.53782015e+02, 4.53782015e+02,
       4.54259731e+02, 4.54259731e+02, 4.54259731e+02, 4.54259731e+02,
       4.54730412e+02, 4.54730412e+02, 4.54730412e+02, 4.54730412e+02,
       4.55178339e+02, 4.55178339e+02, 4.55178339e+02, 4.55178339e+02,
       4.55590920e+02, 4.55590920e+02, 4.55590920e+02, 4.55590920e+02,
       4.55961244e+02, 4.55961244e+02, 4.55961244e+02, 4.55961244e+02,
       4.56316460e+02, 4.56316460e+02, 4.56316460e+02, 4.56316460e+02,
       4.56666544e+02, 4.56666544e+02, 4.56666544e+02, 4.56666544e+02,
       4.57026199e+02, 4.57026199e+02, 4.57026199e+02, 4.57026199e+02,
       4.57531552e+02, 4.57531552e+02, 4.57531552e+02, 4.57531552e+02,
       4.58018403e+02, 4.58018403e+02, 4.58018403e+02, 4.58018403e+02,
       4.56713026e+02, 4.56713026e+02, 4.56713026e+02, 4.56713026e+02,
       4.44619433e+02, 4.44619433e+02, 4.44619433e+02, 4.44619433e+02,
       3.86158645e+02, 3.86158645e+02, 3.86158645e+02, 3.86158645e+02,
       2.07519215e+02, 2.07519215e+02, 2.07519215e+02, 2.07519215e+02,
       2.53994497e+01, 2.53994497e+01, 2.53994497e+01, 2.53994497e+01,
       2.14148688e-01, 2.14148688e-01, 2.14148688e-01, 2.14148688e-01,
       1.00450120e-02, 1.00450120e-02, 1.00450120e-02, 1.00450120e-02,
       1.00000059e-02, 1.00000059e-02, 1.00000059e-02, 1.00000059e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99871963, 0.99871963, 0.99871963, 0.99871963, 0.99689581,
       0.99689581, 0.99689581, 0.99689581, 0.99415366, 0.99415366,
       0.99415366, 0.99415366, 0.98939445, 0.98939445, 0.98939445,
       0.98939445, 0.98204346, 0.98204346, 0.98204346, 0.98204346,
       0.97146171, 0.97146171, 0.97146171, 0.97146171, 0.9573379 ,
       0.9573379 , 0.9573379 , 0.9573379 , 0.93973497, 0.93973497,
       0.93973497, 0.93973497, 0.91908294, 0.91908294, 0.91908294,
       0.91908294, 0.89603722, 0.89603722, 0.89603722, 0.89603722,
       0.87129459, 0.87129459, 0.87129459, 0.87129459, 0.84542383,
       0.84542383, 0.84542383, 0.84542383, 0.81892298, 0.81892298,
       0.81892298, 0.81892298, 0.79259907, 0.79259907, 0.79259907,
       0.79259907, 0.76689349, 0.76689349, 0.76689349, 0.76689349,
       0.74195878, 0.74195878, 0.74195878, 0.74195878, 0.71776989,
       0.71776989, 0.71776989, 0.71776989, 0.69434792, 0.69434792,
       0.69434792, 0.69434792, 0.67176942, 0.67176942, 0.67176942,
       0.67176942, 0.65008496, 0.65008496, 0.65008496, 0.65008496,
       0.62996773, 0.62996773, 0.62996773, 0.62996773, 0.61070758,
       0.61070758, 0.61070758, 0.61070758, 0.59567443, 0.59567443,
       0.59567443, 0.59567443, 0.58118471, 0.58118471, 0.58118471,
       0.58118471, 0.57312756, 0.57312756, 0.57312756, 0.57312756,
       0.56818316, 0.56818316, 0.56818316, 0.56818316, 0.56529871,
       0.56529871, 0.56529871, 0.56529871, 0.56537711, 0.56537711,
       0.56537711, 0.56537711, 0.56637301, 0.56637301, 0.56637301,
       0.56637301, 0.56746355, 0.56746355, 0.56746355, 0.56746355,
       0.56750707, 0.56750707, 0.56750707, 0.56750707, 0.56762621,
       0.56762621, 0.56762621, 0.56762621, 0.56789882, 0.56789882,
       0.56789882, 0.56789882, 0.56806145, 0.56806145, 0.56806145,
       0.56806145, 0.56826163, 0.56826163, 0.56826163, 0.56826163,
       0.56851406, 0.56851406, 0.56851406, 0.56851406, 0.56877122,
       0.56877122, 0.56877122, 0.56877122, 0.56918068, 0.56918068,
       0.56918068, 0.56918068, 0.57030245, 0.57030245, 0.57030245,
       0.57030245, 0.5745043 , 0.5745043 , 0.5745043 , 0.5745043 ,
       0.58979671, 0.58979671, 0.58979671, 0.58979671, 0.63756363,
       0.63756363, 0.63756363, 0.63756363, 0.7640859 , 0.7640859 ,
       0.7640859 , 0.7640859 , 1.05129673, 1.05129673, 1.05129673,
       1.05129673, 1.61395351, 1.61395351, 1.61395351, 1.61395351,
       2.56324844, 2.56324844, 2.56324844, 2.56324844, 3.64796108,
       3.64796108, 3.64796108, 3.64796108, 4.10212289, 4.10212289,
       4.10212289, 4.10212289, 3.88420625, 3.88420625, 3.88420625,
       3.88420625, 2.28314086, 2.28314086, 2.28314086, 2.28314086,
       1.12772592, 1.12772592, 1.12772592, 1.12772592, 1.00628402,
       1.00628402, 1.00628402, 1.00628402, 1.00002417, 1.00002417,
       1.00002417, 1.00002417, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([4.79346584e-02, 4.79346584e-02, 4.79346584e-02, 4.79346584e-02,
       1.16295186e-01, 1.16295186e-01, 1.16295186e-01, 1.16295186e-01,
       2.19249025e-01, 2.19249025e-01, 2.19249025e-01, 2.19249025e-01,
       3.98505426e-01, 3.98505426e-01, 3.98505426e-01, 3.98505426e-01,
       6.76753261e-01, 6.76753261e-01, 6.76753261e-01, 6.76753261e-01,
       1.08029397e+00, 1.08029397e+00, 1.08029397e+00, 1.08029397e+00,
       1.62453623e+00, 1.62453623e+00, 1.62453623e+00, 1.62453623e+00,
       2.31205472e+00, 2.31205472e+00, 2.31205472e+00, 2.31205472e+00,
       3.13205824e+00, 3.13205824e+00, 3.13205824e+00, 3.13205824e+00,
       4.06476657e+00, 4.06476657e+00, 4.06476657e+00, 4.06476657e+00,
       5.08775132e+00, 5.08775132e+00, 5.08775132e+00, 5.08775132e+00,
       6.18246089e+00, 6.18246089e+00, 6.18246089e+00, 6.18246089e+00,
       7.33022569e+00, 7.33022569e+00, 7.33022569e+00, 7.33022569e+00,
       8.49610187e+00, 8.49610187e+00, 8.49610187e+00, 8.49610187e+00,
       9.66738034e+00, 9.66738034e+00, 9.66738034e+00, 9.66738034e+00,
       1.08365227e+01, 1.08365227e+01, 1.08365227e+01, 1.08365227e+01,
       1.20006085e+01, 1.20006085e+01, 1.20006085e+01, 1.20006085e+01,
       1.31582056e+01, 1.31582056e+01, 1.31582056e+01, 1.31582056e+01,
       1.43045927e+01, 1.43045927e+01, 1.43045927e+01, 1.43045927e+01,
       1.54308433e+01, 1.54308433e+01, 1.54308433e+01, 1.54308433e+01,
       1.65188815e+01, 1.65188815e+01, 1.65188815e+01, 1.65188815e+01,
       1.75398658e+01, 1.75398658e+01, 1.75398658e+01, 1.75398658e+01,
       1.84481157e+01, 1.84481157e+01, 1.84481157e+01, 1.84481157e+01,
       1.91900861e+01, 1.91900861e+01, 1.91900861e+01, 1.91900861e+01,
       1.97162589e+01, 1.97162589e+01, 1.97162589e+01, 1.97162589e+01,
       2.00152679e+01, 2.00152679e+01, 2.00152679e+01, 2.00152679e+01,
       2.01312403e+01, 2.01312403e+01, 2.01312403e+01, 2.01312403e+01,
       2.01482309e+01, 2.01482309e+01, 2.01482309e+01, 2.01482309e+01,
       2.01006098e+01, 2.01006098e+01, 2.01006098e+01, 2.01006098e+01,
       2.00417664e+01, 2.00417664e+01, 2.00417664e+01, 2.00417664e+01,
       2.00177684e+01, 2.00177684e+01, 2.00177684e+01, 2.00177684e+01,
       2.00061893e+01, 2.00061893e+01, 2.00061893e+01, 2.00061893e+01,
       1.99964358e+01, 1.99964358e+01, 1.99964358e+01, 1.99964358e+01,
       1.99841326e+01, 1.99841326e+01, 1.99841326e+01, 1.99841326e+01,
       1.99640722e+01, 1.99640722e+01, 1.99640722e+01, 1.99640722e+01,
       1.99380327e+01, 1.99380327e+01, 1.99380327e+01, 1.99380327e+01,
       1.99138950e+01, 1.99138950e+01, 1.99138950e+01, 1.99138950e+01,
       1.98915983e+01, 1.98915983e+01, 1.98915983e+01, 1.98915983e+01,
       1.98706224e+01, 1.98706224e+01, 1.98706224e+01, 1.98706224e+01,
       1.98504781e+01, 1.98504781e+01, 1.98504781e+01, 1.98504781e+01,
       1.98321531e+01, 1.98321531e+01, 1.98321531e+01, 1.98321531e+01,
       1.98164498e+01, 1.98164498e+01, 1.98164498e+01, 1.98164498e+01,
       1.98028802e+01, 1.98028802e+01, 1.98028802e+01, 1.98028802e+01,
       1.97923327e+01, 1.97923327e+01, 1.97923327e+01, 1.97923327e+01,
       1.97838509e+01, 1.97838509e+01, 1.97838509e+01, 1.97838509e+01,
       1.97535132e+01, 1.97535132e+01, 1.97535132e+01, 1.97535132e+01,
       1.96225421e+01, 1.96225421e+01, 1.96225421e+01, 1.96225421e+01,
       1.90212196e+01, 1.90212196e+01, 1.90212196e+01, 1.90212196e+01,
       1.65525784e+01, 1.65525784e+01, 1.65525784e+01, 1.65525784e+01,
       9.01356040e+00, 9.01356040e+00, 9.01356040e+00, 9.01356040e+00,
       7.89629666e-01, 7.89629666e-01, 7.89629666e-01, 7.89629666e-01,
       6.47563091e-03, 6.47563091e-03, 6.47563091e-03, 6.47563091e-03,
       3.00072068e-06, 3.00072068e-06, 3.00072068e-06, 3.00072068e-06,
       4.61483424e-10, 4.61483424e-10, 4.61483424e-10, 4.61483424e-10,
       7.14105492e-14, 7.14105492e-14, 7.14105492e-14, 7.14105492e-14,
       1.12055754e-17, 1.12055754e-17, 1.12055754e-17, 1.12055754e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.98208251e+02, 9.98208251e+02, 9.98208251e+02, 9.98208251e+02,
       9.95657307e+02, 9.95657307e+02, 9.95657307e+02, 9.95657307e+02,
       9.91826551e+02, 9.91826551e+02, 9.91826551e+02, 9.91826551e+02,
       9.85188507e+02, 9.85188507e+02, 9.85188507e+02, 9.85188507e+02,
       9.74962220e+02, 9.74962220e+02, 9.74962220e+02, 9.74962220e+02,
       9.60296787e+02, 9.60296787e+02, 9.60296787e+02, 9.60296787e+02,
       9.40822905e+02, 9.40822905e+02, 9.40822905e+02, 9.40822905e+02,
       9.16712279e+02, 9.16712279e+02, 9.16712279e+02, 9.16712279e+02,
       8.88653079e+02, 8.88653079e+02, 8.88653079e+02, 8.88653079e+02,
       8.57635270e+02, 8.57635270e+02, 8.57635270e+02, 8.57635270e+02,
       8.24683912e+02, 8.24683912e+02, 8.24683912e+02, 8.24683912e+02,
       7.90625936e+02, 7.90625936e+02, 7.90625936e+02, 7.90625936e+02,
       7.56152074e+02, 7.56152074e+02, 7.56152074e+02, 7.56152074e+02,
       7.22323562e+02, 7.22323562e+02, 7.22323562e+02, 7.22323562e+02,
       6.89748211e+02, 6.89748211e+02, 6.89748211e+02, 6.89748211e+02,
       6.58562261e+02, 6.58562261e+02, 6.58562261e+02, 6.58562261e+02,
       6.28705838e+02, 6.28705838e+02, 6.28705838e+02, 6.28705838e+02,
       6.00181833e+02, 6.00181833e+02, 6.00181833e+02, 6.00181833e+02,
       5.73028492e+02, 5.73028492e+02, 5.73028492e+02, 5.73028492e+02,
       5.47394913e+02, 5.47394913e+02, 5.47394913e+02, 5.47394913e+02,
       5.23556041e+02, 5.23556041e+02, 5.23556041e+02, 5.23556041e+02,
       5.02022645e+02, 5.02022645e+02, 5.02022645e+02, 5.02022645e+02,
       4.83490652e+02, 4.83490652e+02, 4.83490652e+02, 4.83490652e+02,
       4.68807418e+02, 4.68807418e+02, 4.68807418e+02, 4.68807418e+02,
       4.58628006e+02, 4.58628006e+02, 4.58628006e+02, 4.58628006e+02,
       4.52917665e+02, 4.52917665e+02, 4.52917665e+02, 4.52917665e+02,
       4.50722891e+02, 4.50722891e+02, 4.50722891e+02, 4.50722891e+02,
       4.50404840e+02, 4.50404840e+02, 4.50404840e+02, 4.50404840e+02,
       4.51305706e+02, 4.51305706e+02, 4.51305706e+02, 4.51305706e+02,
       4.52417827e+02, 4.52417827e+02, 4.52417827e+02, 4.52417827e+02,
       4.52869771e+02, 4.52869771e+02, 4.52869771e+02, 4.52869771e+02,
       4.53098143e+02, 4.53098143e+02, 4.53098143e+02, 4.53098143e+02,
       4.53288109e+02, 4.53288109e+02, 4.53288109e+02, 4.53288109e+02,
       4.53522454e+02, 4.53522454e+02, 4.53522454e+02, 4.53522454e+02,
       4.53898721e+02, 4.53898721e+02, 4.53898721e+02, 4.53898721e+02,
       4.54383577e+02, 4.54383577e+02, 4.54383577e+02, 4.54383577e+02,
       4.54840633e+02, 4.54840633e+02, 4.54840633e+02, 4.54840633e+02,
       4.55282568e+02, 4.55282568e+02, 4.55282568e+02, 4.55282568e+02,
       4.55699208e+02, 4.55699208e+02, 4.55699208e+02, 4.55699208e+02,
       4.56064730e+02, 4.56064730e+02, 4.56064730e+02, 4.56064730e+02,
       4.56394118e+02, 4.56394118e+02, 4.56394118e+02, 4.56394118e+02,
       4.56721490e+02, 4.56721490e+02, 4.56721490e+02, 4.56721490e+02,
       4.57041842e+02, 4.57041842e+02, 4.57041842e+02, 4.57041842e+02,
       4.57452339e+02, 4.57452339e+02, 4.57452339e+02, 4.57452339e+02,
       4.58033692e+02, 4.58033692e+02, 4.58033692e+02, 4.58033692e+02,
       4.57888048e+02, 4.57888048e+02, 4.57888048e+02, 4.57888048e+02,
       4.52727602e+02, 4.52727602e+02, 4.52727602e+02, 4.52727602e+02,
       4.22759926e+02, 4.22759926e+02, 4.22759926e+02, 4.22759926e+02,
       3.07068930e+02, 3.07068930e+02, 3.07068930e+02, 3.07068930e+02,
       8.77696574e+01, 8.77696574e+01, 8.77696574e+01, 8.77696574e+01,
       2.68785775e+00, 2.68785775e+00, 2.68785775e+00, 2.68785775e+00,
       1.34301951e-02, 1.34301951e-02, 1.34301951e-02, 1.34301951e-02,
       1.00003538e-02, 1.00003538e-02, 1.00003538e-02, 1.00003538e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99779253, 0.99779253, 0.99779253, 0.99779253, 0.99492087,
       0.99492087, 0.99492087, 0.99492087, 0.99096776, 0.99096776,
       0.99096776, 0.99096776, 0.98445746, 0.98445746, 0.98445746,
       0.98445746, 0.97502252, 0.97502252, 0.97502252, 0.97502252,
       0.9621987 , 0.9621987 , 0.9621987 , 0.9621987 , 0.94596677,
       0.94596677, 0.94596677, 0.94596677, 0.92664513, 0.92664513,
       0.92664513, 0.92664513, 0.90481789, 0.90481789, 0.90481789,
       0.90481789, 0.88115819, 0.88115819, 0.88115819, 0.88115819,
       0.85626688, 0.85626688, 0.85626688, 0.85626688, 0.83058143,
       0.83058143, 0.83058143, 0.83058143, 0.80476657, 0.80476657,
       0.80476657, 0.80476657, 0.77943364, 0.77943364, 0.77943364,
       0.77943364, 0.75476663, 0.75476663, 0.75476663, 0.75476663,
       0.73082127, 0.73082127, 0.73082127, 0.73082127, 0.70758612,
       0.70758612, 0.70758612, 0.70758612, 0.6850841 , 0.6850841 ,
       0.6850841 , 0.6850841 , 0.66342869, 0.66342869, 0.66342869,
       0.66342869, 0.6426441 , 0.6426441 , 0.6426441 , 0.6426441 ,
       0.62359474, 0.62359474, 0.62359474, 0.62359474, 0.60530901,
       0.60530901, 0.60530901, 0.60530901, 0.59154744, 0.59154744,
       0.59154744, 0.59154744, 0.57849861, 0.57849861, 0.57849861,
       0.57849861, 0.57129468, 0.57129468, 0.57129468, 0.57129468,
       0.56764504, 0.56764504, 0.56764504, 0.56764504, 0.56537656,
       0.56537656, 0.56537656, 0.56537656, 0.56541728, 0.56541728,
       0.56541728, 0.56541728, 0.566573  , 0.566573  , 0.566573  ,
       0.566573  , 0.56761976, 0.56761976, 0.56761976, 0.56761976,
       0.56766123, 0.56766123, 0.56766123, 0.56766123, 0.56769891,
       0.56769891, 0.56769891, 0.56769891, 0.56789839, 0.56789839,
       0.56789839, 0.56789839, 0.56815101, 0.56815101, 0.56815101,
       0.56815101, 0.56843359, 0.56843359, 0.56843359, 0.56843359,
       0.56870197, 0.56870197, 0.56870197, 0.56870197, 0.56893189,
       0.56893189, 0.56893189, 0.56893189, 0.56925247, 0.56925247,
       0.56925247, 0.56925247, 0.57003928, 0.57003928, 0.57003928,
       0.57003928, 0.57286264, 0.57286264, 0.57286264, 0.57286264,
       0.58324543, 0.58324543, 0.58324543, 0.58324543, 0.61675826,
       0.61675826, 0.61675826, 0.61675826, 0.70906129, 0.70906129,
       0.70906129, 0.70906129, 0.92724037, 0.92724037, 0.92724037,
       0.92724037, 1.37323589, 1.37323589, 1.37323589, 1.37323589,
       2.1635062 , 2.1635062 , 2.1635062 , 2.1635062 , 3.29148444,
       3.29148444, 3.29148444, 3.29148444, 4.0332475 , 4.0332475 ,
       4.0332475 , 4.0332475 , 4.12979469, 4.12979469, 4.12979469,
       4.12979469, 3.20980045, 3.20980045, 3.20980045, 3.20980045,
       1.4244878 , 1.4244878 , 1.4244878 , 1.4244878 , 1.02817994,
       1.02817994, 1.02817994, 1.02817994, 1.00058696, 1.00058696,
       1.00058696, 1.00058696, 1.00000021, 1.00000021, 1.00000021,
       1.00000021, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.26770714e-02, 8.26770714e-02, 8.26770714e-02, 8.26770714e-02,
       1.90444567e-01, 1.90444567e-01, 1.90444567e-01, 1.90444567e-01,
       3.39156393e-01, 3.39156393e-01, 3.39156393e-01, 3.39156393e-01,
       5.85196350e-01, 5.85196350e-01, 5.85196350e-01, 5.85196350e-01,
       9.44102208e-01, 9.44102208e-01, 9.44102208e-01, 9.44102208e-01,
       1.43650190e+00, 1.43650190e+00, 1.43650190e+00, 1.43650190e+00,
       2.06747296e+00, 2.06747296e+00, 2.06747296e+00, 2.06747296e+00,
       2.83007409e+00, 2.83007409e+00, 2.83007409e+00, 2.83007409e+00,
       3.70711102e+00, 3.70711102e+00, 3.70711102e+00, 3.70711102e+00,
       4.67711511e+00, 4.67711511e+00, 4.67711511e+00, 4.67711511e+00,
       5.72031049e+00, 5.72031049e+00, 5.72031049e+00, 5.72031049e+00,
       6.82230541e+00, 6.82230541e+00, 6.82230541e+00, 6.82230541e+00,
       7.95228204e+00, 7.95228204e+00, 7.95228204e+00, 7.95228204e+00,
       9.09250910e+00, 9.09250910e+00, 9.09250910e+00, 9.09250910e+00,
       1.02322411e+01, 1.02322411e+01, 1.02322411e+01, 1.02322411e+01,
       1.13687918e+01, 1.13687918e+01, 1.13687918e+01, 1.13687918e+01,
       1.25004504e+01, 1.25004504e+01, 1.25004504e+01, 1.25004504e+01,
       1.36248432e+01, 1.36248432e+01, 1.36248432e+01, 1.36248432e+01,
       1.47363425e+01, 1.47363425e+01, 1.47363425e+01, 1.47363425e+01,
       1.58243684e+01, 1.58243684e+01, 1.58243684e+01, 1.58243684e+01,
       1.68684615e+01, 1.68684615e+01, 1.68684615e+01, 1.68684615e+01,
       1.78370966e+01, 1.78370966e+01, 1.78370966e+01, 1.78370966e+01,
       1.86828484e+01, 1.86828484e+01, 1.86828484e+01, 1.86828484e+01,
       1.93540793e+01, 1.93540793e+01, 1.93540793e+01, 1.93540793e+01,
       1.98100759e+01, 1.98100759e+01, 1.98100759e+01, 1.98100759e+01,
       2.00526668e+01, 2.00526668e+01, 2.00526668e+01, 2.00526668e+01,
       2.01358422e+01, 2.01358422e+01, 2.01358422e+01, 2.01358422e+01,
       2.01409960e+01, 2.01409960e+01, 2.01409960e+01, 2.01409960e+01,
       2.00831703e+01, 2.00831703e+01, 2.00831703e+01, 2.00831703e+01,
       2.00347786e+01, 2.00347786e+01, 2.00347786e+01, 2.00347786e+01,
       2.00146195e+01, 2.00146195e+01, 2.00146195e+01, 2.00146195e+01,
       2.00034460e+01, 2.00034460e+01, 2.00034460e+01, 2.00034460e+01,
       1.99933175e+01, 1.99933175e+01, 1.99933175e+01, 1.99933175e+01,
       1.99796992e+01, 1.99796992e+01, 1.99796992e+01, 1.99796992e+01,
       1.99579053e+01, 1.99579053e+01, 1.99579053e+01, 1.99579053e+01,
       1.99319311e+01, 1.99319311e+01, 1.99319311e+01, 1.99319311e+01,
       1.99078330e+01, 1.99078330e+01, 1.99078330e+01, 1.99078330e+01,
       1.98854258e+01, 1.98854258e+01, 1.98854258e+01, 1.98854258e+01,
       1.98650641e+01, 1.98650641e+01, 1.98650641e+01, 1.98650641e+01,
       1.98461462e+01, 1.98461462e+01, 1.98461462e+01, 1.98461462e+01,
       1.98282545e+01, 1.98282545e+01, 1.98282545e+01, 1.98282545e+01,
       1.98124498e+01, 1.98124498e+01, 1.98124498e+01, 1.98124498e+01,
       1.97991749e+01, 1.97991749e+01, 1.97991749e+01, 1.97991749e+01,
       1.97873673e+01, 1.97873673e+01, 1.97873673e+01, 1.97873673e+01,
       1.97808776e+01, 1.97808776e+01, 1.97808776e+01, 1.97808776e+01,
       1.97645088e+01, 1.97645088e+01, 1.97645088e+01, 1.97645088e+01,
       1.96988900e+01, 1.96988900e+01, 1.96988900e+01, 1.96988900e+01,
       1.93964557e+01, 1.93964557e+01, 1.93964557e+01, 1.93964557e+01,
       1.80772383e+01, 1.80772383e+01, 1.80772383e+01, 1.80772383e+01,
       1.32758210e+01, 1.32758210e+01, 1.32758210e+01, 1.32758210e+01,
       3.37432001e+00, 3.37432001e+00, 3.37432001e+00, 3.37432001e+00,
       8.08064010e-02, 8.08064010e-02, 8.08064010e-02, 8.08064010e-02,
       1.40942456e-04, 1.40942456e-04, 1.40942456e-04, 1.40942456e-04,
       2.50612552e-08, 2.50612552e-08, 2.50612552e-08, 2.50612552e-08,
       4.11745361e-12, 4.11745361e-12, 4.11745361e-12, 4.11745361e-12,
       6.55937311e-16, 6.55937311e-16, 6.55937311e-16, 6.55937311e-16,
       9.42282893e-20, 9.42282893e-20, 9.42282893e-20, 9.42282893e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.96911775e+02, 9.96911775e+02, 9.96911775e+02, 9.96911775e+02,
       9.92897461e+02, 9.92897461e+02, 9.92897461e+02, 9.92897461e+02,
       9.87381492e+02, 9.87381492e+02, 9.87381492e+02, 9.87381492e+02,
       9.78316630e+02, 9.78316630e+02, 9.78316630e+02, 9.78316630e+02,
       9.65224072e+02, 9.65224072e+02, 9.65224072e+02, 9.65224072e+02,
       9.47511089e+02, 9.47511089e+02, 9.47511089e+02, 9.47511089e+02,
       9.25225984e+02, 9.25225984e+02, 9.25225984e+02, 9.25225984e+02,
       8.98896472e+02, 8.98896472e+02, 8.98896472e+02, 8.98896472e+02,
       8.69413243e+02, 8.69413243e+02, 8.69413243e+02, 8.69413243e+02,
       8.37771694e+02, 8.37771694e+02, 8.37771694e+02, 8.37771694e+02,
       8.04845422e+02, 8.04845422e+02, 8.04845422e+02, 8.04845422e+02,
       7.71265034e+02, 7.71265034e+02, 7.71265034e+02, 7.71265034e+02,
       7.37891694e+02, 7.37891694e+02, 7.37891694e+02, 7.37891694e+02,
       7.05581087e+02, 7.05581087e+02, 7.05581087e+02, 7.05581087e+02,
       6.74524283e+02, 6.74524283e+02, 6.74524283e+02, 6.74524283e+02,
       6.44761697e+02, 6.44761697e+02, 6.44761697e+02, 6.44761697e+02,
       6.16250581e+02, 6.16250581e+02, 6.16250581e+02, 6.16250581e+02,
       5.89001288e+02, 5.89001288e+02, 5.89001288e+02, 5.89001288e+02,
       5.63080642e+02, 5.63080642e+02, 5.63080642e+02, 5.63080642e+02,
       5.38671716e+02, 5.38671716e+02, 5.38671716e+02, 5.38671716e+02,
       5.16092282e+02, 5.16092282e+02, 5.16092282e+02, 5.16092282e+02,
       4.95896244e+02, 4.95896244e+02, 4.95896244e+02, 4.95896244e+02,
       4.78802137e+02, 4.78802137e+02, 4.78802137e+02, 4.78802137e+02,
       4.65608882e+02, 4.65608882e+02, 4.65608882e+02, 4.65608882e+02,
       4.56832207e+02, 4.56832207e+02, 4.56832207e+02, 4.56832207e+02,
       4.52212128e+02, 4.52212128e+02, 4.52212128e+02, 4.52212128e+02,
       4.50635329e+02, 4.50635329e+02, 4.50635329e+02, 4.50635329e+02,
       4.50539724e+02, 4.50539724e+02, 4.50539724e+02, 4.50539724e+02,
       4.51634371e+02, 4.51634371e+02, 4.51634371e+02, 4.51634371e+02,
       4.52552736e+02, 4.52552736e+02, 4.52552736e+02, 4.52552736e+02,
       4.52930057e+02, 4.52930057e+02, 4.52930057e+02, 4.52930057e+02,
       4.53144052e+02, 4.53144052e+02, 4.53144052e+02, 4.53144052e+02,
       4.53341730e+02, 4.53341730e+02, 4.53341730e+02, 4.53341730e+02,
       4.53605101e+02, 4.53605101e+02, 4.53605101e+02, 4.53605101e+02,
       4.54020478e+02, 4.54020478e+02, 4.54020478e+02, 4.54020478e+02,
       4.54510123e+02, 4.54510123e+02, 4.54510123e+02, 4.54510123e+02,
       4.54955970e+02, 4.54955970e+02, 4.54955970e+02, 4.54955970e+02,
       4.55384422e+02, 4.55384422e+02, 4.55384422e+02, 4.55384422e+02,
       4.55795165e+02, 4.55795165e+02, 4.55795165e+02, 4.55795165e+02,
       4.56163141e+02, 4.56163141e+02, 4.56163141e+02, 4.56163141e+02,
       4.56482181e+02, 4.56482181e+02, 4.56482181e+02, 4.56482181e+02,
       4.56781749e+02, 4.56781749e+02, 4.56781749e+02, 4.56781749e+02,
       4.57078389e+02, 4.57078389e+02, 4.57078389e+02, 4.57078389e+02,
       4.57417386e+02, 4.57417386e+02, 4.57417386e+02, 4.57417386e+02,
       4.57936162e+02, 4.57936162e+02, 4.57936162e+02, 4.57936162e+02,
       4.58275885e+02, 4.58275885e+02, 4.58275885e+02, 4.58275885e+02,
       4.56396881e+02, 4.56396881e+02, 4.56396881e+02, 4.56396881e+02,
       4.42008574e+02, 4.42008574e+02, 4.42008574e+02, 4.42008574e+02,
       3.76142236e+02, 3.76142236e+02, 3.76142236e+02, 3.76142236e+02,
       1.87877799e+02, 1.87877799e+02, 1.87877799e+02, 1.87877799e+02,
       1.93878950e+01, 1.93878950e+01, 1.93878950e+01, 1.93878950e+01,
       1.28441959e-01, 1.28441959e-01, 1.28441959e-01, 1.28441959e-01,
       1.00206317e-02, 1.00206317e-02, 1.00206317e-02, 1.00206317e-02,
       1.00000030e-02, 1.00000030e-02, 1.00000030e-02, 1.00000030e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99636432, 0.99636432, 0.99636432, 0.99636432, 0.99205876,
       0.99205876, 0.99205876, 0.99205876, 0.98664933, 0.98664933,
       0.98664933, 0.98664933, 0.97815371, 0.97815371, 0.97815371,
       0.97815371, 0.9665772 , 0.9665772 , 0.9665772 , 0.9665772 ,
       0.95164637, 0.95164637, 0.95164637, 0.95164637, 0.93362252,
       0.93362252, 0.93362252, 0.93362252, 0.91299712, 0.91299712,
       0.91299712, 0.91299712, 0.89041028, 0.89041028, 0.89041028,
       0.89041028, 0.86647311, 0.86647311, 0.86647311, 0.86647311,
       0.84164558, 0.84164558, 0.84164558, 0.84164558, 0.81642336,
       0.81642336, 0.81642336, 0.81642336, 0.79148604, 0.79148604,
       0.79148604, 0.79148604, 0.76710834, 0.76710834, 0.76710834,
       0.76710834, 0.7434205 , 0.7434205 , 0.7434205 , 0.7434205 ,
       0.72039324, 0.72039324, 0.72039324, 0.72039324, 0.69804488,
       0.69804488, 0.69804488, 0.69804488, 0.67640665, 0.67640665,
       0.67640665, 0.67640665, 0.65563302, 0.65563302, 0.65563302,
       0.65563302, 0.63570432, 0.63570432, 0.63570432, 0.63570432,
       0.61770755, 0.61770755, 0.61770755, 0.61770755, 0.60038962,
       0.60038962, 0.60038962, 0.60038962, 0.58782557, 0.58782557,
       0.58782557, 0.58782557, 0.57623676, 0.57623676, 0.57623676,
       0.57623676, 0.56979185, 0.56979185, 0.56979185, 0.56979185,
       0.56720324, 0.56720324, 0.56720324, 0.56720324, 0.56553241,
       0.56553241, 0.56553241, 0.56553241, 0.56556965, 0.56556965,
       0.56556965, 0.56556965, 0.56672103, 0.56672103, 0.56672103,
       0.56672103, 0.56770851, 0.56770851, 0.56770851, 0.56770851,
       0.56779669, 0.56779669, 0.56779669, 0.56779669, 0.56780547,
       0.56780547, 0.56780547, 0.56780547, 0.56792996, 0.56792996,
       0.56792996, 0.56792996, 0.56821566, 0.56821566, 0.56821566,
       0.56821566, 0.5685916 , 0.5685916 , 0.5685916 , 0.5685916 ,
       0.56888519, 0.56888519, 0.56888519, 0.56888519, 0.56910119,
       0.56910119, 0.56910119, 0.56910119, 0.56936231, 0.56936231,
       0.56936231, 0.56936231, 0.56991804, 0.56991804, 0.56991804,
       0.56991804, 0.57182047, 0.57182047, 0.57182047, 0.57182047,
       0.57885305, 0.57885305, 0.57885305, 0.57885305, 0.60219878,
       0.60219878, 0.60219878, 0.60219878, 0.66890255, 0.66890255,
       0.66890255, 0.66890255, 0.83282931, 0.83282931, 0.83282931,
       0.83282931, 1.18191186, 1.18191186, 1.18191186, 1.18191186,
       1.82871125, 1.82871125, 1.82871125, 1.82871125, 2.86090807,
       2.86090807, 2.86090807, 2.86090807, 3.85054369, 3.85054369,
       3.85054369, 3.85054369, 4.19989541, 4.19989541, 4.19989541,
       4.19989541, 3.86486856, 3.86486856, 3.86486856, 3.86486856,
       2.13052935, 2.13052935, 2.13052935, 2.13052935, 1.10421234,
       1.10421234, 1.10421234, 1.10421234, 1.0046868 , 1.0046868 ,
       1.0046868 , 1.0046868 , 1.00001224, 1.00001224, 1.00001224,
       1.00001224, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.36253533e-01, 1.36253533e-01, 1.36253533e-01, 1.36253533e-01,
       2.98133139e-01, 2.98133139e-01, 2.98133139e-01, 2.98133139e-01,
       5.02180164e-01, 5.02180164e-01, 5.02180164e-01, 5.02180164e-01,
       8.24685029e-01, 8.24685029e-01, 8.24685029e-01, 8.24685029e-01,
       1.26777639e+00, 1.26777639e+00, 1.26777639e+00, 1.26777639e+00,
       1.84570316e+00, 1.84570316e+00, 1.84570316e+00, 1.84570316e+00,
       2.55320788e+00, 2.55320788e+00, 2.55320788e+00, 2.55320788e+00,
       3.37646407e+00, 3.37646407e+00, 3.37646407e+00, 3.37646407e+00,
       4.29528509e+00, 4.29528509e+00, 4.29528509e+00, 4.29528509e+00,
       5.28957743e+00, 5.28957743e+00, 5.28957743e+00, 5.28957743e+00,
       6.34426536e+00, 6.34426536e+00, 6.34426536e+00, 6.34426536e+00,
       7.43855306e+00, 7.43855306e+00, 7.43855306e+00, 7.43855306e+00,
       8.54650989e+00, 8.54650989e+00, 8.54650989e+00, 8.54650989e+00,
       9.65778684e+00, 9.65778684e+00, 9.65778684e+00, 9.65778684e+00,
       1.07675433e+01, 1.07675433e+01, 1.07675433e+01, 1.07675433e+01,
       1.18732730e+01, 1.18732730e+01, 1.18732730e+01, 1.18732730e+01,
       1.29739395e+01, 1.29739395e+01, 1.29739395e+01, 1.29739395e+01,
       1.40664784e+01, 1.40664784e+01, 1.40664784e+01, 1.40664784e+01,
       1.51440272e+01, 1.51440272e+01, 1.51440272e+01, 1.51440272e+01,
       1.61942747e+01, 1.61942747e+01, 1.61942747e+01, 1.61942747e+01,
       1.71943313e+01, 1.71943313e+01, 1.71943313e+01, 1.71943313e+01,
       1.81102285e+01, 1.81102285e+01, 1.81102285e+01, 1.81102285e+01,
       1.88935753e+01, 1.88935753e+01, 1.88935753e+01, 1.88935753e+01,
       1.94958477e+01, 1.94958477e+01, 1.94958477e+01, 1.94958477e+01,
       1.98864185e+01, 1.98864185e+01, 1.98864185e+01, 1.98864185e+01,
       2.00798147e+01, 2.00798147e+01, 2.00798147e+01, 2.00798147e+01,
       2.01365297e+01, 2.01365297e+01, 2.01365297e+01, 2.01365297e+01,
       2.01309132e+01, 2.01309132e+01, 2.01309132e+01, 2.01309132e+01,
       2.00684530e+01, 2.00684530e+01, 2.00684530e+01, 2.00684530e+01,
       2.00289832e+01, 2.00289832e+01, 2.00289832e+01, 2.00289832e+01,
       2.00117538e+01, 2.00117538e+01, 2.00117538e+01, 2.00117538e+01,
       2.00007059e+01, 2.00007059e+01, 2.00007059e+01, 2.00007059e+01,
       1.99899662e+01, 1.99899662e+01, 1.99899662e+01, 1.99899662e+01,
       1.99747375e+01, 1.99747375e+01, 1.99747375e+01, 1.99747375e+01,
       1.99513167e+01, 1.99513167e+01, 1.99513167e+01, 1.99513167e+01,
       1.99258024e+01, 1.99258024e+01, 1.99258024e+01, 1.99258024e+01,
       1.99020913e+01, 1.99020913e+01, 1.99020913e+01, 1.99020913e+01,
       1.98796675e+01, 1.98796675e+01, 1.98796675e+01, 1.98796675e+01,
       1.98594450e+01, 1.98594450e+01, 1.98594450e+01, 1.98594450e+01,
       1.98414283e+01, 1.98414283e+01, 1.98414283e+01, 1.98414283e+01,
       1.98245672e+01, 1.98245672e+01, 1.98245672e+01, 1.98245672e+01,
       1.98089852e+01, 1.98089852e+01, 1.98089852e+01, 1.98089852e+01,
       1.97956031e+01, 1.97956031e+01, 1.97956031e+01, 1.97956031e+01,
       1.97837093e+01, 1.97837093e+01, 1.97837093e+01, 1.97837093e+01,
       1.97755943e+01, 1.97755943e+01, 1.97755943e+01, 1.97755943e+01,
       1.97672969e+01, 1.97672969e+01, 1.97672969e+01, 1.97672969e+01,
       1.97336516e+01, 1.97336516e+01, 1.97336516e+01, 1.97336516e+01,
       1.95824012e+01, 1.95824012e+01, 1.95824012e+01, 1.95824012e+01,
       1.89016608e+01, 1.89016608e+01, 1.89016608e+01, 1.89016608e+01,
       1.61684252e+01, 1.61684252e+01, 1.61684252e+01, 1.61684252e+01,
       8.15698720e+00, 8.15698720e+00, 8.15698720e+00, 8.15698720e+00,
       5.95654577e-01, 5.95654577e-01, 5.95654577e-01, 5.95654577e-01,
       3.94968248e-03, 3.94968248e-03, 3.94968248e-03, 3.94968248e-03,
       1.48333272e-06, 1.48333272e-06, 1.48333272e-06, 1.48333272e-06,
       2.26392355e-10, 2.26392355e-10, 2.26392355e-10, 2.26392355e-10,
       3.54863604e-14, 3.54863604e-14, 3.54863604e-14, 3.54863604e-14,
       5.67765305e-18, 5.67765305e-18, 5.67765305e-18, 5.67765305e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.94915923e+02, 9.94915923e+02, 9.94915923e+02, 9.94915923e+02,
       9.88901826e+02, 9.88901826e+02, 9.88901826e+02, 9.88901826e+02,
       9.81366024e+02, 9.81366024e+02, 9.81366024e+02, 9.81366024e+02,
       9.69562839e+02, 9.69562839e+02, 9.69562839e+02, 9.69562839e+02,
       9.53547612e+02, 9.53547612e+02, 9.53547612e+02, 9.53547612e+02,
       9.33005104e+02, 9.33005104e+02, 9.33005104e+02, 9.33005104e+02,
       9.08377668e+02, 9.08377668e+02, 9.08377668e+02, 9.08377668e+02,
       8.80425926e+02, 8.80425926e+02, 8.80425926e+02, 8.80425926e+02,
       8.50101783e+02, 8.50101783e+02, 8.50101783e+02, 8.50101783e+02,
       8.18296299e+02, 8.18296299e+02, 8.18296299e+02, 8.18296299e+02,
       7.85675395e+02, 7.85675395e+02, 7.85675395e+02, 7.85675395e+02,
       7.52902859e+02, 7.52902859e+02, 7.52902859e+02, 7.52902859e+02,
       7.20897155e+02, 7.20897155e+02, 7.20897155e+02, 7.20897155e+02,
       6.90007959e+02, 6.90007959e+02, 6.90007959e+02, 6.90007959e+02,
       6.60368829e+02, 6.60368829e+02, 6.60368829e+02, 6.60368829e+02,
       6.31916337e+02, 6.31916337e+02, 6.31916337e+02, 6.31916337e+02,
       6.04645783e+02, 6.04645783e+02, 6.04645783e+02, 6.04645783e+02,
       5.78584743e+02, 5.78584743e+02, 5.78584743e+02, 5.78584743e+02,
       5.53823640e+02, 5.53823640e+02, 5.53823640e+02, 5.53823640e+02,
       5.30581052e+02, 5.30581052e+02, 5.30581052e+02, 5.30581052e+02,
       5.09216724e+02, 5.09216724e+02, 5.09216724e+02, 5.09216724e+02,
       4.90322663e+02, 4.90322663e+02, 4.90322663e+02, 4.90322663e+02,
       4.74628094e+02, 4.74628094e+02, 4.74628094e+02, 4.74628094e+02,
       4.62859662e+02, 4.62859662e+02, 4.62859662e+02, 4.62859662e+02,
       4.55372213e+02, 4.55372213e+02, 4.55372213e+02, 4.55372213e+02,
       4.51700059e+02, 4.51700059e+02, 4.51700059e+02, 4.51700059e+02,
       4.50624155e+02, 4.50624155e+02, 4.50624155e+02, 4.50624155e+02,
       4.50729577e+02, 4.50729577e+02, 4.50729577e+02, 4.50729577e+02,
       4.51910877e+02, 4.51910877e+02, 4.51910877e+02, 4.51910877e+02,
       4.52662577e+02, 4.52662577e+02, 4.52662577e+02, 4.52662577e+02,
       4.52987231e+02, 4.52987231e+02, 4.52987231e+02, 4.52987231e+02,
       4.53194374e+02, 4.53194374e+02, 4.53194374e+02, 4.53194374e+02,
       4.53400795e+02, 4.53400795e+02, 4.53400795e+02, 4.53400795e+02,
       4.53694238e+02, 4.53694238e+02, 4.53694238e+02, 4.53694238e+02,
       4.54143778e+02, 4.54143778e+02, 4.54143778e+02, 4.54143778e+02,
       4.54633274e+02, 4.54633274e+02, 4.54633274e+02, 4.54633274e+02,
       4.55075065e+02, 4.55075065e+02, 4.55075065e+02, 4.55075065e+02,
       4.55489841e+02, 4.55489841e+02, 4.55489841e+02, 4.55489841e+02,
       4.55884753e+02, 4.55884753e+02, 4.55884753e+02, 4.55884753e+02,
       4.56250604e+02, 4.56250604e+02, 4.56250604e+02, 4.56250604e+02,
       4.56569475e+02, 4.56569475e+02, 4.56569475e+02, 4.56569475e+02,
       4.56850195e+02, 4.56850195e+02, 4.56850195e+02, 4.56850195e+02,
       4.57127711e+02, 4.57127711e+02, 4.57127711e+02, 4.57127711e+02,
       4.57412507e+02, 4.57412507e+02, 4.57412507e+02, 4.57412507e+02,
       4.57820992e+02, 4.57820992e+02, 4.57820992e+02, 4.57820992e+02,
       4.58356923e+02, 4.58356923e+02, 4.58356923e+02, 4.58356923e+02,
       4.57913485e+02, 4.57913485e+02, 4.57913485e+02, 4.57913485e+02,
       4.51520684e+02, 4.51520684e+02, 4.51520684e+02, 4.51520684e+02,
       4.16998340e+02, 4.16998340e+02, 4.16998340e+02, 4.16998340e+02,
       2.90460159e+02, 2.90460159e+02, 2.90460159e+02, 2.90460159e+02,
       7.32958303e+01, 7.32958303e+01, 7.32958303e+01, 7.32958303e+01,
       1.83484411e+00, 1.83484411e+00, 1.83484411e+00, 1.83484411e+00,
       1.17220052e-02, 1.17220052e-02, 1.17220052e-02, 1.17220052e-02,
       1.00001751e-02, 1.00001751e-02, 1.00001751e-02, 1.00001751e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99426946, 0.99426946, 0.99426946, 0.99426946, 0.98811149,
       0.98811149, 0.98811149, 0.98811149, 0.98107232, 0.98107232,
       0.98107232, 0.98107232, 0.97045921, 0.97045921, 0.97045921,
       0.97045921, 0.95682737, 0.95682737, 0.95682737, 0.95682737,
       0.94004521, 0.94004521, 0.94004521, 0.94004521, 0.92060887,
       0.92060887, 0.92060887, 0.92060887, 0.89908557, 0.89908557,
       0.89908557, 0.89908557, 0.87609083, 0.87609083, 0.87609083,
       0.87609083, 0.85212027, 0.85212027, 0.85212027, 0.85212027,
       0.82756445, 0.82756445, 0.82756445, 0.82756445, 0.80306007,
       0.80306007, 0.80306007, 0.80306007, 0.77900808, 0.77900808,
       0.77900808, 0.77900808, 0.75557607, 0.75557607, 0.75557607,
       0.75557607, 0.73277632, 0.73277632, 0.73277632, 0.73277632,
       0.71060835, 0.71060835, 0.71060835, 0.71060835, 0.68909145,
       0.68909145, 0.68909145, 0.68909145, 0.66826654, 0.66826654,
       0.66826654, 0.66826654, 0.64834169, 0.64834169, 0.64834169,
       0.64834169, 0.62923142, 0.62923142, 0.62923142, 0.62923142,
       0.61227339, 0.61227339, 0.61227339, 0.61227339, 0.5959292 ,
       0.5959292 , 0.5959292 , 0.5959292 , 0.58448008, 0.58448008,
       0.58448008, 0.58448008, 0.57434928, 0.57434928, 0.57434928,
       0.57434928, 0.56859881, 0.56859881, 0.56859881, 0.56859881,
       0.56684346, 0.56684346, 0.56684346, 0.56684346, 0.56569203,
       0.56569203, 0.56569203, 0.56569203, 0.56583937, 0.56583937,
       0.56583937, 0.56583937, 0.56683174, 0.56683174, 0.56683174,
       0.56683174, 0.56774694, 0.56774694, 0.56774694, 0.56774694,
       0.56791077, 0.56791077, 0.56791077, 0.56791077, 0.56792256,
       0.56792256, 0.56792256, 0.56792256, 0.56800423, 0.56800423,
       0.56800423, 0.56800423, 0.56828226, 0.56828226, 0.56828226,
       0.56828226, 0.56872634, 0.56872634, 0.56872634, 0.56872634,
       0.5690527 , 0.5690527 , 0.5690527 , 0.5690527 , 0.56926962,
       0.56926962, 0.56926962, 0.56926962, 0.56949685, 0.56949685,
       0.56949685, 0.56949685, 0.569897  , 0.569897  , 0.569897  ,
       0.569897  , 0.57117768, 0.57117768, 0.57117768, 0.57117768,
       0.57592859, 0.57592859, 0.57592859, 0.57592859, 0.59209704,
       0.59209704, 0.59209704, 0.59209704, 0.63988261, 0.63988261,
       0.63988261, 0.63988261, 0.76179894, 0.76179894, 0.76179894,
       0.76179894, 1.03182564, 1.03182564, 1.03182564, 1.03182564,
       1.55348275, 1.55348275, 1.55348275, 1.55348275, 2.43068895,
       2.43068895, 2.43068895, 2.43068895, 3.55229101, 3.55229101,
       3.55229101, 3.55229101, 4.16458528, 4.16458528, 4.16458528,
       4.16458528, 4.1800089 , 4.1800089 , 4.1800089 , 4.1800089 ,
       3.07676045, 3.07676045, 3.07676045, 3.07676045, 1.34520374,
       1.34520374, 1.34520374, 1.34520374, 1.02204848, 1.02204848,
       1.02204848, 1.02204848, 1.00037232, 1.00037232, 1.00037232,
       1.00037232, 1.00000011, 1.00000011, 1.00000011, 1.00000011,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.14957957e-01, 2.14957957e-01, 2.14957957e-01, 2.14957957e-01,
       4.47108627e-01, 4.47108627e-01, 4.47108627e-01, 4.47108627e-01,
       7.13561081e-01, 7.13561081e-01, 7.13561081e-01, 7.13561081e-01,
       1.11872396e+00, 1.11872396e+00, 1.11872396e+00, 1.11872396e+00,
       1.64431395e+00, 1.64431395e+00, 1.64431395e+00, 1.64431395e+00,
       2.29983169e+00, 2.29983169e+00, 2.29983169e+00, 2.29983169e+00,
       3.07089753e+00, 3.07089753e+00, 3.07089753e+00, 3.07089753e+00,
       3.94015044e+00, 3.94015044e+00, 3.94015044e+00, 3.94015044e+00,
       4.88739659e+00, 4.88739659e+00, 4.88739659e+00, 4.88739659e+00,
       5.89618557e+00, 5.89618557e+00, 5.89618557e+00, 5.89618557e+00,
       6.95255343e+00, 6.95255343e+00, 6.95255343e+00, 6.95255343e+00,
       8.02806459e+00, 8.02806459e+00, 8.02806459e+00, 8.02806459e+00,
       9.11164658e+00, 9.11164658e+00, 9.11164658e+00, 9.11164658e+00,
       1.01949310e+01, 1.01949310e+01, 1.01949310e+01, 1.01949310e+01,
       1.12753220e+01, 1.12753220e+01, 1.12753220e+01, 1.12753220e+01,
       1.23519886e+01, 1.23519886e+01, 1.23519886e+01, 1.23519886e+01,
       1.34230468e+01, 1.34230468e+01, 1.34230468e+01, 1.34230468e+01,
       1.44847959e+01, 1.44847959e+01, 1.44847959e+01, 1.44847959e+01,
       1.55291038e+01, 1.55291038e+01, 1.55291038e+01, 1.55291038e+01,
       1.65418026e+01, 1.65418026e+01, 1.65418026e+01, 1.65418026e+01,
       1.74975626e+01, 1.74975626e+01, 1.74975626e+01, 1.74975626e+01,
       1.83602647e+01, 1.83602647e+01, 1.83602647e+01, 1.83602647e+01,
       1.90815134e+01, 1.90815134e+01, 1.90815134e+01, 1.90815134e+01,
       1.96172465e+01, 1.96172465e+01, 1.96172465e+01, 1.96172465e+01,
       1.99474835e+01, 1.99474835e+01, 1.99474835e+01, 1.99474835e+01,
       2.00981416e+01, 2.00981416e+01, 2.00981416e+01, 2.00981416e+01,
       2.01352473e+01, 2.01352473e+01, 2.01352473e+01, 2.01352473e+01,
       2.01181972e+01, 2.01181972e+01, 2.01181972e+01, 2.01181972e+01,
       2.00565244e+01, 2.00565244e+01, 2.00565244e+01, 2.00565244e+01,
       2.00240733e+01, 2.00240733e+01, 2.00240733e+01, 2.00240733e+01,
       2.00089626e+01, 2.00089626e+01, 2.00089626e+01, 2.00089626e+01,
       1.99979297e+01, 1.99979297e+01, 1.99979297e+01, 1.99979297e+01,
       1.99863891e+01, 1.99863891e+01, 1.99863891e+01, 1.99863891e+01,
       1.99693717e+01, 1.99693717e+01, 1.99693717e+01, 1.99693717e+01,
       1.99445026e+01, 1.99445026e+01, 1.99445026e+01, 1.99445026e+01,
       1.99195116e+01, 1.99195116e+01, 1.99195116e+01, 1.99195116e+01,
       1.98964046e+01, 1.98964046e+01, 1.98964046e+01, 1.98964046e+01,
       1.98743565e+01, 1.98743565e+01, 1.98743565e+01, 1.98743565e+01,
       1.98541585e+01, 1.98541585e+01, 1.98541585e+01, 1.98541585e+01,
       1.98364920e+01, 1.98364920e+01, 1.98364920e+01, 1.98364920e+01,
       1.98206754e+01, 1.98206754e+01, 1.98206754e+01, 1.98206754e+01,
       1.98057571e+01, 1.98057571e+01, 1.98057571e+01, 1.98057571e+01,
       1.97923828e+01, 1.97923828e+01, 1.97923828e+01, 1.97923828e+01,
       1.97808552e+01, 1.97808552e+01, 1.97808552e+01, 1.97808552e+01,
       1.97709468e+01, 1.97709468e+01, 1.97709468e+01, 1.97709468e+01,
       1.97654812e+01, 1.97654812e+01, 1.97654812e+01, 1.97654812e+01,
       1.97477731e+01, 1.97477731e+01, 1.97477731e+01, 1.97477731e+01,
       1.96722020e+01, 1.96722020e+01, 1.96722020e+01, 1.96722020e+01,
       1.93272540e+01, 1.93272540e+01, 1.93272540e+01, 1.93272540e+01,
       1.78485419e+01, 1.78485419e+01, 1.78485419e+01, 1.78485419e+01,
       1.26228462e+01, 1.26228462e+01, 1.26228462e+01, 1.26228462e+01,
       2.71270096e+00, 2.71270096e+00, 2.71270096e+00, 2.71270096e+00,
       5.37681970e-02, 5.37681970e-02, 5.37681970e-02, 5.37681970e-02,
       7.39978310e-05, 7.39978310e-05, 7.39978310e-05, 7.39978310e-05,
       1.26879911e-08, 1.26879911e-08, 1.26879911e-08, 1.26879911e-08,
       2.06933606e-12, 2.06933606e-12, 2.06933606e-12, 2.06933606e-12,
       3.25161787e-16, 3.25161787e-16, 3.25161787e-16, 3.25161787e-16,
       5.40240794e-20, 5.40240794e-20, 5.40240794e-20, 5.40240794e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.91991427e+02, 9.91991427e+02, 9.91991427e+02, 9.91991427e+02,
       9.83398788e+02, 9.83398788e+02, 9.83398788e+02, 9.83398788e+02,
       9.73613696e+02, 9.73613696e+02, 9.73613696e+02, 9.73613696e+02,
       9.58908504e+02, 9.58908504e+02, 9.58908504e+02, 9.58908504e+02,
       9.40117970e+02, 9.40117970e+02, 9.40117970e+02, 9.40117970e+02,
       9.17130377e+02, 9.17130377e+02, 9.17130377e+02, 9.17130377e+02,
       8.90710253e+02, 8.90710253e+02, 8.90710253e+02, 8.90710253e+02,
       8.61710068e+02, 8.61710068e+02, 8.61710068e+02, 8.61710068e+02,
       8.31030081e+02, 8.31030081e+02, 8.31030081e+02, 8.31030081e+02,
       7.99387307e+02, 7.99387307e+02, 7.99387307e+02, 7.99387307e+02,
       7.67330949e+02, 7.67330949e+02, 7.67330949e+02, 7.67330949e+02,
       7.35690337e+02, 7.35690337e+02, 7.35690337e+02, 7.35690337e+02,
       7.05034804e+02, 7.05034804e+02, 7.05034804e+02, 7.05034804e+02,
       6.75527261e+02, 6.75527261e+02, 6.75527261e+02, 6.75527261e+02,
       6.47167439e+02, 6.47167439e+02, 6.47167439e+02, 6.47167439e+02,
       6.19930743e+02, 6.19930743e+02, 6.19930743e+02, 6.19930743e+02,
       5.93813015e+02, 5.93813015e+02, 5.93813015e+02, 5.93813015e+02,
       5.68863894e+02, 5.68863894e+02, 5.68863894e+02, 5.68863894e+02,
       5.45199993e+02, 5.45199993e+02, 5.45199993e+02, 5.45199993e+02,
       5.23075190e+02, 5.23075190e+02, 5.23075190e+02, 5.23075190e+02,
       5.02889600e+02, 5.02889600e+02, 5.02889600e+02, 5.02889600e+02,
       4.85266432e+02, 4.85266432e+02, 4.85266432e+02, 4.85266432e+02,
       4.70932260e+02, 4.70932260e+02, 4.70932260e+02, 4.70932260e+02,
       4.60518670e+02, 4.60518670e+02, 4.60518670e+02, 4.60518670e+02,
       4.54205957e+02, 4.54205957e+02, 4.54205957e+02, 4.54205957e+02,
       4.51352380e+02, 4.51352380e+02, 4.51352380e+02, 4.51352380e+02,
       4.50649917e+02, 4.50649917e+02, 4.50649917e+02, 4.50649917e+02,
       4.50971173e+02, 4.50971173e+02, 4.50971173e+02, 4.50971173e+02,
       4.52135940e+02, 4.52135940e+02, 4.52135940e+02, 4.52135940e+02,
       4.52753679e+02, 4.52753679e+02, 4.52753679e+02, 4.52753679e+02,
       4.53041751e+02, 4.53041751e+02, 4.53041751e+02, 4.53041751e+02,
       4.53249156e+02, 4.53249156e+02, 4.53249156e+02, 4.53249156e+02,
       4.53466954e+02, 4.53466954e+02, 4.53466954e+02, 4.53466954e+02,
       4.53791825e+02, 4.53791825e+02, 4.53791825e+02, 4.53791825e+02,
       4.54268545e+02, 4.54268545e+02, 4.54268545e+02, 4.54268545e+02,
       4.54750752e+02, 4.54750752e+02, 4.54750752e+02, 4.54750752e+02,
       4.55192196e+02, 4.55192196e+02, 4.55192196e+02, 4.55192196e+02,
       4.55599122e+02, 4.55599122e+02, 4.55599122e+02, 4.55599122e+02,
       4.55975922e+02, 4.55975922e+02, 4.55975922e+02, 4.55975922e+02,
       4.56329221e+02, 4.56329221e+02, 4.56329221e+02, 4.56329221e+02,
       4.56648137e+02, 4.56648137e+02, 4.56648137e+02, 4.56648137e+02,
       4.56923106e+02, 4.56923106e+02, 4.56923106e+02, 4.56923106e+02,
       4.57181465e+02, 4.57181465e+02, 4.57181465e+02, 4.57181465e+02,
       4.57438180e+02, 4.57438180e+02, 4.57438180e+02, 4.57438180e+02,
       4.57763252e+02, 4.57763252e+02, 4.57763252e+02, 4.57763252e+02,
       4.58282193e+02, 4.58282193e+02, 4.58282193e+02, 4.58282193e+02,
       4.58443493e+02, 4.58443493e+02, 4.58443493e+02, 4.58443493e+02,
       4.55958160e+02, 4.55958160e+02, 4.55958160e+02, 4.55958160e+02,
       4.38959204e+02, 4.38959204e+02, 4.38959204e+02, 4.38959204e+02,
       3.65073159e+02, 3.65073159e+02, 3.65073159e+02, 3.65073159e+02,
       1.68405632e+02, 1.68405632e+02, 1.68405632e+02, 1.68405632e+02,
       1.44222649e+01, 1.44222649e+01, 1.44222649e+01, 1.44222649e+01,
       7.69577756e-02, 7.69577756e-02, 7.69577756e-02, 7.69577756e-02,
       1.00097351e-02, 1.00097351e-02, 1.00097351e-02, 1.00097351e-02,
       1.00000015e-02, 1.00000015e-02, 1.00000015e-02, 1.00000015e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99133911, 0.99133911, 0.99133911, 0.99133911, 0.98292058,
       0.98292058, 0.98292058, 0.98292058, 0.97419061, 0.97419061,
       0.97419061, 0.97419061, 0.96144618, 0.96144618, 0.96144618,
       0.96144618, 0.94597586, 0.94597586, 0.94597586, 0.94597586,
       0.9276744 , 0.9276744 , 0.9276744 , 0.9276744 , 0.90721706,
       0.90721706, 0.90721706, 0.90721706, 0.88515443, 0.88515443,
       0.88515443, 0.88515443, 0.86202321, 0.86202321, 0.86202321,
       0.86202321, 0.83819213, 0.83819213, 0.83819213, 0.83819213,
       0.8141677 , 0.8141677 , 0.8141677 , 0.8141677 , 0.79048162,
       0.79048162, 0.79048162, 0.79048162, 0.76730128, 0.76730128,
       0.76730128, 0.76730128, 0.74474398, 0.74474398, 0.74474398,
       0.74474398, 0.72277684, 0.72277684, 0.72277684, 0.72277684,
       0.70140995, 0.70140995, 0.70140995, 0.70140995, 0.68067678,
       0.68067678, 0.68067678, 0.68067678, 0.66062128, 0.66062128,
       0.66062128, 0.66062128, 0.64151926, 0.64151926, 0.64151926,
       0.64151926, 0.62319637, 0.62319637, 0.62319637, 0.62319637,
       0.60726225, 0.60726225, 0.60726225, 0.60726225, 0.59190903,
       0.59190903, 0.59190903, 0.59190903, 0.58148652, 0.58148652,
       0.58148652, 0.58148652, 0.57278527, 0.57278527, 0.57278527,
       0.57278527, 0.56769271, 0.56769271, 0.56769271, 0.56769271,
       0.56654927, 0.56654927, 0.56654927, 0.56654927, 0.56583728,
       0.56583728, 0.56583728, 0.56583728, 0.56616565, 0.56616565,
       0.56616565, 0.56616565, 0.56694844, 0.56694844, 0.56694844,
       0.56694844, 0.56774994, 0.56774994, 0.56774994, 0.56774994,
       0.56799881, 0.56799881, 0.56799881, 0.56799881, 0.56803723,
       0.56803723, 0.56803723, 0.56803723, 0.56811091, 0.56811091,
       0.56811091, 0.56811091, 0.56837366, 0.56837366, 0.56837366,
       0.56837366, 0.56883911, 0.56883911, 0.56883911, 0.56883911,
       0.56920333, 0.56920333, 0.56920333, 0.56920333, 0.56943051,
       0.56943051, 0.56943051, 0.56943051, 0.56964182, 0.56964182,
       0.56964182, 0.56964182, 0.56994366, 0.56994366, 0.56994366,
       0.56994366, 0.57080637, 0.57080637, 0.57080637, 0.57080637,
       0.57400236, 0.57400236, 0.57400236, 0.57400236, 0.58513972,
       0.58513972, 0.58513972, 0.58513972, 0.61910673, 0.61910673,
       0.61910673, 0.61910673, 0.70892127, 0.70892127, 0.70892127,
       0.70892127, 0.91548374, 0.91548374, 0.91548374, 0.91548374,
       1.33078894, 1.33078894, 1.33078894, 1.33078894, 2.06133491,
       2.06133491, 2.06133491, 2.06133491, 3.15181689, 3.15181689,
       3.15181689, 3.15181689, 4.02701618, 4.02701618, 4.02701618,
       4.02701618, 4.28308718, 4.28308718, 4.28308718, 4.28308718,
       3.81910697, 3.81910697, 3.81910697, 3.81910697, 1.98110507,
       1.98110507, 1.98110507, 1.98110507, 1.08418873, 1.08418873,
       1.08418873, 1.08418873, 1.00343534, 1.00343534, 1.00343534,
       1.00343534, 1.00000606, 1.00000606, 1.00000606, 1.00000606,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.25290090e-01, 3.25290090e-01, 3.25290090e-01, 3.25290090e-01,
       6.43847125e-01, 6.43847125e-01, 6.43847125e-01, 6.43847125e-01,
       9.75722154e-01, 9.75722154e-01, 9.75722154e-01, 9.75722154e-01,
       1.46557297e+00, 1.46557297e+00, 1.46557297e+00, 1.46557297e+00,
       2.06705518e+00, 2.06705518e+00, 2.06705518e+00, 2.06705518e+00,
       2.78907819e+00, 2.78907819e+00, 2.78907819e+00, 2.78907819e+00,
       3.60976834e+00, 3.60976834e+00, 3.60976834e+00, 3.60976834e+00,
       4.51162281e+00, 4.51162281e+00, 4.51162281e+00, 4.51162281e+00,
       5.47661724e+00, 5.47661724e+00, 5.47661724e+00, 5.47661724e+00,
       6.49264130e+00, 6.49264130e+00, 6.49264130e+00, 6.49264130e+00,
       7.53660887e+00, 7.53660887e+00, 7.53660887e+00, 7.53660887e+00,
       8.59198431e+00, 8.59198431e+00, 8.59198431e+00, 8.59198431e+00,
       9.64916487e+00, 9.64916487e+00, 9.64916487e+00, 9.64916487e+00,
       1.07051453e+01, 1.07051453e+01, 1.07051453e+01, 1.07051453e+01,
       1.17579310e+01, 1.17579310e+01, 1.17579310e+01, 1.17579310e+01,
       1.28067954e+01, 1.28067954e+01, 1.28067954e+01, 1.28067954e+01,
       1.38494448e+01, 1.38494448e+01, 1.38494448e+01, 1.38494448e+01,
       1.48812924e+01, 1.48812924e+01, 1.48812924e+01, 1.48812924e+01,
       1.58928454e+01, 1.58928454e+01, 1.58928454e+01, 1.58928454e+01,
       1.68680207e+01, 1.68680207e+01, 1.68680207e+01, 1.68680207e+01,
       1.77790951e+01, 1.77790951e+01, 1.77790951e+01, 1.77790951e+01,
       1.85881715e+01, 1.85881715e+01, 1.85881715e+01, 1.85881715e+01,
       1.92479302e+01, 1.92479302e+01, 1.92479302e+01, 1.92479302e+01,
       1.97200343e+01, 1.97200343e+01, 1.97200343e+01, 1.97200343e+01,
       1.99952626e+01, 1.99952626e+01, 1.99952626e+01, 1.99952626e+01,
       2.01098122e+01, 2.01098122e+01, 2.01098122e+01, 2.01098122e+01,
       2.01323555e+01, 2.01323555e+01, 2.01323555e+01, 2.01323555e+01,
       2.01039208e+01, 2.01039208e+01, 2.01039208e+01, 2.01039208e+01,
       2.00468661e+01, 2.00468661e+01, 2.00468661e+01, 2.00468661e+01,
       2.00198405e+01, 2.00198405e+01, 2.00198405e+01, 2.00198405e+01,
       2.00061051e+01, 2.00061051e+01, 2.00061051e+01, 2.00061051e+01,
       1.99950115e+01, 1.99950115e+01, 1.99950115e+01, 1.99950115e+01,
       1.99825634e+01, 1.99825634e+01, 1.99825634e+01, 1.99825634e+01,
       1.99636417e+01, 1.99636417e+01, 1.99636417e+01, 1.99636417e+01,
       1.99376749e+01, 1.99376749e+01, 1.99376749e+01, 1.99376749e+01,
       1.99131873e+01, 1.99131873e+01, 1.99131873e+01, 1.99131873e+01,
       1.98905974e+01, 1.98905974e+01, 1.98905974e+01, 1.98905974e+01,
       1.98692438e+01, 1.98692438e+01, 1.98692438e+01, 1.98692438e+01,
       1.98493625e+01, 1.98493625e+01, 1.98493625e+01, 1.98493625e+01,
       1.98317370e+01, 1.98317370e+01, 1.98317370e+01, 1.98317370e+01,
       1.98164911e+01, 1.98164911e+01, 1.98164911e+01, 1.98164911e+01,
       1.98024735e+01, 1.98024735e+01, 1.98024735e+01, 1.98024735e+01,
       1.97894710e+01, 1.97894710e+01, 1.97894710e+01, 1.97894710e+01,
       1.97780897e+01, 1.97780897e+01, 1.97780897e+01, 1.97780897e+01,
       1.97674568e+01, 1.97674568e+01, 1.97674568e+01, 1.97674568e+01,
       1.97612054e+01, 1.97612054e+01, 1.97612054e+01, 1.97612054e+01,
       1.97524408e+01, 1.97524408e+01, 1.97524408e+01, 1.97524408e+01,
       1.97136422e+01, 1.97136422e+01, 1.97136422e+01, 1.97136422e+01,
       1.95403967e+01, 1.95403967e+01, 1.95403967e+01, 1.95403967e+01,
       1.87695037e+01, 1.87695037e+01, 1.87695037e+01, 1.87695037e+01,
       1.57483105e+01, 1.57483105e+01, 1.57483105e+01, 1.57483105e+01,
       7.26747736e+00, 7.26747736e+00, 7.26747736e+00, 7.26747736e+00,
       4.38929043e-01, 4.38929043e-01, 4.38929043e-01, 4.38929043e-01,
       2.34025635e-03, 2.34025635e-03, 2.34025635e-03, 2.34025635e-03,
       7.25432818e-07, 7.25432818e-07, 7.25432818e-07, 7.25432818e-07,
       1.11193400e-10, 1.11193400e-10, 1.11193400e-10, 1.11193400e-10,
       1.76869480e-14, 1.76869480e-14, 1.76869480e-14, 1.76869480e-14,
       2.85535124e-18, 2.85535124e-18, 2.85535124e-18, 2.85535124e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87906280e+02, 9.87906280e+02, 9.87906280e+02, 9.87906280e+02,
       9.76174941e+02, 9.76174941e+02, 9.76174941e+02, 9.76174941e+02,
       9.64072771e+02, 9.64072771e+02, 9.64072771e+02, 9.64072771e+02,
       9.46471139e+02, 9.46471139e+02, 9.46471139e+02, 9.46471139e+02,
       9.25234369e+02, 9.25234369e+02, 9.25234369e+02, 9.25234369e+02,
       9.00287177e+02, 9.00287177e+02, 9.00287177e+02, 9.00287177e+02,
       8.72631649e+02, 8.72631649e+02, 8.72631649e+02, 8.72631649e+02,
       8.43081763e+02, 8.43081763e+02, 8.43081763e+02, 8.43081763e+02,
       8.12413334e+02, 8.12413334e+02, 8.12413334e+02, 8.12413334e+02,
       7.81158038e+02, 7.81158038e+02, 7.81158038e+02, 7.81158038e+02,
       7.49976361e+02, 7.49976361e+02, 7.49976361e+02, 7.49976361e+02,
       7.19607955e+02, 7.19607955e+02, 7.19607955e+02, 7.19607955e+02,
       6.90244348e+02, 6.90244348e+02, 6.90244348e+02, 6.90244348e+02,
       6.62006070e+02, 6.62006070e+02, 6.62006070e+02, 6.62006070e+02,
       6.34835316e+02, 6.34835316e+02, 6.34835316e+02, 6.34835316e+02,
       6.08723776e+02, 6.08723776e+02, 6.08723776e+02, 6.08723776e+02,
       5.83682527e+02, 5.83682527e+02, 5.83682527e+02, 5.83682527e+02,
       5.59779886e+02, 5.59779886e+02, 5.59779886e+02, 5.59779886e+02,
       5.37159931e+02, 5.37159931e+02, 5.37159931e+02, 5.37159931e+02,
       5.16112600e+02, 5.16112600e+02, 5.16112600e+02, 5.16112600e+02,
       4.97076250e+02, 4.97076250e+02, 4.97076250e+02, 4.97076250e+02,
       4.80695875e+02, 4.80695875e+02, 4.80695875e+02, 4.80695875e+02,
       4.67679348e+02, 4.67679348e+02, 4.67679348e+02, 4.67679348e+02,
       4.58546259e+02, 4.58546259e+02, 4.58546259e+02, 4.58546259e+02,
       4.53296009e+02, 4.53296009e+02, 4.53296009e+02, 4.53296009e+02,
       4.51129021e+02, 4.51129021e+02, 4.51129021e+02, 4.51129021e+02,
       4.50704444e+02, 4.50704444e+02, 4.50704444e+02, 4.50704444e+02,
       4.51242012e+02, 4.51242012e+02, 4.51242012e+02, 4.51242012e+02,
       4.52320289e+02, 4.52320289e+02, 4.52320289e+02, 4.52320289e+02,
       4.52832280e+02, 4.52832280e+02, 4.52832280e+02, 4.52832280e+02,
       4.53095183e+02, 4.53095183e+02, 4.53095183e+02, 4.53095183e+02,
       4.53305822e+02, 4.53305822e+02, 4.53305822e+02, 4.53305822e+02,
       4.53541196e+02, 4.53541196e+02, 4.53541196e+02, 4.53541196e+02,
       4.53899663e+02, 4.53899663e+02, 4.53899663e+02, 4.53899663e+02,
       4.54393535e+02, 4.54393535e+02, 4.54393535e+02, 4.54393535e+02,
       4.54864936e+02, 4.54864936e+02, 4.54864936e+02, 4.54864936e+02,
       4.55303481e+02, 4.55303481e+02, 4.55303481e+02, 4.55303481e+02,
       4.55707477e+02, 4.55707477e+02, 4.55707477e+02, 4.55707477e+02,
       4.56071530e+02, 4.56071530e+02, 4.56071530e+02, 4.56071530e+02,
       4.56406325e+02, 4.56406325e+02, 4.56406325e+02, 4.56406325e+02,
       4.56717719e+02, 4.56717719e+02, 4.56717719e+02, 4.56717719e+02,
       4.56992693e+02, 4.56992693e+02, 4.56992693e+02, 4.56992693e+02,
       4.57237821e+02, 4.57237821e+02, 4.57237821e+02, 4.57237821e+02,
       4.57481191e+02, 4.57481191e+02, 4.57481191e+02, 4.57481191e+02,
       4.57744387e+02, 4.57744387e+02, 4.57744387e+02, 4.57744387e+02,
       4.58159054e+02, 4.58159054e+02, 4.58159054e+02, 4.58159054e+02,
       4.58594305e+02, 4.58594305e+02, 4.58594305e+02, 4.58594305e+02,
       4.57858557e+02, 4.57858557e+02, 4.57858557e+02, 4.57858557e+02,
       4.50044024e+02, 4.50044024e+02, 4.50044024e+02, 4.50044024e+02,
       4.10501297e+02, 4.10501297e+02, 4.10501297e+02, 4.10501297e+02,
       2.72947363e+02, 2.72947363e+02, 2.72947363e+02, 2.72947363e+02,
       6.00463556e+01, 6.00463556e+01, 6.00463556e+01, 6.00463556e+01,
       1.21367312e+00, 1.21367312e+00, 1.21367312e+00, 1.21367312e+00,
       1.08313285e-02, 1.08313285e-02, 1.08313285e-02, 1.08313285e-02,
       1.00000857e-02, 1.00000857e-02, 1.00000857e-02, 1.00000857e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_hll
{'none_hll': [{'rho': array([0.96262329, 0.96262329, 0.96262329, 0.96262329, 0.95292015,
       0.95292015, 0.95292015, 0.95292015, 0.94187655, 0.94187655,
       0.94187655, 0.94187655, 0.92958523, 0.92958523, 0.92958523,
       0.92958523, 0.91614889, 0.91614889, 0.91614889, 0.91614889,
       0.9016891 , 0.9016891 , 0.9016891 , 0.9016891 , 0.88633863,
       0.88633863, 0.88633863, 0.88633863, 0.87023469, 0.87023469,
       0.87023469, 0.87023469, 0.85351349, 0.85351349, 0.85351349,
       0.85351349, 0.8363065 , 0.8363065 , 0.8363065 , 0.8363065 ,
       0.81873804, 0.81873804, 0.81873804, 0.81873804, 0.80092415,
       0.80092415, 0.80092415, 0.80092415, 0.78297243, 0.78297243,
       0.78297243, 0.78297243, 0.76498267, 0.76498267, 0.76498267,
       0.76498267, 0.74704803, 0.74704803, 0.74704803, 0.74704803,
       0.72925675, 0.72925675, 0.72925675, 0.72925675, 0.71169435,
       0.71169435, 0.71169435, 0.71169435, 0.69444628, 0.69444628,
       0.69444628, 0.69444628, 0.6776013 , 0.6776013 , 0.6776013 ,
       0.6776013 , 0.66125559, 0.66125559, 0.66125559, 0.66125559,
       0.64551785, 0.64551785, 0.64551785, 0.64551785, 0.63051555,
       0.63051555, 0.63051555, 0.63051555, 0.61640212, 0.61640212,
       0.61640212, 0.61640212, 0.6033641 , 0.6033641 , 0.6033641 ,
       0.6033641 , 0.59162547, 0.59162547, 0.59162547, 0.59162547,
       0.58144321, 0.58144321, 0.58144321, 0.58144321, 0.57308387,
       0.57308387, 0.57308387, 0.57308387, 0.5667695 , 0.5667695 ,
       0.5667695 , 0.5667695 , 0.56259223, 0.56259223, 0.56259223,
       0.56259223, 0.5604295 , 0.5604295 , 0.5604295 , 0.5604295 ,
       0.55993197, 0.55993197, 0.55993197, 0.55993197, 0.56064241,
       0.56064241, 0.56064241, 0.56064241, 0.56220257, 0.56220257,
       0.56220257, 0.56220257, 0.56453573, 0.56453573, 0.56453573,
       0.56453573, 0.56792111, 0.56792111, 0.56792111, 0.56792111,
       0.57302161, 0.57302161, 0.57302161, 0.57302161, 0.58094766,
       0.58094766, 0.58094766, 0.58094766, 0.59338194, 0.59338194,
       0.59338194, 0.59338194, 0.61278127, 0.61278127, 0.61278127,
       0.61278127, 0.64267222, 0.64267222, 0.64267222, 0.64267222,
       0.68810064, 0.68810064, 0.68810064, 0.68810064, 0.75635209,
       0.75635209, 0.75635209, 0.75635209, 0.85813623, 0.85813623,
       0.85813623, 0.85813623, 1.00951022, 1.00951022, 1.00951022,
       1.00951022, 1.23478014, 1.23478014, 1.23478014, 1.23478014,
       1.57016034, 1.57016034, 1.57016034, 1.57016034, 2.02902941,
       2.02902941, 2.02902941, 2.02902941, 2.54214966, 2.54214966,
       2.54214966, 2.54214966, 3.0202242 , 3.0202242 , 3.0202242 ,
       3.0202242 , 3.31178259, 3.31178259, 3.31178259, 3.31178259,
       3.22437971, 3.22437971, 3.22437971, 3.22437971, 2.65275743,
       2.65275743, 2.65275743, 2.65275743, 1.80505429, 1.80505429,
       1.80505429, 1.80505429, 1.19452145, 1.19452145, 1.19452145,
       1.19452145, 1.01387818, 1.01387818, 1.01387818, 1.01387818,
       1.0001771 , 1.0001771 , 1.0001771 , 1.0001771 , 1.00000035,
       1.00000035, 1.00000035, 1.00000035, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.41419412e+00, 1.41419412e+00, 1.41419412e+00, 1.41419412e+00,
       1.78883739e+00, 1.78883739e+00, 1.78883739e+00, 1.78883739e+00,
       2.21825857e+00, 2.21825857e+00, 2.21825857e+00, 2.21825857e+00,
       2.70047651e+00, 2.70047651e+00, 2.70047651e+00, 2.70047651e+00,
       3.23311666e+00, 3.23311666e+00, 3.23311666e+00, 3.23311666e+00,
       3.81304395e+00, 3.81304395e+00, 3.81304395e+00, 3.81304395e+00,
       4.43661839e+00, 4.43661839e+00, 4.43661839e+00, 4.43661839e+00,
       5.09991584e+00, 5.09991584e+00, 5.09991584e+00, 5.09991584e+00,
       5.79890026e+00, 5.79890026e+00, 5.79890026e+00, 5.79890026e+00,
       6.52954505e+00, 6.52954505e+00, 6.52954505e+00, 6.52954505e+00,
       7.28790743e+00, 7.28790743e+00, 7.28790743e+00, 7.28790743e+00,
       8.07016183e+00, 8.07016183e+00, 8.07016183e+00, 8.07016183e+00,
       8.87259884e+00, 8.87259884e+00, 8.87259884e+00, 8.87259884e+00,
       9.69159468e+00, 9.69159468e+00, 9.69159468e+00, 9.69159468e+00,
       1.05235545e+01, 1.05235545e+01, 1.05235545e+01, 1.05235545e+01,
       1.13648293e+01, 1.13648293e+01, 1.13648293e+01, 1.13648293e+01,
       1.22116044e+01, 1.22116044e+01, 1.22116044e+01, 1.22116044e+01,
       1.30597527e+01, 1.30597527e+01, 1.30597527e+01, 1.30597527e+01,
       1.39046431e+01, 1.39046431e+01, 1.39046431e+01, 1.39046431e+01,
       1.47408898e+01, 1.47408898e+01, 1.47408898e+01, 1.47408898e+01,
       1.55620288e+01, 1.55620288e+01, 1.55620288e+01, 1.55620288e+01,
       1.63601078e+01, 1.63601078e+01, 1.63601078e+01, 1.63601078e+01,
       1.71251997e+01, 1.71251997e+01, 1.71251997e+01, 1.71251997e+01,
       1.78448993e+01, 1.78448993e+01, 1.78448993e+01, 1.78448993e+01,
       1.85039895e+01, 1.85039895e+01, 1.85039895e+01, 1.85039895e+01,
       1.90846801e+01, 1.90846801e+01, 1.90846801e+01, 1.90846801e+01,
       1.95681279e+01, 1.95681279e+01, 1.95681279e+01, 1.95681279e+01,
       1.99380647e+01, 1.99380647e+01, 1.99380647e+01, 1.99380647e+01,
       2.01866601e+01, 2.01866601e+01, 2.01866601e+01, 2.01866601e+01,
       2.03205654e+01, 2.03205654e+01, 2.03205654e+01, 2.03205654e+01,
       2.03625340e+01, 2.03625340e+01, 2.03625340e+01, 2.03625340e+01,
       2.03450671e+01, 2.03450671e+01, 2.03450671e+01, 2.03450671e+01,
       2.02991317e+01, 2.02991317e+01, 2.02991317e+01, 2.02991317e+01,
       2.02456046e+01, 2.02456046e+01, 2.02456046e+01, 2.02456046e+01,
       2.01946657e+01, 2.01946657e+01, 2.01946657e+01, 2.01946657e+01,
       2.01495851e+01, 2.01495851e+01, 2.01495851e+01, 2.01495851e+01,
       2.01104796e+01, 2.01104796e+01, 2.01104796e+01, 2.01104796e+01,
       2.00765652e+01, 2.00765652e+01, 2.00765652e+01, 2.00765652e+01,
       2.00469486e+01, 2.00469486e+01, 2.00469486e+01, 2.00469486e+01,
       2.00208526e+01, 2.00208526e+01, 2.00208526e+01, 2.00208526e+01,
       1.99976473e+01, 1.99976473e+01, 1.99976473e+01, 1.99976473e+01,
       1.99768232e+01, 1.99768232e+01, 1.99768232e+01, 1.99768232e+01,
       1.99579134e+01, 1.99579134e+01, 1.99579134e+01, 1.99579134e+01,
       1.99401110e+01, 1.99401110e+01, 1.99401110e+01, 1.99401110e+01,
       1.99203376e+01, 1.99203376e+01, 1.99203376e+01, 1.99203376e+01,
       1.98860888e+01, 1.98860888e+01, 1.98860888e+01, 1.98860888e+01,
       1.98001469e+01, 1.98001469e+01, 1.98001469e+01, 1.98001469e+01,
       1.95757462e+01, 1.95757462e+01, 1.95757462e+01, 1.95757462e+01,
       1.90484237e+01, 1.90484237e+01, 1.90484237e+01, 1.90484237e+01,
       1.79421767e+01, 1.79421767e+01, 1.79421767e+01, 1.79421767e+01,
       1.58163176e+01, 1.58163176e+01, 1.58163176e+01, 1.58163176e+01,
       1.20498338e+01, 1.20498338e+01, 1.20498338e+01, 1.20498338e+01,
       6.43761226e+00, 6.43761226e+00, 6.43761226e+00, 6.43761226e+00,
       1.39778927e+00, 1.39778927e+00, 1.39778927e+00, 1.39778927e+00,
       5.17644049e-02, 5.17644049e-02, 5.17644049e-02, 5.17644049e-02,
       1.82914635e-04, 1.82914635e-04, 1.82914635e-04, 1.82914635e-04,
       7.98774300e-08, 7.98774300e-08, 7.98774300e-08, 7.98774300e-08,
       2.66087619e-11, 2.66087619e-11, 2.66087619e-11, 2.66087619e-11,
       8.81761175e-15, 8.81761175e-15, 8.81761175e-15, 8.81761175e-15,
       2.88036046e-18, 2.88036046e-18, 2.88036046e-18, 2.88036046e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.48220610e+02, 9.48220610e+02, 9.48220610e+02, 9.48220610e+02,
       9.34902944e+02, 9.34902944e+02, 9.34902944e+02, 9.34902944e+02,
       9.19831060e+02, 9.19831060e+02, 9.19831060e+02, 9.19831060e+02,
       9.03151270e+02, 9.03151270e+02, 9.03151270e+02, 9.03151270e+02,
       8.85026662e+02, 8.85026662e+02, 8.85026662e+02, 8.85026662e+02,
       8.65646386e+02, 8.65646386e+02, 8.65646386e+02, 8.65646386e+02,
       8.45213155e+02, 8.45213155e+02, 8.45213155e+02, 8.45213155e+02,
       8.23932702e+02, 8.23932702e+02, 8.23932702e+02, 8.23932702e+02,
       8.02005750e+02, 8.02005750e+02, 8.02005750e+02, 8.02005750e+02,
       7.79622496e+02, 7.79622496e+02, 7.79622496e+02, 7.79622496e+02,
       7.56959321e+02, 7.56959321e+02, 7.56959321e+02, 7.56959321e+02,
       7.34177328e+02, 7.34177328e+02, 7.34177328e+02, 7.34177328e+02,
       7.11422289e+02, 7.11422289e+02, 7.11422289e+02, 7.11422289e+02,
       6.88825627e+02, 6.88825627e+02, 6.88825627e+02, 6.88825627e+02,
       6.66506181e+02, 6.66506181e+02, 6.66506181e+02, 6.66506181e+02,
       6.44572547e+02, 6.44572547e+02, 6.44572547e+02, 6.44572547e+02,
       6.23125941e+02, 6.23125941e+02, 6.23125941e+02, 6.23125941e+02,
       6.02263562e+02, 6.02263562e+02, 6.02263562e+02, 6.02263562e+02,
       5.82082578e+02, 5.82082578e+02, 5.82082578e+02, 5.82082578e+02,
       5.62684871e+02, 5.62684871e+02, 5.62684871e+02, 5.62684871e+02,
       5.44182753e+02, 5.44182753e+02, 5.44182753e+02, 5.44182753e+02,
       5.26705766e+02, 5.26705766e+02, 5.26705766e+02, 5.26705766e+02,
       5.10408370e+02, 5.10408370e+02, 5.10408370e+02, 5.10408370e+02,
       4.95477456e+02, 4.95477456e+02, 4.95477456e+02, 4.95477456e+02,
       4.82136707e+02, 4.82136707e+02, 4.82136707e+02, 4.82136707e+02,
       4.70641376e+02, 4.70641376e+02, 4.70641376e+02, 4.70641376e+02,
       4.61252431e+02, 4.61252431e+02, 4.61252431e+02, 4.61252431e+02,
       4.54177107e+02, 4.54177107e+02, 4.54177107e+02, 4.54177107e+02,
       4.49473996e+02, 4.49473996e+02, 4.49473996e+02, 4.49473996e+02,
       4.46955714e+02, 4.46955714e+02, 4.46955714e+02, 4.46955714e+02,
       4.46165009e+02, 4.46165009e+02, 4.46165009e+02, 4.46165009e+02,
       4.46485695e+02, 4.46485695e+02, 4.46485695e+02, 4.46485695e+02,
       4.47339548e+02, 4.47339548e+02, 4.47339548e+02, 4.47339548e+02,
       4.48337508e+02, 4.48337508e+02, 4.48337508e+02, 4.48337508e+02,
       4.49289395e+02, 4.49289395e+02, 4.49289395e+02, 4.49289395e+02,
       4.50134048e+02, 4.50134048e+02, 4.50134048e+02, 4.50134048e+02,
       4.50869836e+02, 4.50869836e+02, 4.50869836e+02, 4.50869836e+02,
       4.51512780e+02, 4.51512780e+02, 4.51512780e+02, 4.51512780e+02,
       4.52081898e+02, 4.52081898e+02, 4.52081898e+02, 4.52081898e+02,
       4.52595215e+02, 4.52595215e+02, 4.52595215e+02, 4.52595215e+02,
       4.53069511e+02, 4.53069511e+02, 4.53069511e+02, 4.53069511e+02,
       4.53521071e+02, 4.53521071e+02, 4.53521071e+02, 4.53521071e+02,
       4.53965340e+02, 4.53965340e+02, 4.53965340e+02, 4.53965340e+02,
       4.54407381e+02, 4.54407381e+02, 4.54407381e+02, 4.54407381e+02,
       4.54782427e+02, 4.54782427e+02, 4.54782427e+02, 4.54782427e+02,
       4.54679238e+02, 4.54679238e+02, 4.54679238e+02, 4.54679238e+02,
       4.52448893e+02, 4.52448893e+02, 4.52448893e+02, 4.52448893e+02,
       4.43824090e+02, 4.43824090e+02, 4.43824090e+02, 4.43824090e+02,
       4.20337686e+02, 4.20337686e+02, 4.20337686e+02, 4.20337686e+02,
       3.69484546e+02, 3.69484546e+02, 3.69484546e+02, 3.69484546e+02,
       2.80602938e+02, 2.80602938e+02, 2.80602938e+02, 2.80602938e+02,
       1.60681588e+02, 1.60681588e+02, 1.60681588e+02, 1.60681588e+02,
       5.29503080e+01, 5.29503080e+01, 5.29503080e+01, 5.29503080e+01,
       5.56597022e+00, 5.56597022e+00, 5.56597022e+00, 5.56597022e+00,
       7.81466416e-02, 7.81466416e-02, 7.81466416e-02, 7.81466416e-02,
       1.00355924e-02, 1.00355924e-02, 1.00355924e-02, 1.00355924e-02,
       1.00000095e-02, 1.00000095e-02, 1.00000095e-02, 1.00000095e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99009996, 0.99009996, 0.99009996, 0.99009996, 0.98079728,
       0.98079728, 0.98079728, 0.98079728, 0.97117513, 0.97117513,
       0.97117513, 0.97117513, 0.95762729, 0.95762729, 0.95762729,
       0.95762729, 0.94142953, 0.94142953, 0.94142953, 0.94142953,
       0.92272455, 0.92272455, 0.92272455, 0.92272455, 0.90213778,
       0.90213778, 0.90213778, 0.90213778, 0.88019506, 0.88019506,
       0.88019506, 0.88019506, 0.8573279 , 0.8573279 , 0.8573279 ,
       0.8573279 , 0.83388586, 0.83388586, 0.83388586, 0.83388586,
       0.8103593 , 0.8103593 , 0.8103593 , 0.8103593 , 0.78735681,
       0.78735681, 0.78735681, 0.78735681, 0.76511282, 0.76511282,
       0.76511282, 0.76511282, 0.74361635, 0.74361635, 0.74361635,
       0.74361635, 0.72287492, 0.72287492, 0.72287492, 0.72287492,
       0.70291453, 0.70291453, 0.70291453, 0.70291453, 0.68379431,
       0.68379431, 0.68379431, 0.68379431, 0.66561946, 0.66561946,
       0.66561946, 0.66561946, 0.64854061, 0.64854061, 0.64854061,
       0.64854061, 0.63273412, 0.63273412, 0.63273412, 0.63273412,
       0.61836564, 0.61836564, 0.61836564, 0.61836564, 0.60555414,
       0.60555414, 0.60555414, 0.60555414, 0.59436881, 0.59436881,
       0.59436881, 0.59436881, 0.58488492, 0.58488492, 0.58488492,
       0.58488492, 0.57726939, 0.57726939, 0.57726939, 0.57726939,
       0.57177743, 0.57177743, 0.57177743, 0.57177743, 0.56855526,
       0.56855526, 0.56855526, 0.56855526, 0.56733881, 0.56733881,
       0.56733881, 0.56733881, 0.56730464, 0.56730464, 0.56730464,
       0.56730464, 0.56754209, 0.56754209, 0.56754209, 0.56754209,
       0.5676676 , 0.5676676 , 0.5676676 , 0.5676676 , 0.56747076,
       0.56747076, 0.56747076, 0.56747076, 0.56700475, 0.56700475,
       0.56700475, 0.56700475, 0.56673193, 0.56673193, 0.56673193,
       0.56673193, 0.56658818, 0.56658818, 0.56658818, 0.56658818,
       0.56660117, 0.56660117, 0.56660117, 0.56660117, 0.56721514,
       0.56721514, 0.56721514, 0.56721514, 0.56947087, 0.56947087,
       0.56947087, 0.56947087, 0.57522826, 0.57522826, 0.57522826,
       0.57522826, 0.58788102, 0.58788102, 0.58788102, 0.58788102,
       0.61339093, 0.61339093, 0.61339093, 0.61339093, 0.66191566,
       0.66191566, 0.66191566, 0.66191566, 0.7503941 , 0.7503941 ,
       0.7503941 , 0.7503941 , 0.90622262, 0.90622262, 0.90622262,
       0.90622262, 1.17163176, 1.17163176, 1.17163176, 1.17163176,
       1.60647461, 1.60647461, 1.60647461, 1.60647461, 2.28018986,
       2.28018986, 2.28018986, 2.28018986, 3.12452995, 3.12452995,
       3.12452995, 3.12452995, 3.74154011, 3.74154011, 3.74154011,
       3.74154011, 3.94349823, 3.94349823, 3.94349823, 3.94349823,
       3.47975134, 3.47975134, 3.47975134, 3.47975134, 1.76601771,
       1.76601771, 1.76601771, 1.76601771, 1.04278667, 1.04278667,
       1.04278667, 1.04278667, 1.00063976, 1.00063976, 1.00063976,
       1.00063976, 1.000002  , 1.000002  , 1.000002  , 1.000002  ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.71214413e-01, 3.71214413e-01, 3.71214413e-01, 3.71214413e-01,
       7.24051149e-01, 7.24051149e-01, 7.24051149e-01, 7.24051149e-01,
       1.09070799e+00, 1.09070799e+00, 1.09070799e+00, 1.09070799e+00,
       1.61244052e+00, 1.61244052e+00, 1.61244052e+00, 1.61244052e+00,
       2.24398795e+00, 2.24398795e+00, 2.24398795e+00, 2.24398795e+00,
       2.98433948e+00, 2.98433948e+00, 2.98433948e+00, 2.98433948e+00,
       3.81323583e+00, 3.81323583e+00, 3.81323583e+00, 3.81323583e+00,
       4.71361364e+00, 4.71361364e+00, 4.71361364e+00, 4.71361364e+00,
       5.67171883e+00, 5.67171883e+00, 5.67171883e+00, 5.67171883e+00,
       6.67789199e+00, 6.67789199e+00, 6.67789199e+00, 6.67789199e+00,
       7.70441370e+00, 7.70441370e+00, 7.70441370e+00, 7.70441370e+00,
       8.73273268e+00, 8.73273268e+00, 8.73273268e+00, 8.73273268e+00,
       9.75221103e+00, 9.75221103e+00, 9.75221103e+00, 9.75221103e+00,
       1.07599049e+01, 1.07599049e+01, 1.07599049e+01, 1.07599049e+01,
       1.17540097e+01, 1.17540097e+01, 1.17540097e+01, 1.17540097e+01,
       1.27317276e+01, 1.27317276e+01, 1.27317276e+01, 1.27317276e+01,
       1.36888505e+01, 1.36888505e+01, 1.36888505e+01, 1.36888505e+01,
       1.46193231e+01, 1.46193231e+01, 1.46193231e+01, 1.46193231e+01,
       1.55146881e+01, 1.55146881e+01, 1.55146881e+01, 1.55146881e+01,
       1.63636987e+01, 1.63636987e+01, 1.63636987e+01, 1.63636987e+01,
       1.71524418e+01, 1.71524418e+01, 1.71524418e+01, 1.71524418e+01,
       1.78652593e+01, 1.78652593e+01, 1.78652593e+01, 1.78652593e+01,
       1.84866404e+01, 1.84866404e+01, 1.84866404e+01, 1.84866404e+01,
       1.90040865e+01, 1.90040865e+01, 1.90040865e+01, 1.90040865e+01,
       1.94113585e+01, 1.94113585e+01, 1.94113585e+01, 1.94113585e+01,
       1.97105480e+01, 1.97105480e+01, 1.97105480e+01, 1.97105480e+01,
       1.99120445e+01, 1.99120445e+01, 1.99120445e+01, 1.99120445e+01,
       2.00328035e+01, 2.00328035e+01, 2.00328035e+01, 2.00328035e+01,
       2.00939353e+01, 2.00939353e+01, 2.00939353e+01, 2.00939353e+01,
       2.01167707e+01, 2.01167707e+01, 2.01167707e+01, 2.01167707e+01,
       2.01197792e+01, 2.01197792e+01, 2.01197792e+01, 2.01197792e+01,
       2.01074074e+01, 2.01074074e+01, 2.01074074e+01, 2.01074074e+01,
       2.00728629e+01, 2.00728629e+01, 2.00728629e+01, 2.00728629e+01,
       2.00133514e+01, 2.00133514e+01, 2.00133514e+01, 2.00133514e+01,
       1.99495226e+01, 1.99495226e+01, 1.99495226e+01, 1.99495226e+01,
       1.98997208e+01, 1.98997208e+01, 1.98997208e+01, 1.98997208e+01,
       1.98634959e+01, 1.98634959e+01, 1.98634959e+01, 1.98634959e+01,
       1.98359993e+01, 1.98359993e+01, 1.98359993e+01, 1.98359993e+01,
       1.98148995e+01, 1.98148995e+01, 1.98148995e+01, 1.98148995e+01,
       1.97990188e+01, 1.97990188e+01, 1.97990188e+01, 1.97990188e+01,
       1.97864598e+01, 1.97864598e+01, 1.97864598e+01, 1.97864598e+01,
       1.97757303e+01, 1.97757303e+01, 1.97757303e+01, 1.97757303e+01,
       1.97670663e+01, 1.97670663e+01, 1.97670663e+01, 1.97670663e+01,
       1.97606562e+01, 1.97606562e+01, 1.97606562e+01, 1.97606562e+01,
       1.97563225e+01, 1.97563225e+01, 1.97563225e+01, 1.97563225e+01,
       1.97574019e+01, 1.97574019e+01, 1.97574019e+01, 1.97574019e+01,
       1.97535996e+01, 1.97535996e+01, 1.97535996e+01, 1.97535996e+01,
       1.97149405e+01, 1.97149405e+01, 1.97149405e+01, 1.97149405e+01,
       1.95165373e+01, 1.95165373e+01, 1.95165373e+01, 1.95165373e+01,
       1.86180277e+01, 1.86180277e+01, 1.86180277e+01, 1.86180277e+01,
       1.50712409e+01, 1.50712409e+01, 1.50712409e+01, 1.50712409e+01,
       6.44555578e+00, 6.44555578e+00, 6.44555578e+00, 6.44555578e+00,
       3.40134655e-01, 3.40134655e-01, 3.40134655e-01, 3.40134655e-01,
       1.99855938e-03, 1.99855938e-03, 1.99855938e-03, 1.99855938e-03,
       9.27909710e-07, 9.27909710e-07, 9.27909710e-07, 9.27909710e-07,
       1.31626259e-10, 1.31626259e-10, 1.31626259e-10, 1.31626259e-10,
       1.91069012e-14, 1.91069012e-14, 1.91069012e-14, 1.91069012e-14,
       2.79872002e-18, 2.79872002e-18, 2.79872002e-18, 2.79872002e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.86186200e+02, 9.86186200e+02, 9.86186200e+02, 9.86186200e+02,
       9.73240468e+02, 9.73240468e+02, 9.73240468e+02, 9.73240468e+02,
       9.59914409e+02, 9.59914409e+02, 9.59914409e+02, 9.59914409e+02,
       9.41247070e+02, 9.41247070e+02, 9.41247070e+02, 9.41247070e+02,
       9.19065173e+02, 9.19065173e+02, 9.19065173e+02, 9.19065173e+02,
       8.93636756e+02, 8.93636756e+02, 8.93636756e+02, 8.93636756e+02,
       8.65883271e+02, 8.65883271e+02, 8.65883271e+02, 8.65883271e+02,
       8.36573980e+02, 8.36573980e+02, 8.36573980e+02, 8.36573980e+02,
       8.06320572e+02, 8.06320572e+02, 8.06320572e+02, 8.06320572e+02,
       7.75553698e+02, 7.75553698e+02, 7.75553698e+02, 7.75553698e+02,
       7.45017133e+02, 7.45017133e+02, 7.45017133e+02, 7.45017133e+02,
       7.15593221e+02, 7.15593221e+02, 7.15593221e+02, 7.15593221e+02,
       6.87450247e+02, 6.87450247e+02, 6.87450247e+02, 6.87450247e+02,
       6.60567105e+02, 6.60567105e+02, 6.60567105e+02, 6.60567105e+02,
       6.34933561e+02, 6.34933561e+02, 6.34933561e+02, 6.34933561e+02,
       6.10559907e+02, 6.10559907e+02, 6.10559907e+02, 6.10559907e+02,
       5.87481408e+02, 5.87481408e+02, 5.87481408e+02, 5.87481408e+02,
       5.65766844e+02, 5.65766844e+02, 5.65766844e+02, 5.65766844e+02,
       5.45524542e+02, 5.45524542e+02, 5.45524542e+02, 5.45524542e+02,
       5.26905041e+02, 5.26905041e+02, 5.26905041e+02, 5.26905041e+02,
       5.10095754e+02, 5.10095754e+02, 5.10095754e+02, 5.10095754e+02,
       4.95301417e+02, 4.95301417e+02, 4.95301417e+02, 4.95301417e+02,
       4.82707232e+02, 4.82707232e+02, 4.82707232e+02, 4.82707232e+02,
       4.72431235e+02, 4.72431235e+02, 4.72431235e+02, 4.72431235e+02,
       4.64480159e+02, 4.64480159e+02, 4.64480159e+02, 4.64480159e+02,
       4.58720544e+02, 4.58720544e+02, 4.58720544e+02, 4.58720544e+02,
       4.54880415e+02, 4.54880415e+02, 4.54880415e+02, 4.54880415e+02,
       4.52586923e+02, 4.52586923e+02, 4.52586923e+02, 4.52586923e+02,
       4.51430708e+02, 4.51430708e+02, 4.51430708e+02, 4.51430708e+02,
       4.51009436e+02, 4.51009436e+02, 4.51009436e+02, 4.51009436e+02,
       4.50953318e+02, 4.50953318e+02, 4.50953318e+02, 4.50953318e+02,
       4.51185590e+02, 4.51185590e+02, 4.51185590e+02, 4.51185590e+02,
       4.51834808e+02, 4.51834808e+02, 4.51834808e+02, 4.51834808e+02,
       4.52955367e+02, 4.52955367e+02, 4.52955367e+02, 4.52955367e+02,
       4.54157312e+02, 4.54157312e+02, 4.54157312e+02, 4.54157312e+02,
       4.55095241e+02, 4.55095241e+02, 4.55095241e+02, 4.55095241e+02,
       4.55772371e+02, 4.55772371e+02, 4.55772371e+02, 4.55772371e+02,
       4.56264237e+02, 4.56264237e+02, 4.56264237e+02, 4.56264237e+02,
       4.56633348e+02, 4.56633348e+02, 4.56633348e+02, 4.56633348e+02,
       4.56929937e+02, 4.56929937e+02, 4.56929937e+02, 4.56929937e+02,
       4.57171489e+02, 4.57171489e+02, 4.57171489e+02, 4.57171489e+02,
       4.57363668e+02, 4.57363668e+02, 4.57363668e+02, 4.57363668e+02,
       4.57531378e+02, 4.57531378e+02, 4.57531378e+02, 4.57531378e+02,
       4.57709652e+02, 4.57709652e+02, 4.57709652e+02, 4.57709652e+02,
       4.57932536e+02, 4.57932536e+02, 4.57932536e+02, 4.57932536e+02,
       4.58295200e+02, 4.58295200e+02, 4.58295200e+02, 4.58295200e+02,
       4.58599054e+02, 4.58599054e+02, 4.58599054e+02, 4.58599054e+02,
       4.57718786e+02, 4.57718786e+02, 4.57718786e+02, 4.57718786e+02,
       4.48917912e+02, 4.48917912e+02, 4.48917912e+02, 4.48917912e+02,
       4.03800359e+02, 4.03800359e+02, 4.03800359e+02, 4.03800359e+02,
       2.58647864e+02, 2.58647864e+02, 2.58647864e+02, 2.58647864e+02,
       5.37325288e+01, 5.37325288e+01, 5.37325288e+01, 5.37325288e+01,
       1.31811609e+00, 1.31811609e+00, 1.31811609e+00, 1.31811609e+00,
       1.12593786e-02, 1.12593786e-02, 1.12593786e-02, 1.12593786e-02,
       1.00001109e-02, 1.00001109e-02, 1.00001109e-02, 1.00001109e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99116492, 0.99116492, 0.99116492, 0.99116492, 0.98271154,
       0.98271154, 0.98271154, 0.98271154, 0.97383884, 0.97383884,
       0.97383884, 0.97383884, 0.96101554, 0.96101554, 0.96101554,
       0.96101554, 0.9454558 , 0.9454558 , 0.9454558 , 0.9454558 ,
       0.92712036, 0.92712036, 0.92712036, 0.92712036, 0.90667211,
       0.90667211, 0.90667211, 0.90667211, 0.88466881, 0.88466881,
       0.88466881, 0.88466881, 0.86164034, 0.86164034, 0.86164034,
       0.86164034, 0.83800032, 0.83800032, 0.83800032, 0.83800032,
       0.81424415, 0.81424415, 0.81424415, 0.81424415, 0.79085525,
       0.79085525, 0.79085525, 0.79085525, 0.76804363, 0.76804363,
       0.76804363, 0.76804363, 0.74583711, 0.74583711, 0.74583711,
       0.74583711, 0.72421952, 0.72421952, 0.72421952, 0.72421952,
       0.70319112, 0.70319112, 0.70319112, 0.70319112, 0.68277247,
       0.68277247, 0.68277247, 0.68277247, 0.66301832, 0.66301832,
       0.66301832, 0.66301832, 0.64404414, 0.64404414, 0.64404414,
       0.64404414, 0.62606083, 0.62606083, 0.62606083, 0.62606083,
       0.60941523, 0.60941523, 0.60941523, 0.60941523, 0.59461799,
       0.59461799, 0.59461799, 0.59461799, 0.5823152 , 0.5823152 ,
       0.5823152 , 0.5823152 , 0.57313802, 0.57313802, 0.57313802,
       0.57313802, 0.56738503, 0.56738503, 0.56738503, 0.56738503,
       0.56465216, 0.56465216, 0.56465216, 0.56465216, 0.56382693,
       0.56382693, 0.56382693, 0.56382693, 0.56387318, 0.56387318,
       0.56387318, 0.56387318, 0.5652006 , 0.5652006 , 0.5652006 ,
       0.5652006 , 0.56626977, 0.56626977, 0.56626977, 0.56626977,
       0.56702881, 0.56702881, 0.56702881, 0.56702881, 0.56788545,
       0.56788545, 0.56788545, 0.56788545, 0.56880776, 0.56880776,
       0.56880776, 0.56880776, 0.56941945, 0.56941945, 0.56941945,
       0.56941945, 0.56962086, 0.56962086, 0.56962086, 0.56962086,
       0.56956418, 0.56956418, 0.56956418, 0.56956418, 0.56936331,
       0.56936331, 0.56936331, 0.56936331, 0.56934572, 0.56934572,
       0.56934572, 0.56934572, 0.57000584, 0.57000584, 0.57000584,
       0.57000584, 0.5729765 , 0.5729765 , 0.5729765 , 0.5729765 ,
       0.58176493, 0.58176493, 0.58176493, 0.58176493, 0.60341244,
       0.60341244, 0.60341244, 0.60341244, 0.65159534, 0.65159534,
       0.65159534, 0.65159534, 0.75225793, 0.75225793, 0.75225793,
       0.75225793, 0.95396517, 0.95396517, 0.95396517, 0.95396517,
       1.34573563, 1.34573563, 1.34573563, 1.34573563, 2.05647412,
       2.05647412, 2.05647412, 2.05647412, 3.13720518, 3.13720518,
       3.13720518, 3.13720518, 4.01618199, 4.01618199, 4.01618199,
       4.01618199, 4.2713159 , 4.2713159 , 4.2713159 , 4.2713159 ,
       3.78406763, 3.78406763, 3.78406763, 3.78406763, 1.92016659,
       1.92016659, 1.92016659, 1.92016659, 1.058216  , 1.058216  ,
       1.058216  , 1.058216  , 1.00081398, 1.00081398, 1.00081398,
       1.00081398, 1.00000178, 1.00000178, 1.00000178, 1.00000178,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.31199970e-01, 3.31199970e-01, 3.31199970e-01, 3.31199970e-01,
       6.51382280e-01, 6.51382280e-01, 6.51382280e-01, 6.51382280e-01,
       9.88854278e-01, 9.88854278e-01, 9.88854278e-01, 9.88854278e-01,
       1.48150489e+00, 1.48150489e+00, 1.48150489e+00, 1.48150489e+00,
       2.08633147e+00, 2.08633147e+00, 2.08633147e+00, 2.08633147e+00,
       2.80957124e+00, 2.80957124e+00, 2.80957124e+00, 2.80957124e+00,
       3.62985549e+00, 3.62985549e+00, 3.62985549e+00, 3.62985549e+00,
       4.52930744e+00, 4.52930744e+00, 4.52930744e+00, 4.52930744e+00,
       5.49031544e+00, 5.49031544e+00, 5.49031544e+00, 5.49031544e+00,
       6.50069839e+00, 6.50069839e+00, 6.50069839e+00, 6.50069839e+00,
       7.53409154e+00, 7.53409154e+00, 7.53409154e+00, 7.53409154e+00,
       8.57574859e+00, 8.57574859e+00, 8.57574859e+00, 8.57574859e+00,
       9.61670434e+00, 9.61670434e+00, 9.61670434e+00, 9.61670434e+00,
       1.06548968e+01, 1.06548968e+01, 1.06548968e+01, 1.06548968e+01,
       1.16895560e+01, 1.16895560e+01, 1.16895560e+01, 1.16895560e+01,
       1.27199525e+01, 1.27199525e+01, 1.27199525e+01, 1.27199525e+01,
       1.37443488e+01, 1.37443488e+01, 1.37443488e+01, 1.37443488e+01,
       1.47589251e+01, 1.47589251e+01, 1.47589251e+01, 1.47589251e+01,
       1.57563221e+01, 1.57563221e+01, 1.57563221e+01, 1.57563221e+01,
       1.67233146e+01, 1.67233146e+01, 1.67233146e+01, 1.67233146e+01,
       1.76379476e+01, 1.76379476e+01, 1.76379476e+01, 1.76379476e+01,
       1.84673647e+01, 1.84673647e+01, 1.84673647e+01, 1.84673647e+01,
       1.91692758e+01, 1.91692758e+01, 1.91692758e+01, 1.91692758e+01,
       1.97016293e+01, 1.97016293e+01, 1.97016293e+01, 1.97016293e+01,
       2.00421597e+01, 2.00421597e+01, 2.00421597e+01, 2.00421597e+01,
       2.02074474e+01, 2.02074474e+01, 2.02074474e+01, 2.02074474e+01,
       2.02533362e+01, 2.02533362e+01, 2.02533362e+01, 2.02533362e+01,
       2.02422335e+01, 2.02422335e+01, 2.02422335e+01, 2.02422335e+01,
       2.01551609e+01, 2.01551609e+01, 2.01551609e+01, 2.01551609e+01,
       2.00814099e+01, 2.00814099e+01, 2.00814099e+01, 2.00814099e+01,
       2.00377810e+01, 2.00377810e+01, 2.00377810e+01, 2.00377810e+01,
       2.00059391e+01, 2.00059391e+01, 2.00059391e+01, 2.00059391e+01,
       1.99778740e+01, 1.99778740e+01, 1.99778740e+01, 1.99778740e+01,
       1.99509217e+01, 1.99509217e+01, 1.99509217e+01, 1.99509217e+01,
       1.99248183e+01, 1.99248183e+01, 1.99248183e+01, 1.99248183e+01,
       1.99001676e+01, 1.99001676e+01, 1.99001676e+01, 1.99001676e+01,
       1.98776007e+01, 1.98776007e+01, 1.98776007e+01, 1.98776007e+01,
       1.98572942e+01, 1.98572942e+01, 1.98572942e+01, 1.98572942e+01,
       1.98397324e+01, 1.98397324e+01, 1.98397324e+01, 1.98397324e+01,
       1.98254040e+01, 1.98254040e+01, 1.98254040e+01, 1.98254040e+01,
       1.98131310e+01, 1.98131310e+01, 1.98131310e+01, 1.98131310e+01,
       1.98012050e+01, 1.98012050e+01, 1.98012050e+01, 1.98012050e+01,
       1.97898387e+01, 1.97898387e+01, 1.97898387e+01, 1.97898387e+01,
       1.97795675e+01, 1.97795675e+01, 1.97795675e+01, 1.97795675e+01,
       1.97699816e+01, 1.97699816e+01, 1.97699816e+01, 1.97699816e+01,
       1.97635691e+01, 1.97635691e+01, 1.97635691e+01, 1.97635691e+01,
       1.97536393e+01, 1.97536393e+01, 1.97536393e+01, 1.97536393e+01,
       1.97149813e+01, 1.97149813e+01, 1.97149813e+01, 1.97149813e+01,
       1.95399511e+01, 1.95399511e+01, 1.95399511e+01, 1.95399511e+01,
       1.87505825e+01, 1.87505825e+01, 1.87505825e+01, 1.87505825e+01,
       1.56266522e+01, 1.56266522e+01, 1.56266522e+01, 1.56266522e+01,
       6.97439322e+00, 6.97439322e+00, 6.97439322e+00, 6.97439322e+00,
       3.92821064e-01, 3.92821064e-01, 3.92821064e-01, 3.92821064e-01,
       1.89489077e-03, 1.89489077e-03, 1.89489077e-03, 1.89489077e-03,
       6.66095396e-07, 6.66095396e-07, 6.66095396e-07, 6.66095396e-07,
       9.40368073e-11, 9.40368073e-11, 9.40368073e-11, 9.40368073e-11,
       1.38270964e-14, 1.38270964e-14, 1.38270964e-14, 1.38270964e-14,
       2.07028270e-18, 2.07028270e-18, 2.07028270e-18, 2.07028270e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87667905e+02, 9.87667905e+02, 9.87667905e+02, 9.87667905e+02,
       9.75896749e+02, 9.75896749e+02, 9.75896749e+02, 9.75896749e+02,
       9.63596793e+02, 9.63596793e+02, 9.63596793e+02, 9.63596793e+02,
       9.45903496e+02, 9.45903496e+02, 9.45903496e+02, 9.45903496e+02,
       9.24560147e+02, 9.24560147e+02, 9.24560147e+02, 9.24560147e+02,
       8.99586589e+02, 8.99586589e+02, 8.99586589e+02, 8.99586589e+02,
       8.71962692e+02, 8.71962692e+02, 8.71962692e+02, 8.71962692e+02,
       8.42509302e+02, 8.42509302e+02, 8.42509302e+02, 8.42509302e+02,
       8.11982832e+02, 8.11982832e+02, 8.11982832e+02, 8.11982832e+02,
       7.80909598e+02, 7.80909598e+02, 7.80909598e+02, 7.80909598e+02,
       7.50021347e+02, 7.50021347e+02, 7.50021347e+02, 7.50021347e+02,
       7.20044660e+02, 7.20044660e+02, 7.20044660e+02, 7.20044660e+02,
       6.91139600e+02, 6.91139600e+02, 6.91139600e+02, 6.91139600e+02,
       6.63330665e+02, 6.63330665e+02, 6.63330665e+02, 6.63330665e+02,
       6.36575468e+02, 6.36575468e+02, 6.36575468e+02, 6.36575468e+02,
       6.10854195e+02, 6.10854195e+02, 6.10854195e+02, 6.10854195e+02,
       5.86171830e+02, 5.86171830e+02, 5.86171830e+02, 5.86171830e+02,
       5.62573606e+02, 5.62573606e+02, 5.62573606e+02, 5.62573606e+02,
       5.40173609e+02, 5.40173609e+02, 5.40173609e+02, 5.40173609e+02,
       5.19191018e+02, 5.19191018e+02, 5.19191018e+02, 5.19191018e+02,
       4.99991749e+02, 4.99991749e+02, 4.99991749e+02, 4.99991749e+02,
       4.83112346e+02, 4.83112346e+02, 4.83112346e+02, 4.83112346e+02,
       4.69214163e+02, 4.69214163e+02, 4.69214163e+02, 4.69214163e+02,
       4.58903184e+02, 4.58903184e+02, 4.58903184e+02, 4.58903184e+02,
       4.52409336e+02, 4.52409336e+02, 4.52409336e+02, 4.52409336e+02,
       4.49287031e+02, 4.49287031e+02, 4.49287031e+02, 4.49287031e+02,
       4.48422944e+02, 4.48422944e+02, 4.48422944e+02, 4.48422944e+02,
       4.48631188e+02, 4.48631188e+02, 4.48631188e+02, 4.48631188e+02,
       4.50271228e+02, 4.50271228e+02, 4.50271228e+02, 4.50271228e+02,
       4.51662913e+02, 4.51662913e+02, 4.51662913e+02, 4.51662913e+02,
       4.52490638e+02, 4.52490638e+02, 4.52490638e+02, 4.52490638e+02,
       4.53096587e+02, 4.53096587e+02, 4.53096587e+02, 4.53096587e+02,
       4.53627004e+02, 4.53627004e+02, 4.53627004e+02, 4.53627004e+02,
       4.54138029e+02, 4.54138029e+02, 4.54138029e+02, 4.54138029e+02,
       4.54640997e+02, 4.54640997e+02, 4.54640997e+02, 4.54640997e+02,
       4.55121718e+02, 4.55121718e+02, 4.55121718e+02, 4.55121718e+02,
       4.55558744e+02, 4.55558744e+02, 4.55558744e+02, 4.55558744e+02,
       4.55935595e+02, 4.55935595e+02, 4.55935595e+02, 4.55935595e+02,
       4.56261121e+02, 4.56261121e+02, 4.56261121e+02, 4.56261121e+02,
       4.56558739e+02, 4.56558739e+02, 4.56558739e+02, 4.56558739e+02,
       4.56826197e+02, 4.56826197e+02, 4.56826197e+02, 4.56826197e+02,
       4.57052328e+02, 4.57052328e+02, 4.57052328e+02, 4.57052328e+02,
       4.57257152e+02, 4.57257152e+02, 4.57257152e+02, 4.57257152e+02,
       4.57467024e+02, 4.57467024e+02, 4.57467024e+02, 4.57467024e+02,
       4.57704540e+02, 4.57704540e+02, 4.57704540e+02, 4.57704540e+02,
       4.58066570e+02, 4.58066570e+02, 4.58066570e+02, 4.58066570e+02,
       4.58479576e+02, 4.58479576e+02, 4.58479576e+02, 4.58479576e+02,
       4.57718684e+02, 4.57718684e+02, 4.57718684e+02, 4.57718684e+02,
       4.49845047e+02, 4.49845047e+02, 4.49845047e+02, 4.49845047e+02,
       4.09389299e+02, 4.09389299e+02, 4.09389299e+02, 4.09389299e+02,
       2.68194998e+02, 2.68194998e+02, 2.68194998e+02, 2.68194998e+02,
       5.60520652e+01, 5.60520652e+01, 5.60520652e+01, 5.60520652e+01,
       1.14557313e+00, 1.14557313e+00, 1.14557313e+00, 1.14557313e+00,
       1.08687798e-02, 1.08687798e-02, 1.08687798e-02, 1.08687798e-02,
       1.00000791e-02, 1.00000791e-02, 1.00000791e-02, 1.00000791e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99854666, 0.99854666, 0.99854666, 0.99854666,
       0.96845715, 0.96845715, 0.96845715, 0.96845715, 0.81981135,
       0.81981135, 0.81981135, 0.81981135, 1.13644411, 1.13644411,
       1.13644411, 1.13644411, 1.07459565, 1.07459565, 1.07459565,
       1.07459565, 1.00214509, 1.00214509, 1.00214509, 1.00214509,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.44580810e-02, 5.44580810e-02, 5.44580810e-02, 5.44580810e-02,
       1.19786475e+00, 1.19786475e+00, 1.19786475e+00, 1.19786475e+00,
       7.52224860e+00, 7.52224860e+00, 7.52224860e+00, 7.52224860e+00,
       9.36380750e+00, 9.36380750e+00, 9.36380750e+00, 9.36380750e+00,
       1.09132154e+00, 1.09132154e+00, 1.09132154e+00, 1.09132154e+00,
       4.34109741e-03, 4.34109741e-03, 4.34109741e-03, 4.34109741e-03,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.97973078e+02, 9.97973078e+02, 9.97973078e+02, 9.97973078e+02,
       9.57196315e+02, 9.57196315e+02, 9.57196315e+02, 9.57196315e+02,
       7.89728589e+02, 7.89728589e+02, 7.89728589e+02, 7.89728589e+02,
       2.18172604e+02, 2.18172604e+02, 2.18172604e+02, 2.18172604e+02,
       7.20466733e+00, 7.20466733e+00, 7.20466733e+00, 7.20466733e+00,
       1.36969674e-02, 1.36969674e-02, 1.36969674e-02, 1.36969674e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999529,
       0.99999529, 0.99999529, 0.99999529, 0.99981164, 0.99981164,
       0.99981164, 0.99981164, 0.99702376, 0.99702376, 0.99702376,
       0.99702376, 0.97590016, 0.97590016, 0.97590016, 0.97590016,
       0.88930972, 0.88930972, 0.88930972, 0.88930972, 0.71365932,
       0.71365932, 0.71365932, 0.71365932, 1.0710902 , 1.0710902 ,
       1.0710902 , 1.0710902 , 1.31137332, 1.31137332, 1.31137332,
       1.31137332, 1.04072233, 1.04072233, 1.04072233, 1.04072233,
       1.00111398, 1.00111398, 1.00111398, 1.00111398, 1.00000029,
       1.00000029, 1.00000029, 1.00000029, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.76253247e-04, 1.76253247e-04, 1.76253247e-04, 1.76253247e-04,
       7.04865623e-03, 7.04865623e-03, 7.04865623e-03, 7.04865623e-03,
       1.11518467e-01, 1.11518467e-01, 1.11518467e-01, 1.11518467e-01,
       9.09502205e-01, 9.09502205e-01, 9.09502205e-01, 9.09502205e-01,
       4.30216737e+00, 4.30216737e+00, 4.30216737e+00, 4.30216737e+00,
       1.18379965e+01, 1.18379965e+01, 1.18379965e+01, 1.18379965e+01,
       1.62384269e+01, 1.62384269e+01, 1.62384269e+01, 1.62384269e+01,
       5.70889156e+00, 5.70889156e+00, 5.70889156e+00, 5.70889156e+00,
       2.30200189e-01, 2.30200189e-01, 2.30200189e-01, 2.30200189e-01,
       4.83684047e-04, 4.83684047e-04, 4.83684047e-04, 4.83684047e-04,
       3.42098651e-08, 3.42098651e-08, 3.42098651e-08, 3.42098651e-08,
       1.01319811e-12, 1.01319811e-12, 1.01319811e-12, 1.01319811e-12,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99993405e+02, 9.99993405e+02, 9.99993405e+02, 9.99993405e+02,
       9.99736354e+02, 9.99736354e+02, 9.99736354e+02, 9.99736354e+02,
       9.95842977e+02, 9.95842977e+02, 9.95842977e+02, 9.95842977e+02,
       9.66708286e+02, 9.66708286e+02, 9.66708286e+02, 9.66708286e+02,
       8.52052998e+02, 8.52052998e+02, 8.52052998e+02, 8.52052998e+02,
       6.72236296e+02, 6.72236296e+02, 6.72236296e+02, 6.72236296e+02,
       3.62410250e+02, 3.62410250e+02, 3.62410250e+02, 3.62410250e+02,
       6.19189240e+01, 6.19189240e+01, 6.19189240e+01, 6.19189240e+01,
       6.26948951e-01, 6.26948951e-01, 6.26948951e-01, 6.26948951e-01,
       1.01072359e-02, 1.01072359e-02, 1.01072359e-02, 1.01072359e-02,
       1.00000040e-02, 1.00000040e-02, 1.00000040e-02, 1.00000040e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999888, 0.99999888, 0.99999888, 0.99999888,
       0.99997445, 0.99997445, 0.99997445, 0.99997445, 0.99964871,
       0.99964871, 0.99964871, 0.99964871, 0.99689733, 0.99689733,
       0.99689733, 0.99689733, 0.98193702, 0.98193702, 0.98193702,
       0.98193702, 0.9295722 , 0.9295722 , 0.9295722 , 0.9295722 ,
       0.81296623, 0.81296623, 0.81296623, 0.81296623, 0.63611418,
       0.63611418, 0.63611418, 0.63611418, 0.88414578, 0.88414578,
       0.88414578, 0.88414578, 1.57593929, 1.57593929, 1.57593929,
       1.57593929, 1.1715463 , 1.1715463 , 1.1715463 , 1.1715463 ,
       1.01116974, 1.01116974, 1.01116974, 1.01116974, 1.0000899 ,
       1.0000899 , 1.0000899 , 1.0000899 , 1.00000001, 1.00000001,
       1.00000001, 1.00000001, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       7.97153187e-09, 7.97153187e-09, 7.97153187e-09, 7.97153187e-09,
       9.70027498e-07, 9.70027498e-07, 9.70027498e-07, 9.70027498e-07,
       4.20269589e-05, 4.20269589e-05, 4.20269589e-05, 4.20269589e-05,
       9.55942471e-04, 9.55942471e-04, 9.55942471e-04, 9.55942471e-04,
       1.31460868e-02, 1.31460868e-02, 1.31460868e-02, 1.31460868e-02,
       1.16219529e-01, 1.16219529e-01, 1.16219529e-01, 1.16219529e-01,
       6.79969081e-01, 6.79969081e-01, 6.79969081e-01, 6.79969081e-01,
       2.70215530e+00, 2.70215530e+00, 2.70215530e+00, 2.70215530e+00,
       7.57490575e+00, 7.57490575e+00, 7.57490575e+00, 7.57490575e+00,
       1.47743231e+01, 1.47743231e+01, 1.47743231e+01, 1.47743231e+01,
       2.03840035e+01, 2.03840035e+01, 2.03840035e+01, 2.03840035e+01,
       1.19115601e+01, 1.19115601e+01, 1.19115601e+01, 1.19115601e+01,
       1.63710471e+00, 1.63710471e+00, 1.63710471e+00, 1.63710471e+00,
       2.10715183e-02, 2.10715183e-02, 2.10715183e-02, 2.10715183e-02,
       1.32818490e-05, 1.32818490e-05, 1.32818490e-05, 1.32818490e-05,
       1.21621831e-09, 1.21621831e-09, 1.21621831e-09, 1.21621831e-09,
       8.57861505e-14, 8.57861505e-14, 8.57861505e-14, 8.57861505e-14,
       4.41228789e-18, 4.41228789e-18, 4.41228789e-18, 4.41228789e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
       9.99998427e+02, 9.99998427e+02, 9.99998427e+02, 9.99998427e+02,
       9.99964233e+02, 9.99964233e+02, 9.99964233e+02, 9.99964233e+02,
       9.99508326e+02, 9.99508326e+02, 9.99508326e+02, 9.99508326e+02,
       9.95664278e+02, 9.95664278e+02, 9.95664278e+02, 9.95664278e+02,
       9.74918203e+02, 9.74918203e+02, 9.74918203e+02, 9.74918203e+02,
       9.03858041e+02, 9.03858041e+02, 9.03858041e+02, 9.03858041e+02,
       7.52615431e+02, 7.52615431e+02, 7.52615431e+02, 7.52615431e+02,
       5.88404204e+02, 5.88404204e+02, 5.88404204e+02, 5.88404204e+02,
       4.31076258e+02, 4.31076258e+02, 4.31076258e+02, 4.31076258e+02,
       1.87860435e+02, 1.87860435e+02, 1.87860435e+02, 1.87860435e+02,
       8.76910821e+00, 8.76910821e+00, 8.76910821e+00, 8.76910821e+00,
       2.98951467e-02, 2.98951467e-02, 2.98951467e-02, 2.98951467e-02,
       1.00015908e-02, 1.00015908e-02, 1.00015908e-02, 1.00015908e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999979, 0.99999979,
       0.99999979, 0.99999979, 0.9999963 , 0.9999963 , 0.9999963 ,
       0.9999963 , 0.99995364, 0.99995364, 0.99995364, 0.99995364,
       0.99957767, 0.99957767, 0.99957767, 0.99957767, 0.99718309,
       0.99718309, 0.99718309, 0.99718309, 0.98626394, 0.98626394,
       0.98626394, 0.98626394, 0.95106797, 0.95106797, 0.95106797,
       0.95106797, 0.87123171, 0.87123171, 0.87123171, 0.87123171,
       0.74547768, 0.74547768, 0.74547768, 0.74547768, 0.58374479,
       0.58374479, 0.58374479, 0.58374479, 0.73207392, 0.73207392,
       0.73207392, 0.73207392, 1.60503247, 1.60503247, 1.60503247,
       1.60503247, 1.47308433, 1.47308433, 1.47308433, 1.47308433,
       1.05348836, 1.05348836, 1.05348836, 1.05348836, 1.00182288,
       1.00182288, 1.00182288, 1.00182288, 1.00000147, 1.00000147,
       1.00000147, 1.00000147, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       6.26870362e-13, 6.26870362e-13, 6.26870362e-13, 6.26870362e-13,
       1.08486278e-10, 1.08486278e-10, 1.08486278e-10, 1.08486278e-10,
       7.72018265e-09, 7.72018265e-09, 7.72018265e-09, 7.72018265e-09,
       3.08421177e-07, 3.08421177e-07, 3.08421177e-07, 3.08421177e-07,
       7.88931508e-06, 7.88931508e-06, 7.88931508e-06, 7.88931508e-06,
       1.38505209e-04, 1.38505209e-04, 1.38505209e-04, 1.38505209e-04,
       1.73457409e-03, 1.73457409e-03, 1.73457409e-03, 1.73457409e-03,
       1.58044887e-02, 1.58044887e-02, 1.58044887e-02, 1.58044887e-02,
       1.05496410e-01, 1.05496410e-01, 1.05496410e-01, 1.05496410e-01,
       5.16306177e-01, 5.16306177e-01, 5.16306177e-01, 5.16306177e-01,
       1.86327287e+00, 1.86327287e+00, 1.86327287e+00, 1.86327287e+00,
       5.07718607e+00, 5.07718607e+00, 5.07718607e+00, 5.07718607e+00,
       1.06862908e+01, 1.06862908e+01, 1.06862908e+01, 1.06862908e+01,
       1.67930222e+01, 1.67930222e+01, 1.67930222e+01, 1.67930222e+01,
       2.18771845e+01, 2.18771845e+01, 2.18771845e+01, 2.18771845e+01,
       1.69221015e+01, 1.69221015e+01, 1.69221015e+01, 1.69221015e+01,
       5.93555418e+00, 5.93555418e+00, 5.93555418e+00, 5.93555418e+00,
       2.67386567e-01, 2.67386567e-01, 2.67386567e-01, 2.67386567e-01,
       9.03539515e-04, 9.03539515e-04, 9.03539515e-04, 9.03539515e-04,
       1.74483618e-07, 1.74483618e-07, 1.74483618e-07, 1.74483618e-07,
       2.04118254e-11, 2.04118254e-11, 2.04118254e-11, 2.04118254e-11,
       2.17016642e-15, 2.17016642e-15, 2.17016642e-15, 2.17016642e-15,
       1.97944057e-19, 1.97944057e-19, 1.97944057e-19, 1.97944057e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999705e+02, 9.99999705e+02, 9.99999705e+02, 9.99999705e+02,
       9.99994818e+02, 9.99994818e+02, 9.99994818e+02, 9.99994818e+02,
       9.99935102e+02, 9.99935102e+02, 9.99935102e+02, 9.99935102e+02,
       9.99408895e+02, 9.99408895e+02, 9.99408895e+02, 9.99408895e+02,
       9.96061988e+02, 9.96061988e+02, 9.96061988e+02, 9.96061988e+02,
       9.80877450e+02, 9.80877450e+02, 9.80877450e+02, 9.80877450e+02,
       9.32612348e+02, 9.32612348e+02, 9.32612348e+02, 9.32612348e+02,
       8.26315203e+02, 8.26315203e+02, 8.26315203e+02, 8.26315203e+02,
       6.66605385e+02, 6.66605385e+02, 6.66605385e+02, 6.66605385e+02,
       5.27625315e+02, 5.27625315e+02, 5.27625315e+02, 5.27625315e+02,
       4.48693030e+02, 4.48693030e+02, 4.48693030e+02, 4.48693030e+02,
       3.34282701e+02, 3.34282701e+02, 3.34282701e+02, 3.34282701e+02,
       5.93797144e+01, 5.93797144e+01, 5.93797144e+01, 5.93797144e+01,
       6.98066976e-01, 6.98066976e-01, 6.98066976e-01, 6.98066976e-01,
       1.02408618e-02, 1.02408618e-02, 1.02408618e-02, 1.02408618e-02,
       1.00000206e-02, 1.00000206e-02, 1.00000206e-02, 1.00000206e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999945,
       0.99999945, 0.99999945, 0.99999945, 0.99999352, 0.99999352,
       0.99999352, 0.99999352, 0.99994026, 0.99994026, 0.99994026,
       0.99994026, 0.99956877, 0.99956877, 0.99956877, 0.99956877,
       0.99757146, 0.99757146, 0.99757146, 0.99757146, 0.98940582,
       0.98940582, 0.98940582, 0.98940582, 0.96438863, 0.96438863,
       0.96438863, 0.96438863, 0.90735626, 0.90735626, 0.90735626,
       0.90735626, 0.80924072, 0.80924072, 0.80924072, 0.80924072,
       0.69259558, 0.69259558, 0.69259558, 0.69259558, 0.55553296,
       0.55553296, 0.55553296, 0.55553296, 0.63553693, 0.63553693,
       0.63553693, 0.63553693, 1.41397872, 1.41397872, 1.41397872,
       1.41397872, 1.81820124, 1.81820124, 1.81820124, 1.81820124,
       1.20387024, 1.20387024, 1.20387024, 1.20387024, 1.01269879,
       1.01269879, 1.01269879, 1.01269879, 1.00012068, 1.00012068,
       1.00012068, 1.00012068, 1.00000002, 1.00000002, 1.00000002,
       1.00000002, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.25264676e-14, 1.25264676e-14, 1.25264676e-14, 1.25264676e-14,
       1.20223771e-12, 1.20223771e-12, 1.20223771e-12, 1.20223771e-12,
       6.76403932e-11, 6.76403932e-11, 6.76403932e-11, 6.76403932e-11,
       2.53837542e-09, 2.53837542e-09, 2.53837542e-09, 2.53837542e-09,
       6.79851771e-08, 6.79851771e-08, 6.79851771e-08, 6.79851771e-08,
       1.35400957e-06, 1.35400957e-06, 1.35400957e-06, 1.35400957e-06,
       2.05807406e-05, 2.05807406e-05, 2.05807406e-05, 2.05807406e-05,
       2.42573789e-04, 2.42573789e-04, 2.42573789e-04, 2.42573789e-04,
       2.23546366e-03, 2.23546366e-03, 2.23546366e-03, 2.23546366e-03,
       1.61374184e-02, 1.61374184e-02, 1.61374184e-02, 1.61374184e-02,
       9.09392120e-02, 9.09392120e-02, 9.09392120e-02, 9.09392120e-02,
       3.97807519e-01, 3.97807519e-01, 3.97807519e-01, 3.97807519e-01,
       1.34962483e+00, 1.34962483e+00, 1.34962483e+00, 1.34962483e+00,
       3.59635188e+00, 3.59635188e+00, 3.59635188e+00, 3.59635188e+00,
       7.76598011e+00, 7.76598011e+00, 7.76598011e+00, 7.76598011e+00,
       1.32165654e+01, 1.32165654e+01, 1.32165654e+01, 1.32165654e+01,
       1.80416341e+01, 1.80416341e+01, 1.80416341e+01, 1.80416341e+01,
       2.21202361e+01, 2.21202361e+01, 2.21202361e+01, 2.21202361e+01,
       1.94936742e+01, 1.94936742e+01, 1.94936742e+01, 1.94936742e+01,
       1.19370184e+01, 1.19370184e+01, 1.19370184e+01, 1.19370184e+01,
       1.76105690e+00, 1.76105690e+00, 1.76105690e+00, 1.76105690e+00,
       2.41795528e-02, 2.41795528e-02, 2.41795528e-02, 2.41795528e-02,
       1.84851625e-05, 1.84851625e-05, 1.84851625e-05, 1.84851625e-05,
       2.29350661e-09, 2.29350661e-09, 2.29350661e-09, 2.29350661e-09,
       2.81251593e-13, 2.81251593e-13, 2.81251593e-13, 2.81251593e-13,
       3.33754952e-17, 3.33754952e-17, 3.33754952e-17, 3.33754952e-17,
       3.64817469e-21, 3.64817469e-21, 3.64817469e-21, 3.64817469e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
       9.99999949e+02, 9.99999949e+02, 9.99999949e+02, 9.99999949e+02,
       9.99999230e+02, 9.99999230e+02, 9.99999230e+02, 9.99999230e+02,
       9.99990924e+02, 9.99990924e+02, 9.99990924e+02, 9.99990924e+02,
       9.99916362e+02, 9.99916362e+02, 9.99916362e+02, 9.99916362e+02,
       9.99396422e+02, 9.99396422e+02, 9.99396422e+02, 9.99396422e+02,
       9.96603842e+02, 9.96603842e+02, 9.96603842e+02, 9.96603842e+02,
       9.85228286e+02, 9.85228286e+02, 9.85228286e+02, 9.85228286e+02,
       9.50716061e+02, 9.50716061e+02, 9.50716061e+02, 9.50716061e+02,
       8.73656108e+02, 8.73656108e+02, 8.73656108e+02, 8.73656108e+02,
       7.45930207e+02, 7.45930207e+02, 7.45930207e+02, 7.45930207e+02,
       5.98241504e+02, 5.98241504e+02, 5.98241504e+02, 5.98241504e+02,
       4.88987461e+02, 4.88987461e+02, 4.88987461e+02, 4.88987461e+02,
       4.47945739e+02, 4.47945739e+02, 4.47945739e+02, 4.47945739e+02,
       4.21683465e+02, 4.21683465e+02, 4.21683465e+02, 4.21683465e+02,
       1.87467920e+02, 1.87467920e+02, 1.87467920e+02, 1.87467920e+02,
       9.17847574e+00, 9.17847574e+00, 9.17847574e+00, 9.17847574e+00,
       3.36232559e-02, 3.36232559e-02, 3.36232559e-02, 3.36232559e-02,
       1.00022223e-02, 1.00022223e-02, 1.00022223e-02, 1.00022223e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
       0.99999906, 0.99999906, 0.99999906, 0.99999906, 0.9999913 ,
       0.9999913 , 0.9999913 , 0.9999913 , 0.99993411, 0.99993411,
       0.99993411, 0.99993411, 0.99959236, 0.99959236, 0.99959236,
       0.99959236, 0.99795381, 0.99795381, 0.99795381, 0.99795381,
       0.99173747, 0.99173747, 0.99173747, 0.99173747, 0.97334866,
       0.97334866, 0.97334866, 0.97334866, 0.93132225, 0.93132225,
       0.93132225, 0.93132225, 0.85670103, 0.85670103, 0.85670103,
       0.85670103, 0.75179519, 0.75179519, 0.75179519, 0.75179519,
       0.65703686, 0.65703686, 0.65703686, 0.65703686, 0.54101531,
       0.54101531, 0.54101531, 0.54101531, 0.58205108, 0.58205108,
       0.58205108, 0.58205108, 1.1130807 , 1.1130807 , 1.1130807 ,
       1.1130807 , 1.96862265, 1.96862265, 1.96862265, 1.96862265,
       1.57590593, 1.57590593, 1.57590593, 1.57590593, 1.05786987,
       1.05786987, 1.05786987, 1.05786987, 1.00204055, 1.00204055,
       1.00204055, 1.00204055, 1.0000019 , 1.0000019 , 1.0000019 ,
       1.0000019 , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.32029549e-14, 1.32029549e-14, 1.32029549e-14, 1.32029549e-14,
       6.26759693e-13, 6.26759693e-13, 6.26759693e-13, 6.26759693e-13,
       2.24647978e-11, 2.24647978e-11, 2.24647978e-11, 2.24647978e-11,
       6.13853404e-10, 6.13853404e-10, 6.13853404e-10, 6.13853404e-10,
       1.31518549e-08, 1.31518549e-08, 1.31518549e-08, 1.31518549e-08,
       2.25105226e-07, 2.25105226e-07, 2.25105226e-07, 2.25105226e-07,
       3.11704412e-06, 3.11704412e-06, 3.11704412e-06, 3.11704412e-06,
       3.51988240e-05, 3.51988240e-05, 3.51988240e-05, 3.51988240e-05,
       3.25473435e-04, 3.25473435e-04, 3.25473435e-04, 3.25473435e-04,
       2.46554838e-03, 2.46554838e-03, 2.46554838e-03, 2.46554838e-03,
       1.52545971e-02, 1.52545971e-02, 1.52545971e-02, 1.52545971e-02,
       7.66123068e-02, 7.66123068e-02, 7.66123068e-02, 7.66123068e-02,
       3.10021140e-01, 3.10021140e-01, 3.10021140e-01, 3.10021140e-01,
       1.00682526e+00, 1.00682526e+00, 1.00682526e+00, 1.00682526e+00,
       2.63965332e+00, 2.63965332e+00, 2.63965332e+00, 2.63965332e+00,
       5.70034900e+00, 5.70034900e+00, 5.70034900e+00, 5.70034900e+00,
       1.04061053e+01, 1.04061053e+01, 1.04061053e+01, 1.04061053e+01,
       1.52105883e+01, 1.52105883e+01, 1.52105883e+01, 1.52105883e+01,
       1.89069479e+01, 1.89069479e+01, 1.89069479e+01, 1.89069479e+01,
       2.15955068e+01, 2.15955068e+01, 2.15955068e+01, 2.15955068e+01,
       2.04770440e+01, 2.04770440e+01, 2.04770440e+01, 2.04770440e+01,
       1.67010242e+01, 1.67010242e+01, 1.67010242e+01, 1.67010242e+01,
       6.26776546e+00, 6.26776546e+00, 6.26776546e+00, 6.26776546e+00,
       2.93122578e-01, 2.93122578e-01, 2.93122578e-01, 2.93122578e-01,
       1.07322557e-03, 1.07322557e-03, 1.07322557e-03, 1.07322557e-03,
       2.25735626e-07, 2.25735626e-07, 2.25735626e-07, 2.25735626e-07,
       2.90996976e-11, 2.90996976e-11, 2.90996976e-11, 2.90996976e-11,
       3.74345106e-15, 3.74345106e-15, 3.74345106e-15, 3.74345106e-15,
       4.59216061e-19, 4.59216061e-19, 4.59216061e-19, 4.59216061e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999883e+02, 9.99999883e+02, 9.99999883e+02, 9.99999883e+02,
       9.99998683e+02, 9.99998683e+02, 9.99998683e+02, 9.99998683e+02,
       9.99987822e+02, 9.99987822e+02, 9.99987822e+02, 9.99987822e+02,
       9.99907753e+02, 9.99907753e+02, 9.99907753e+02, 9.99907753e+02,
       9.99429417e+02, 9.99429417e+02, 9.99429417e+02, 9.99429417e+02,
       9.97137849e+02, 9.97137849e+02, 9.97137849e+02, 9.97137849e+02,
       9.88467410e+02, 9.88467410e+02, 9.88467410e+02, 9.88467410e+02,
       9.63001130e+02, 9.63001130e+02, 9.63001130e+02, 9.63001130e+02,
       9.05679035e+02, 9.05679035e+02, 9.05679035e+02, 9.05679035e+02,
       8.06647957e+02, 8.06647957e+02, 8.06647957e+02, 8.06647957e+02,
       6.73299670e+02, 6.73299670e+02, 6.73299670e+02, 6.73299670e+02,
       5.52322864e+02, 5.52322864e+02, 5.52322864e+02, 5.52322864e+02,
       4.63896638e+02, 4.63896638e+02, 4.63896638e+02, 4.63896638e+02,
       4.40267965e+02, 4.40267965e+02, 4.40267965e+02, 4.40267965e+02,
       4.55404885e+02, 4.55404885e+02, 4.55404885e+02, 4.55404885e+02,
       3.30608875e+02, 3.30608875e+02, 3.30608875e+02, 3.30608875e+02,
       6.09057285e+01, 6.09057285e+01, 6.09057285e+01, 6.09057285e+01,
       7.84789333e-01, 7.84789333e-01, 7.84789333e-01, 7.84789333e-01,
       1.03005361e-02, 1.03005361e-02, 1.03005361e-02, 1.03005361e-02,
       1.00000267e-02, 1.00000267e-02, 1.00000267e-02, 1.00000267e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999871, 0.99999871, 0.99999871, 0.99999871,
       0.99998991, 0.99998991, 0.99998991, 0.99998991, 0.99993341,
       0.99993341, 0.99993341, 0.99993341, 0.9996311 , 0.9996311 ,
       0.9996311 , 0.9996311 , 0.99829672, 0.99829672, 0.99829672,
       0.99829672, 0.99350175, 0.99350175, 0.99350175, 0.99350175,
       0.97967166, 0.97967166, 0.97967166, 0.97967166, 0.94797565,
       0.94797565, 0.94797565, 0.94797565, 0.89016937, 0.89016937,
       0.89016937, 0.89016937, 0.80411713, 0.80411713, 0.80411713,
       0.80411713, 0.70435588, 0.70435588, 0.70435588, 0.70435588,
       0.63219176, 0.63219176, 0.63219176, 0.63219176, 0.53878399,
       0.53878399, 0.53878399, 0.53878399, 0.55643947, 0.55643947,
       0.55643947, 0.55643947, 0.8772511 , 0.8772511 , 0.8772511 ,
       0.8772511 , 1.82224154, 1.82224154, 1.82224154, 1.82224154,
       2.01854416, 2.01854416, 2.01854416, 2.01854416, 1.22314586,
       1.22314586, 1.22314586, 1.22314586, 1.01361896, 1.01361896,
       1.01361896, 1.01361896, 1.00014201, 1.00014201, 1.00014201,
       1.00014201, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.66827014e-15, 5.66827014e-15, 5.66827014e-15, 5.66827014e-15,
       2.06506951e-13, 2.06506951e-13, 2.06506951e-13, 2.06506951e-13,
       5.66830764e-12, 5.66830764e-12, 5.66830764e-12, 5.66830764e-12,
       1.27515789e-10, 1.27515789e-10, 1.27515789e-10, 1.27515789e-10,
       2.36717323e-09, 2.36717323e-09, 2.36717323e-09, 2.36717323e-09,
       3.66285384e-08, 3.66285384e-08, 3.66285384e-08, 3.66285384e-08,
       4.75793331e-07, 4.75793331e-07, 4.75793331e-07, 4.75793331e-07,
       5.21185121e-06, 5.21185121e-06, 5.21185121e-06, 5.21185121e-06,
       4.82519858e-05, 4.82519858e-05, 4.82519858e-05, 4.82519858e-05,
       3.77579977e-04, 3.77579977e-04, 3.77579977e-04, 3.77579977e-04,
       2.49179255e-03, 2.49179255e-03, 2.49179255e-03, 2.49179255e-03,
       1.38047063e-02, 1.38047063e-02, 1.38047063e-02, 1.38047063e-02,
       6.37665597e-02, 6.37665597e-02, 6.37665597e-02, 6.37665597e-02,
       2.43683102e-01, 2.43683102e-01, 2.43683102e-01, 2.43683102e-01,
       7.66223944e-01, 7.66223944e-01, 7.66223944e-01, 7.66223944e-01,
       1.98617391e+00, 1.98617391e+00, 1.98617391e+00, 1.98617391e+00,
       4.30205955e+00, 4.30205955e+00, 4.30205955e+00, 4.30205955e+00,
       8.00059653e+00, 8.00059653e+00, 8.00059653e+00, 8.00059653e+00,
       1.25346822e+01, 1.25346822e+01, 1.25346822e+01, 1.25346822e+01,
       1.68111435e+01, 1.68111435e+01, 1.68111435e+01, 1.68111435e+01,
       1.95788515e+01, 1.95788515e+01, 1.95788515e+01, 1.95788515e+01,
       2.10731533e+01, 2.10731533e+01, 2.10731533e+01, 2.10731533e+01,
       2.05578258e+01, 2.05578258e+01, 2.05578258e+01, 2.05578258e+01,
       1.90079024e+01, 1.90079024e+01, 1.90079024e+01, 1.90079024e+01,
       1.21008552e+01, 1.21008552e+01, 1.21008552e+01, 1.21008552e+01,
       1.89958249e+00, 1.89958249e+00, 1.89958249e+00, 1.89958249e+00,
       2.69248743e-02, 2.69248743e-02, 2.69248743e-02, 2.69248743e-02,
       2.23176477e-05, 2.23176477e-05, 2.23176477e-05, 2.23176477e-05,
       2.89290650e-09, 2.89290650e-09, 2.89290650e-09, 2.89290650e-09,
       3.71325919e-13, 3.71325919e-13, 3.71325919e-13, 3.71325919e-13,
       4.73822364e-17, 4.73822364e-17, 4.73822364e-17, 4.73822364e-17,
       4.48577786e-21, 4.48577786e-21, 4.48577786e-21, 4.48577786e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999982e+02, 9.99999982e+02, 9.99999982e+02, 9.99999982e+02,
       9.99999805e+02, 9.99999805e+02, 9.99999805e+02, 9.99999805e+02,
       9.99998195e+02, 9.99998195e+02, 9.99998195e+02, 9.99998195e+02,
       9.99985872e+02, 9.99985872e+02, 9.99985872e+02, 9.99985872e+02,
       9.99906771e+02, 9.99906771e+02, 9.99906771e+02, 9.99906771e+02,
       9.99483625e+02, 9.99483625e+02, 9.99483625e+02, 9.99483625e+02,
       9.97617059e+02, 9.97617059e+02, 9.97617059e+02, 9.97617059e+02,
       9.90923338e+02, 9.90923338e+02, 9.90923338e+02, 9.90923338e+02,
       9.71719329e+02, 9.71719329e+02, 9.71719329e+02, 9.71719329e+02,
       9.28208660e+02, 9.28208660e+02, 9.28208660e+02, 9.28208660e+02,
       8.50492018e+02, 8.50492018e+02, 8.50492018e+02, 8.50492018e+02,
       7.38645328e+02, 7.38645328e+02, 7.38645328e+02, 7.38645328e+02,
       6.14927640e+02, 6.14927640e+02, 6.14927640e+02, 6.14927640e+02,
       5.21794916e+02, 5.21794916e+02, 5.21794916e+02, 5.21794916e+02,
       4.51902595e+02, 4.51902595e+02, 4.51902595e+02, 4.51902595e+02,
       4.36518666e+02, 4.36518666e+02, 4.36518666e+02, 4.36518666e+02,
       4.58585341e+02, 4.58585341e+02, 4.58585341e+02, 4.58585341e+02,
       4.14979500e+02, 4.14979500e+02, 4.14979500e+02, 4.14979500e+02,
       1.85583423e+02, 1.85583423e+02, 1.85583423e+02, 1.85583423e+02,
       9.86901789e+00, 9.86901789e+00, 9.86901789e+00, 9.86901789e+00,
       3.72214496e-02, 3.72214496e-02, 3.72214496e-02, 3.72214496e-02,
       1.00026945e-02, 1.00026945e-02, 1.00026945e-02, 1.00026945e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999981, 0.99999981,
       0.99999981, 0.99999981, 0.99999845, 0.99999845, 0.99999845,
       0.99999845, 0.99998928, 0.99998928, 0.99998928, 0.99998928,
       0.9999362 , 0.9999362 , 0.9999362 , 0.9999362 , 0.99967491,
       0.99967491, 0.99967491, 0.99967491, 0.99859164, 0.99859164,
       0.99859164, 0.99859164, 0.99485567, 0.99485567, 0.99485567,
       0.99485567, 0.98427987, 0.98427987, 0.98427987, 0.98427987,
       0.95996373, 0.95996373, 0.95996373, 0.95996373, 0.91464439,
       0.91464439, 0.91464439, 0.91464439, 0.8452093 , 0.8452093 ,
       0.8452093 , 0.8452093 , 0.75573999, 0.75573999, 0.75573999,
       0.75573999, 0.66831355, 0.66831355, 0.66831355, 0.66831355,
       0.61265528, 0.61265528, 0.61265528, 0.61265528, 0.54245435,
       0.54245435, 0.54245435, 0.54245435, 0.54720556, 0.54720556,
       0.54720556, 0.54720556, 0.73287   , 0.73287   , 0.73287   ,
       0.73287   , 1.49708567, 1.49708567, 1.49708567, 1.49708567,
       2.23159213, 2.23159213, 2.23159213, 2.23159213, 1.65090941,
       1.65090941, 1.65090941, 1.65090941, 1.06180375, 1.06180375,
       1.06180375, 1.06180375, 1.00222479, 1.00222479, 1.00222479,
       1.00222479, 1.00000228, 1.00000228, 1.00000228, 1.00000228,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.18160649e-15, 1.18160649e-15, 1.18160649e-15, 1.18160649e-15,
       5.46295183e-14, 5.46295183e-14, 5.46295183e-14, 5.46295183e-14,
       1.23457577e-12, 1.23457577e-12, 1.23457577e-12, 1.23457577e-12,
       2.43162832e-11, 2.43162832e-11, 2.43162832e-11, 2.43162832e-11,
       4.08347672e-10, 4.08347672e-10, 4.08347672e-10, 4.08347672e-10,
       5.88078054e-09, 5.88078054e-09, 5.88078054e-09, 5.88078054e-09,
       7.29422461e-08, 7.29422461e-08, 7.29422461e-08, 7.29422461e-08,
       7.81392346e-07, 7.81392346e-07, 7.81392346e-07, 7.81392346e-07,
       7.23903884e-06, 7.23903884e-06, 7.23903884e-06, 7.23903884e-06,
       5.79920652e-05, 5.79920652e-05, 5.79920652e-05, 5.79920652e-05,
       4.01085979e-04, 4.01085979e-04, 4.01085979e-04, 4.01085979e-04,
       2.38716000e-03, 2.38716000e-03, 2.38716000e-03, 2.38716000e-03,
       1.21649982e-02, 1.21649982e-02, 1.21649982e-02, 1.21649982e-02,
       5.27208845e-02, 5.27208845e-02, 5.27208845e-02, 5.27208845e-02,
       1.92824879e-01, 1.92824879e-01, 1.92824879e-01, 1.92824879e-01,
       5.91551803e-01, 5.91551803e-01, 5.91551803e-01, 5.91551803e-01,
       1.52124836e+00, 1.52124836e+00, 1.52124836e+00, 1.52124836e+00,
       3.30736543e+00, 3.30736543e+00, 3.30736543e+00, 3.30736543e+00,
       6.19589413e+00, 6.19589413e+00, 6.19589413e+00, 6.19589413e+00,
       1.02215292e+01, 1.02215292e+01, 1.02215292e+01, 1.02215292e+01,
       1.42224996e+01, 1.42224996e+01, 1.42224996e+01, 1.42224996e+01,
       1.79365451e+01, 1.79365451e+01, 1.79365451e+01, 1.79365451e+01,
       2.00798991e+01, 2.00798991e+01, 2.00798991e+01, 2.00798991e+01,
       2.07710129e+01, 2.07710129e+01, 2.07710129e+01, 2.07710129e+01,
       2.03738724e+01, 2.03738724e+01, 2.03738724e+01, 2.03738724e+01,
       1.98546337e+01, 1.98546337e+01, 1.98546337e+01, 1.98546337e+01,
       1.64879617e+01, 1.64879617e+01, 1.64879617e+01, 1.64879617e+01,
       6.52271251e+00, 6.52271251e+00, 6.52271251e+00, 6.52271251e+00,
       3.18021766e-01, 3.18021766e-01, 3.18021766e-01, 3.18021766e-01,
       1.23367760e-03, 1.23367760e-03, 1.23367760e-03, 1.23367760e-03,
       2.70934864e-07, 2.70934864e-07, 2.70934864e-07, 2.70934864e-07,
       3.52019501e-11, 3.52019501e-11, 3.52019501e-11, 3.52019501e-11,
       4.64992921e-15, 4.64992921e-15, 4.64992921e-15, 4.64992921e-15,
       6.02331549e-19, 6.02331549e-19, 6.02331549e-19, 6.02331549e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
       9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
       9.99999729e+02, 9.99999729e+02, 9.99999729e+02, 9.99999729e+02,
       9.99997830e+02, 9.99997830e+02, 9.99997830e+02, 9.99997830e+02,
       9.99984993e+02, 9.99984993e+02, 9.99984993e+02, 9.99984993e+02,
       9.99910685e+02, 9.99910685e+02, 9.99910685e+02, 9.99910685e+02,
       9.99544941e+02, 9.99544941e+02, 9.99544941e+02, 9.99544941e+02,
       9.98029370e+02, 9.98029370e+02, 9.98029370e+02, 9.98029370e+02,
       9.92810695e+02, 9.92810695e+02, 9.92810695e+02, 9.92810695e+02,
       9.78097477e+02, 9.78097477e+02, 9.78097477e+02, 9.78097477e+02,
       9.44564417e+02, 9.44564417e+02, 9.44564417e+02, 9.44564417e+02,
       8.83069293e+02, 8.83069293e+02, 8.83069293e+02, 8.83069293e+02,
       7.91287043e+02, 7.91287043e+02, 7.91287043e+02, 7.91287043e+02,
       6.77341634e+02, 6.77341634e+02, 6.77341634e+02, 6.77341634e+02,
       5.71866254e+02, 5.71866254e+02, 5.71866254e+02, 5.71866254e+02,
       4.98838482e+02, 4.98838482e+02, 4.98838482e+02, 4.98838482e+02,
       4.47748470e+02, 4.47748470e+02, 4.47748470e+02, 4.47748470e+02,
       4.36925122e+02, 4.36925122e+02, 4.36925122e+02, 4.36925122e+02,
       4.54783175e+02, 4.54783175e+02, 4.54783175e+02, 4.54783175e+02,
       4.45896460e+02, 4.45896460e+02, 4.45896460e+02, 4.45896460e+02,
       3.20411762e+02, 3.20411762e+02, 3.20411762e+02, 3.20411762e+02,
       6.15900758e+01, 6.15900758e+01, 6.15900758e+01, 6.15900758e+01,
       8.63421907e-01, 8.63421907e-01, 8.63421907e-01, 8.63421907e-01,
       1.03623773e-02, 1.03623773e-02, 1.03623773e-02, 1.03623773e-02,
       1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999976,
       0.99999976, 0.99999976, 0.99999976, 0.99999829, 0.99999829,
       0.99999829, 0.99999829, 0.99998925, 0.99998925, 0.99998925,
       0.99998925, 0.99994097, 0.99994097, 0.99994097, 0.99994097,
       0.99971837, 0.99971837, 0.99971837, 0.99971837, 0.99883983,
       0.99883983, 0.99883983, 0.99883983, 0.99590578, 0.99590578,
       0.99590578, 0.99590578, 0.98771715, 0.98771715, 0.98771715,
       0.98771715, 0.9688216 , 0.9688216 , 0.9688216 , 0.9688216 ,
       0.93291927, 0.93291927, 0.93291927, 0.93291927, 0.87626891,
       0.87626891, 0.87626891, 0.87626891, 0.79977768, 0.79977768,
       0.79977768, 0.79977768, 0.71616692, 0.71616692, 0.71616692,
       0.71616692, 0.6411649 , 0.6411649 , 0.6411649 , 0.6411649 ,
       0.59775517, 0.59775517, 0.59775517, 0.59775517, 0.54673392,
       0.54673392, 0.54673392, 0.54673392, 0.54631056, 0.54631056,
       0.54631056, 0.54631056, 0.65073939, 0.65073939, 0.65073939,
       0.65073939, 1.1624501 , 1.1624501 , 1.1624501 , 1.1624501 ,
       2.15930703, 2.15930703, 2.15930703, 2.15930703, 2.16998   ,
       2.16998   , 2.16998   , 2.16998   , 1.23507778, 1.23507778,
       1.23507778, 1.23507778, 1.0142605 , 1.0142605 , 1.0142605 ,
       1.0142605 , 1.00015687, 1.00015687, 1.00015687, 1.00015687,
       1.00000003, 1.00000003, 1.00000003, 1.00000003, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.27454384e-14, 1.27454384e-14, 1.27454384e-14, 1.27454384e-14,
       2.47272091e-13, 2.47272091e-13, 2.47272091e-13, 2.47272091e-13,
       4.40240671e-12, 4.40240671e-12, 4.40240671e-12, 4.40240671e-12,
       6.86645339e-11, 6.86645339e-11, 6.86645339e-11, 6.86645339e-11,
       9.37022264e-10, 9.37022264e-10, 9.37022264e-10, 9.37022264e-10,
       1.12236099e-08, 1.12236099e-08, 1.12236099e-08, 1.12236099e-08,
       1.18207072e-07, 1.18207072e-07, 1.18207072e-07, 1.18207072e-07,
       1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
       8.93418660e-06, 8.93418660e-06, 8.93418660e-06, 8.93418660e-06,
       6.40278059e-05, 6.40278059e-05, 6.40278059e-05, 6.40278059e-05,
       4.02322799e-04, 4.02322799e-04, 4.02322799e-04, 4.02322799e-04,
       2.20855552e-03, 2.20855552e-03, 2.20855552e-03, 2.20855552e-03,
       1.05384211e-02, 1.05384211e-02, 1.05384211e-02, 1.05384211e-02,
       4.34263931e-02, 4.34263931e-02, 4.34263931e-02, 4.34263931e-02,
       1.53409739e-01, 1.53409739e-01, 1.53409739e-01, 1.53409739e-01,
       4.61635401e-01, 4.61635401e-01, 4.61635401e-01, 4.61635401e-01,
       1.18057615e+00, 1.18057615e+00, 1.18057615e+00, 1.18057615e+00,
       2.57891597e+00, 2.57891597e+00, 2.57891597e+00, 2.57891597e+00,
       4.88068740e+00, 4.88068740e+00, 4.88068740e+00, 4.88068740e+00,
       8.19631338e+00, 8.19631338e+00, 8.19631338e+00, 8.19631338e+00,
       1.20755557e+01, 1.20755557e+01, 1.20755557e+01, 1.20755557e+01,
       1.56119331e+01, 1.56119331e+01, 1.56119331e+01, 1.56119331e+01,
       1.86987153e+01, 1.86987153e+01, 1.86987153e+01, 1.86987153e+01,
       2.03804546e+01, 2.03804546e+01, 2.03804546e+01, 2.03804546e+01,
       2.06321628e+01, 2.06321628e+01, 2.06321628e+01, 2.06321628e+01,
       2.02171402e+01, 2.02171402e+01, 2.02171402e+01, 2.02171402e+01,
       2.00646475e+01, 2.00646475e+01, 2.00646475e+01, 2.00646475e+01,
       1.86620483e+01, 1.86620483e+01, 1.86620483e+01, 1.86620483e+01,
       1.20985558e+01, 1.20985558e+01, 1.20985558e+01, 1.20985558e+01,
       1.97692771e+00, 1.97692771e+00, 1.97692771e+00, 1.97692771e+00,
       2.87213238e-02, 2.87213238e-02, 2.87213238e-02, 2.87213238e-02,
       2.50770351e-05, 2.50770351e-05, 2.50770351e-05, 2.50770351e-05,
       3.37123734e-09, 3.37123734e-09, 3.37123734e-09, 3.37123734e-09,
       4.42163288e-13, 4.42163288e-13, 4.42163288e-13, 4.42163288e-13,
       5.71495239e-17, 5.71495239e-17, 5.71495239e-17, 5.71495239e-17,
       4.50269287e-21, 4.50269287e-21, 4.50269287e-21, 4.50269287e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
       9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
       9.99999666e+02, 9.99999666e+02, 9.99999666e+02, 9.99999666e+02,
       9.99997604e+02, 9.99997604e+02, 9.99997604e+02, 9.99997604e+02,
       9.99984947e+02, 9.99984947e+02, 9.99984947e+02, 9.99984947e+02,
       9.99917367e+02, 9.99917367e+02, 9.99917367e+02, 9.99917367e+02,
       9.99605771e+02, 9.99605771e+02, 9.99605771e+02, 9.99605771e+02,
       9.98376476e+02, 9.98376476e+02, 9.98376476e+02, 9.98376476e+02,
       9.94276002e+02, 9.94276002e+02, 9.94276002e+02, 9.94276002e+02,
       9.82867864e+02, 9.82867864e+02, 9.82867864e+02, 9.82867864e+02,
       9.56722442e+02, 9.56722442e+02, 9.56722442e+02, 9.56722442e+02,
       9.07673554e+02, 9.07673554e+02, 9.07673554e+02, 9.07673554e+02,
       8.31875435e+02, 8.31875435e+02, 8.31875435e+02, 8.31875435e+02,
       7.32668167e+02, 7.32668167e+02, 7.32668167e+02, 7.32668167e+02,
       6.27675900e+02, 6.27675900e+02, 6.27675900e+02, 6.27675900e+02,
       5.40641296e+02, 5.40641296e+02, 5.40641296e+02, 5.40641296e+02,
       4.81411714e+02, 4.81411714e+02, 4.81411714e+02, 4.81411714e+02,
       4.46388141e+02, 4.46388141e+02, 4.46388141e+02, 4.46388141e+02,
       4.39501351e+02, 4.39501351e+02, 4.39501351e+02, 4.39501351e+02,
       4.52157297e+02, 4.52157297e+02, 4.52157297e+02, 4.52157297e+02,
       4.52775903e+02, 4.52775903e+02, 4.52775903e+02, 4.52775903e+02,
       4.01828833e+02, 4.01828833e+02, 4.01828833e+02, 4.01828833e+02,
       1.79447659e+02, 1.79447659e+02, 1.79447659e+02, 1.79447659e+02,
       1.01968433e+01, 1.01968433e+01, 1.01968433e+01, 1.01968433e+01,
       3.95481482e-02, 3.95481482e-02, 3.95481482e-02, 3.95481482e-02,
       1.00030400e-02, 1.00030400e-02, 1.00030400e-02, 1.00030400e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999973, 0.99999973, 0.99999973, 0.99999973, 0.99999822,
       0.99999822, 0.99999822, 0.99999822, 0.99998963, 0.99998963,
       0.99998963, 0.99998963, 0.99994668, 0.99994668, 0.99994668,
       0.99994668, 0.99975882, 0.99975882, 0.99975882, 0.99975882,
       0.99904627, 0.99904627, 0.99904627, 0.99904627, 0.99672714,
       0.99672714, 0.99672714, 0.99672714, 0.99032541, 0.99032541,
       0.99032541, 0.99032541, 0.97549498, 0.97549498, 0.97549498,
       0.97549498, 0.94682189, 0.94682189, 0.94682189, 0.94682189,
       0.90035943, 0.90035943, 0.90035943, 0.90035943, 0.83595399,
       0.83595399, 0.83595399, 0.83595399, 0.75816608, 0.75816608,
       0.75816608, 0.75816608, 0.68548506, 0.68548506, 0.68548506,
       0.68548506, 0.6201578 , 0.6201578 , 0.6201578 , 0.6201578 ,
       0.58688385, 0.58688385, 0.58688385, 0.58688385, 0.55035053,
       0.55035053, 0.55035053, 0.55035053, 0.54815759, 0.54815759,
       0.54815759, 0.54815759, 0.6060835 , 0.6060835 , 0.6060835 ,
       0.6060835 , 0.93361729, 0.93361729, 0.93361729, 0.93361729,
       1.87007459, 1.87007459, 1.87007459, 1.87007459, 2.43252002,
       2.43252002, 2.43252002, 2.43252002, 1.69813853, 1.69813853,
       1.69813853, 1.69813853, 1.06363124, 1.06363124, 1.06363124,
       1.06363124, 1.00230929, 1.00230929, 1.00230929, 1.00230929,
       1.00000249, 1.00000249, 1.00000249, 1.00000249, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.17918877e-15, 1.17918877e-15, 1.17918877e-15, 1.17918877e-15,
       4.63192568e-14, 4.63192568e-14, 4.63192568e-14, 4.63192568e-14,
       7.72269119e-13, 7.72269119e-13, 7.72269119e-13, 7.72269119e-13,
       1.13606117e-11, 1.13606117e-11, 1.13606117e-11, 1.13606117e-11,
       1.48668973e-10, 1.48668973e-10, 1.48668973e-10, 1.48668973e-10,
       1.73273478e-09, 1.73273478e-09, 1.73273478e-09, 1.73273478e-09,
       1.80065644e-08, 1.80065644e-08, 1.80065644e-08, 1.80065644e-08,
       1.66938246e-07, 1.66938246e-07, 1.66938246e-07, 1.66938246e-07,
       1.38047343e-06, 1.38047343e-06, 1.38047343e-06, 1.38047343e-06,
       1.01730358e-05, 1.01730358e-05, 1.01730358e-05, 1.01730358e-05,
       6.66926861e-05, 6.66926861e-05, 6.66926861e-05, 6.66926861e-05,
       3.87946266e-04, 3.87946266e-04, 3.87946266e-04, 3.87946266e-04,
       1.99495582e-03, 1.99495582e-03, 1.99495582e-03, 1.99495582e-03,
       9.02485988e-03, 9.02485988e-03, 9.02485988e-03, 9.02485988e-03,
       3.56969786e-02, 3.56969786e-02, 3.56969786e-02, 3.56969786e-02,
       1.22599309e-01, 1.22599309e-01, 1.22599309e-01, 1.22599309e-01,
       3.63265196e-01, 3.63265196e-01, 3.63265196e-01, 3.63265196e-01,
       9.25486637e-01, 9.25486637e-01, 9.25486637e-01, 9.25486637e-01,
       2.03251679e+00, 2.03251679e+00, 2.03251679e+00, 2.03251679e+00,
       3.88754026e+00, 3.88754026e+00, 3.88754026e+00, 3.88754026e+00,
       6.59692847e+00, 6.59692847e+00, 6.59692847e+00, 6.59692847e+00,
       1.00916624e+01, 1.00916624e+01, 1.00916624e+01, 1.00916624e+01,
       1.36128329e+01, 1.36128329e+01, 1.36128329e+01, 1.36128329e+01,
       1.67200615e+01, 1.67200615e+01, 1.67200615e+01, 1.67200615e+01,
       1.92196842e+01, 1.92196842e+01, 1.92196842e+01, 1.92196842e+01,
       2.05019813e+01, 2.05019813e+01, 2.05019813e+01, 2.05019813e+01,
       2.05553746e+01, 2.05553746e+01, 2.05553746e+01, 2.05553746e+01,
       2.01200849e+01, 2.01200849e+01, 2.01200849e+01, 2.01200849e+01,
       2.00852609e+01, 2.00852609e+01, 2.00852609e+01, 2.00852609e+01,
       1.95505845e+01, 1.95505845e+01, 1.95505845e+01, 1.95505845e+01,
       1.62261910e+01, 1.62261910e+01, 1.62261910e+01, 1.62261910e+01,
       6.54866545e+00, 6.54866545e+00, 6.54866545e+00, 6.54866545e+00,
       3.24170699e-01, 3.24170699e-01, 3.24170699e-01, 3.24170699e-01,
       1.29707680e-03, 1.29707680e-03, 1.29707680e-03, 1.29707680e-03,
       2.95706974e-07, 2.95706974e-07, 2.95706974e-07, 2.95706974e-07,
       3.91707739e-11, 3.91707739e-11, 3.91707739e-11, 3.91707739e-11,
       5.29501501e-15, 5.29501501e-15, 5.29501501e-15, 5.29501501e-15,
       6.89647830e-19, 6.89647830e-19, 6.89647830e-19, 6.89647830e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
       9.99999948e+02, 9.99999948e+02, 9.99999948e+02, 9.99999948e+02,
       9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
       9.99997505e+02, 9.99997505e+02, 9.99997505e+02, 9.99997505e+02,
       9.99985485e+02, 9.99985485e+02, 9.99985485e+02, 9.99985485e+02,
       9.99925359e+02, 9.99925359e+02, 9.99925359e+02, 9.99925359e+02,
       9.99662381e+02, 9.99662381e+02, 9.99662381e+02, 9.99662381e+02,
       9.98665240e+02, 9.98665240e+02, 9.98665240e+02, 9.98665240e+02,
       9.95422968e+02, 9.95422968e+02, 9.95422968e+02, 9.95422968e+02,
       9.86494880e+02, 9.86494880e+02, 9.86494880e+02, 9.86494880e+02,
       9.65922616e+02, 9.65922616e+02, 9.65922616e+02, 9.65922616e+02,
       9.26549448e+02, 9.26549448e+02, 9.26549448e+02, 9.26549448e+02,
       8.63811003e+02, 8.63811003e+02, 8.63811003e+02, 8.63811003e+02,
       7.79005137e+02, 7.79005137e+02, 7.79005137e+02, 7.79005137e+02,
       6.79897934e+02, 6.79897934e+02, 6.79897934e+02, 6.79897934e+02,
       5.89818941e+02, 5.89818941e+02, 5.89818941e+02, 5.89818941e+02,
       5.17012382e+02, 5.17012382e+02, 5.17012382e+02, 5.17012382e+02,
       4.68673522e+02, 4.68673522e+02, 4.68673522e+02, 4.68673522e+02,
       4.45586337e+02, 4.45586337e+02, 4.45586337e+02, 4.45586337e+02,
       4.42497030e+02, 4.42497030e+02, 4.42497030e+02, 4.42497030e+02,
       4.51096789e+02, 4.51096789e+02, 4.51096789e+02, 4.51096789e+02,
       4.53476996e+02, 4.53476996e+02, 4.53476996e+02, 4.53476996e+02,
       4.36824668e+02, 4.36824668e+02, 4.36824668e+02, 4.36824668e+02,
       3.07120077e+02, 3.07120077e+02, 3.07120077e+02, 3.07120077e+02,
       5.92749963e+01, 5.92749963e+01, 5.92749963e+01, 5.92749963e+01,
       8.68726123e-01, 8.68726123e-01, 8.68726123e-01, 8.68726123e-01,
       1.03848280e-02, 1.03848280e-02, 1.03848280e-02, 1.03848280e-02,
       1.00000350e-02, 1.00000350e-02, 1.00000350e-02, 1.00000350e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999996, 0.99999996, 0.99999996,
       0.99999996, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
       0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99999028,
       0.99999028, 0.99999028, 0.99999028, 0.99995266, 0.99995266,
       0.99995266, 0.99995266, 0.99979512, 0.99979512, 0.99979512,
       0.99979512, 0.99921684, 0.99921684, 0.99921684, 0.99921684,
       0.99737403, 0.99737403, 0.99737403, 0.99737403, 0.9923308 ,
       0.9923308 , 0.9923308 , 0.9923308 , 0.98059926, 0.98059926,
       0.98059926, 0.98059926, 0.95755427, 0.95755427, 0.95755427,
       0.95755427, 0.91927574, 0.91927574, 0.91927574, 0.91927574,
       0.86476987, 0.86476987, 0.86476987, 0.86476987, 0.79618357,
       0.79618357, 0.79618357, 0.79618357, 0.72306218, 0.72306218,
       0.72306218, 0.72306218, 0.66150523, 0.66150523, 0.66150523,
       0.66150523, 0.60422085, 0.60422085, 0.60422085, 0.60422085,
       0.57924424, 0.57924424, 0.57924424, 0.57924424, 0.55336757,
       0.55336757, 0.55336757, 0.55336757, 0.55041993, 0.55041993,
       0.55041993, 0.55041993, 0.58277776, 0.58277776, 0.58277776,
       0.58277776, 0.78662431, 0.78662431, 0.78662431, 0.78662431,
       1.48769623, 1.48769623, 1.48769623, 1.48769623, 2.43758196,
       2.43758196, 2.43758196, 2.43758196, 2.27678193, 2.27678193,
       2.27678193, 2.27678193, 1.23532054, 1.23532054, 1.23532054,
       1.23532054, 1.0142013 , 1.0142013 , 1.0142013 , 1.0142013 ,
       1.00015564, 1.00015564, 1.00015564, 1.00015564, 1.00000003,
       1.00000003, 1.00000003, 1.00000003, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       7.84780571e-15, 7.84780571e-15, 7.84780571e-15, 7.84780571e-15,
       1.31247225e-13, 1.31247225e-13, 1.31247225e-13, 1.31247225e-13,
       1.86099744e-12, 1.86099744e-12, 1.86099744e-12, 1.86099744e-12,
       2.35229555e-11, 2.35229555e-11, 2.35229555e-11, 2.35229555e-11,
       2.68230159e-10, 2.68230159e-10, 2.68230159e-10, 2.68230159e-10,
       2.75761076e-09, 2.75761076e-09, 2.75761076e-09, 2.75761076e-09,
       2.55719231e-08, 2.55719231e-08, 2.55719231e-08, 2.55719231e-08,
       2.13858422e-07, 2.13858422e-07, 2.13858422e-07, 2.13858422e-07,
       1.61179086e-06, 1.61179086e-06, 1.61179086e-06, 1.61179086e-06,
       1.09330523e-05, 1.09330523e-05, 1.09330523e-05, 1.09330523e-05,
       6.66147485e-05, 6.66147485e-05, 6.66147485e-05, 6.66147485e-05,
       3.63590132e-04, 3.63590132e-04, 3.63590132e-04, 3.63590132e-04,
       1.77131328e-03, 1.77131328e-03, 1.77131328e-03, 1.77131328e-03,
       7.66654068e-03, 7.66654068e-03, 7.66654068e-03, 7.66654068e-03,
       2.93110700e-02, 2.93110700e-02, 2.93110700e-02, 2.93110700e-02,
       9.83453389e-02, 9.83453389e-02, 9.83453389e-02, 9.83453389e-02,
       2.87757346e-01, 2.87757346e-01, 2.87757346e-01, 2.87757346e-01,
       7.31271666e-01, 7.31271666e-01, 7.31271666e-01, 7.31271666e-01,
       1.61513497e+00, 1.61513497e+00, 1.61513497e+00, 1.61513497e+00,
       3.12319769e+00, 3.12319769e+00, 3.12319769e+00, 3.12319769e+00,
       5.36427327e+00, 5.36427327e+00, 5.36427327e+00, 5.36427327e+00,
       8.35732099e+00, 8.35732099e+00, 8.35732099e+00, 8.35732099e+00,
       1.16892047e+01, 1.16892047e+01, 1.16892047e+01, 1.16892047e+01,
       1.49052400e+01, 1.49052400e+01, 1.49052400e+01, 1.49052400e+01,
       1.76214127e+01, 1.76214127e+01, 1.76214127e+01, 1.76214127e+01,
       1.95882774e+01, 1.95882774e+01, 1.95882774e+01, 1.95882774e+01,
       2.05031852e+01, 2.05031852e+01, 2.05031852e+01, 2.05031852e+01,
       2.04829872e+01, 2.04829872e+01, 2.04829872e+01, 2.04829872e+01,
       2.00863226e+01, 2.00863226e+01, 2.00863226e+01, 2.00863226e+01,
       2.00679880e+01, 2.00679880e+01, 2.00679880e+01, 2.00679880e+01,
       1.98869708e+01, 1.98869708e+01, 1.98869708e+01, 1.98869708e+01,
       1.83990451e+01, 1.83990451e+01, 1.83990451e+01, 1.83990451e+01,
       1.18973605e+01, 1.18973605e+01, 1.18973605e+01, 1.18973605e+01,
       1.92593412e+00, 1.92593412e+00, 1.92593412e+00, 1.92593412e+00,
       2.78926539e-02, 2.78926539e-02, 2.78926539e-02, 2.78926539e-02,
       2.46303900e-05, 2.46303900e-05, 2.46303900e-05, 2.46303900e-05,
       3.45965769e-09, 3.45965769e-09, 3.45965769e-09, 3.45965769e-09,
       4.70814125e-13, 4.70814125e-13, 4.70814125e-13, 4.70814125e-13,
       6.25944971e-17, 6.25944971e-17, 6.25944971e-17, 6.25944971e-17,
       1.40917331e-20, 1.40917331e-20, 1.40917331e-20, 1.40917331e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999940e+02, 9.99999940e+02, 9.99999940e+02, 9.99999940e+02,
       9.99999591e+02, 9.99999591e+02, 9.99999591e+02, 9.99999591e+02,
       9.99997508e+02, 9.99997508e+02, 9.99997508e+02, 9.99997508e+02,
       9.99986396e+02, 9.99986396e+02, 9.99986396e+02, 9.99986396e+02,
       9.99933726e+02, 9.99933726e+02, 9.99933726e+02, 9.99933726e+02,
       9.99713187e+02, 9.99713187e+02, 9.99713187e+02, 9.99713187e+02,
       9.98903881e+02, 9.98903881e+02, 9.98903881e+02, 9.98903881e+02,
       9.96326802e+02, 9.96326802e+02, 9.96326802e+02, 9.96326802e+02,
       9.89287663e+02, 9.89287663e+02, 9.89287663e+02, 9.89287663e+02,
       9.72982839e+02, 9.72982839e+02, 9.72982839e+02, 9.72982839e+02,
       9.41213875e+02, 9.41213875e+02, 9.41213875e+02, 9.41213875e+02,
       8.89161214e+02, 8.89161214e+02, 8.89161214e+02, 8.89161214e+02,
       8.16557244e+02, 8.16557244e+02, 8.16557244e+02, 8.16557244e+02,
       7.27792873e+02, 7.27792873e+02, 7.27792873e+02, 7.27792873e+02,
       6.36091679e+02, 6.36091679e+02, 6.36091679e+02, 6.36091679e+02,
       5.60608656e+02, 5.60608656e+02, 5.60608656e+02, 5.60608656e+02,
       4.99456928e+02, 4.99456928e+02, 4.99456928e+02, 4.99456928e+02,
       4.59916263e+02, 4.59916263e+02, 4.59916263e+02, 4.59916263e+02,
       4.44832936e+02, 4.44832936e+02, 4.44832936e+02, 4.44832936e+02,
       4.44855833e+02, 4.44855833e+02, 4.44855833e+02, 4.44855833e+02,
       4.51329612e+02, 4.51329612e+02, 4.51329612e+02, 4.51329612e+02,
       4.53075538e+02, 4.53075538e+02, 4.53075538e+02, 4.53075538e+02,
       4.48914983e+02, 4.48914983e+02, 4.48914983e+02, 4.48914983e+02,
       3.89344412e+02, 3.89344412e+02, 3.89344412e+02, 3.89344412e+02,
       1.69288930e+02, 1.69288930e+02, 1.69288930e+02, 1.69288930e+02,
       9.65027996e+00, 9.65027996e+00, 9.65027996e+00, 9.65027996e+00,
       3.79449184e-02, 3.79449184e-02, 3.79449184e-02, 3.79449184e-02,
       1.00029784e-02, 1.00029784e-02, 1.00029784e-02, 1.00029784e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.9999997 , 0.9999997 , 0.9999997 ,
       0.9999997 , 0.99999828, 0.99999828, 0.99999828, 0.99999828,
       0.99999108, 0.99999108, 0.99999108, 0.99999108, 0.9999585 ,
       0.9999585 , 0.9999585 , 0.9999585 , 0.99982697, 0.99982697,
       0.99982697, 0.99982697, 0.99935725, 0.99935725, 0.99935725,
       0.99935725, 0.99788644, 0.99788644, 0.99788644, 0.99788644,
       0.99388871, 0.99388871, 0.99388871, 0.99388871, 0.98455003,
       0.98455003, 0.98455003, 0.98455003, 0.96593499, 0.96593499,
       0.96593499, 0.96593499, 0.9342993 , 0.9342993 , 0.9342993 ,
       0.9342993 , 0.88804292, 0.88804292, 0.88804292, 0.88804292,
       0.82849089, 0.82849089, 0.82849089, 0.82849089, 0.75995557,
       0.75995557, 0.75995557, 0.75995557, 0.6948101 , 0.6948101 ,
       0.6948101 , 0.6948101 , 0.64178791, 0.64178791, 0.64178791,
       0.64178791, 0.59207003, 0.59207003, 0.59207003, 0.59207003,
       0.57419756, 0.57419756, 0.57419756, 0.57419756, 0.55596457,
       0.55596457, 0.55596457, 0.55596457, 0.5528484 , 0.5528484 ,
       0.5528484 , 0.5528484 , 0.57066328, 0.57066328, 0.57066328,
       0.57066328, 0.69535413, 0.69535413, 0.69535413, 0.69535413,
       1.17867884, 1.17867884, 1.17867884, 1.17867884, 2.21167836,
       2.21167836, 2.21167836, 2.21167836, 2.60264521, 2.60264521,
       2.60264521, 2.60264521, 1.7128863 , 1.7128863 , 1.7128863 ,
       1.7128863 , 1.06202573, 1.06202573, 1.06202573, 1.06202573,
       1.00220672, 1.00220672, 1.00220672, 1.00220672, 1.00000228,
       1.00000228, 1.00000228, 1.00000228, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.82667535e-16, 5.82667535e-16, 5.82667535e-16, 5.82667535e-16,
       2.37807029e-14, 2.37807029e-14, 2.37807029e-14, 2.37807029e-14,
       3.03202404e-13, 3.03202404e-13, 3.03202404e-13, 3.03202404e-13,
       3.71371250e-12, 3.71371250e-12, 3.71371250e-12, 3.71371250e-12,
       4.16077225e-11, 4.16077225e-11, 4.16077225e-11, 4.16077225e-11,
       4.24016982e-10, 4.24016982e-10, 4.24016982e-10, 4.24016982e-10,
       3.93302512e-09, 3.93302512e-09, 3.93302512e-09, 3.93302512e-09,
       3.32002473e-08, 3.32002473e-08, 3.32002473e-08, 3.32002473e-08,
       2.54903725e-07, 2.54903725e-07, 2.54903725e-07, 2.54903725e-07,
       1.77822075e-06, 1.77822075e-06, 1.77822075e-06, 1.77822075e-06,
       1.12541158e-05, 1.12541158e-05, 1.12541158e-05, 1.12541158e-05,
       6.44841773e-05, 6.44841773e-05, 6.44841773e-05, 6.44841773e-05,
       3.33602038e-04, 3.33602038e-04, 3.33602038e-04, 3.33602038e-04,
       1.55281901e-03, 1.55281901e-03, 1.55281901e-03, 1.55281901e-03,
       6.47471971e-03, 6.47471971e-03, 6.47471971e-03, 6.47471971e-03,
       2.40547896e-02, 2.40547896e-02, 2.40547896e-02, 2.40547896e-02,
       7.91410207e-02, 7.91410207e-02, 7.91410207e-02, 7.91410207e-02,
       2.29173025e-01, 2.29173025e-01, 2.29173025e-01, 2.29173025e-01,
       5.81473724e-01, 5.81473724e-01, 5.81473724e-01, 5.81473724e-01,
       1.29181150e+00, 1.29181150e+00, 1.29181150e+00, 1.29181150e+00,
       2.52541673e+00, 2.52541673e+00, 2.52541673e+00, 2.52541673e+00,
       4.39364483e+00, 4.39364483e+00, 4.39364483e+00, 4.39364483e+00,
       6.92177553e+00, 6.92177553e+00, 6.92177553e+00, 6.92177553e+00,
       1.00062705e+01, 1.00062705e+01, 1.00062705e+01, 1.00062705e+01,
       1.30551463e+01, 1.30551463e+01, 1.30551463e+01, 1.30551463e+01,
       1.59467542e+01, 1.59467542e+01, 1.59467542e+01, 1.59467542e+01,
       1.83397628e+01, 1.83397628e+01, 1.83397628e+01, 1.83397628e+01,
       1.98657446e+01, 1.98657446e+01, 1.98657446e+01, 1.98657446e+01,
       2.04639329e+01, 2.04639329e+01, 2.04639329e+01, 2.04639329e+01,
       2.03869143e+01, 2.03869143e+01, 2.03869143e+01, 2.03869143e+01,
       2.00832064e+01, 2.00832064e+01, 2.00832064e+01, 2.00832064e+01,
       2.00558910e+01, 2.00558910e+01, 2.00558910e+01, 2.00558910e+01,
       1.99917512e+01, 1.99917512e+01, 1.99917512e+01, 1.99917512e+01,
       1.93663021e+01, 1.93663021e+01, 1.93663021e+01, 1.93663021e+01,
       1.59156770e+01, 1.59156770e+01, 1.59156770e+01, 1.59156770e+01,
       6.34602264e+00, 6.34602264e+00, 6.34602264e+00, 6.34602264e+00,
       3.03838005e-01, 3.03838005e-01, 3.03838005e-01, 3.03838005e-01,
       1.18263967e-03, 1.18263967e-03, 1.18263967e-03, 1.18263967e-03,
       2.70515192e-07, 2.70515192e-07, 2.70515192e-07, 2.70515192e-07,
       3.73495771e-11, 3.73495771e-11, 3.73495771e-11, 3.73495771e-11,
       5.26225555e-15, 5.26225555e-15, 5.26225555e-15, 5.26225555e-15,
       7.33233058e-19, 7.33233058e-19, 7.33233058e-19, 7.33233058e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
       9.99999933e+02, 9.99999933e+02, 9.99999933e+02, 9.99999933e+02,
       9.99999579e+02, 9.99999579e+02, 9.99999579e+02, 9.99999579e+02,
       9.99997587e+02, 9.99997587e+02, 9.99997587e+02, 9.99997587e+02,
       9.99987518e+02, 9.99987518e+02, 9.99987518e+02, 9.99987518e+02,
       9.99941901e+02, 9.99941901e+02, 9.99941901e+02, 9.99941901e+02,
       9.99757768e+02, 9.99757768e+02, 9.99757768e+02, 9.99757768e+02,
       9.99100354e+02, 9.99100354e+02, 9.99100354e+02, 9.99100354e+02,
       9.97043041e+02, 9.97043041e+02, 9.97043041e+02, 9.97043041e+02,
       9.91459711e+02, 9.91459711e+02, 9.91459711e+02, 9.91459711e+02,
       9.78461298e+02, 9.78461298e+02, 9.78461298e+02, 9.78461298e+02,
       9.52721066e+02, 9.52721066e+02, 9.52721066e+02, 9.52721066e+02,
       9.09464048e+02, 9.09464048e+02, 9.09464048e+02, 9.09464048e+02,
       8.47290240e+02, 8.47290240e+02, 8.47290240e+02, 8.47290240e+02,
       7.69147303e+02, 7.69147303e+02, 7.69147303e+02, 7.69147303e+02,
       6.81824841e+02, 6.81824841e+02, 6.81824841e+02, 6.81824841e+02,
       6.01613262e+02, 6.01613262e+02, 6.01613262e+02, 6.01613262e+02,
       5.36678519e+02, 5.36678519e+02, 5.36678519e+02, 5.36678519e+02,
       4.86252372e+02, 4.86252372e+02, 4.86252372e+02, 4.86252372e+02,
       4.54602117e+02, 4.54602117e+02, 4.54602117e+02, 4.54602117e+02,
       4.44345600e+02, 4.44345600e+02, 4.44345600e+02, 4.44345600e+02,
       4.46359684e+02, 4.46359684e+02, 4.46359684e+02, 4.46359684e+02,
       4.51901635e+02, 4.51901635e+02, 4.51901635e+02, 4.51901635e+02,
       4.52889504e+02, 4.52889504e+02, 4.52889504e+02, 4.52889504e+02,
       4.52265646e+02, 4.52265646e+02, 4.52265646e+02, 4.52265646e+02,
       4.29084128e+02, 4.29084128e+02, 4.29084128e+02, 4.29084128e+02,
       2.92805528e+02, 2.92805528e+02, 2.92805528e+02, 2.92805528e+02,
       5.43708093e+01, 5.43708093e+01, 5.43708093e+01, 5.43708093e+01,
       7.81644380e-01, 7.81644380e-01, 7.81644380e-01, 7.81644380e-01,
       1.03355903e-02, 1.03355903e-02, 1.03355903e-02, 1.03355903e-02,
       1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
       0.99999995, 0.99999995, 0.99999995, 0.9999997 , 0.9999997 ,
       0.9999997 , 0.9999997 , 0.99999837, 0.99999837, 0.99999837,
       0.99999837, 0.99999195, 0.99999195, 0.99999195, 0.99999195,
       0.99996397, 0.99996397, 0.99996397, 0.99996397, 0.9998545 ,
       0.9998545 , 0.9998545 , 0.9998545 , 0.9994726 , 0.9994726 ,
       0.9994726 , 0.9994726 , 0.9982943 , 0.9982943 , 0.9982943 ,
       0.9982943 , 0.99510915, 0.99510915, 0.99510915, 0.99510915,
       0.98763719, 0.98763719, 0.98763719, 0.98763719, 0.97253998,
       0.97253998, 0.97253998, 0.97253998, 0.94633146, 0.94633146,
       0.94633146, 0.94633146, 0.90701242, 0.90701242, 0.90701242,
       0.90701242, 0.85516088, 0.85516088, 0.85516088, 0.85516088,
       0.79324114, 0.79324114, 0.79324114, 0.79324114, 0.72928116,
       0.72928116, 0.72928116, 0.72928116, 0.67174921, 0.67174921,
       0.67174921, 0.67174921, 0.62584268, 0.62584268, 0.62584268,
       0.62584268, 0.58259287, 0.58259287, 0.58259287, 0.58259287,
       0.57068029, 0.57068029, 0.57068029, 0.57068029, 0.55836177,
       0.55836177, 0.55836177, 0.55836177, 0.55573867, 0.55573867,
       0.55573867, 0.55573867, 0.56443057, 0.56443057, 0.56443057,
       0.56443057, 0.6395892 , 0.6395892 , 0.6395892 , 0.6395892 ,
       0.96358615, 0.96358615, 0.96358615, 0.96358615, 1.83549949,
       1.83549949, 1.83549949, 1.83549949, 2.66715283, 2.66715283,
       2.66715283, 2.66715283, 2.3438958 , 2.3438958 , 2.3438958 ,
       2.3438958 , 1.22354901, 1.22354901, 1.22354901, 1.22354901,
       1.01330763, 1.01330763, 1.01330763, 1.01330763, 1.00013509,
       1.00013509, 1.00013509, 1.00013509, 1.00000003, 1.00000003,
       1.00000003, 1.00000003, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       3.27252719e-15, 3.27252719e-15, 3.27252719e-15, 3.27252719e-15,
       5.02048681e-14, 5.02048681e-14, 5.02048681e-14, 5.02048681e-14,
       5.87307060e-13, 5.87307060e-13, 5.87307060e-13, 5.87307060e-13,
       6.46241559e-12, 6.46241559e-12, 6.46241559e-12, 6.46241559e-12,
       6.53785309e-11, 6.53785309e-11, 6.53785309e-11, 6.53785309e-11,
       6.06614778e-10, 6.06614778e-10, 6.06614778e-10, 6.06614778e-10,
       5.16153797e-09, 5.16153797e-09, 5.16153797e-09, 5.16153797e-09,
       4.02536022e-08, 4.02536022e-08, 4.02536022e-08, 4.02536022e-08,
       2.87499828e-07, 2.87499828e-07, 2.87499828e-07, 2.87499828e-07,
       1.87827130e-06, 1.87827130e-06, 1.87827130e-06, 1.87827130e-06,
       1.12063726e-05, 1.12063726e-05, 1.12063726e-05, 1.12063726e-05,
       6.09321654e-05, 6.09321654e-05, 6.09321654e-05, 6.09321654e-05,
       3.01124184e-04, 3.01124184e-04, 3.01124184e-04, 3.01124184e-04,
       1.34806658e-03, 1.34806658e-03, 1.34806658e-03, 1.34806658e-03,
       5.44437268e-03, 5.44437268e-03, 5.44437268e-03, 5.44437268e-03,
       1.97371145e-02, 1.97371145e-02, 1.97371145e-02, 1.97371145e-02,
       6.38597905e-02, 6.38597905e-02, 6.38597905e-02, 6.38597905e-02,
       1.83325531e-01, 1.83325531e-01, 1.83325531e-01, 1.83325531e-01,
       4.64737704e-01, 4.64737704e-01, 4.64737704e-01, 4.64737704e-01,
       1.03856729e+00, 1.03856729e+00, 1.03856729e+00, 1.03856729e+00,
       2.05236016e+00, 2.05236016e+00, 2.05236016e+00, 2.05236016e+00,
       3.61812720e+00, 3.61812720e+00, 3.61812720e+00, 3.61812720e+00,
       5.77166819e+00, 5.77166819e+00, 5.77166819e+00, 5.77166819e+00,
       8.48843316e+00, 8.48843316e+00, 8.48843316e+00, 8.48843316e+00,
       1.14236988e+01, 1.14236988e+01, 1.14236988e+01, 1.14236988e+01,
       1.42358355e+01, 1.42358355e+01, 1.42358355e+01, 1.42358355e+01,
       1.68025698e+01, 1.68025698e+01, 1.68025698e+01, 1.68025698e+01,
       1.88802206e+01, 1.88802206e+01, 1.88802206e+01, 1.88802206e+01,
       2.00711843e+01, 2.00711843e+01, 2.00711843e+01, 2.00711843e+01,
       2.04384777e+01, 2.04384777e+01, 2.04384777e+01, 2.04384777e+01,
       2.02877280e+01, 2.02877280e+01, 2.02877280e+01, 2.02877280e+01,
       2.00672694e+01, 2.00672694e+01, 2.00672694e+01, 2.00672694e+01,
       2.00505256e+01, 2.00505256e+01, 2.00505256e+01, 2.00505256e+01,
       2.00195354e+01, 2.00195354e+01, 2.00195354e+01, 2.00195354e+01,
       1.97774623e+01, 1.97774623e+01, 1.97774623e+01, 1.97774623e+01,
       1.81444582e+01, 1.81444582e+01, 1.81444582e+01, 1.81444582e+01,
       1.15550729e+01, 1.15550729e+01, 1.15550729e+01, 1.15550729e+01,
       1.77081733e+00, 1.77081733e+00, 1.77081733e+00, 1.77081733e+00,
       2.44888120e-02, 2.44888120e-02, 2.44888120e-02, 2.44888120e-02,
       2.06002983e-05, 2.06002983e-05, 2.06002983e-05, 2.06002983e-05,
       2.98049908e-09, 2.98049908e-09, 2.98049908e-09, 2.98049908e-09,
       4.19450571e-13, 4.19450571e-13, 4.19450571e-13, 4.19450571e-13,
       5.78774071e-17, 5.78774071e-17, 5.78774071e-17, 5.78774071e-17,
       4.37610151e-21, 4.37610151e-21, 4.37610151e-21, 4.37610151e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999930e+02, 9.99999930e+02, 9.99999930e+02, 9.99999930e+02,
       9.99999581e+02, 9.99999581e+02, 9.99999581e+02, 9.99999581e+02,
       9.99997720e+02, 9.99997720e+02, 9.99997720e+02, 9.99997720e+02,
       9.99988733e+02, 9.99988733e+02, 9.99988733e+02, 9.99988733e+02,
       9.99949561e+02, 9.99949561e+02, 9.99949561e+02, 9.99949561e+02,
       9.99796311e+02, 9.99796311e+02, 9.99796311e+02, 9.99796311e+02,
       9.99261774e+02, 9.99261774e+02, 9.99261774e+02, 9.99261774e+02,
       9.97613331e+02, 9.97613331e+02, 9.97613331e+02, 9.97613331e+02,
       9.93162704e+02, 9.93162704e+02, 9.93162704e+02, 9.93162704e+02,
       9.82750522e+02, 9.82750522e+02, 9.82750522e+02, 9.82750522e+02,
       9.61824610e+02, 9.61824610e+02, 9.61824610e+02, 9.61824610e+02,
       9.25831706e+02, 9.25831706e+02, 9.25831706e+02, 9.25831706e+02,
       8.72601859e+02, 8.72601859e+02, 8.72601859e+02, 8.72601859e+02,
       8.03814503e+02, 8.03814503e+02, 8.03814503e+02, 8.03814503e+02,
       7.23838409e+02, 7.23838409e+02, 7.23838409e+02, 7.23838409e+02,
       6.43384851e+02, 6.43384851e+02, 6.43384851e+02, 6.43384851e+02,
       5.74112241e+02, 5.74112241e+02, 5.74112241e+02, 5.74112241e+02,
       5.17349942e+02, 5.17349942e+02, 5.17349942e+02, 5.17349942e+02,
       4.75919956e+02, 4.75919956e+02, 4.75919956e+02, 4.75919956e+02,
       4.51607155e+02, 4.51607155e+02, 4.51607155e+02, 4.51607155e+02,
       4.44470585e+02, 4.44470585e+02, 4.44470585e+02, 4.44470585e+02,
       4.47515366e+02, 4.47515366e+02, 4.47515366e+02, 4.47515366e+02,
       4.52054920e+02, 4.52054920e+02, 4.52054920e+02, 4.52054920e+02,
       4.52910758e+02, 4.52910758e+02, 4.52910758e+02, 4.52910758e+02,
       4.53087888e+02, 4.53087888e+02, 4.53087888e+02, 4.53087888e+02,
       4.45232329e+02, 4.45232329e+02, 4.45232329e+02, 4.45232329e+02,
       3.77819444e+02, 3.77819444e+02, 3.77819444e+02, 3.77819444e+02,
       1.56913286e+02, 1.56913286e+02, 1.56913286e+02, 1.56913286e+02,
       8.48730097e+00, 8.48730097e+00, 8.48730097e+00, 8.48730097e+00,
       3.29887631e-02, 3.29887631e-02, 3.29887631e-02, 3.29887631e-02,
       1.00024710e-02, 1.00024710e-02, 1.00024710e-02, 1.00024710e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999971,
       0.99999971, 0.99999971, 0.99999971, 0.99999849, 0.99999849,
       0.99999849, 0.99999849, 0.99999283, 0.99999283, 0.99999283,
       0.99999283, 0.99996896, 0.99996896, 0.99996896, 0.99996896,
       0.99987805, 0.99987805, 0.99987805, 0.99987805, 0.99956724,
       0.99956724, 0.99956724, 0.99956724, 0.99862027, 0.99862027,
       0.99862027, 0.99862027, 0.99607172, 0.99607172, 0.99607172,
       0.99607172, 0.99006817, 0.99006817, 0.99006817, 0.99006817,
       0.97778423, 0.97778423, 0.97778423, 0.97778423, 0.95603297,
       0.95603297, 0.95603297, 0.95603297, 0.92259283, 0.92259283,
       0.92259283, 0.92259283, 0.87738557, 0.87738557, 0.87738557,
       0.87738557, 0.82228577, 0.82228577, 0.82228577, 0.82228577,
       0.76124912, 0.76124912, 0.76124912, 0.76124912, 0.7039925 ,
       0.7039925 , 0.7039925 , 0.7039925 , 0.65236277, 0.65236277,
       0.65236277, 0.65236277, 0.6131337 , 0.6131337 , 0.6131337 ,
       0.6131337 , 0.57531994, 0.57531994, 0.57531994, 0.57531994,
       0.56785759, 0.56785759, 0.56785759, 0.56785759, 0.56038513,
       0.56038513, 0.56038513, 0.56038513, 0.55900443, 0.55900443,
       0.55900443, 0.55900443, 0.56184189, 0.56184189, 0.56184189,
       0.56184189, 0.60586371, 0.60586371, 0.60586371, 0.60586371,
       0.81871248, 0.81871248, 0.81871248, 0.81871248, 1.4581625 ,
       1.4581625 , 1.4581625 , 1.4581625 , 2.52120104, 2.52120104,
       2.52120104, 2.52120104, 2.74380791, 2.74380791, 2.74380791,
       2.74380791, 1.69735103, 1.69735103, 1.69735103, 1.69735103,
       1.0575523 , 1.0575523 , 1.0575523 , 1.0575523 , 1.00195343,
       1.00195343, 1.00195343, 1.00195343, 1.00000178, 1.00000178,
       1.00000178, 1.00000178, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.91889946e-15, 5.91889946e-15, 5.91889946e-15, 5.91889946e-15,
       9.30184492e-14, 9.30184492e-14, 9.30184492e-14, 9.30184492e-14,
       1.00936002e-12, 1.00936002e-12, 1.00936002e-12, 1.00936002e-12,
       1.01033815e-11, 1.01033815e-11, 1.01033815e-11, 1.01033815e-11,
       9.37627227e-11, 9.37627227e-11, 9.37627227e-11, 9.37627227e-11,
       8.03306517e-10, 8.03306517e-10, 8.03306517e-10, 8.03306517e-10,
       6.34932257e-09, 6.34932257e-09, 6.34932257e-09, 6.34932257e-09,
       4.62683708e-08, 4.62683708e-08, 4.62683708e-08, 4.62683708e-08,
       3.10550365e-07, 3.10550365e-07, 3.10550365e-07, 3.10550365e-07,
       1.91739687e-06, 1.91739687e-06, 1.91739687e-06, 1.91739687e-06,
       1.08719093e-05, 1.08719093e-05, 1.08719093e-05, 1.08719093e-05,
       5.64951242e-05, 5.64951242e-05, 5.64951242e-05, 5.64951242e-05,
       2.68353586e-04, 2.68353586e-04, 2.68353586e-04, 2.68353586e-04,
       1.16148888e-03, 1.16148888e-03, 1.16148888e-03, 1.16148888e-03,
       4.56296110e-03, 4.56296110e-03, 4.56296110e-03, 4.56296110e-03,
       1.61948234e-02, 1.61948234e-02, 1.61948234e-02, 1.61948234e-02,
       5.16501942e-02, 5.16501942e-02, 5.16501942e-02, 5.16501942e-02,
       1.47193741e-01, 1.47193741e-01, 1.47193741e-01, 1.47193741e-01,
       3.73008312e-01, 3.73008312e-01, 3.73008312e-01, 3.73008312e-01,
       8.38464798e-01, 8.38464798e-01, 8.38464798e-01, 8.38464798e-01,
       1.67451578e+00, 1.67451578e+00, 1.67451578e+00, 1.67451578e+00,
       2.99122036e+00, 2.99122036e+00, 2.99122036e+00, 2.99122036e+00,
       4.83584276e+00, 4.83584276e+00, 4.83584276e+00, 4.83584276e+00,
       7.19273469e+00, 7.19273469e+00, 7.19273469e+00, 7.19273469e+00,
       9.93587440e+00, 9.93587440e+00, 9.93587440e+00, 9.93587440e+00,
       1.26632029e+01, 1.26632029e+01, 1.26632029e+01, 1.26632029e+01,
       1.52391788e+01, 1.52391788e+01, 1.52391788e+01, 1.52391788e+01,
       1.75131368e+01, 1.75131368e+01, 1.75131368e+01, 1.75131368e+01,
       1.92750068e+01, 1.92750068e+01, 1.92750068e+01, 1.92750068e+01,
       2.02071764e+01, 2.02071764e+01, 2.02071764e+01, 2.02071764e+01,
       2.04224324e+01, 2.04224324e+01, 2.04224324e+01, 2.04224324e+01,
       2.02143397e+01, 2.02143397e+01, 2.02143397e+01, 2.02143397e+01,
       2.00448842e+01, 2.00448842e+01, 2.00448842e+01, 2.00448842e+01,
       2.00355481e+01, 2.00355481e+01, 2.00355481e+01, 2.00355481e+01,
       2.00263366e+01, 2.00263366e+01, 2.00263366e+01, 2.00263366e+01,
       1.99415493e+01, 1.99415493e+01, 1.99415493e+01, 1.99415493e+01,
       1.92029402e+01, 1.92029402e+01, 1.92029402e+01, 1.92029402e+01,
       1.55549094e+01, 1.55549094e+01, 1.55549094e+01, 1.55549094e+01,
       5.98150672e+00, 5.98150672e+00, 5.98150672e+00, 5.98150672e+00,
       2.65685194e-01, 2.65685194e-01, 2.65685194e-01, 2.65685194e-01,
       9.54732742e-04, 9.54732742e-04, 9.54732742e-04, 9.54732742e-04,
       2.10803427e-07, 2.10803427e-07, 2.10803427e-07, 2.10803427e-07,
       3.02033655e-11, 3.02033655e-11, 3.02033655e-11, 3.02033655e-11,
       4.41057656e-15, 4.41057656e-15, 4.41057656e-15, 4.41057656e-15,
       6.12854624e-19, 6.12854624e-19, 6.12854624e-19, 6.12854624e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999928e+02, 9.99999928e+02, 9.99999928e+02, 9.99999928e+02,
       9.99999593e+02, 9.99999593e+02, 9.99999593e+02, 9.99999593e+02,
       9.99997886e+02, 9.99997886e+02, 9.99997886e+02, 9.99997886e+02,
       9.99989959e+02, 9.99989959e+02, 9.99989959e+02, 9.99989959e+02,
       9.99956542e+02, 9.99956542e+02, 9.99956542e+02, 9.99956542e+02,
       9.99829284e+02, 9.99829284e+02, 9.99829284e+02, 9.99829284e+02,
       9.99394226e+02, 9.99394226e+02, 9.99394226e+02, 9.99394226e+02,
       9.98069219e+02, 9.98069219e+02, 9.98069219e+02, 9.98069219e+02,
       9.94506766e+02, 9.94506766e+02, 9.94506766e+02, 9.94506766e+02,
       9.86133189e+02, 9.86133189e+02, 9.86133189e+02, 9.86133189e+02,
       9.69074355e+02, 9.69074355e+02, 9.69074355e+02, 9.69074355e+02,
       9.39098214e+02, 9.39098214e+02, 9.39098214e+02, 9.39098214e+02,
       8.93564448e+02, 8.93564448e+02, 8.93564448e+02, 8.93564448e+02,
       8.33059937e+02, 8.33059937e+02, 8.33059937e+02, 8.33059937e+02,
       7.60987238e+02, 7.60987238e+02, 7.60987238e+02, 7.60987238e+02,
       6.83226607e+02, 6.83226607e+02, 6.83226607e+02, 6.83226607e+02,
       6.12243005e+02, 6.12243005e+02, 6.12243005e+02, 6.12243005e+02,
       5.51401650e+02, 5.51401650e+02, 5.51401650e+02, 5.51401650e+02,
       5.01944900e+02, 5.01944900e+02, 5.01944900e+02, 5.01944900e+02,
       4.67782716e+02, 4.67782716e+02, 4.67782716e+02, 4.67782716e+02,
       4.49784516e+02, 4.49784516e+02, 4.49784516e+02, 4.49784516e+02,
       4.45064233e+02, 4.45064233e+02, 4.45064233e+02, 4.45064233e+02,
       4.48787029e+02, 4.48787029e+02, 4.48787029e+02, 4.48787029e+02,
       4.51978695e+02, 4.51978695e+02, 4.51978695e+02, 4.51978695e+02,
       4.52793680e+02, 4.52793680e+02, 4.52793680e+02, 4.52793680e+02,
       4.53282403e+02, 4.53282403e+02, 4.53282403e+02, 4.53282403e+02,
       4.50955061e+02, 4.50955061e+02, 4.50955061e+02, 4.50955061e+02,
       4.22213148e+02, 4.22213148e+02, 4.22213148e+02, 4.22213148e+02,
       2.77875953e+02, 2.77875953e+02, 2.77875953e+02, 2.77875953e+02,
       4.81022077e+01, 4.81022077e+01, 4.81022077e+01, 4.81022077e+01,
       6.43549685e-01, 6.43549685e-01, 6.43549685e-01, 6.43549685e-01,
       1.02488911e-02, 1.02488911e-02, 1.02488911e-02, 1.02488911e-02,
       1.00000249e-02, 1.00000249e-02, 1.00000249e-02, 1.00000249e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999995, 0.99999995, 0.99999995, 0.99999995,
       0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999862,
       0.99999862, 0.99999862, 0.99999862, 0.99999367, 0.99999367,
       0.99999367, 0.99999367, 0.99997341, 0.99997341, 0.99997341,
       0.99997341, 0.99989805, 0.99989805, 0.99989805, 0.99989805,
       0.99964482, 0.99964482, 0.99964482, 0.99964482, 0.99888164,
       0.99888164, 0.99888164, 0.99888164, 0.99683513, 0.99683513,
       0.99683513, 0.99683513, 0.99199451, 0.99199451, 0.99199451,
       0.99199451, 0.9819733 , 0.9819733 , 0.9819733 , 0.9819733 ,
       0.96389763, 0.96389763, 0.96389763, 0.96389763, 0.93545495,
       0.93545495, 0.93545495, 0.93545495, 0.89604286, 0.89604286,
       0.89604286, 0.89604286, 0.84702851, 0.84702851, 0.84702851,
       0.84702851, 0.79079924, 0.79079924, 0.79079924, 0.79079924,
       0.73376007, 0.73376007, 0.73376007, 0.73376007, 0.68273638,
       0.68273638, 0.68273638, 0.68273638, 0.63612561, 0.63612561,
       0.63612561, 0.63612561, 0.60307654, 0.60307654, 0.60307654,
       0.60307654, 0.57002222, 0.57002222, 0.57002222, 0.57002222,
       0.56543931, 0.56543931, 0.56543931, 0.56543931, 0.56183756,
       0.56183756, 0.56183756, 0.56183756, 0.56199531, 0.56199531,
       0.56199531, 0.56199531, 0.56171758, 0.56171758, 0.56171758,
       0.56171758, 0.58609083, 0.58609083, 0.58609083, 0.58609083,
       0.72311334, 0.72311334, 0.72311334, 0.72311334, 1.17609219,
       1.17609219, 1.17609219, 1.17609219, 2.18113668, 2.18113668,
       2.18113668, 2.18113668, 2.86626909, 2.86626909, 2.86626909,
       2.86626909, 2.37228972, 2.37228972, 2.37228972, 2.37228972,
       1.2039004 , 1.2039004 , 1.2039004 , 1.2039004 , 1.01187606,
       1.01187606, 1.01187606, 1.01187606, 1.00010508, 1.00010508,
       1.00010508, 1.00010508, 1.00000002, 1.00000002, 1.00000002,
       1.00000002, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.33539348e-14, 1.33539348e-14, 1.33539348e-14, 1.33539348e-14,
       1.55607325e-13, 1.55607325e-13, 1.55607325e-13, 1.55607325e-13,
       1.56402128e-12, 1.56402128e-12, 1.56402128e-12, 1.56402128e-12,
       1.45324292e-11, 1.45324292e-11, 1.45324292e-11, 1.45324292e-11,
       1.25185482e-10, 1.25185482e-10, 1.25185482e-10, 1.25185482e-10,
       1.00094143e-09, 1.00094143e-09, 1.00094143e-09, 1.00094143e-09,
       7.42144171e-09, 7.42144171e-09, 7.42144171e-09, 7.42144171e-09,
       5.09825802e-08, 5.09825802e-08, 5.09825802e-08, 5.09825802e-08,
       3.24157733e-07, 3.24157733e-07, 3.24157733e-07, 3.24157733e-07,
       1.90508651e-06, 1.90508651e-06, 1.90508651e-06, 1.90508651e-06,
       1.03318499e-05, 1.03318499e-05, 1.03318499e-05, 1.03318499e-05,
       5.16016816e-05, 5.16016816e-05, 5.16016816e-05, 5.16016816e-05,
       2.36752814e-04, 2.36752814e-04, 2.36752814e-04, 2.36752814e-04,
       9.94861791e-04, 9.94861791e-04, 9.94861791e-04, 9.94861791e-04,
       3.81489106e-03, 3.81489106e-03, 3.81489106e-03, 3.81489106e-03,
       1.32911013e-02, 1.32911013e-02, 1.32911013e-02, 1.32911013e-02,
       4.18617207e-02, 4.18617207e-02, 4.18617207e-02, 4.18617207e-02,
       1.18555604e-01, 1.18555604e-01, 1.18555604e-01, 1.18555604e-01,
       3.00441076e-01, 3.00441076e-01, 3.00441076e-01, 3.00441076e-01,
       6.79231840e-01, 6.79231840e-01, 6.79231840e-01, 6.79231840e-01,
       1.37049927e+00, 1.37049927e+00, 1.37049927e+00, 1.37049927e+00,
       2.48027947e+00, 2.48027947e+00, 2.48027947e+00, 2.48027947e+00,
       4.06534852e+00, 4.06534852e+00, 4.06534852e+00, 4.06534852e+00,
       6.11874426e+00, 6.11874426e+00, 6.11874426e+00, 6.11874426e+00,
       8.59698769e+00, 8.59698769e+00, 8.59698769e+00, 8.59698769e+00,
       1.11984851e+01, 1.11984851e+01, 1.11984851e+01, 1.11984851e+01,
       1.37435738e+01, 1.37435738e+01, 1.37435738e+01, 1.37435738e+01,
       1.61020009e+01, 1.61020009e+01, 1.61020009e+01, 1.61020009e+01,
       1.81047370e+01, 1.81047370e+01, 1.81047370e+01, 1.81047370e+01,
       1.95637081e+01, 1.95637081e+01, 1.95637081e+01, 1.95637081e+01,
       2.02802090e+01, 2.02802090e+01, 2.02802090e+01, 2.02802090e+01,
       2.03974866e+01, 2.03974866e+01, 2.03974866e+01, 2.03974866e+01,
       2.01688547e+01, 2.01688547e+01, 2.01688547e+01, 2.01688547e+01,
       2.00346701e+01, 2.00346701e+01, 2.00346701e+01, 2.00346701e+01,
       2.00176538e+01, 2.00176538e+01, 2.00176538e+01, 2.00176538e+01,
       2.00209769e+01, 2.00209769e+01, 2.00209769e+01, 2.00209769e+01,
       1.99976377e+01, 1.99976377e+01, 1.99976377e+01, 1.99976377e+01,
       1.96779963e+01, 1.96779963e+01, 1.96779963e+01, 1.96779963e+01,
       1.78764303e+01, 1.78764303e+01, 1.78764303e+01, 1.78764303e+01,
       1.11193485e+01, 1.11193485e+01, 1.11193485e+01, 1.11193485e+01,
       1.55576781e+00, 1.55576781e+00, 1.55576781e+00, 1.55576781e+00,
       1.98900933e-02, 1.98900933e-02, 1.98900933e-02, 1.98900933e-02,
       1.52255734e-05, 1.52255734e-05, 1.52255734e-05, 1.52255734e-05,
       2.23363364e-09, 2.23363364e-09, 2.23363364e-09, 2.23363364e-09,
       3.21107467e-13, 3.21107467e-13, 3.21107467e-13, 3.21107467e-13,
       4.55567759e-17, 4.55567759e-17, 4.55567759e-17, 4.55567759e-17,
       4.26370518e-21, 4.26370518e-21, 4.26370518e-21, 4.26370518e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999929e+02, 9.99999929e+02, 9.99999929e+02, 9.99999929e+02,
       9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
       9.99998069e+02, 9.99998069e+02, 9.99998069e+02, 9.99998069e+02,
       9.99991142e+02, 9.99991142e+02, 9.99991142e+02, 9.99991142e+02,
       9.99962776e+02, 9.99962776e+02, 9.99962776e+02, 9.99962776e+02,
       9.99857270e+02, 9.99857270e+02, 9.99857270e+02, 9.99857270e+02,
       9.99502814e+02, 9.99502814e+02, 9.99502814e+02, 9.99502814e+02,
       9.98434853e+02, 9.98434853e+02, 9.98434853e+02, 9.98434853e+02,
       9.95573298e+02, 9.95573298e+02, 9.95573298e+02, 9.95573298e+02,
       9.88816876e+02, 9.88816876e+02, 9.88816876e+02, 9.88816876e+02,
       9.74879194e+02, 9.74879194e+02, 9.74879194e+02, 9.74879194e+02,
       9.49898234e+02, 9.49898234e+02, 9.49898234e+02, 9.49898234e+02,
       9.10986409e+02, 9.10986409e+02, 9.10986409e+02, 9.10986409e+02,
       8.57855860e+02, 8.57855860e+02, 8.57855860e+02, 8.57855860e+02,
       7.93072862e+02, 7.93072862e+02, 7.93072862e+02, 7.93072862e+02,
       7.20578542e+02, 7.20578542e+02, 7.20578542e+02, 7.20578542e+02,
       6.48800650e+02, 6.48800650e+02, 6.48800650e+02, 6.48800650e+02,
       5.86389112e+02, 5.86389112e+02, 5.86389112e+02, 5.86389112e+02,
       5.32725608e+02, 5.32725608e+02, 5.32725608e+02, 5.32725608e+02,
       4.89778956e+02, 4.89778956e+02, 4.89778956e+02, 4.89778956e+02,
       4.61519534e+02, 4.61519534e+02, 4.61519534e+02, 4.61519534e+02,
       4.48525367e+02, 4.48525367e+02, 4.48525367e+02, 4.48525367e+02,
       4.45928711e+02, 4.45928711e+02, 4.45928711e+02, 4.45928711e+02,
       4.49956676e+02, 4.49956676e+02, 4.49956676e+02, 4.49956676e+02,
       4.52076499e+02, 4.52076499e+02, 4.52076499e+02, 4.52076499e+02,
       4.52643316e+02, 4.52643316e+02, 4.52643316e+02, 4.52643316e+02,
       4.53164778e+02, 4.53164778e+02, 4.53164778e+02, 4.53164778e+02,
       4.52705085e+02, 4.52705085e+02, 4.52705085e+02, 4.52705085e+02,
       4.42106466e+02, 4.42106466e+02, 4.42106466e+02, 4.42106466e+02,
       3.66606419e+02, 3.66606419e+02, 3.66606419e+02, 3.66606419e+02,
       1.43278417e+02, 1.43278417e+02, 1.43278417e+02, 1.43278417e+02,
       7.05131525e+00, 7.05131525e+00, 7.05131525e+00, 7.05131525e+00,
       2.69964841e-02, 2.69964841e-02, 2.69964841e-02, 2.69964841e-02,
       1.00018104e-02, 1.00018104e-02, 1.00018104e-02, 1.00018104e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999995, 0.99999995, 0.99999995,
       0.99999995, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
       0.99999876, 0.99999876, 0.99999876, 0.99999876, 0.99999446,
       0.99999446, 0.99999446, 0.99999446, 0.99997733, 0.99997733,
       0.99997733, 0.99997733, 0.99991492, 0.99991492, 0.99991492,
       0.99991492, 0.99970841, 0.99970841, 0.99970841, 0.99970841,
       0.99909185, 0.99909185, 0.99909185, 0.99909185, 0.99744342,
       0.99744342, 0.99744342, 0.99744342, 0.99352897, 0.99352897,
       0.99352897, 0.99352897, 0.98533607, 0.98533607, 0.98533607,
       0.98533607, 0.9703007 , 0.9703007 , 0.9703007 , 0.9703007 ,
       0.94611525, 0.94611525, 0.94611525, 0.94611525, 0.91178545,
       0.91178545, 0.91178545, 0.91178545, 0.8681275 , 0.8681275 ,
       0.8681275 , 0.8681275 , 0.81711896, 0.81711896, 0.81711896,
       0.81711896, 0.76228815, 0.76228815, 0.76228815, 0.76228815,
       0.71063528, 0.71063528, 0.71063528, 0.71063528, 0.66449658,
       0.66449658, 0.66449658, 0.66449658, 0.62236199, 0.62236199,
       0.62236199, 0.62236199, 0.59504764, 0.59504764, 0.59504764,
       0.59504764, 0.56660492, 0.56660492, 0.56660492, 0.56660492,
       0.56344579, 0.56344579, 0.56344579, 0.56344579, 0.56277418,
       0.56277418, 0.56277418, 0.56277418, 0.56425748, 0.56425748,
       0.56425748, 0.56425748, 0.56271208, 0.56271208, 0.56271208,
       0.56271208, 0.57532902, 0.57532902, 0.57532902, 0.57532902,
       0.66138282, 0.66138282, 0.66138282, 0.66138282, 0.97477241,
       0.97477241, 0.97477241, 0.97477241, 1.76866995, 1.76866995,
       1.76866995, 1.76866995, 2.79140624, 2.79140624, 2.79140624,
       2.79140624, 2.85504716, 2.85504716, 2.85504716, 2.85504716,
       1.6572704 , 1.6572704 , 1.6572704 , 1.6572704 , 1.05142481,
       1.05142481, 1.05142481, 1.05142481, 1.00163012, 1.00163012,
       1.00163012, 1.00163012, 1.00000124, 1.00000124, 1.00000124,
       1.00000124, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.24969420e-13, 2.24969420e-13, 2.24969420e-13, 2.24969420e-13,
       2.25206716e-12, 2.25206716e-12, 2.25206716e-12, 2.25206716e-12,
       1.95360740e-11, 1.95360740e-11, 1.95360740e-11, 1.95360740e-11,
       1.57777129e-10, 1.57777129e-10, 1.57777129e-10, 1.57777129e-10,
       1.18752511e-09, 1.18752511e-09, 1.18752511e-09, 1.18752511e-09,
       8.32407101e-09, 8.32407101e-09, 8.32407101e-09, 8.32407101e-09,
       5.42910740e-08, 5.42910740e-08, 5.42910740e-08, 5.42910740e-08,
       3.29113213e-07, 3.29113213e-07, 3.29113213e-07, 3.29113213e-07,
       1.85184067e-06, 1.85184067e-06, 1.85184067e-06, 1.85184067e-06,
       9.65592764e-06, 9.65592764e-06, 9.65592764e-06, 9.65592764e-06,
       4.65650184e-05, 4.65650184e-05, 4.65650184e-05, 4.65650184e-05,
       2.07190385e-04, 2.07190385e-04, 2.07190385e-04, 2.07190385e-04,
       8.48170242e-04, 8.48170242e-04, 8.48170242e-04, 8.48170242e-04,
       3.18354794e-03, 3.18354794e-03, 3.18354794e-03, 3.18354794e-03,
       1.09115255e-02, 1.09115255e-02, 1.09115255e-02, 1.09115255e-02,
       3.39908368e-02, 3.39908368e-02, 3.39908368e-02, 3.39908368e-02,
       9.57478717e-02, 9.57478717e-02, 9.57478717e-02, 9.57478717e-02,
       2.42712876e-01, 2.42712876e-01, 2.42712876e-01, 2.42712876e-01,
       5.51793377e-01, 5.51793377e-01, 5.51793377e-01, 5.51793377e-01,
       1.12446443e+00, 1.12446443e+00, 1.12446443e+00, 1.12446443e+00,
       2.06118893e+00, 2.06118893e+00, 2.06118893e+00, 2.06118893e+00,
       3.42552666e+00, 3.42552666e+00, 3.42552666e+00, 3.42552666e+00,
       5.22314600e+00, 5.22314600e+00, 5.22314600e+00, 5.22314600e+00,
       7.41906287e+00, 7.41906287e+00, 7.41906287e+00, 7.41906287e+00,
       9.88411479e+00, 9.88411479e+00, 9.88411479e+00, 9.88411479e+00,
       1.23254490e+01, 1.23254490e+01, 1.23254490e+01, 1.23254490e+01,
       1.46753619e+01, 1.46753619e+01, 1.46753619e+01, 1.46753619e+01,
       1.68362063e+01, 1.68362063e+01, 1.68362063e+01, 1.68362063e+01,
       1.85972036e+01, 1.85972036e+01, 1.85972036e+01, 1.85972036e+01,
       1.97810316e+01, 1.97810316e+01, 1.97810316e+01, 1.97810316e+01,
       2.03056736e+01, 2.03056736e+01, 2.03056736e+01, 2.03056736e+01,
       2.03583742e+01, 2.03583742e+01, 2.03583742e+01, 2.03583742e+01,
       2.01400339e+01, 2.01400339e+01, 2.01400339e+01, 2.01400339e+01,
       2.00353247e+01, 2.00353247e+01, 2.00353247e+01, 2.00353247e+01,
       2.00086210e+01, 2.00086210e+01, 2.00086210e+01, 2.00086210e+01,
       2.00116248e+01, 2.00116248e+01, 2.00116248e+01, 2.00116248e+01,
       2.00091285e+01, 2.00091285e+01, 2.00091285e+01, 2.00091285e+01,
       1.98825700e+01, 1.98825700e+01, 1.98825700e+01, 1.98825700e+01,
       1.90344265e+01, 1.90344265e+01, 1.90344265e+01, 1.90344265e+01,
       1.51585367e+01, 1.51585367e+01, 1.51585367e+01, 1.51585367e+01,
       5.49808022e+00, 5.49808022e+00, 5.49808022e+00, 5.49808022e+00,
       2.20110268e-01, 2.20110268e-01, 2.20110268e-01, 2.20110268e-01,
       7.04288698e-04, 7.04288698e-04, 7.04288698e-04, 7.04288698e-04,
       1.46929013e-07, 1.46929013e-07, 1.46929013e-07, 1.46929013e-07,
       2.17393213e-11, 2.17393213e-11, 2.17393213e-11, 2.17393213e-11,
       3.25874024e-15, 3.25874024e-15, 3.25874024e-15, 3.25874024e-15,
       4.93883641e-19, 4.93883641e-19, 4.93883641e-19, 4.93883641e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999931e+02, 9.99999931e+02, 9.99999931e+02, 9.99999931e+02,
       9.99999639e+02, 9.99999639e+02, 9.99999639e+02, 9.99999639e+02,
       9.99998258e+02, 9.99998258e+02, 9.99998258e+02, 9.99998258e+02,
       9.99992248e+02, 9.99992248e+02, 9.99992248e+02, 9.99992248e+02,
       9.99968265e+02, 9.99968265e+02, 9.99968265e+02, 9.99968265e+02,
       9.99880890e+02, 9.99880890e+02, 9.99880890e+02, 9.99880890e+02,
       9.99591810e+02, 9.99591810e+02, 9.99591810e+02, 9.99591810e+02,
       9.98728953e+02, 9.98728953e+02, 9.98728953e+02, 9.98728953e+02,
       9.96423469e+02, 9.96423469e+02, 9.96423469e+02, 9.96423469e+02,
       9.90956621e+02, 9.90956621e+02, 9.90956621e+02, 9.90956621e+02,
       9.79547910e+02, 9.79547910e+02, 9.79547910e+02, 9.79547910e+02,
       9.58721154e+02, 9.58721154e+02, 9.58721154e+02, 9.58721154e+02,
       9.25505523e+02, 9.25505523e+02, 9.25505523e+02, 9.25505523e+02,
       8.78949351e+02, 8.78949351e+02, 8.78949351e+02, 8.78949351e+02,
       8.20748601e+02, 8.20748601e+02, 8.20748601e+02, 8.20748601e+02,
       7.54214683e+02, 7.54214683e+02, 7.54214683e+02, 7.54214683e+02,
       6.84375067e+02, 6.84375067e+02, 6.84375067e+02, 6.84375067e+02,
       6.20368568e+02, 6.20368568e+02, 6.20368568e+02, 6.20368568e+02,
       5.64370431e+02, 5.64370431e+02, 5.64370431e+02, 5.64370431e+02,
       5.17160227e+02, 5.17160227e+02, 5.17160227e+02, 5.17160227e+02,
       4.80250812e+02, 4.80250812e+02, 4.80250812e+02, 4.80250812e+02,
       4.56943598e+02, 4.56943598e+02, 4.56943598e+02, 4.56943598e+02,
       4.47678145e+02, 4.47678145e+02, 4.47678145e+02, 4.47678145e+02,
       4.46796826e+02, 4.46796826e+02, 4.46796826e+02, 4.46796826e+02,
       4.50880096e+02, 4.50880096e+02, 4.50880096e+02, 4.50880096e+02,
       4.52357569e+02, 4.52357569e+02, 4.52357569e+02, 4.52357569e+02,
       4.52616932e+02, 4.52616932e+02, 4.52616932e+02, 4.52616932e+02,
       4.52970783e+02, 4.52970783e+02, 4.52970783e+02, 4.52970783e+02,
       4.53046444e+02, 4.53046444e+02, 4.53046444e+02, 4.53046444e+02,
       4.49923083e+02, 4.49923083e+02, 4.49923083e+02, 4.49923083e+02,
       4.15828843e+02, 4.15828843e+02, 4.15828843e+02, 4.15828843e+02,
       2.62221323e+02, 2.62221323e+02, 2.62221323e+02, 2.62221323e+02,
       4.12019102e+01, 4.12019102e+01, 4.12019102e+01, 4.12019102e+01,
       4.94445574e-01, 4.94445574e-01, 4.94445574e-01, 4.94445574e-01,
       1.01642073e-02, 1.01642073e-02, 1.01642073e-02, 1.01642073e-02,
       1.00000174e-02, 1.00000174e-02, 1.00000174e-02, 1.00000174e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.99999976, 0.99999976, 0.99999976,
       0.99999976, 0.99999889, 0.99999889, 0.99999889, 0.99999889,
       0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99998075,
       0.99998075, 0.99998075, 0.99998075, 0.9999291 , 0.9999291 ,
       0.9999291 , 0.9999291 , 0.99976052, 0.99976052, 0.99976052,
       0.99976052, 0.99926135, 0.99926135, 0.99926135, 0.99926135,
       0.99793005, 0.99793005, 0.99793005, 0.99793005, 0.99475663,
       0.99475663, 0.99475663, 0.99475663, 0.98804657, 0.98804657,
       0.98804657, 0.98804657, 0.97553184, 0.97553184, 0.97553184,
       0.97553184, 0.95497685, 0.95497685, 0.95497685, 0.95497685,
       0.92511099, 0.92511099, 0.92511099, 0.92511099, 0.88625836,
       0.88625836, 0.88625836, 0.88625836, 0.84008392, 0.84008392,
       0.84008392, 0.84008392, 0.78876117, 0.78876117, 0.78876117,
       0.78876117, 0.73758834, 0.73758834, 0.73758834, 0.73758834,
       0.69072274, 0.69072274, 0.69072274, 0.69072274, 0.64901095,
       0.64901095, 0.64901095, 0.64901095, 0.61063333, 0.61063333,
       0.61063333, 0.61063333, 0.58838435, 0.58838435, 0.58838435,
       0.58838435, 0.56482776, 0.56482776, 0.56482776, 0.56482776,
       0.56211874, 0.56211874, 0.56211874, 0.56211874, 0.56323644,
       0.56323644, 0.56323644, 0.56323644, 0.56573502, 0.56573502,
       0.56573502, 0.56573502, 0.56392989, 0.56392989, 0.56392989,
       0.56392989, 0.56998742, 0.56998742, 0.56998742, 0.56998742,
       0.62261429, 0.62261429, 0.62261429, 0.62261429, 0.83494329,
       0.83494329, 0.83494329, 0.83494329, 1.42257004, 1.42257004,
       1.42257004, 1.42257004, 2.51165741, 2.51165741, 2.51165741,
       2.51165741, 3.03556687, 3.03556687, 3.03556687, 3.03556687,
       2.3649753 , 2.3649753 , 2.3649753 , 2.3649753 , 1.18082651,
       1.18082651, 1.18082651, 1.18082651, 1.01021472, 1.01021472,
       1.01021472, 1.01021472, 1.0000747 , 1.0000747 , 1.0000747 ,
       1.0000747 , 1.00000001, 1.00000001, 1.00000001, 1.00000001,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.83938532e-12, 2.83938532e-12, 2.83938532e-12, 2.83938532e-12,
       2.48780551e-11, 2.48780551e-11, 2.48780551e-11, 2.48780551e-11,
       1.89659153e-10, 1.89659153e-10, 1.89659153e-10, 1.89659153e-10,
       1.35318050e-09, 1.35318050e-09, 1.35318050e-09, 1.35318050e-09,
       9.02461193e-09, 9.02461193e-09, 9.02461193e-09, 9.02461193e-09,
       5.62089401e-08, 5.62089401e-08, 5.62089401e-08, 5.62089401e-08,
       3.26589983e-07, 3.26589983e-07, 3.26589983e-07, 3.26589983e-07,
       1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
       8.90072519e-06, 8.90072519e-06, 8.90072519e-06, 8.90072519e-06,
       4.16033994e-05, 4.16033994e-05, 4.16033994e-05, 4.16033994e-05,
       1.80121521e-04, 1.80121521e-04, 1.80121521e-04, 1.80121521e-04,
       7.20378916e-04, 7.20378916e-04, 7.20378916e-04, 7.20378916e-04,
       2.65286556e-03, 2.65286556e-03, 2.65286556e-03, 2.65286556e-03,
       8.96132297e-03, 8.96132297e-03, 8.96132297e-03, 8.96132297e-03,
       2.76450137e-02, 2.76450137e-02, 2.76450137e-02, 2.76450137e-02,
       7.75091590e-02, 7.75091590e-02, 7.75091590e-02, 7.75091590e-02,
       1.96575287e-01, 1.96575287e-01, 1.96575287e-01, 1.96575287e-01,
       4.49321350e-01, 4.49321350e-01, 4.49321350e-01, 4.49321350e-01,
       9.24431499e-01, 9.24431499e-01, 9.24431499e-01, 9.24431499e-01,
       1.71576116e+00, 1.71576116e+00, 1.71576116e+00, 1.71576116e+00,
       2.89106042e+00, 2.89106042e+00, 2.89106042e+00, 2.89106042e+00,
       4.46780650e+00, 4.46780650e+00, 4.46780650e+00, 4.46780650e+00,
       6.41677343e+00, 6.41677343e+00, 6.41677343e+00, 6.41677343e+00,
       8.68601329e+00, 8.68601329e+00, 8.68601329e+00, 8.68601329e+00,
       1.10249054e+01, 1.10249054e+01, 1.10249054e+01, 1.10249054e+01,
       1.33220447e+01, 1.33220447e+01, 1.33220447e+01, 1.33220447e+01,
       1.54925996e+01, 1.54925996e+01, 1.54925996e+01, 1.54925996e+01,
       1.74546801e+01, 1.74546801e+01, 1.74546801e+01, 1.74546801e+01,
       1.89986134e+01, 1.89986134e+01, 1.89986134e+01, 1.89986134e+01,
       1.99480450e+01, 1.99480450e+01, 1.99480450e+01, 1.99480450e+01,
       2.03051988e+01, 2.03051988e+01, 2.03051988e+01, 2.03051988e+01,
       2.03097963e+01, 2.03097963e+01, 2.03097963e+01, 2.03097963e+01,
       2.01135364e+01, 2.01135364e+01, 2.01135364e+01, 2.01135364e+01,
       2.00395134e+01, 2.00395134e+01, 2.00395134e+01, 2.00395134e+01,
       2.00112282e+01, 2.00112282e+01, 2.00112282e+01, 2.00112282e+01,
       2.00045207e+01, 2.00045207e+01, 2.00045207e+01, 2.00045207e+01,
       2.00069683e+01, 2.00069683e+01, 2.00069683e+01, 2.00069683e+01,
       1.99578722e+01, 1.99578722e+01, 1.99578722e+01, 1.99578722e+01,
       1.95688870e+01, 1.95688870e+01, 1.95688870e+01, 1.95688870e+01,
       1.75969855e+01, 1.75969855e+01, 1.75969855e+01, 1.75969855e+01,
       1.06108424e+01, 1.06108424e+01, 1.06108424e+01, 1.06108424e+01,
       1.32398591e+00, 1.32398591e+00, 1.32398591e+00, 1.32398591e+00,
       1.52470806e-02, 1.52470806e-02, 1.52470806e-02, 1.52470806e-02,
       1.02514744e-05, 1.02514744e-05, 1.02514744e-05, 1.02514744e-05,
       1.51595044e-09, 1.51595044e-09, 1.51595044e-09, 1.51595044e-09,
       2.21449669e-13, 2.21449669e-13, 2.21449669e-13, 2.21449669e-13,
       3.21821680e-17, 3.21821680e-17, 3.21821680e-17, 3.21821680e-17,
       4.22583135e-21, 4.22583135e-21, 4.22583135e-21, 4.22583135e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
       9.99999667e+02, 9.99999667e+02, 9.99999667e+02, 9.99999667e+02,
       9.99998443e+02, 9.99998443e+02, 9.99998443e+02, 9.99998443e+02,
       9.99993260e+02, 9.99993260e+02, 9.99993260e+02, 9.99993260e+02,
       9.99973046e+02, 9.99973046e+02, 9.99973046e+02, 9.99973046e+02,
       9.99900744e+02, 9.99900744e+02, 9.99900744e+02, 9.99900744e+02,
       9.99664753e+02, 9.99664753e+02, 9.99664753e+02, 9.99664753e+02,
       9.98966129e+02, 9.98966129e+02, 9.98966129e+02, 9.98966129e+02,
       9.97103821e+02, 9.97103821e+02, 9.97103821e+02, 9.97103821e+02,
       9.92669836e+02, 9.92669836e+02, 9.92669836e+02, 9.92669836e+02,
       9.83316822e+02, 9.83316822e+02, 9.83316822e+02, 9.83316822e+02,
       9.65949266e+02, 9.65949266e+02, 9.65949266e+02, 9.65949266e+02,
       9.37629572e+02, 9.37629572e+02, 9.37629572e+02, 9.37629572e+02,
       8.96925524e+02, 8.96925524e+02, 8.96925524e+02, 8.96925524e+02,
       8.44757270e+02, 8.44757270e+02, 8.44757270e+02, 8.44757270e+02,
       7.83932229e+02, 7.83932229e+02, 7.83932229e+02, 7.83932229e+02,
       7.17860197e+02, 7.17860197e+02, 7.17860197e+02, 7.17860197e+02,
       6.53411534e+02, 6.53411534e+02, 6.53411534e+02, 6.53411534e+02,
       5.96226302e+02, 5.96226302e+02, 5.96226302e+02, 5.96226302e+02,
       5.45775399e+02, 5.45775399e+02, 5.45775399e+02, 5.45775399e+02,
       5.04059456e+02, 5.04059456e+02, 5.04059456e+02, 5.04059456e+02,
       4.72707776e+02, 4.72707776e+02, 4.72707776e+02, 4.72707776e+02,
       4.53820542e+02, 4.53820542e+02, 4.53820542e+02, 4.53820542e+02,
       4.47282842e+02, 4.47282842e+02, 4.47282842e+02, 4.47282842e+02,
       4.47539085e+02, 4.47539085e+02, 4.47539085e+02, 4.47539085e+02,
       4.51468618e+02, 4.51468618e+02, 4.51468618e+02, 4.51468618e+02,
       4.52679279e+02, 4.52679279e+02, 4.52679279e+02, 4.52679279e+02,
       4.52744959e+02, 4.52744959e+02, 4.52744959e+02, 4.52744959e+02,
       4.52862141e+02, 4.52862141e+02, 4.52862141e+02, 4.52862141e+02,
       4.53025731e+02, 4.53025731e+02, 4.53025731e+02, 4.53025731e+02,
       4.52509333e+02, 4.52509333e+02, 4.52509333e+02, 4.52509333e+02,
       4.39197326e+02, 4.39197326e+02, 4.39197326e+02, 4.39197326e+02,
       3.55061144e+02, 3.55061144e+02, 3.55061144e+02, 3.55061144e+02,
       1.28955744e+02, 1.28955744e+02, 1.28955744e+02, 1.28955744e+02,
       5.63751354e+00, 5.63751354e+00, 5.63751354e+00, 5.63751354e+00,
       2.16308297e-02, 2.16308297e-02, 2.16308297e-02, 2.16308297e-02,
       1.00012116e-02, 1.00012116e-02, 1.00012116e-02, 1.00012116e-02,
       1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
       0.99999996, 0.99999996, 0.99999996, 0.99999978, 0.99999978,
       0.99999978, 0.99999978, 0.99999901, 0.99999901, 0.99999901,
       0.99999901, 0.99999584, 0.99999584, 0.99999584, 0.99999584,
       0.9999837 , 0.9999837 , 0.9999837 , 0.9999837 , 0.99994098,
       0.99994098, 0.99994098, 0.99994098, 0.99980323, 0.99980323,
       0.99980323, 0.99980323, 0.99939833, 0.99939833, 0.99939833,
       0.99939833, 0.99832066, 0.99832066, 0.99832066, 0.99832066,
       0.99574245, 0.99574245, 0.99574245, 0.99574245, 0.99023874,
       0.99023874, 0.99023874, 0.99023874, 0.97981742, 0.97981742,
       0.97981742, 0.97981742, 0.96235966, 0.96235966, 0.96235966,
       0.96235966, 0.93641648, 0.93641648, 0.93641648, 0.93641648,
       0.90189237, 0.90189237, 0.90189237, 0.90189237, 0.86005507,
       0.86005507, 0.86005507, 0.86005507, 0.81274868, 0.81274868,
       0.81274868, 0.81274868, 0.76311269, 0.76311269, 0.76311269,
       0.76311269, 0.71642   , 0.71642   , 0.71642   , 0.71642   ,
       0.67333822, 0.67333822, 0.67333822, 0.67333822, 0.63583393,
       0.63583393, 0.63583393, 0.63583393, 0.6007504 , 0.6007504 ,
       0.6007504 , 0.6007504 , 0.58279291, 0.58279291, 0.58279291,
       0.58279291, 0.56410322, 0.56410322, 0.56410322, 0.56410322,
       0.56160416, 0.56160416, 0.56160416, 0.56160416, 0.56332121,
       0.56332121, 0.56332121, 0.56332121, 0.56656977, 0.56656977,
       0.56656977, 0.56656977, 0.56500324, 0.56500324, 0.56500324,
       0.56500324, 0.56762   , 0.56762   , 0.56762   , 0.56762   ,
       0.59894803, 0.59894803, 0.59894803, 0.59894803, 0.74001262,
       0.74001262, 0.74001262, 0.74001262, 1.16399112, 1.16399112,
       1.16399112, 1.16399112, 2.10522387, 2.10522387, 2.10522387,
       2.10522387, 3.01416422, 3.01416422, 3.01416422, 3.01416422,
       2.93378532, 2.93378532, 2.93378532, 2.93378532, 1.60066424,
       1.60066424, 1.60066424, 1.60066424, 1.0447292 , 1.0447292 ,
       1.0447292 , 1.0447292 , 1.00129844, 1.00129844, 1.00129844,
       1.00129844, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.79929625e-11, 2.79929625e-11, 2.79929625e-11, 2.79929625e-11,
       2.19420258e-10, 2.19420258e-10, 2.19420258e-10, 2.19420258e-10,
       1.49116083e-09, 1.49116083e-09, 1.49116083e-09, 1.49116083e-09,
       9.51188129e-09, 9.51188129e-09, 9.51188129e-09, 9.51188129e-09,
       5.68485475e-08, 5.68485475e-08, 5.68485475e-08, 5.68485475e-08,
       3.17985043e-07, 3.17985043e-07, 3.17985043e-07, 3.17985043e-07,
       1.66248056e-06, 1.66248056e-06, 1.66248056e-06, 1.66248056e-06,
       8.11135729e-06, 8.11135729e-06, 8.11135729e-06, 8.11135729e-06,
       3.68655451e-05, 3.68655451e-05, 3.68655451e-05, 3.68655451e-05,
       1.55738945e-04, 1.55738945e-04, 1.55738945e-04, 1.55738945e-04,
       6.09972860e-04, 6.09972860e-04, 6.09972860e-04, 6.09972860e-04,
       2.20822367e-03, 2.20822367e-03, 2.20822367e-03, 2.20822367e-03,
       7.36278800e-03, 7.36278800e-03, 7.36278800e-03, 7.36278800e-03,
       2.25170918e-02, 2.25170918e-02, 2.25170918e-02, 2.25170918e-02,
       6.28736376e-02, 6.28736376e-02, 6.28736376e-02, 6.28736376e-02,
       1.59557051e-01, 1.59557051e-01, 1.59557051e-01, 1.59557051e-01,
       3.66605239e-01, 3.66605239e-01, 3.66605239e-01, 3.66605239e-01,
       7.61197294e-01, 7.61197294e-01, 7.61197294e-01, 7.61197294e-01,
       1.42997959e+00, 1.42997959e+00, 1.42997959e+00, 1.42997959e+00,
       2.44258800e+00, 2.44258800e+00, 2.44258800e+00, 2.44258800e+00,
       3.82666940e+00, 3.82666940e+00, 3.82666940e+00, 3.82666940e+00,
       5.56323490e+00, 5.56323490e+00, 5.56323490e+00, 5.56323490e+00,
       7.61102512e+00, 7.61102512e+00, 7.61102512e+00, 7.61102512e+00,
       9.84104209e+00, 9.84104209e+00, 9.84104209e+00, 9.84104209e+00,
       1.20553642e+01, 1.20553642e+01, 1.20553642e+01, 1.20553642e+01,
       1.42019457e+01, 1.42019457e+01, 1.42019457e+01, 1.42019457e+01,
       1.62097468e+01, 1.62097468e+01, 1.62097468e+01, 1.62097468e+01,
       1.79765031e+01, 1.79765031e+01, 1.79765031e+01, 1.79765031e+01,
       1.93158941e+01, 1.93158941e+01, 1.93158941e+01, 1.93158941e+01,
       2.00703083e+01, 2.00703083e+01, 2.00703083e+01, 2.00703083e+01,
       2.03013658e+01, 2.03013658e+01, 2.03013658e+01, 2.03013658e+01,
       2.02568791e+01, 2.02568791e+01, 2.02568791e+01, 2.02568791e+01,
       2.00856952e+01, 2.00856952e+01, 2.00856952e+01, 2.00856952e+01,
       2.00397257e+01, 2.00397257e+01, 2.00397257e+01, 2.00397257e+01,
       2.00181798e+01, 2.00181798e+01, 2.00181798e+01, 2.00181798e+01,
       2.00054208e+01, 2.00054208e+01, 2.00054208e+01, 2.00054208e+01,
       2.00025663e+01, 2.00025663e+01, 2.00025663e+01, 2.00025663e+01,
       1.99793630e+01, 1.99793630e+01, 1.99793630e+01, 1.99793630e+01,
       1.98071108e+01, 1.98071108e+01, 1.98071108e+01, 1.98071108e+01,
       1.88547396e+01, 1.88547396e+01, 1.88547396e+01, 1.88547396e+01,
       1.47204337e+01, 1.47204337e+01, 1.47204337e+01, 1.47204337e+01,
       4.95781616e+00, 4.95781616e+00, 4.95781616e+00, 4.95781616e+00,
       1.75493310e-01, 1.75493310e-01, 1.75493310e-01, 1.75493310e-01,
       4.85757486e-04, 4.85757486e-04, 4.85757486e-04, 4.85757486e-04,
       9.51110561e-08, 9.51110561e-08, 9.51110561e-08, 9.51110561e-08,
       1.44293431e-11, 1.44293431e-11, 1.44293431e-11, 1.44293431e-11,
       2.19762024e-15, 2.19762024e-15, 2.19762024e-15, 2.19762024e-15,
       3.19887277e-19, 3.19887277e-19, 3.19887277e-19, 3.19887277e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999938e+02, 9.99999938e+02, 9.99999938e+02, 9.99999938e+02,
       9.99999697e+02, 9.99999697e+02, 9.99999697e+02, 9.99999697e+02,
       9.99998621e+02, 9.99998621e+02, 9.99998621e+02, 9.99998621e+02,
       9.99994173e+02, 9.99994173e+02, 9.99994173e+02, 9.99994173e+02,
       9.99977177e+02, 9.99977177e+02, 9.99977177e+02, 9.99977177e+02,
       9.99917379e+02, 9.99917379e+02, 9.99917379e+02, 9.99917379e+02,
       9.99724547e+02, 9.99724547e+02, 9.99724547e+02, 9.99724547e+02,
       9.99157826e+02, 9.99157826e+02, 9.99157826e+02, 9.99157826e+02,
       9.97650081e+02, 9.97650081e+02, 9.97650081e+02, 9.97650081e+02,
       9.94046407e+02, 9.94046407e+02, 9.94046407e+02, 9.94046407e+02,
       9.86368788e+02, 9.86368788e+02, 9.86368788e+02, 9.86368788e+02,
       9.71884304e+02, 9.71884304e+02, 9.71884304e+02, 9.71884304e+02,
       9.47768311e+02, 9.47768311e+02, 9.47768311e+02, 9.47768311e+02,
       9.12263212e+02, 9.12263212e+02, 9.12263212e+02, 9.12263212e+02,
       8.65625167e+02, 8.65625167e+02, 8.65625167e+02, 8.65625167e+02,
       8.10053427e+02, 8.10053427e+02, 8.10053427e+02, 8.10053427e+02,
       7.48503051e+02, 7.48503051e+02, 7.48503051e+02, 7.48503051e+02,
       6.85291622e+02, 6.85291622e+02, 6.85291622e+02, 6.85291622e+02,
       6.27294016e+02, 6.27294016e+02, 6.27294016e+02, 6.27294016e+02,
       5.75413147e+02, 5.75413147e+02, 5.75413147e+02, 5.75413147e+02,
       5.30001905e+02, 5.30001905e+02, 5.30001905e+02, 5.30001905e+02,
       4.93087463e+02, 4.93087463e+02, 4.93087463e+02, 4.93087463e+02,
       4.66655572e+02, 4.66655572e+02, 4.66655572e+02, 4.66655572e+02,
       4.51807159e+02, 4.51807159e+02, 4.51807159e+02, 4.51807159e+02,
       4.47311434e+02, 4.47311434e+02, 4.47311434e+02, 4.47311434e+02,
       4.48215613e+02, 4.48215613e+02, 4.48215613e+02, 4.48215613e+02,
       4.51762807e+02, 4.51762807e+02, 4.51762807e+02, 4.51762807e+02,
       4.52868403e+02, 4.52868403e+02, 4.52868403e+02, 4.52868403e+02,
       4.52955491e+02, 4.52955491e+02, 4.52955491e+02, 4.52955491e+02,
       4.52909327e+02, 4.52909327e+02, 4.52909327e+02, 4.52909327e+02,
       4.52981643e+02, 4.52981643e+02, 4.52981643e+02, 4.52981643e+02,
       4.53214804e+02, 4.53214804e+02, 4.53214804e+02, 4.53214804e+02,
       4.48990326e+02, 4.48990326e+02, 4.48990326e+02, 4.48990326e+02,
       4.09131640e+02, 4.09131640e+02, 4.09131640e+02, 4.09131640e+02,
       2.45517697e+02, 2.45517697e+02, 2.45517697e+02, 2.45517697e+02,
       3.47160317e+01, 3.47160317e+01, 3.47160317e+01, 3.47160317e+01,
       3.62894316e-01, 3.62894316e-01, 3.62894316e-01, 3.62894316e-01,
       1.00998011e-02, 1.00998011e-02, 1.00998011e-02, 1.00998011e-02,
       1.00000113e-02, 1.00000113e-02, 1.00000113e-02, 1.00000113e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
       0.9999998 , 0.9999998 , 0.9999998 , 0.99999913, 0.99999913,
       0.99999913, 0.99999913, 0.99999642, 0.99999642, 0.99999642,
       0.99999642, 0.99998623, 0.99998623, 0.99998623, 0.99998623,
       0.99995092, 0.99995092, 0.99995092, 0.99995092, 0.99983826,
       0.99983826, 0.99983826, 0.99983826, 0.99950927, 0.99950927,
       0.99950927, 0.99950927, 0.99863513, 0.99863513, 0.99863513,
       0.99863513, 0.9965366 , 0.9965366 , 0.9965366 , 0.9965366 ,
       0.99201676, 0.99201676, 0.99201676, 0.99201676, 0.9833362 ,
       0.9833362 , 0.9833362 , 0.9833362 , 0.9685206 , 0.9685206 ,
       0.9685206 , 0.9685206 , 0.94602219, 0.94602219, 0.94602219,
       0.94602219, 0.91540395, 0.91540395, 0.91540395, 0.91540395,
       0.87753992, 0.87753992, 0.87753992, 0.87753992, 0.83410395,
       0.83410395, 0.83410395, 0.83410395, 0.78704832, 0.78704832,
       0.78704832, 0.78704832, 0.74068485, 0.74068485, 0.74068485,
       0.74068485, 0.69785748, 0.69785748, 0.69785748, 0.69785748,
       0.65816589, 0.65816589, 0.65816589, 0.65816589, 0.62460018,
       0.62460018, 0.62460018, 0.62460018, 0.59255793, 0.59255793,
       0.59255793, 0.59255793, 0.57817326, 0.57817326, 0.57817326,
       0.57817326, 0.56387564, 0.56387564, 0.56387564, 0.56387564,
       0.56157127, 0.56157127, 0.56157127, 0.56157127, 0.56360366,
       0.56360366, 0.56360366, 0.56360366, 0.56687447, 0.56687447,
       0.56687447, 0.56687447, 0.56576392, 0.56576392, 0.56576392,
       0.56576392, 0.56670663, 0.56670663, 0.56670663, 0.56670663,
       0.58490731, 0.58490731, 0.58490731, 0.58490731, 0.67692226,
       0.67692226, 0.67692226, 0.67692226, 0.97656008, 0.97656008,
       0.97656008, 0.97656008, 1.70128216, 1.70128216, 1.70128216,
       1.70128216, 2.81354886, 2.81354886, 2.81354886, 2.81354886,
       3.17648847, 3.17648847, 3.17648847, 3.17648847, 2.32407513,
       2.32407513, 2.32407513, 2.32407513, 1.15871544, 1.15871544,
       1.15871544, 1.15871544, 1.00857175, 1.00857175, 1.00857175,
       1.00857175, 1.0000498 , 1.0000498 , 1.0000498 , 1.0000498 ,
       1.00000001, 1.00000001, 1.00000001, 1.00000001, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.25428777e-10, 2.25428777e-10, 2.25428777e-10, 2.25428777e-10,
       1.59940645e-09, 1.59940645e-09, 1.59940645e-09, 1.59940645e-09,
       9.78961596e-09, 9.78961596e-09, 9.78961596e-09, 9.78961596e-09,
       5.63719016e-08, 5.63719016e-08, 5.63719016e-08, 5.63719016e-08,
       3.04684391e-07, 3.04684391e-07, 3.04684391e-07, 3.04684391e-07,
       1.54374637e-06, 1.54374637e-06, 1.54374637e-06, 1.54374637e-06,
       7.32124407e-06, 7.32124407e-06, 7.32124407e-06, 7.32124407e-06,
       3.24422534e-05, 3.24422534e-05, 3.24422534e-05, 3.24422534e-05,
       1.34046928e-04, 1.34046928e-04, 1.34046928e-04, 1.34046928e-04,
       5.15190666e-04, 5.15190666e-04, 5.15190666e-04, 5.15190666e-04,
       1.83655079e-03, 1.83655079e-03, 1.83655079e-03, 1.83655079e-03,
       6.05207452e-03, 6.05207452e-03, 6.05207452e-03, 6.05207452e-03,
       1.83647896e-02, 1.83647896e-02, 1.83647896e-02, 1.83647896e-02,
       5.10941202e-02, 5.10941202e-02, 5.10941202e-02, 5.10941202e-02,
       1.29756782e-01, 1.29756782e-01, 1.29756782e-01, 1.29756782e-01,
       2.99620921e-01, 2.99620921e-01, 2.99620921e-01, 2.99620921e-01,
       6.27596355e-01, 6.27596355e-01, 6.27596355e-01, 6.27596355e-01,
       1.19286361e+00, 1.19286361e+00, 1.19286361e+00, 1.19286361e+00,
       2.06504248e+00, 2.06504248e+00, 2.06504248e+00, 2.06504248e+00,
       3.27992371e+00, 3.27992371e+00, 3.27992371e+00, 3.27992371e+00,
       4.82922171e+00, 4.82922171e+00, 4.82922171e+00, 4.82922171e+00,
       6.67464424e+00, 6.67464424e+00, 6.67464424e+00, 6.67464424e+00,
       8.75964265e+00, 8.75964265e+00, 8.75964265e+00, 8.75964265e+00,
       1.08803472e+01, 1.08803472e+01, 1.08803472e+01, 1.08803472e+01,
       1.29739884e+01, 1.29739884e+01, 1.29739884e+01, 1.29739884e+01,
       1.49859636e+01, 1.49859636e+01, 1.49859636e+01, 1.49859636e+01,
       1.68387724e+01, 1.68387724e+01, 1.68387724e+01, 1.68387724e+01,
       1.84176517e+01, 1.84176517e+01, 1.84176517e+01, 1.84176517e+01,
       1.95597613e+01, 1.95597613e+01, 1.95597613e+01, 1.95597613e+01,
       2.01515305e+01, 2.01515305e+01, 2.01515305e+01, 2.01515305e+01,
       2.02967332e+01, 2.02967332e+01, 2.02967332e+01, 2.02967332e+01,
       2.02120023e+01, 2.02120023e+01, 2.02120023e+01, 2.02120023e+01,
       2.00605248e+01, 2.00605248e+01, 2.00605248e+01, 2.00605248e+01,
       2.00318688e+01, 2.00318688e+01, 2.00318688e+01, 2.00318688e+01,
       2.00221885e+01, 2.00221885e+01, 2.00221885e+01, 2.00221885e+01,
       2.00111763e+01, 2.00111763e+01, 2.00111763e+01, 2.00111763e+01,
       2.00014053e+01, 2.00014053e+01, 2.00014053e+01, 2.00014053e+01,
       1.99837206e+01, 1.99837206e+01, 1.99837206e+01, 1.99837206e+01,
       1.99044089e+01, 1.99044089e+01, 1.99044089e+01, 1.99044089e+01,
       1.94532334e+01, 1.94532334e+01, 1.94532334e+01, 1.94532334e+01,
       1.72959877e+01, 1.72959877e+01, 1.72959877e+01, 1.72959877e+01,
       1.00492404e+01, 1.00492404e+01, 1.00492404e+01, 1.00492404e+01,
       1.10583216e+00, 1.10583216e+00, 1.10583216e+00, 1.10583216e+00,
       1.12632792e-02, 1.12632792e-02, 1.12632792e-02, 1.12632792e-02,
       6.51995106e-06, 6.51995106e-06, 6.51995106e-06, 6.51995106e-06,
       9.65569412e-10, 9.65569412e-10, 9.65569412e-10, 9.65569412e-10,
       1.42316510e-13, 1.42316510e-13, 1.42316510e-13, 1.42316510e-13,
       2.10270857e-17, 2.10270857e-17, 2.10270857e-17, 2.10270857e-17,
       4.23110662e-21, 4.23110662e-21, 4.23110662e-21, 4.23110662e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999942e+02, 9.99999942e+02, 9.99999942e+02, 9.99999942e+02,
       9.99999726e+02, 9.99999726e+02, 9.99999726e+02, 9.99999726e+02,
       9.99998786e+02, 9.99998786e+02, 9.99998786e+02, 9.99998786e+02,
       9.99994984e+02, 9.99994984e+02, 9.99994984e+02, 9.99994984e+02,
       9.99980724e+02, 9.99980724e+02, 9.99980724e+02, 9.99980724e+02,
       9.99931285e+02, 9.99931285e+02, 9.99931285e+02, 9.99931285e+02,
       9.99773577e+02, 9.99773577e+02, 9.99773577e+02, 9.99773577e+02,
       9.99313077e+02, 9.99313077e+02, 9.99313077e+02, 9.99313077e+02,
       9.98089948e+02, 9.98089948e+02, 9.98089948e+02, 9.98089948e+02,
       9.95155853e+02, 9.95155853e+02, 9.95155853e+02, 9.95155853e+02,
       9.88846648e+02, 9.88846648e+02, 9.88846648e+02, 9.88846648e+02,
       9.76766510e+02, 9.76766510e+02, 9.76766510e+02, 9.76766510e+02,
       9.56255473e+02, 9.56255473e+02, 9.56255473e+02, 9.56255473e+02,
       9.25357054e+02, 9.25357054e+02, 9.25357054e+02, 9.25357054e+02,
       8.83782170e+02, 8.83782170e+02, 8.83782170e+02, 8.83782170e+02,
       8.33130130e+02, 8.33130130e+02, 8.33130130e+02, 8.33130130e+02,
       7.76085650e+02, 7.76085650e+02, 7.76085650e+02, 7.76085650e+02,
       7.15578042e+02, 7.15578042e+02, 7.15578042e+02, 7.15578042e+02,
       6.57188937e+02, 6.57188937e+02, 6.57188937e+02, 6.57188937e+02,
       6.04619926e+02, 6.04619926e+02, 6.04619926e+02, 6.04619926e+02,
       5.57478206e+02, 5.57478206e+02, 5.57478206e+02, 5.57478206e+02,
       5.16581813e+02, 5.16581813e+02, 5.16581813e+02, 5.16581813e+02,
       4.83986410e+02, 4.83986410e+02, 4.83986410e+02, 4.83986410e+02,
       4.61832276e+02, 4.61832276e+02, 4.61832276e+02, 4.61832276e+02,
       4.50505747e+02, 4.50505747e+02, 4.50505747e+02, 4.50505747e+02,
       4.47530062e+02, 4.47530062e+02, 4.47530062e+02, 4.47530062e+02,
       4.49051988e+02, 4.49051988e+02, 4.49051988e+02, 4.49051988e+02,
       4.51904449e+02, 4.51904449e+02, 4.51904449e+02, 4.51904449e+02,
       4.52866779e+02, 4.52866779e+02, 4.52866779e+02, 4.52866779e+02,
       4.53094164e+02, 4.53094164e+02, 4.53094164e+02, 4.53094164e+02,
       4.53054312e+02, 4.53054312e+02, 4.53054312e+02, 4.53054312e+02,
       4.53063775e+02, 4.53063775e+02, 4.53063775e+02, 4.53063775e+02,
       4.53395324e+02, 4.53395324e+02, 4.53395324e+02, 4.53395324e+02,
       4.52569474e+02, 4.52569474e+02, 4.52569474e+02, 4.52569474e+02,
       4.35977197e+02, 4.35977197e+02, 4.35977197e+02, 4.35977197e+02,
       3.42570389e+02, 3.42570389e+02, 3.42570389e+02, 3.42570389e+02,
       1.14587893e+02, 1.14587893e+02, 1.14587893e+02, 1.14587893e+02,
       4.38695457e+00, 4.38695457e+00, 4.38695457e+00, 4.38695457e+00,
       1.75831808e-02, 1.75831808e-02, 1.75831808e-02, 1.75831808e-02,
       1.00007686e-02, 1.00007686e-02, 1.00007686e-02, 1.00007686e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999924,
       0.99999924, 0.99999924, 0.99999924, 0.99999693, 0.99999693,
       0.99999693, 0.99999693, 0.99998839, 0.99998839, 0.99998839,
       0.99998839, 0.99995921, 0.99995921, 0.99995921, 0.99995921,
       0.99986699, 0.99986699, 0.99986699, 0.99986699, 0.99959927,
       0.99959927, 0.99959927, 0.99959927, 0.99888896, 0.99888896,
       0.99888896, 0.99888896, 0.99717807, 0.99717807, 0.99717807,
       0.99717807, 0.99346233, 0.99346233, 0.99346233, 0.99346233,
       0.98623061, 0.98623061, 0.98623061, 0.98623061, 0.97366804,
       0.97366804, 0.97366804, 0.97366804, 0.954191  , 0.954191  ,
       0.954191  , 0.954191  , 0.92709612, 0.92709612, 0.92709612,
       0.92709612, 0.89288639, 0.89288639, 0.89288639, 0.89288639,
       0.85299165, 0.85299165, 0.85299165, 0.85299165, 0.80903108,
       0.80903108, 0.80903108, 0.80903108, 0.7637975 , 0.7637975 ,
       0.7637975 , 0.7637975 , 0.72115406, 0.72115406, 0.72115406,
       0.72115406, 0.68149355, 0.68149355, 0.68149355, 0.68149355,
       0.64480222, 0.64480222, 0.64480222, 0.64480222, 0.61500168,
       0.61500168, 0.61500168, 0.61500168, 0.58590592, 0.58590592,
       0.58590592, 0.58590592, 0.57439796, 0.57439796, 0.57439796,
       0.57439796, 0.56387515, 0.56387515, 0.56387515, 0.56387515,
       0.56183788, 0.56183788, 0.56183788, 0.56183788, 0.56406492,
       0.56406492, 0.56406492, 0.56406492, 0.56696563, 0.56696563,
       0.56696563, 0.56696563, 0.5662629 , 0.5662629 , 0.5662629 ,
       0.5662629 , 0.56641131, 0.56641131, 0.56641131, 0.56641131,
       0.576761  , 0.576761  , 0.576761  , 0.576761  , 0.63578575,
       0.63578575, 0.63578575, 0.63578575, 0.84379069, 0.84379069,
       0.84379069, 0.84379069, 1.38572903, 1.38572903, 1.38572903,
       1.38572903, 2.44002612, 2.44002612, 2.44002612, 2.44002612,
       3.20653483, 3.20653483, 3.20653483, 3.20653483, 2.97456245,
       2.97456245, 2.97456245, 2.97456245, 1.53663558, 1.53663558,
       1.53663558, 1.53663558, 1.0381715 , 1.0381715 , 1.0381715 ,
       1.0381715 , 1.00099782, 1.00099782, 1.00099782, 1.00099782,
       1.0000005 , 1.0000005 , 1.0000005 , 1.0000005 , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.52640217e-09, 1.52640217e-09, 1.52640217e-09, 1.52640217e-09,
       9.88802864e-09, 9.88802864e-09, 9.88802864e-09, 9.88802864e-09,
       5.49631705e-08, 5.49631705e-08, 5.49631705e-08, 5.49631705e-08,
       2.87970269e-07, 2.87970269e-07, 2.87970269e-07, 2.87970269e-07,
       1.41808509e-06, 1.41808509e-06, 1.41808509e-06, 1.41808509e-06,
       6.55412036e-06, 6.55412036e-06, 6.55412036e-06, 6.55412036e-06,
       2.83823463e-05, 2.83823463e-05, 2.83823463e-05, 2.83823463e-05,
       1.14933820e-04, 1.14933820e-04, 1.14933820e-04, 1.14933820e-04,
       4.34223292e-04, 4.34223292e-04, 4.34223292e-04, 4.34223292e-04,
       1.52641599e-03, 1.52641599e-03, 1.52641599e-03, 1.52641599e-03,
       4.97687894e-03, 4.97687894e-03, 4.97687894e-03, 4.97687894e-03,
       1.49961991e-02, 1.49961991e-02, 1.49961991e-02, 1.49961991e-02,
       4.15882459e-02, 4.15882459e-02, 4.15882459e-02, 4.15882459e-02,
       1.05698320e-01, 1.05698320e-01, 1.05698320e-01, 1.05698320e-01,
       2.45229407e-01, 2.45229407e-01, 2.45229407e-01, 2.45229407e-01,
       5.17987106e-01, 5.17987106e-01, 5.17987106e-01, 5.17987106e-01,
       9.95694132e-01, 9.95694132e-01, 9.95694132e-01, 9.95694132e-01,
       1.74644988e+00, 1.74644988e+00, 1.74644988e+00, 1.74644988e+00,
       2.81214874e+00, 2.81214874e+00, 2.81214874e+00, 2.81214874e+00,
       4.19480869e+00, 4.19480869e+00, 4.19480869e+00, 4.19480869e+00,
       5.86264757e+00, 5.86264757e+00, 5.86264757e+00, 5.86264757e+00,
       7.77472797e+00, 7.77472797e+00, 7.77472797e+00, 7.77472797e+00,
       9.80655654e+00, 9.80655654e+00, 9.80655654e+00, 9.80655654e+00,
       1.18277382e+01, 1.18277382e+01, 1.18277382e+01, 1.18277382e+01,
       1.37971680e+01, 1.37971680e+01, 1.37971680e+01, 1.37971680e+01,
       1.56822647e+01, 1.56822647e+01, 1.56822647e+01, 1.56822647e+01,
       1.73889246e+01, 1.73889246e+01, 1.73889246e+01, 1.73889246e+01,
       1.87901005e+01, 1.87901005e+01, 1.87901005e+01, 1.87901005e+01,
       1.97450558e+01, 1.97450558e+01, 1.97450558e+01, 1.97450558e+01,
       2.01997684e+01, 2.01997684e+01, 2.01997684e+01, 2.01997684e+01,
       2.02877405e+01, 2.02877405e+01, 2.02877405e+01, 2.02877405e+01,
       2.01725864e+01, 2.01725864e+01, 2.01725864e+01, 2.01725864e+01,
       2.00462536e+01, 2.00462536e+01, 2.00462536e+01, 2.00462536e+01,
       2.00208235e+01, 2.00208235e+01, 2.00208235e+01, 2.00208235e+01,
       2.00194733e+01, 2.00194733e+01, 2.00194733e+01, 2.00194733e+01,
       2.00147202e+01, 2.00147202e+01, 2.00147202e+01, 2.00147202e+01,
       2.00035230e+01, 2.00035230e+01, 2.00035230e+01, 2.00035230e+01,
       1.99845714e+01, 1.99845714e+01, 1.99845714e+01, 1.99845714e+01,
       1.99388525e+01, 1.99388525e+01, 1.99388525e+01, 1.99388525e+01,
       1.97268563e+01, 1.97268563e+01, 1.97268563e+01, 1.97268563e+01,
       1.86628873e+01, 1.86628873e+01, 1.86628873e+01, 1.86628873e+01,
       1.42510014e+01, 1.42510014e+01, 1.42510014e+01, 1.42510014e+01,
       4.38724950e+00, 4.38724950e+00, 4.38724950e+00, 4.38724950e+00,
       1.35671717e-01, 1.35671717e-01, 1.35671717e-01, 1.35671717e-01,
       3.19338310e-04, 3.19338310e-04, 3.19338310e-04, 3.19338310e-04,
       5.91067532e-08, 5.91067532e-08, 5.91067532e-08, 5.91067532e-08,
       9.14545156e-12, 9.14545156e-12, 9.14545156e-12, 9.14545156e-12,
       1.40083653e-15, 1.40083653e-15, 1.40083653e-15, 1.40083653e-15,
       2.06948752e-19, 2.06948752e-19, 2.06948752e-19, 2.06948752e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
       9.99999755e+02, 9.99999755e+02, 9.99999755e+02, 9.99999755e+02,
       9.99998938e+02, 9.99998938e+02, 9.99998938e+02, 9.99998938e+02,
       9.99995700e+02, 9.99995700e+02, 9.99995700e+02, 9.99995700e+02,
       9.99983753e+02, 9.99983753e+02, 9.99983753e+02, 9.99983753e+02,
       9.99942888e+02, 9.99942888e+02, 9.99942888e+02, 9.99942888e+02,
       9.99813799e+02, 9.99813799e+02, 9.99813799e+02, 9.99813799e+02,
       9.99439043e+02, 9.99439043e+02, 9.99439043e+02, 9.99439043e+02,
       9.98445046e+02, 9.98445046e+02, 9.98445046e+02, 9.98445046e+02,
       9.96052372e+02, 9.96052372e+02, 9.96052372e+02, 9.96052372e+02,
       9.90862868e+02, 9.90862868e+02, 9.90862868e+02, 9.90862868e+02,
       9.80788585e+02, 9.80788585e+02, 9.80788585e+02, 9.80788585e+02,
       9.63364916e+02, 9.63364916e+02, 9.63364916e+02, 9.63364916e+02,
       9.36537037e+02, 9.36537037e+02, 9.36537037e+02, 9.36537037e+02,
       8.99584844e+02, 8.99584844e+02, 8.99584844e+02, 8.99584844e+02,
       8.53541949e+02, 8.53541949e+02, 8.53541949e+02, 8.53541949e+02,
       8.00725978e+02, 8.00725978e+02, 8.00725978e+02, 8.00725978e+02,
       7.43656312e+02, 7.43656312e+02, 7.43656312e+02, 7.43656312e+02,
       6.86069806e+02, 6.86069806e+02, 6.86069806e+02, 6.86069806e+02,
       6.33063024e+02, 6.33063024e+02, 6.33063024e+02, 6.33063024e+02,
       5.84804742e+02, 5.84804742e+02, 5.84804742e+02, 5.84804742e+02,
       5.41876353e+02, 5.41876353e+02, 5.41876353e+02, 5.41876353e+02,
       5.05141177e+02, 5.05141177e+02, 5.05141177e+02, 5.05141177e+02,
       4.76536346e+02, 4.76536346e+02, 4.76536346e+02, 4.76536346e+02,
       4.58081353e+02, 4.58081353e+02, 4.58081353e+02, 4.58081353e+02,
       4.49630363e+02, 4.49630363e+02, 4.49630363e+02, 4.49630363e+02,
       4.47839670e+02, 4.47839670e+02, 4.47839670e+02, 4.47839670e+02,
       4.49917497e+02, 4.49917497e+02, 4.49917497e+02, 4.49917497e+02,
       4.52105100e+02, 4.52105100e+02, 4.52105100e+02, 4.52105100e+02,
       4.52784421e+02, 4.52784421e+02, 4.52784421e+02, 4.52784421e+02,
       4.53082540e+02, 4.53082540e+02, 4.53082540e+02, 4.53082540e+02,
       4.53173248e+02, 4.53173248e+02, 4.53173248e+02, 4.53173248e+02,
       4.53232634e+02, 4.53232634e+02, 4.53232634e+02, 4.53232634e+02,
       4.53513027e+02, 4.53513027e+02, 4.53513027e+02, 4.53513027e+02,
       4.53743580e+02, 4.53743580e+02, 4.53743580e+02, 4.53743580e+02,
       4.47885607e+02, 4.47885607e+02, 4.47885607e+02, 4.47885607e+02,
       4.01687163e+02, 4.01687163e+02, 4.01687163e+02, 4.01687163e+02,
       2.28101815e+02, 2.28101815e+02, 2.28101815e+02, 2.28101815e+02,
       2.86587243e+01, 2.86587243e+01, 2.86587243e+01, 2.86587243e+01,
       2.56567373e-01, 2.56567373e-01, 2.56567373e-01, 2.56567373e-01,
       1.00575986e-02, 1.00575986e-02, 1.00575986e-02, 1.00575986e-02,
       1.00000070e-02, 1.00000070e-02, 1.00000070e-02, 1.00000070e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
       0.99999934, 0.99999934, 0.99999934, 0.99999934, 0.99999737,
       0.99999737, 0.99999737, 0.99999737, 0.99999024, 0.99999024,
       0.99999024, 0.99999024, 0.99996611, 0.99996611, 0.99996611,
       0.99996611, 0.99989058, 0.99989058, 0.99989058, 0.99989058,
       0.99967241, 0.99967241, 0.99967241, 0.99967241, 0.9990943 ,
       0.9990943 , 0.9990943 , 0.9990943 , 0.99769746, 0.99769746,
       0.99769746, 0.99769746, 0.99464004, 0.99464004, 0.99464004,
       0.99464004, 0.98861492, 0.98861492, 0.98861492, 0.98861492,
       0.97797231, 0.97797231, 0.97797231, 0.97797231, 0.96114094,
       0.96114094, 0.96114094, 0.96114094, 0.93721972, 0.93721972,
       0.93721972, 0.93721972, 0.9063806 , 0.9063806 , 0.9063806 ,
       0.9063806 , 0.86977129, 0.86977129, 0.86977129, 0.86977129,
       0.8289238 , 0.8289238 , 0.8289238 , 0.8289238 , 0.78560018,
       0.78560018, 0.78560018, 0.78560018, 0.74329928, 0.74329928,
       0.74329928, 0.74329928, 0.70377185, 0.70377185, 0.70377185,
       0.70377185, 0.66708371, 0.66708371, 0.66708371, 0.66708371,
       0.6330064 , 0.6330064 , 0.6330064 , 0.6330064 , 0.60675478,
       0.60675478, 0.60675478, 0.60675478, 0.58061389, 0.58061389,
       0.58061389, 0.58061389, 0.57133748, 0.57133748, 0.57133748,
       0.57133748, 0.56401096, 0.56401096, 0.56401096, 0.56401096,
       0.56229948, 0.56229948, 0.56229948, 0.56229948, 0.56457284,
       0.56457284, 0.56457284, 0.56457284, 0.56699615, 0.56699615,
       0.56699615, 0.56699615, 0.56661875, 0.56661875, 0.56661875,
       0.56661875, 0.56639427, 0.56639427, 0.56639427, 0.56639427,
       0.57210261, 0.57210261, 0.57210261, 0.57210261, 0.60938253,
       0.60938253, 0.60938253, 0.60938253, 0.75154823, 0.75154823,
       0.75154823, 0.75154823, 1.14834311, 1.14834311, 1.14834311,
       1.14834311, 2.00753778, 2.00753778, 2.00753778, 2.00753778,
       3.07707073, 3.07707073, 3.07707073, 3.07707073, 3.28851254,
       3.28851254, 3.28851254, 3.28851254, 2.25822824, 2.25822824,
       2.25822824, 2.25822824, 1.136885  , 1.136885  , 1.136885  ,
       1.136885  , 1.00702667, 1.00702667, 1.00702667, 1.00702667,
       1.00003133, 1.00003133, 1.00003133, 1.00003133, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.88472523e-09, 8.88472523e-09, 8.88472523e-09, 8.88472523e-09,
       5.29210904e-08, 5.29210904e-08, 5.29210904e-08, 5.29210904e-08,
       2.68968990e-07, 2.68968990e-07, 2.68968990e-07, 2.68968990e-07,
       1.29058596e-06, 1.29058596e-06, 1.29058596e-06, 1.29058596e-06,
       5.82613011e-06, 5.82613011e-06, 5.82613011e-06, 5.82613011e-06,
       2.47055828e-05, 2.47055828e-05, 2.47055828e-05, 2.47055828e-05,
       9.82232922e-05, 9.82232922e-05, 9.82232922e-05, 9.82232922e-05,
       3.65333376e-04, 3.65333376e-04, 3.65333376e-04, 3.65333376e-04,
       1.26798274e-03, 1.26798274e-03, 1.26798274e-03, 1.26798274e-03,
       4.09445985e-03, 4.09445985e-03, 4.09445985e-03, 4.09445985e-03,
       1.22588183e-02, 1.22588183e-02, 1.22588183e-02, 1.22588183e-02,
       3.38993827e-02, 3.38993827e-02, 3.38993827e-02, 3.38993827e-02,
       8.62271626e-02, 8.62271626e-02, 8.62271626e-02, 8.62271626e-02,
       2.00962075e-01, 2.00962075e-01, 2.00962075e-01, 2.00962075e-01,
       4.27886788e-01, 4.27886788e-01, 4.27886788e-01, 4.27886788e-01,
       8.31469810e-01, 8.31469810e-01, 8.31469810e-01, 8.31469810e-01,
       1.47715354e+00, 1.47715354e+00, 1.47715354e+00, 1.47715354e+00,
       2.41104027e+00, 2.41104027e+00, 2.41104027e+00, 2.41104027e+00,
       3.64432706e+00, 3.64432706e+00, 3.64432706e+00, 3.64432706e+00,
       5.15349521e+00, 5.15349521e+00, 5.15349521e+00, 5.15349521e+00,
       6.89898043e+00, 6.89898043e+00, 6.89898043e+00, 6.89898043e+00,
       8.82107363e+00, 8.82107363e+00, 8.82107363e+00, 8.82107363e+00,
       1.07606034e+01, 1.07606034e+01, 1.07606034e+01, 1.07606034e+01,
       1.26809719e+01, 1.26809719e+01, 1.26809719e+01, 1.26809719e+01,
       1.45408992e+01, 1.45408992e+01, 1.45408992e+01, 1.45408992e+01,
       1.63011956e+01, 1.63011956e+01, 1.63011956e+01, 1.63011956e+01,
       1.78659797e+01, 1.78659797e+01, 1.78659797e+01, 1.78659797e+01,
       1.91016597e+01, 1.91016597e+01, 1.91016597e+01, 1.91016597e+01,
       1.98864085e+01, 1.98864085e+01, 1.98864085e+01, 1.98864085e+01,
       2.02241697e+01, 2.02241697e+01, 2.02241697e+01, 2.02241697e+01,
       2.02710826e+01, 2.02710826e+01, 2.02710826e+01, 2.02710826e+01,
       2.01384385e+01, 2.01384385e+01, 2.01384385e+01, 2.01384385e+01,
       2.00398023e+01, 2.00398023e+01, 2.00398023e+01, 2.00398023e+01,
       2.00141317e+01, 2.00141317e+01, 2.00141317e+01, 2.00141317e+01,
       2.00125047e+01, 2.00125047e+01, 2.00125047e+01, 2.00125047e+01,
       2.00117339e+01, 2.00117339e+01, 2.00117339e+01, 2.00117339e+01,
       2.00041797e+01, 2.00041797e+01, 2.00041797e+01, 2.00041797e+01,
       1.99838495e+01, 1.99838495e+01, 1.99838495e+01, 1.99838495e+01,
       1.99519757e+01, 1.99519757e+01, 1.99519757e+01, 1.99519757e+01,
       1.98474175e+01, 1.98474175e+01, 1.98474175e+01, 1.98474175e+01,
       1.93323898e+01, 1.93323898e+01, 1.93323898e+01, 1.93323898e+01,
       1.69770632e+01, 1.69770632e+01, 1.69770632e+01, 1.69770632e+01,
       9.43267908e+00, 9.43267908e+00, 9.43267908e+00, 9.43267908e+00,
       8.98850413e-01, 8.98850413e-01, 8.98850413e-01, 8.98850413e-01,
       7.99452553e-03, 7.99452553e-03, 7.99452553e-03, 7.99452553e-03,
       3.95277914e-06, 3.95277914e-06, 3.95277914e-06, 3.95277914e-06,
       5.87204713e-10, 5.87204713e-10, 5.87204713e-10, 5.87204713e-10,
       8.74454638e-14, 8.74454638e-14, 8.74454638e-14, 8.74454638e-14,
       1.31382467e-17, 1.31382467e-17, 1.31382467e-17, 1.31382467e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
       9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
       9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
       9.99999076e+02, 9.99999076e+02, 9.99999076e+02, 9.99999076e+02,
       9.99996325e+02, 9.99996325e+02, 9.99996325e+02, 9.99996325e+02,
       9.99986331e+02, 9.99986331e+02, 9.99986331e+02, 9.99986331e+02,
       9.99952558e+02, 9.99952558e+02, 9.99952558e+02, 9.99952558e+02,
       9.99846811e+02, 9.99846811e+02, 9.99846811e+02, 9.99846811e+02,
       9.99541417e+02, 9.99541417e+02, 9.99541417e+02, 9.99541417e+02,
       9.98732356e+02, 9.98732356e+02, 9.98732356e+02, 9.98732356e+02,
       9.96778496e+02, 9.96778496e+02, 9.96778496e+02, 9.96778496e+02,
       9.92506573e+02, 9.92506573e+02, 9.92506573e+02, 9.92506573e+02,
       9.84106027e+02, 9.84106027e+02, 9.84106027e+02, 9.84106027e+02,
       9.69322749e+02, 9.69322749e+02, 9.69322749e+02, 9.69322749e+02,
       9.46081288e+02, 9.46081288e+02, 9.46081288e+02, 9.46081288e+02,
       9.13335017e+02, 9.13335017e+02, 9.13335017e+02, 9.13335017e+02,
       8.71610214e+02, 8.71610214e+02, 8.71610214e+02, 8.71610214e+02,
       8.22805647e+02, 8.22805647e+02, 8.22805647e+02, 8.22805647e+02,
       7.69307087e+02, 7.69307087e+02, 7.69307087e+02, 7.69307087e+02,
       7.13651394e+02, 7.13651394e+02, 7.13651394e+02, 7.13651394e+02,
       6.60389331e+02, 6.60389331e+02, 6.60389331e+02, 6.60389331e+02,
       6.11811082e+02, 6.11811082e+02, 6.11811082e+02, 6.11811082e+02,
       5.67482808e+02, 5.67482808e+02, 5.67482808e+02, 5.67482808e+02,
       5.28269968e+02, 5.28269968e+02, 5.28269968e+02, 5.28269968e+02,
       4.95352222e+02, 4.95352222e+02, 4.95352222e+02, 4.95352222e+02,
       4.70492622e+02, 4.70492622e+02, 4.70492622e+02, 4.70492622e+02,
       4.55270406e+02, 4.55270406e+02, 4.55270406e+02, 4.55270406e+02,
       4.49060619e+02, 4.49060619e+02, 4.49060619e+02, 4.49060619e+02,
       4.48201927e+02, 4.48201927e+02, 4.48201927e+02, 4.48201927e+02,
       4.50695933e+02, 4.50695933e+02, 4.50695933e+02, 4.50695933e+02,
       4.52345569e+02, 4.52345569e+02, 4.52345569e+02, 4.52345569e+02,
       4.52754082e+02, 4.52754082e+02, 4.52754082e+02, 4.52754082e+02,
       4.52997015e+02, 4.52997015e+02, 4.52997015e+02, 4.52997015e+02,
       4.53174880e+02, 4.53174880e+02, 4.53174880e+02, 4.53174880e+02,
       4.53361382e+02, 4.53361382e+02, 4.53361382e+02, 4.53361382e+02,
       4.53679663e+02, 4.53679663e+02, 4.53679663e+02, 4.53679663e+02,
       4.54190653e+02, 4.54190653e+02, 4.54190653e+02, 4.54190653e+02,
       4.52637868e+02, 4.52637868e+02, 4.52637868e+02, 4.52637868e+02,
       4.32258483e+02, 4.32258483e+02, 4.32258483e+02, 4.32258483e+02,
       3.29015504e+02, 3.29015504e+02, 3.29015504e+02, 3.29015504e+02,
       1.00405385e+02, 1.00405385e+02, 1.00405385e+02, 1.00405385e+02,
       3.29045820e+00, 3.29045820e+00, 3.29045820e+00, 3.29045820e+00,
       1.46741752e-02, 1.46741752e-02, 1.46741752e-02, 1.46741752e-02,
       1.00004659e-02, 1.00004659e-02, 1.00004659e-02, 1.00004659e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
       0.99999997, 0.99999997, 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999943, 0.99999943, 0.99999943, 0.99999943,
       0.99999776, 0.99999776, 0.99999776, 0.99999776, 0.9999918 ,
       0.9999918 , 0.9999918 , 0.9999918 , 0.99997186, 0.99997186,
       0.99997186, 0.99997186, 0.99990994, 0.99990994, 0.99990994,
       0.99990994, 0.99973194, 0.99973194, 0.99973194, 0.99973194,
       0.99926076, 0.99926076, 0.99926076, 0.99926076, 0.99811888,
       0.99811888, 0.99811888, 0.99811888, 0.9956012 , 0.9956012 ,
       0.9956012 , 0.9956012 , 0.99058136, 0.99058136, 0.99058136,
       0.99058136, 0.98157355, 0.98157355, 0.98157355, 0.98157355,
       0.96705453, 0.96705453, 0.96705453, 0.96705453, 0.94598589,
       0.94598589, 0.94598589, 0.94598589, 0.91825438, 0.91825438,
       0.91825438, 0.91825438, 0.88471667, 0.88471667, 0.88471667,
       0.88471667, 0.84678775, 0.84678775, 0.84678775, 0.84678775,
       0.8058432 , 0.8058432 , 0.8058432 , 0.8058432 , 0.76438015,
       0.76438015, 0.76438015, 0.76438015, 0.72517919, 0.72517919,
       0.72517919, 0.72517919, 0.68826098, 0.68826098, 0.68826098,
       0.68826098, 0.65432311, 0.65432311, 0.65432311, 0.65432311,
       0.62261428, 0.62261428, 0.62261428, 0.62261428, 0.59964198,
       0.59964198, 0.59964198, 0.59964198, 0.57647962, 0.57647962,
       0.57647962, 0.57647962, 0.56891377, 0.56891377, 0.56891377,
       0.56891377, 0.5642295 , 0.5642295 , 0.5642295 , 0.5642295 ,
       0.56291649, 0.56291649, 0.56291649, 0.56291649, 0.56496715,
       0.56496715, 0.56496715, 0.56496715, 0.5670335 , 0.5670335 ,
       0.5670335 , 0.5670335 , 0.56691285, 0.56691285, 0.56691285,
       0.56691285, 0.56649394, 0.56649394, 0.56649394, 0.56649394,
       0.56954649, 0.56954649, 0.56954649, 0.56954649, 0.59269675,
       0.59269675, 0.59269675, 0.59269675, 0.68846425, 0.68846425,
       0.68846425, 0.68846425, 0.97389537, 0.97389537, 0.97389537,
       0.97389537, 1.63730131, 1.63730131, 1.63730131, 1.63730131,
       2.75902555, 2.75902555, 2.75902555, 2.75902555, 3.37028342,
       3.37028342, 3.37028342, 3.37028342, 2.98215238, 2.98215238,
       2.98215238, 2.98215238, 1.46829751, 1.46829751, 1.46829751,
       1.46829751, 1.03187752, 1.03187752, 1.03187752, 1.03187752,
       1.00073195, 1.00073195, 1.00073195, 1.00073195, 1.0000003 ,
       1.0000003 , 1.0000003 , 1.0000003 , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([4.52514197e-08, 4.52514197e-08, 4.52514197e-08, 4.52514197e-08,
       2.49281931e-07, 2.49281931e-07, 2.49281931e-07, 2.49281931e-07,
       1.16502486e-06, 1.16502486e-06, 1.16502486e-06, 1.16502486e-06,
       5.14742918e-06, 5.14742918e-06, 5.14742918e-06, 5.14742918e-06,
       2.14115184e-05, 2.14115184e-05, 2.14115184e-05, 2.14115184e-05,
       8.37057786e-05, 8.37057786e-05, 8.37057786e-05, 8.37057786e-05,
       3.06910769e-04, 3.06910769e-04, 3.06910769e-04, 3.06910769e-04,
       1.05286130e-03, 1.05286130e-03, 1.05286130e-03, 1.05286130e-03,
       3.36989687e-03, 3.36989687e-03, 3.36989687e-03, 3.36989687e-03,
       1.00310100e-02, 1.00310100e-02, 1.00310100e-02, 1.00310100e-02,
       2.76674775e-02, 2.76674775e-02, 2.76674775e-02, 2.76674775e-02,
       7.04345400e-02, 7.04345400e-02, 7.04345400e-02, 7.04345400e-02,
       1.64864079e-01, 1.64864079e-01, 1.64864079e-01, 1.64864079e-01,
       3.53706435e-01, 3.53706435e-01, 3.53706435e-01, 3.53706435e-01,
       6.94517417e-01, 6.94517417e-01, 6.94517417e-01, 6.94517417e-01,
       1.24926788e+00, 1.24926788e+00, 1.24926788e+00, 1.24926788e+00,
       2.06658717e+00, 2.06658717e+00, 2.06658717e+00, 2.06658717e+00,
       3.16549040e+00, 3.16549040e+00, 3.16549040e+00, 3.16549040e+00,
       4.53121338e+00, 4.53121338e+00, 4.53121338e+00, 4.53121338e+00,
       6.12705253e+00, 6.12705253e+00, 6.12705253e+00, 6.12705253e+00,
       7.91542783e+00, 7.91542783e+00, 7.91542783e+00, 7.91542783e+00,
       9.77789566e+00, 9.77789566e+00, 9.77789566e+00, 9.77789566e+00,
       1.16347704e+01, 1.16347704e+01, 1.16347704e+01, 1.16347704e+01,
       1.34551790e+01, 1.34551790e+01, 1.34551790e+01, 1.34551790e+01,
       1.52122136e+01, 1.52122136e+01, 1.52122136e+01, 1.52122136e+01,
       1.68521553e+01, 1.68521553e+01, 1.68521553e+01, 1.68521553e+01,
       1.82765818e+01, 1.82765818e+01, 1.82765818e+01, 1.82765818e+01,
       1.93576979e+01, 1.93576979e+01, 1.93576979e+01, 1.93576979e+01,
       1.99942621e+01, 1.99942621e+01, 1.99942621e+01, 1.99942621e+01,
       2.02328594e+01, 2.02328594e+01, 2.02328594e+01, 2.02328594e+01,
       2.02456712e+01, 2.02456712e+01, 2.02456712e+01, 2.02456712e+01,
       2.01101923e+01, 2.01101923e+01, 2.01101923e+01, 2.01101923e+01,
       2.00369389e+01, 2.00369389e+01, 2.00369389e+01, 2.00369389e+01,
       2.00131267e+01, 2.00131267e+01, 2.00131267e+01, 2.00131267e+01,
       2.00070966e+01, 2.00070966e+01, 2.00070966e+01, 2.00070966e+01,
       2.00052693e+01, 2.00052693e+01, 2.00052693e+01, 2.00052693e+01,
       1.99989897e+01, 1.99989897e+01, 1.99989897e+01, 1.99989897e+01,
       1.99805077e+01, 1.99805077e+01, 1.99805077e+01, 1.99805077e+01,
       1.99568809e+01, 1.99568809e+01, 1.99568809e+01, 1.99568809e+01,
       1.98969783e+01, 1.98969783e+01, 1.98969783e+01, 1.98969783e+01,
       1.96461093e+01, 1.96461093e+01, 1.96461093e+01, 1.96461093e+01,
       1.84628990e+01, 1.84628990e+01, 1.84628990e+01, 1.84628990e+01,
       1.37419915e+01, 1.37419915e+01, 1.37419915e+01, 1.37419915e+01,
       3.80245394e+00, 3.80245394e+00, 3.80245394e+00, 3.80245394e+00,
       1.00964393e-01, 1.00964393e-01, 1.00964393e-01, 1.00964393e-01,
       1.97893986e-04, 1.97893986e-04, 1.97893986e-04, 1.97893986e-04,
       3.50167417e-08, 3.50167417e-08, 3.50167417e-08, 3.50167417e-08,
       5.53183762e-12, 5.53183762e-12, 5.53183762e-12, 5.53183762e-12,
       8.51924516e-16, 8.51924516e-16, 8.51924516e-16, 8.51924516e-16,
       1.36608685e-19, 1.36608685e-19, 1.36608685e-19, 1.36608685e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
       9.99999956e+02, 9.99999956e+02, 9.99999956e+02, 9.99999956e+02,
       9.99999807e+02, 9.99999807e+02, 9.99999807e+02, 9.99999807e+02,
       9.99999199e+02, 9.99999199e+02, 9.99999199e+02, 9.99999199e+02,
       9.99996868e+02, 9.99996868e+02, 9.99996868e+02, 9.99996868e+02,
       9.99988517e+02, 9.99988517e+02, 9.99988517e+02, 9.99988517e+02,
       9.99960606e+02, 9.99960606e+02, 9.99960606e+02, 9.99960606e+02,
       9.99873918e+02, 9.99873918e+02, 9.99873918e+02, 9.99873918e+02,
       9.99624741e+02, 9.99624741e+02, 9.99624741e+02, 9.99624741e+02,
       9.98965280e+02, 9.98965280e+02, 9.98965280e+02, 9.98965280e+02,
       9.97367799e+02, 9.97367799e+02, 9.97367799e+02, 9.97367799e+02,
       9.93848786e+02, 9.93848786e+02, 9.93848786e+02, 9.93848786e+02,
       9.86844939e+02, 9.86844939e+02, 9.86844939e+02, 9.86844939e+02,
       9.74316549e+02, 9.74316549e+02, 9.74316549e+02, 9.74316549e+02,
       9.54225804e+02, 9.54225804e+02, 9.54225804e+02, 9.54225804e+02,
       9.25291883e+02, 9.25291883e+02, 9.25291883e+02, 9.25291883e+02,
       8.87600888e+02, 8.87600888e+02, 8.87600888e+02, 8.87600888e+02,
       8.42619539e+02, 8.42619539e+02, 8.42619539e+02, 8.42619539e+02,
       7.92557878e+02, 7.92557878e+02, 7.92557878e+02, 7.92557878e+02,
       7.39509078e+02, 7.39509078e+02, 7.39509078e+02, 7.39509078e+02,
       6.86734806e+02, 6.86734806e+02, 6.86734806e+02, 6.86734806e+02,
       6.37955173e+02, 6.37955173e+02, 6.37955173e+02, 6.37955173e+02,
       5.93035458e+02, 5.93035458e+02, 5.93035458e+02, 5.93035458e+02,
       5.52230567e+02, 5.52230567e+02, 5.52230567e+02, 5.52230567e+02,
       5.16416992e+02, 5.16416992e+02, 5.16416992e+02, 5.16416992e+02,
       4.86984397e+02, 4.86984397e+02, 4.86984397e+02, 4.86984397e+02,
       4.65596969e+02, 4.65596969e+02, 4.65596969e+02, 4.65596969e+02,
       4.53240066e+02, 4.53240066e+02, 4.53240066e+02, 4.53240066e+02,
       4.48778450e+02, 4.48778450e+02, 4.48778450e+02, 4.48778450e+02,
       4.48639462e+02, 4.48639462e+02, 4.48639462e+02, 4.48639462e+02,
       4.51263622e+02, 4.51263622e+02, 4.51263622e+02, 4.51263622e+02,
       4.52567685e+02, 4.52567685e+02, 4.52567685e+02, 4.52567685e+02,
       4.52811496e+02, 4.52811496e+02, 4.52811496e+02, 4.52811496e+02,
       4.52945111e+02, 4.52945111e+02, 4.52945111e+02, 4.52945111e+02,
       4.53123466e+02, 4.53123466e+02, 4.53123466e+02, 4.53123466e+02,
       4.53394325e+02, 4.53394325e+02, 4.53394325e+02, 4.53394325e+02,
       4.53835168e+02, 4.53835168e+02, 4.53835168e+02, 4.53835168e+02,
       4.54404144e+02, 4.54404144e+02, 4.54404144e+02, 4.54404144e+02,
       4.54398815e+02, 4.54398815e+02, 4.54398815e+02, 4.54398815e+02,
       4.46505808e+02, 4.46505808e+02, 4.46505808e+02, 4.46505808e+02,
       3.93317262e+02, 3.93317262e+02, 3.93317262e+02, 3.93317262e+02,
       2.10080070e+02, 2.10080070e+02, 2.10080070e+02, 2.10080070e+02,
       2.32249751e+01, 2.32249751e+01, 2.32249751e+01, 2.32249751e+01,
       1.73430791e-01, 1.73430791e-01, 1.73430791e-01, 1.73430791e-01,
       1.00314003e-02, 1.00314003e-02, 1.00314003e-02, 1.00314003e-02,
       1.00000041e-02, 1.00000041e-02, 1.00000041e-02, 1.00000041e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.99999988, 0.99999988,
       0.99999988, 0.99999988, 0.99999951, 0.99999951, 0.99999951,
       0.99999951, 0.9999981 , 0.9999981 , 0.9999981 , 0.9999981 ,
       0.99999312, 0.99999312, 0.99999312, 0.99999312, 0.99997664,
       0.99997664, 0.99997664, 0.99997664, 0.99992585, 0.99992585,
       0.99992585, 0.99992585, 0.99978045, 0.99978045, 0.99978045,
       0.99978045, 0.99939593, 0.99939593, 0.99939593, 0.99939593,
       0.99846143, 0.99846143, 0.99846143, 0.99846143, 0.99638683,
       0.99638683, 0.99638683, 0.99638683, 0.99220475, 0.99220475,
       0.99220475, 0.99220475, 0.98458761, 0.98458761, 0.98458761,
       0.98458761, 0.9720855 , 0.9720855 , 0.9720855 , 0.9720855 ,
       0.95357426, 0.95357426, 0.95357426, 0.95357426, 0.92870343,
       0.92870343, 0.92870343, 0.92870343, 0.89804865, 0.89804865,
       0.89804865, 0.89804865, 0.86284217, 0.86284217, 0.86284217,
       0.86284217, 0.82441149, 0.82441149, 0.82441149, 0.82441149,
       0.78436898, 0.78436898, 0.78436898, 0.78436898, 0.74552409,
       0.74552409, 0.74552409, 0.74552409, 0.70888758, 0.70888758,
       0.70888758, 0.70888758, 0.67437483, 0.67437483, 0.67437483,
       0.67437483, 0.6430066 , 0.6430066 , 0.6430066 , 0.6430066 ,
       0.61348618, 0.61348618, 0.61348618, 0.61348618, 0.59349049,
       0.59349049, 0.59349049, 0.59349049, 0.57331869, 0.57331869,
       0.57331869, 0.57331869, 0.56704679, 0.56704679, 0.56704679,
       0.56704679, 0.56447692, 0.56447692, 0.56447692, 0.56447692,
       0.56362867, 0.56362867, 0.56362867, 0.56362867, 0.56531162,
       0.56531162, 0.56531162, 0.56531162, 0.567019  , 0.567019  ,
       0.567019  , 0.567019  , 0.56709383, 0.56709383, 0.56709383,
       0.56709383, 0.5667092 , 0.5667092 , 0.5667092 , 0.5667092 ,
       0.56824252, 0.56824252, 0.56824252, 0.56824252, 0.58236395,
       0.58236395, 0.58236395, 0.58236395, 0.6459472 , 0.6459472 ,
       0.6459472 , 0.6459472 , 0.84807929, 0.84807929, 0.84807929,
       0.84807929, 1.34919174, 1.34919174, 1.34919174, 1.34919174,
       2.33541132, 2.33541132, 2.33541132, 2.33541132, 3.2926407 ,
       3.2926407 , 3.2926407 , 3.2926407 , 3.37752881, 3.37752881,
       3.37752881, 3.37752881, 2.16954992, 2.16954992, 2.16954992,
       2.16954992, 1.1172986 , 1.1172986 , 1.1172986 , 1.1172986 ,
       1.00560841, 1.00560841, 1.00560841, 1.00560841, 1.00001853,
       1.00001853, 1.00001853, 1.00001853, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.04607737e-07, 2.04607737e-07, 2.04607737e-07, 2.04607737e-07,
       1.04753503e-06, 1.04753503e-06, 1.04753503e-06, 1.04753503e-06,
       4.52318125e-06, 4.52318125e-06, 4.52318125e-06, 4.52318125e-06,
       1.84864298e-05, 1.84864298e-05, 1.84864298e-05, 1.84864298e-05,
       7.11599517e-05, 7.11599517e-05, 7.11599517e-05, 7.11599517e-05,
       2.57499723e-04, 2.57499723e-04, 2.57499723e-04, 2.57499723e-04,
       8.73945333e-04, 8.73945333e-04, 8.73945333e-04, 8.73945333e-04,
       2.77466387e-03, 2.77466387e-03, 2.77466387e-03, 2.77466387e-03,
       8.21545316e-03, 8.21545316e-03, 8.21545316e-03, 8.21545316e-03,
       2.26072838e-02, 2.26072838e-02, 2.26072838e-02, 2.26072838e-02,
       5.76012133e-02, 5.76012133e-02, 5.76012133e-02, 5.76012133e-02,
       1.35378501e-01, 1.35378501e-01, 1.35378501e-01, 1.35378501e-01,
       2.92554805e-01, 2.92554805e-01, 2.92554805e-01, 2.92554805e-01,
       5.80205845e-01, 5.80205845e-01, 5.80205845e-01, 5.80205845e-01,
       1.05628947e+00, 1.05628947e+00, 1.05628947e+00, 1.05628947e+00,
       1.77052666e+00, 1.77052666e+00, 1.77052666e+00, 1.77052666e+00,
       2.74829898e+00, 2.74829898e+00, 2.74829898e+00, 2.74829898e+00,
       3.98331961e+00, 3.98331961e+00, 3.98331961e+00, 3.98331961e+00,
       5.44451310e+00, 5.44451310e+00, 5.44451310e+00, 5.44451310e+00,
       7.09514684e+00, 7.09514684e+00, 7.09514684e+00, 7.09514684e+00,
       8.87295070e+00, 8.87295070e+00, 8.87295070e+00, 8.87295070e+00,
       1.06594721e+01, 1.06594721e+01, 1.06594721e+01, 1.06594721e+01,
       1.24293602e+01, 1.24293602e+01, 1.24293602e+01, 1.24293602e+01,
       1.41607204e+01, 1.41607204e+01, 1.41607204e+01, 1.41607204e+01,
       1.58187383e+01, 1.58187383e+01, 1.58187383e+01, 1.58187383e+01,
       1.73419873e+01, 1.73419873e+01, 1.73419873e+01, 1.73419873e+01,
       1.86283641e+01, 1.86283641e+01, 1.86283641e+01, 1.86283641e+01,
       1.95639138e+01, 1.95639138e+01, 1.95639138e+01, 1.95639138e+01,
       2.00736039e+01, 2.00736039e+01, 2.00736039e+01, 2.00736039e+01,
       2.02330193e+01, 2.02330193e+01, 2.02330193e+01, 2.02330193e+01,
       2.02158212e+01, 2.02158212e+01, 2.02158212e+01, 2.02158212e+01,
       2.00862699e+01, 2.00862699e+01, 2.00862699e+01, 2.00862699e+01,
       2.00336687e+01, 2.00336687e+01, 2.00336687e+01, 2.00336687e+01,
       2.00150798e+01, 2.00150798e+01, 2.00150798e+01, 2.00150798e+01,
       2.00060876e+01, 2.00060876e+01, 2.00060876e+01, 2.00060876e+01,
       1.99998383e+01, 1.99998383e+01, 1.99998383e+01, 1.99998383e+01,
       1.99906385e+01, 1.99906385e+01, 1.99906385e+01, 1.99906385e+01,
       1.99726435e+01, 1.99726435e+01, 1.99726435e+01, 1.99726435e+01,
       1.99540496e+01, 1.99540496e+01, 1.99540496e+01, 1.99540496e+01,
       1.99172472e+01, 1.99172472e+01, 1.99172472e+01, 1.99172472e+01,
       1.97905611e+01, 1.97905611e+01, 1.97905611e+01, 1.97905611e+01,
       1.92093064e+01, 1.92093064e+01, 1.92093064e+01, 1.92093064e+01,
       1.66360985e+01, 1.66360985e+01, 1.66360985e+01, 1.66360985e+01,
       8.75489385e+00, 8.75489385e+00, 8.75489385e+00, 8.75489385e+00,
       7.20452697e-01, 7.20452697e-01, 7.20452697e-01, 7.20452697e-01,
       5.43172134e-03, 5.43172134e-03, 5.43172134e-03, 5.43172134e-03,
       2.27604406e-06, 2.27604406e-06, 2.27604406e-06, 2.27604406e-06,
       3.38472840e-10, 3.38472840e-10, 3.38472840e-10, 3.38472840e-10,
       5.10071735e-14, 5.10071735e-14, 5.10071735e-14, 5.10071735e-14,
       7.83554591e-18, 7.83554591e-18, 7.83554591e-18, 7.83554591e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999961e+02, 9.99999961e+02, 9.99999961e+02, 9.99999961e+02,
       9.99999831e+02, 9.99999831e+02, 9.99999831e+02, 9.99999831e+02,
       9.99999308e+02, 9.99999308e+02, 9.99999308e+02, 9.99999308e+02,
       9.99997337e+02, 9.99997337e+02, 9.99997337e+02, 9.99997337e+02,
       9.99990365e+02, 9.99990365e+02, 9.99990365e+02, 9.99990365e+02,
       9.99967300e+02, 9.99967300e+02, 9.99967300e+02, 9.99967300e+02,
       9.99896187e+02, 9.99896187e+02, 9.99896187e+02, 9.99896187e+02,
       9.99692651e+02, 9.99692651e+02, 9.99692651e+02, 9.99692651e+02,
       9.99154448e+02, 9.99154448e+02, 9.99154448e+02, 9.99154448e+02,
       9.97846913e+02, 9.97846913e+02, 9.97846913e+02, 9.97846913e+02,
       9.94946365e+02, 9.94946365e+02, 9.94946365e+02, 9.94946365e+02,
       9.89107997e+02, 9.89107997e+02, 9.89107997e+02, 9.89107997e+02,
       9.78502508e+02, 9.78502508e+02, 9.78502508e+02, 9.78502508e+02,
       9.61171766e+02, 9.61171766e+02, 9.61171766e+02, 9.61171766e+02,
       9.35679962e+02, 9.35679962e+02, 9.35679962e+02, 9.35679962e+02,
       9.01743661e+02, 9.01743661e+02, 9.01743661e+02, 9.01743661e+02,
       8.60410587e+02, 8.60410587e+02, 8.60410587e+02, 8.60410587e+02,
       8.13626053e+02, 8.13626053e+02, 8.13626053e+02, 8.13626053e+02,
       7.63416647e+02, 7.63416647e+02, 7.63416647e+02, 7.63416647e+02,
       7.12019797e+02, 7.12019797e+02, 7.12019797e+02, 7.12019797e+02,
       6.63120871e+02, 6.63120871e+02, 6.63120871e+02, 6.63120871e+02,
       6.17966596e+02, 6.17966596e+02, 6.17966596e+02, 6.17966596e+02,
       5.76387663e+02, 5.76387663e+02, 5.76387663e+02, 5.76387663e+02,
       5.38762205e+02, 5.38762205e+02, 5.38762205e+02, 5.38762205e+02,
       5.06102905e+02, 5.06102905e+02, 5.06102905e+02, 5.06102905e+02,
       4.79873679e+02, 4.79873679e+02, 4.79873679e+02, 4.79873679e+02,
       4.61632451e+02, 4.61632451e+02, 4.61632451e+02, 4.61632451e+02,
       4.51822663e+02, 4.51822663e+02, 4.51822663e+02, 4.51822663e+02,
       4.48755045e+02, 4.48755045e+02, 4.48755045e+02, 4.48755045e+02,
       4.49111914e+02, 4.49111914e+02, 4.49111914e+02, 4.49111914e+02,
       4.51654090e+02, 4.51654090e+02, 4.51654090e+02, 4.51654090e+02,
       4.52718346e+02, 4.52718346e+02, 4.52718346e+02, 4.52718346e+02,
       4.52919431e+02, 4.52919431e+02, 4.52919431e+02, 4.52919431e+02,
       4.52976550e+02, 4.52976550e+02, 4.52976550e+02, 4.52976550e+02,
       4.53103923e+02, 4.53103923e+02, 4.53103923e+02, 4.53103923e+02,
       4.53388509e+02, 4.53388509e+02, 4.53388509e+02, 4.53388509e+02,
       4.53898765e+02, 4.53898765e+02, 4.53898765e+02, 4.53898765e+02,
       4.54482141e+02, 4.54482141e+02, 4.54482141e+02, 4.54482141e+02,
       4.55085093e+02, 4.55085093e+02, 4.55085093e+02, 4.55085093e+02,
       4.52596174e+02, 4.52596174e+02, 4.52596174e+02, 4.52596174e+02,
       4.27900465e+02, 4.27900465e+02, 4.27900465e+02, 4.27900465e+02,
       3.14451641e+02, 3.14451641e+02, 3.14451641e+02, 3.14451641e+02,
       8.65631679e+01, 8.65631679e+01, 8.65631679e+01, 8.65631679e+01,
       2.41830497e+00, 2.41830497e+00, 2.41830497e+00, 2.41830497e+00,
       1.27132333e-02, 1.27132333e-02, 1.27132333e-02, 1.27132333e-02,
       1.00002685e-02, 1.00002685e-02, 1.00002685e-02, 1.00002685e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
       0.99999989, 0.99999989, 0.99999989, 0.99999957, 0.99999957,
       0.99999957, 0.99999957, 0.99999839, 0.99999839, 0.99999839,
       0.99999839, 0.99999423, 0.99999423, 0.99999423, 0.99999423,
       0.99998062, 0.99998062, 0.99998062, 0.99998062, 0.99993892,
       0.99993892, 0.99993892, 0.99993892, 0.99982004, 0.99982004,
       0.99982004, 0.99982004, 0.99950587, 0.99950587, 0.99950587,
       0.99950587, 0.99874031, 0.99874031, 0.99874031, 0.99874031,
       0.99702982, 0.99702982, 0.99702982, 0.99702982, 0.99354599,
       0.99354599, 0.99354599, 0.99354599, 0.98711067, 0.98711067,
       0.98711067, 0.98711067, 0.97636406, 0.97636406, 0.97636406,
       0.97636406, 0.96013913, 0.96013913, 0.96013913, 0.96013913,
       0.93789515, 0.93789515, 0.93789515, 0.93789515, 0.90994657,
       0.90994657, 0.90994657, 0.90994657, 0.8773198 , 0.8773198 ,
       0.8773198 , 0.8773198 , 0.84131053, 0.84131053, 0.84131053,
       0.84131053, 0.80309318, 0.80309318, 0.80309318, 0.80309318,
       0.76488582, 0.76488582, 0.76488582, 0.76488582, 0.72862882,
       0.72862882, 0.72862882, 0.72862882, 0.69424027, 0.69424027,
       0.69424027, 0.69424027, 0.66187235, 0.66187235, 0.66187235,
       0.66187235, 0.63295763, 0.63295763, 0.63295763, 0.63295763,
       0.60550311, 0.60550311, 0.60550311, 0.60550311, 0.58821214,
       0.58821214, 0.58821214, 0.58821214, 0.57094445, 0.57094445,
       0.57094445, 0.57094445, 0.56567273, 0.56567273, 0.56567273,
       0.56567273, 0.56457433, 0.56457433, 0.56457433, 0.56457433,
       0.56452234, 0.56452234, 0.56452234, 0.56452234, 0.56563963,
       0.56563963, 0.56563963, 0.56563963, 0.56692819, 0.56692819,
       0.56692819, 0.56692819, 0.56718804, 0.56718804, 0.56718804,
       0.56718804, 0.56693567, 0.56693567, 0.56693567, 0.56693567,
       0.56767338, 0.56767338, 0.56767338, 0.56767338, 0.57613836,
       0.57613836, 0.57613836, 0.57613836, 0.61774062, 0.61774062,
       0.61774062, 0.61774062, 0.75887044, 0.75887044, 0.75887044,
       0.75887044, 1.13039106, 1.13039106, 1.13039106, 1.13039106,
       1.91581709, 1.91581709, 1.91581709, 1.91581709, 3.05001354,
       3.05001354, 3.05001354, 3.05001354, 3.50876949, 3.50876949,
       3.50876949, 3.50876949, 2.9569208 , 2.9569208 , 2.9569208 ,
       2.9569208 , 1.40056125, 1.40056125, 1.40056125, 1.40056125,
       1.02615253, 1.02615253, 1.02615253, 1.02615253, 1.00051302,
       1.00051302, 1.00051302, 1.00051302, 1.00000017, 1.00000017,
       1.00000017, 1.00000017, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.31212456e-07, 8.31212456e-07, 8.31212456e-07, 8.31212456e-07,
       3.97120544e-06, 3.97120544e-06, 3.97120544e-06, 3.97120544e-06,
       1.59059987e-05, 1.59059987e-05, 1.59059987e-05, 1.59059987e-05,
       6.03664366e-05, 6.03664366e-05, 6.03664366e-05, 6.03664366e-05,
       2.15805643e-04, 2.15805643e-04, 2.15805643e-04, 2.15805643e-04,
       7.25243296e-04, 7.25243296e-04, 7.25243296e-04, 7.25243296e-04,
       2.28544773e-03, 2.28544773e-03, 2.28544773e-03, 2.28544773e-03,
       6.73404888e-03, 6.73404888e-03, 6.73404888e-03, 6.73404888e-03,
       1.84918575e-02, 1.84918575e-02, 1.84918575e-02, 1.84918575e-02,
       4.71552363e-02, 4.71552363e-02, 4.71552363e-02, 4.71552363e-02,
       1.11259276e-01, 1.11259276e-01, 1.11259276e-01, 1.11259276e-01,
       2.42090826e-01, 2.42090826e-01, 2.42090826e-01, 2.42090826e-01,
       4.84732171e-01, 4.84732171e-01, 4.84732171e-01, 4.84732171e-01,
       8.92811756e-01, 8.92811756e-01, 8.92811756e-01, 8.92811756e-01,
       1.51595482e+00, 1.51595482e+00, 1.51595482e+00, 1.51595482e+00,
       2.38448316e+00, 2.38448316e+00, 2.38448316e+00, 2.38448316e+00,
       3.49994899e+00, 3.49994899e+00, 3.49994899e+00, 3.49994899e+00,
       4.83781455e+00, 4.83781455e+00, 4.83781455e+00, 4.83781455e+00,
       6.36160827e+00, 6.36160827e+00, 6.36160827e+00, 6.36160827e+00,
       8.03629840e+00, 8.03629840e+00, 8.03629840e+00, 8.03629840e+00,
       9.75414415e+00, 9.75414415e+00, 9.75414415e+00, 9.75414415e+00,
       1.14703604e+01, 1.14703604e+01, 1.14703604e+01, 1.14703604e+01,
       1.31577649e+01, 1.31577649e+01, 1.31577649e+01, 1.31577649e+01,
       1.48036949e+01, 1.48036949e+01, 1.48036949e+01, 1.48036949e+01,
       1.63662284e+01, 1.63662284e+01, 1.63662284e+01, 1.63662284e+01,
       1.77761853e+01, 1.77761853e+01, 1.77761853e+01, 1.77761853e+01,
       1.89288293e+01, 1.89288293e+01, 1.89288293e+01, 1.89288293e+01,
       1.97266212e+01, 1.97266212e+01, 1.97266212e+01, 1.97266212e+01,
       2.01268304e+01, 2.01268304e+01, 2.01268304e+01, 2.01268304e+01,
       2.02304156e+01, 2.02304156e+01, 2.02304156e+01, 2.02304156e+01,
       2.01855356e+01, 2.01855356e+01, 2.01855356e+01, 2.01855356e+01,
       2.00664233e+01, 2.00664233e+01, 2.00664233e+01, 2.00664233e+01,
       2.00284165e+01, 2.00284165e+01, 2.00284165e+01, 2.00284165e+01,
       2.00164011e+01, 2.00164011e+01, 2.00164011e+01, 2.00164011e+01,
       2.00075438e+01, 2.00075438e+01, 2.00075438e+01, 2.00075438e+01,
       1.99976330e+01, 1.99976330e+01, 1.99976330e+01, 1.99976330e+01,
       1.99833671e+01, 1.99833671e+01, 1.99833671e+01, 1.99833671e+01,
       1.99631313e+01, 1.99631313e+01, 1.99631313e+01, 1.99631313e+01,
       1.99444762e+01, 1.99444762e+01, 1.99444762e+01, 1.99444762e+01,
       1.99229151e+01, 1.99229151e+01, 1.99229151e+01, 1.99229151e+01,
       1.98546912e+01, 1.98546912e+01, 1.98546912e+01, 1.98546912e+01,
       1.95683651e+01, 1.95683651e+01, 1.95683651e+01, 1.95683651e+01,
       1.82512117e+01, 1.82512117e+01, 1.82512117e+01, 1.82512117e+01,
       1.31946812e+01, 1.31946812e+01, 1.31946812e+01, 1.31946812e+01,
       3.22197950e+00, 3.22197950e+00, 3.22197950e+00, 3.22197950e+00,
       7.26448767e-02, 7.26448767e-02, 7.26448767e-02, 7.26448767e-02,
       1.16941338e-04, 1.16941338e-04, 1.16941338e-04, 1.16941338e-04,
       2.00485498e-08, 2.00485498e-08, 2.00485498e-08, 2.00485498e-08,
       3.19846760e-12, 3.19846760e-12, 3.19846760e-12, 3.19846760e-12,
       4.91826059e-16, 4.91826059e-16, 4.91826059e-16, 4.91826059e-16,
       6.67643390e-20, 6.67643390e-20, 6.67643390e-20, 6.67643390e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999969e+02, 9.99999969e+02, 9.99999969e+02, 9.99999969e+02,
       9.99999851e+02, 9.99999851e+02, 9.99999851e+02, 9.99999851e+02,
       9.99999405e+02, 9.99999405e+02, 9.99999405e+02, 9.99999405e+02,
       9.99997741e+02, 9.99997741e+02, 9.99997741e+02, 9.99997741e+02,
       9.99991925e+02, 9.99991925e+02, 9.99991925e+02, 9.99991925e+02,
       9.99972864e+02, 9.99972864e+02, 9.99972864e+02, 9.99972864e+02,
       9.99914490e+02, 9.99914490e+02, 9.99914490e+02, 9.99914490e+02,
       9.99748065e+02, 9.99748065e+02, 9.99748065e+02, 9.99748065e+02,
       9.99308322e+02, 9.99308322e+02, 9.99308322e+02, 9.99308322e+02,
       9.98237056e+02, 9.98237056e+02, 9.98237056e+02, 9.98237056e+02,
       9.95845011e+02, 9.95845011e+02, 9.95845011e+02, 9.95845011e+02,
       9.90979078e+02, 9.90979078e+02, 9.90979078e+02, 9.90979078e+02,
       9.82011051e+02, 9.82011051e+02, 9.82011051e+02, 9.82011051e+02,
       9.67091266e+02, 9.67091266e+02, 9.67091266e+02, 9.67091266e+02,
       9.44695117e+02, 9.44695117e+02, 9.44695117e+02, 9.44695117e+02,
       9.14239174e+02, 9.14239174e+02, 9.14239174e+02, 9.14239174e+02,
       8.76379529e+02, 8.76379529e+02, 8.76379529e+02, 8.76379529e+02,
       8.32762793e+02, 8.32762793e+02, 8.32762793e+02, 8.32762793e+02,
       7.85366006e+02, 7.85366006e+02, 7.85366006e+02, 7.85366006e+02,
       7.35932360e+02, 7.35932360e+02, 7.35932360e+02, 7.35932360e+02,
       6.87323424e+02, 6.87323424e+02, 6.87323424e+02, 6.87323424e+02,
       6.42175077e+02, 6.42175077e+02, 6.42175077e+02, 6.42175077e+02,
       6.00145773e+02, 6.00145773e+02, 6.00145773e+02, 6.00145773e+02,
       5.61538265e+02, 5.61538265e+02, 5.61538265e+02, 5.61538265e+02,
       5.26840609e+02, 5.26840609e+02, 5.26840609e+02, 5.26840609e+02,
       4.97140791e+02, 4.97140791e+02, 4.97140791e+02, 4.97140791e+02,
       4.73884379e+02, 4.73884379e+02, 4.73884379e+02, 4.73884379e+02,
       4.58462049e+02, 4.58462049e+02, 4.58462049e+02, 4.58462049e+02,
       4.50871407e+02, 4.50871407e+02, 4.50871407e+02, 4.50871407e+02,
       4.48847969e+02, 4.48847969e+02, 4.48847969e+02, 4.48847969e+02,
       4.49672702e+02, 4.49672702e+02, 4.49672702e+02, 4.49672702e+02,
       4.51922948e+02, 4.51922948e+02, 4.51922948e+02, 4.51922948e+02,
       4.52785224e+02, 4.52785224e+02, 4.52785224e+02, 4.52785224e+02,
       4.53005867e+02, 4.53005867e+02, 4.53005867e+02, 4.53005867e+02,
       4.53063737e+02, 4.53063737e+02, 4.53063737e+02, 4.53063737e+02,
       4.53160041e+02, 4.53160041e+02, 4.53160041e+02, 4.53160041e+02,
       4.53422261e+02, 4.53422261e+02, 4.53422261e+02, 4.53422261e+02,
       4.53914136e+02, 4.53914136e+02, 4.53914136e+02, 4.53914136e+02,
       4.54500339e+02, 4.54500339e+02, 4.54500339e+02, 4.54500339e+02,
       4.55295261e+02, 4.55295261e+02, 4.55295261e+02, 4.55295261e+02,
       4.55007290e+02, 4.55007290e+02, 4.55007290e+02, 4.55007290e+02,
       4.44699313e+02, 4.44699313e+02, 4.44699313e+02, 4.44699313e+02,
       3.84060326e+02, 3.84060326e+02, 3.84060326e+02, 3.84060326e+02,
       1.91713252e+02, 1.91713252e+02, 1.91713252e+02, 1.91713252e+02,
       1.83826676e+01, 1.83826676e+01, 1.83826676e+01, 1.83826676e+01,
       1.13135376e-01, 1.13135376e-01, 1.13135376e-01, 1.13135376e-01,
       1.00165770e-02, 1.00165770e-02, 1.00165770e-02, 1.00165770e-02,
       1.00000024e-02, 1.00000024e-02, 1.00000024e-02, 1.00000024e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999963,
       0.99999963, 0.99999963, 0.99999963, 0.99999863, 0.99999863,
       0.99999863, 0.99999863, 0.99999517, 0.99999517, 0.99999517,
       0.99999517, 0.99998392, 0.99998392, 0.99998392, 0.99998392,
       0.99994967, 0.99994967, 0.99994967, 0.99994967, 0.99985237,
       0.99985237, 0.99985237, 0.99985237, 0.99959542, 0.99959542,
       0.99959542, 0.99959542, 0.9989677 , 0.9989677 , 0.9989677 ,
       0.9989677 , 0.99755668, 0.99755668, 0.99755668, 0.99755668,
       0.99465483, 0.99465483, 0.99465483, 0.99465483, 0.98922278,
       0.98922278, 0.98922278, 0.98922278, 0.98000087, 0.98000087,
       0.98000087, 0.98000087, 0.96581386, 0.96581386, 0.96581386,
       0.96581386, 0.94597479, 0.94597479, 0.94597479, 0.94597479,
       0.92056352, 0.92056352, 0.92056352, 0.92056352, 0.89039   ,
       0.89039   , 0.89039   , 0.89039   , 0.85665144, 0.85665144,
       0.85665144, 0.85665144, 0.82046164, 0.82046164, 0.82046164,
       0.82046164, 0.78331999, 0.78331999, 0.78331999, 0.78331999,
       0.74742401, 0.74742401, 0.74742401, 0.74742401, 0.71331198,
       0.71331198, 0.71331198, 0.71331198, 0.68102127, 0.68102127,
       0.68102127, 0.68102127, 0.65059716, 0.65059716, 0.65059716,
       0.65059716, 0.6240258 , 0.6240258 , 0.6240258 , 0.6240258 ,
       0.59855044, 0.59855044, 0.59855044, 0.59855044, 0.58370503,
       0.58370503, 0.58370503, 0.58370503, 0.56923565, 0.56923565,
       0.56923565, 0.56923565, 0.5647148 , 0.5647148 , 0.5647148 ,
       0.5647148 , 0.5645406 , 0.5645406 , 0.5645406 , 0.5645406 ,
       0.56538346, 0.56538346, 0.56538346, 0.56538346, 0.56608138,
       0.56608138, 0.56608138, 0.56608138, 0.56681268, 0.56681268,
       0.56681268, 0.56681268, 0.56720477, 0.56720477, 0.56720477,
       0.56720477, 0.56710473, 0.56710473, 0.56710473, 0.56710473,
       0.56748519, 0.56748519, 0.56748519, 0.56748519, 0.5725192 ,
       0.5725192 , 0.5725192 , 0.5725192 , 0.59936974, 0.59936974,
       0.59936974, 0.59936974, 0.69655554, 0.69655554, 0.69655554,
       0.69655554, 0.9676065 , 0.9676065 , 0.9676065 , 0.9676065 ,
       1.57749515, 1.57749515, 1.57749515, 1.57749515, 2.65892925,
       2.65892925, 2.65892925, 2.65892925, 3.47677245, 3.47677245,
       3.47677245, 3.47677245, 3.4415978 , 3.4415978 , 3.4415978 ,
       3.4415978 , 2.06542454, 2.06542454, 2.06542454, 2.06542454,
       1.09918894, 1.09918894, 1.09918894, 1.09918894, 1.00437867,
       1.00437867, 1.00437867, 1.00437867, 1.00001045, 1.00001045,
       1.00001045, 1.00001045, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.06442751e-06, 3.06442751e-06, 3.06442751e-06, 3.06442751e-06,
       1.37096058e-05, 1.37096058e-05, 1.37096058e-05, 1.37096058e-05,
       5.11071441e-05, 5.11071441e-05, 5.11071441e-05, 5.11071441e-05,
       1.80696441e-04, 1.80696441e-04, 1.80696441e-04, 1.80696441e-04,
       6.01731053e-04, 6.01731053e-04, 6.01731053e-04, 6.01731053e-04,
       1.88320977e-03, 1.88320977e-03, 1.88320977e-03, 1.88320977e-03,
       5.52400997e-03, 5.52400997e-03, 5.52400997e-03, 5.52400997e-03,
       1.51400717e-02, 1.51400717e-02, 1.51400717e-02, 1.51400717e-02,
       3.86400960e-02, 3.86400960e-02, 3.86400960e-02, 3.86400960e-02,
       9.15052429e-02, 9.15052429e-02, 9.15052429e-02, 9.15052429e-02,
       2.00411209e-01, 2.00411209e-01, 2.00411209e-01, 2.00411209e-01,
       4.04958870e-01, 4.04958870e-01, 4.04958870e-01, 4.04958870e-01,
       7.54311496e-01, 7.54311496e-01, 7.54311496e-01, 7.54311496e-01,
       1.29704807e+00, 1.29704807e+00, 1.29704807e+00, 1.29704807e+00,
       2.06709372e+00, 2.06709372e+00, 2.06709372e+00, 2.06709372e+00,
       3.07296603e+00, 3.07296603e+00, 3.07296603e+00, 3.07296603e+00,
       4.29705387e+00, 4.29705387e+00, 4.29705387e+00, 4.29705387e+00,
       5.70596036e+00, 5.70596036e+00, 5.70596036e+00, 5.70596036e+00,
       7.26745760e+00, 7.26745760e+00, 7.26745760e+00, 7.26745760e+00,
       8.91729908e+00, 8.91729908e+00, 8.91729908e+00, 8.91729908e+00,
       1.05722640e+01, 1.05722640e+01, 1.05722640e+01, 1.05722640e+01,
       1.22139882e+01, 1.22139882e+01, 1.22139882e+01, 1.22139882e+01,
       1.38271695e+01, 1.38271695e+01, 1.38271695e+01, 1.38271695e+01,
       1.53909420e+01, 1.53909420e+01, 1.53909420e+01, 1.53909420e+01,
       1.68595079e+01, 1.68595079e+01, 1.68595079e+01, 1.68595079e+01,
       1.81589814e+01, 1.81589814e+01, 1.81589814e+01, 1.81589814e+01,
       1.91837824e+01, 1.91837824e+01, 1.91837824e+01, 1.91837824e+01,
       1.98529322e+01, 1.98529322e+01, 1.98529322e+01, 1.98529322e+01,
       2.01599348e+01, 2.01599348e+01, 2.01599348e+01, 2.01599348e+01,
       2.02242115e+01, 2.02242115e+01, 2.02242115e+01, 2.02242115e+01,
       2.01558715e+01, 2.01558715e+01, 2.01558715e+01, 2.01558715e+01,
       2.00527078e+01, 2.00527078e+01, 2.00527078e+01, 2.00527078e+01,
       2.00224238e+01, 2.00224238e+01, 2.00224238e+01, 2.00224238e+01,
       2.00150070e+01, 2.00150070e+01, 2.00150070e+01, 2.00150070e+01,
       2.00079684e+01, 2.00079684e+01, 2.00079684e+01, 2.00079684e+01,
       1.99973046e+01, 1.99973046e+01, 1.99973046e+01, 1.99973046e+01,
       1.99790344e+01, 1.99790344e+01, 1.99790344e+01, 1.99790344e+01,
       1.99548828e+01, 1.99548828e+01, 1.99548828e+01, 1.99548828e+01,
       1.99337003e+01, 1.99337003e+01, 1.99337003e+01, 1.99337003e+01,
       1.99182352e+01, 1.99182352e+01, 1.99182352e+01, 1.99182352e+01,
       1.98796077e+01, 1.98796077e+01, 1.98796077e+01, 1.98796077e+01,
       1.97369800e+01, 1.97369800e+01, 1.97369800e+01, 1.97369800e+01,
       1.90826196e+01, 1.90826196e+01, 1.90826196e+01, 1.90826196e+01,
       1.62655591e+01, 1.62655591e+01, 1.62655591e+01, 1.62655591e+01,
       8.02647381e+00, 8.02647381e+00, 8.02647381e+00, 8.02647381e+00,
       5.66390276e-01, 5.66390276e-01, 5.66390276e-01, 5.66390276e-01,
       3.57075007e-03, 3.57075007e-03, 3.57075007e-03, 3.57075007e-03,
       1.26227765e-06, 1.26227765e-06, 1.26227765e-06, 1.26227765e-06,
       1.87417390e-10, 1.87417390e-10, 1.87417390e-10, 1.87417390e-10,
       2.86649447e-14, 2.86649447e-14, 2.86649447e-14, 2.86649447e-14,
       4.45854151e-18, 4.45854151e-18, 4.45854151e-18, 4.45854151e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
       9.99999487e+02, 9.99999487e+02, 9.99999487e+02, 9.99999487e+02,
       9.99998088e+02, 9.99998088e+02, 9.99998088e+02, 9.99998088e+02,
       9.99993239e+02, 9.99993239e+02, 9.99993239e+02, 9.99993239e+02,
       9.99977486e+02, 9.99977486e+02, 9.99977486e+02, 9.99977486e+02,
       9.99929539e+02, 9.99929539e+02, 9.99929539e+02, 9.99929539e+02,
       9.99793331e+02, 9.99793331e+02, 9.99793331e+02, 9.99793331e+02,
       9.99433661e+02, 9.99433661e+02, 9.99433661e+02, 9.99433661e+02,
       9.98555189e+02, 9.98555189e+02, 9.98555189e+02, 9.98555189e+02,
       9.96581570e+02, 9.96581570e+02, 9.96581570e+02, 9.96581570e+02,
       9.92526877e+02, 9.92526877e+02, 9.92526877e+02, 9.92526877e+02,
       9.84951309e+02, 9.84951309e+02, 9.84951309e+02, 9.84951309e+02,
       9.72131850e+02, 9.72131850e+02, 9.72131850e+02, 9.72131850e+02,
       9.52508972e+02, 9.52508972e+02, 9.52508972e+02, 9.52508972e+02,
       9.25264888e+02, 9.25264888e+02, 9.25264888e+02, 9.25264888e+02,
       8.90701571e+02, 8.90701571e+02, 8.90701571e+02, 8.90701571e+02,
       8.50150128e+02, 8.50150128e+02, 8.50150128e+02, 8.50150128e+02,
       8.05448379e+02, 8.05448379e+02, 8.05448379e+02, 8.05448379e+02,
       7.58271461e+02, 7.58271461e+02, 7.58271461e+02, 7.58271461e+02,
       7.10634261e+02, 7.10634261e+02, 7.10634261e+02, 7.10634261e+02,
       6.65455423e+02, 6.65455423e+02, 6.65455423e+02, 6.65455423e+02,
       6.23352527e+02, 6.23352527e+02, 6.23352527e+02, 6.23352527e+02,
       5.84182279e+02, 5.84182279e+02, 5.84182279e+02, 5.84182279e+02,
       5.48269428e+02, 5.48269428e+02, 5.48269428e+02, 5.48269428e+02,
       5.16272042e+02, 5.16272042e+02, 5.16272042e+02, 5.16272042e+02,
       4.89358572e+02, 4.89358572e+02, 4.89358572e+02, 4.89358572e+02,
       4.68892875e+02, 4.68892875e+02, 4.68892875e+02, 4.68892875e+02,
       4.55991188e+02, 4.55991188e+02, 4.55991188e+02, 4.55991188e+02,
       4.50239990e+02, 4.50239990e+02, 4.50239990e+02, 4.50239990e+02,
       4.49001549e+02, 4.49001549e+02, 4.49001549e+02, 4.49001549e+02,
       4.50267586e+02, 4.50267586e+02, 4.50267586e+02, 4.50267586e+02,
       4.52156184e+02, 4.52156184e+02, 4.52156184e+02, 4.52156184e+02,
       4.52802596e+02, 4.52802596e+02, 4.52802596e+02, 4.52802596e+02,
       4.53038480e+02, 4.53038480e+02, 4.53038480e+02, 4.53038480e+02,
       4.53140657e+02, 4.53140657e+02, 4.53140657e+02, 4.53140657e+02,
       4.53267209e+02, 4.53267209e+02, 4.53267209e+02, 4.53267209e+02,
       4.53531394e+02, 4.53531394e+02, 4.53531394e+02, 4.53531394e+02,
       4.53971062e+02, 4.53971062e+02, 4.53971062e+02, 4.53971062e+02,
       4.54514025e+02, 4.54514025e+02, 4.54514025e+02, 4.54514025e+02,
       4.55259395e+02, 4.55259395e+02, 4.55259395e+02, 4.55259395e+02,
       4.55867897e+02, 4.55867897e+02, 4.55867897e+02, 4.55867897e+02,
       4.52235462e+02, 4.52235462e+02, 4.52235462e+02, 4.52235462e+02,
       4.22918025e+02, 4.22918025e+02, 4.22918025e+02, 4.22918025e+02,
       2.98696478e+02, 2.98696478e+02, 2.98696478e+02, 2.98696478e+02,
       7.35671819e+01, 7.35671819e+01, 7.35671819e+01, 7.35671819e+01,
       1.73816088e+00, 1.73816088e+00, 1.73816088e+00, 1.73816088e+00,
       1.15098232e-02, 1.15098232e-02, 1.15098232e-02, 1.15098232e-02,
       1.00001491e-02, 1.00001491e-02, 1.00001491e-02, 1.00001491e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999884,
       0.99999884, 0.99999884, 0.99999884, 0.99999596, 0.99999596,
       0.99999596, 0.99999596, 0.99998666, 0.99998666, 0.99998666,
       0.99998666, 0.99995851, 0.99995851, 0.99995851, 0.99995851,
       0.99987881, 0.99987881, 0.99987881, 0.99987881, 0.99966846,
       0.99966846, 0.99966846, 0.99966846, 0.99915332, 0.99915332,
       0.99915332, 0.99915332, 0.99798882, 0.99798882, 0.99798882,
       0.99798882, 0.99557202, 0.99557202, 0.99557202, 0.99557202,
       0.99099076, 0.99099076, 0.99099076, 0.99099076, 0.98309025,
       0.98309025, 0.98309025, 0.98309025, 0.97071425, 0.97071425,
       0.97071425, 0.97071425, 0.95306962, 0.95306962, 0.95306962,
       0.95306962, 0.93003166, 0.93003166, 0.93003166, 0.93003166,
       0.90219494, 0.90219494, 0.90219494, 0.90219494, 0.8706268 ,
       0.8706268 , 0.8706268 , 0.8706268 , 0.83644936, 0.83644936,
       0.83644936, 0.83644936, 0.80070998, 0.80070998, 0.80070998,
       0.80070998, 0.76534052, 0.76534052, 0.76534052, 0.76534052,
       0.73160157, 0.73160157, 0.73160157, 0.73160157, 0.69941663,
       0.69941663, 0.69941663, 0.69941663, 0.66904404, 0.66904404,
       0.66904404, 0.66904404, 0.640412  , 0.640412  , 0.640412  ,
       0.640412  , 0.61609193, 0.61609193, 0.61609193, 0.61609193,
       0.59253553, 0.59253553, 0.59253553, 0.59253553, 0.57985082,
       0.57985082, 0.57985082, 0.57985082, 0.56807488, 0.56807488,
       0.56807488, 0.56807488, 0.56414175, 0.56414175, 0.56414175,
       0.56414175, 0.56447501, 0.56447501, 0.56447501, 0.56447501,
       0.56608222, 0.56608222, 0.56608222, 0.56608222, 0.5665232 ,
       0.5665232 , 0.5665232 , 0.5665232 , 0.56679339, 0.56679339,
       0.56679339, 0.56679339, 0.56717873, 0.56717873, 0.56717873,
       0.56717873, 0.5672011 , 0.5672011 , 0.5672011 , 0.5672011 ,
       0.56745182, 0.56745182, 0.56745182, 0.56745182, 0.57048317,
       0.57048317, 0.57048317, 0.57048317, 0.58763359, 0.58763359,
       0.58763359, 0.58763359, 0.65365865, 0.65365865, 0.65365865,
       0.65365865, 0.84867448, 0.84867448, 0.84867448, 0.84867448,
       1.31307086, 1.31307086, 1.31307086, 1.31307086, 2.21646901,
       2.21646901, 2.21646901, 2.21646901, 3.30517749, 3.30517749,
       3.30517749, 3.30517749, 3.62340282, 3.62340282, 3.62340282,
       3.62340282, 2.90056638, 2.90056638, 2.90056638, 2.90056638,
       1.33694683, 1.33694683, 1.33694683, 1.33694683, 1.0212743 ,
       1.0212743 , 1.0212743 , 1.0212743 , 1.00034859, 1.00034859,
       1.00034859, 1.00034859, 1.0000001 , 1.0000001 , 1.0000001 ,
       1.0000001 , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.03392125e-05, 1.03392125e-05, 1.03392125e-05, 1.03392125e-05,
       4.34400060e-05, 4.34400060e-05, 4.34400060e-05, 4.34400060e-05,
       1.51141917e-04, 1.51141917e-04, 1.51141917e-04, 1.51141917e-04,
       4.99195131e-04, 4.99195131e-04, 4.99195131e-04, 4.99195131e-04,
       1.55234811e-03, 1.55234811e-03, 1.55234811e-03, 1.55234811e-03,
       4.53464427e-03, 4.53464427e-03, 4.53464427e-03, 4.53464427e-03,
       1.24067118e-02, 1.24067118e-02, 1.24067118e-02, 1.24067118e-02,
       3.16898153e-02, 3.16898153e-02, 3.16898153e-02, 3.16898153e-02,
       7.53087747e-02, 7.53087747e-02, 7.53087747e-02, 7.53087747e-02,
       1.65962861e-01, 1.65962861e-01, 1.65962861e-01, 1.65962861e-01,
       3.38287464e-01, 3.38287464e-01, 3.38287464e-01, 3.38287464e-01,
       6.36985732e-01, 6.36985732e-01, 6.36985732e-01, 6.36985732e-01,
       1.10885693e+00, 1.10885693e+00, 1.10885693e+00, 1.10885693e+00,
       1.79021928e+00, 1.79021928e+00, 1.79021928e+00, 1.79021928e+00,
       2.69557108e+00, 2.69557108e+00, 2.69557108e+00, 2.69557108e+00,
       3.81416950e+00, 3.81416950e+00, 3.81416950e+00, 3.81416950e+00,
       5.11690819e+00, 5.11690819e+00, 5.11690819e+00, 5.11690819e+00,
       6.57068197e+00, 6.57068197e+00, 6.57068197e+00, 6.57068197e+00,
       8.14009276e+00, 8.14009276e+00, 8.14009276e+00, 8.14009276e+00,
       9.73476120e+00, 9.73476120e+00, 9.73476120e+00, 9.73476120e+00,
       1.13275023e+01, 1.13275023e+01, 1.13275023e+01, 1.13275023e+01,
       1.29006498e+01, 1.29006498e+01, 1.29006498e+01, 1.29006498e+01,
       1.44427973e+01, 1.44427973e+01, 1.44427973e+01, 1.44427973e+01,
       1.59276078e+01, 1.59276078e+01, 1.59276078e+01, 1.59276078e+01,
       1.73033647e+01, 1.73033647e+01, 1.73033647e+01, 1.73033647e+01,
       1.84940290e+01, 1.84940290e+01, 1.84940290e+01, 1.84940290e+01,
       1.93974938e+01, 1.93974938e+01, 1.93974938e+01, 1.93974938e+01,
       1.99500228e+01, 1.99500228e+01, 1.99500228e+01, 1.99500228e+01,
       2.01786156e+01, 2.01786156e+01, 2.01786156e+01, 2.01786156e+01,
       2.02141830e+01, 2.02141830e+01, 2.02141830e+01, 2.02141830e+01,
       2.01270312e+01, 2.01270312e+01, 2.01270312e+01, 2.01270312e+01,
       2.00438391e+01, 2.00438391e+01, 2.00438391e+01, 2.00438391e+01,
       2.00180478e+01, 2.00180478e+01, 2.00180478e+01, 2.00180478e+01,
       2.00116554e+01, 2.00116554e+01, 2.00116554e+01, 2.00116554e+01,
       2.00060169e+01, 2.00060169e+01, 2.00060169e+01, 2.00060169e+01,
       1.99957578e+01, 1.99957578e+01, 1.99957578e+01, 1.99957578e+01,
       1.99760299e+01, 1.99760299e+01, 1.99760299e+01, 1.99760299e+01,
       1.99495430e+01, 1.99495430e+01, 1.99495430e+01, 1.99495430e+01,
       1.99258351e+01, 1.99258351e+01, 1.99258351e+01, 1.99258351e+01,
       1.99068524e+01, 1.99068524e+01, 1.99068524e+01, 1.99068524e+01,
       1.98862615e+01, 1.98862615e+01, 1.98862615e+01, 1.98862615e+01,
       1.98134680e+01, 1.98134680e+01, 1.98134680e+01, 1.98134680e+01,
       1.94905556e+01, 1.94905556e+01, 1.94905556e+01, 1.94905556e+01,
       1.80230680e+01, 1.80230680e+01, 1.80230680e+01, 1.80230680e+01,
       1.26076173e+01, 1.26076173e+01, 1.26076173e+01, 1.26076173e+01,
       2.67311141e+00, 2.67311141e+00, 2.67311141e+00, 2.67311141e+00,
       5.14361403e-02, 5.14361403e-02, 5.14361403e-02, 5.14361403e-02,
       6.80950934e-05, 6.80950934e-05, 6.80950934e-05, 6.80950934e-05,
       1.13412667e-08, 1.13412667e-08, 1.13412667e-08, 1.13412667e-08,
       1.79486084e-12, 1.79486084e-12, 1.79486084e-12, 1.79486084e-12,
       2.73952290e-16, 2.73952290e-16, 2.73952290e-16, 2.73952290e-16,
       5.00064164e-20, 5.00064164e-20, 5.00064164e-20, 5.00064164e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
       9.99998375e+02, 9.99998375e+02, 9.99998375e+02, 9.99998375e+02,
       9.99994345e+02, 9.99994345e+02, 9.99994345e+02, 9.99994345e+02,
       9.99981322e+02, 9.99981322e+02, 9.99981322e+02, 9.99981322e+02,
       9.99941918e+02, 9.99941918e+02, 9.99941918e+02, 9.99941918e+02,
       9.99830343e+02, 9.99830343e+02, 9.99830343e+02, 9.99830343e+02,
       9.99535884e+02, 9.99535884e+02, 9.99535884e+02, 9.99535884e+02,
       9.98814928e+02, 9.98814928e+02, 9.98814928e+02, 9.98814928e+02,
       9.97185851e+02, 9.97185851e+02, 9.97185851e+02, 9.97185851e+02,
       9.93807795e+02, 9.93807795e+02, 9.93807795e+02, 9.93807795e+02,
       9.87414745e+02, 9.87414745e+02, 9.87414745e+02, 9.87414745e+02,
       9.76420200e+02, 9.76420200e+02, 9.76420200e+02, 9.76420200e+02,
       9.59272359e+02, 9.59272359e+02, 9.59272359e+02, 9.59272359e+02,
       9.34979017e+02, 9.34979017e+02, 9.34979017e+02, 9.34979017e+02,
       9.03531113e+02, 9.03531113e+02, 9.03531113e+02, 9.03531113e+02,
       8.65943868e+02, 8.65943868e+02, 8.65943868e+02, 8.65943868e+02,
       8.23870991e+02, 8.23870991e+02, 8.23870991e+02, 8.23870991e+02,
       7.78998721e+02, 7.78998721e+02, 7.78998721e+02, 7.78998721e+02,
       7.32829097e+02, 7.32829097e+02, 7.32829097e+02, 7.32829097e+02,
       6.87867667e+02, 6.87867667e+02, 6.87867667e+02, 6.87867667e+02,
       6.45811417e+02, 6.45811417e+02, 6.45811417e+02, 6.45811417e+02,
       6.06420020e+02, 6.06420020e+02, 6.06420020e+02, 6.06420020e+02,
       5.69812260e+02, 5.69812260e+02, 5.69812260e+02, 5.69812260e+02,
       5.36391612e+02, 5.36391612e+02, 5.36391612e+02, 5.36391612e+02,
       5.06909342e+02, 5.06909342e+02, 5.06909342e+02, 5.06909342e+02,
       4.82613586e+02, 4.82613586e+02, 4.82613586e+02, 4.82613586e+02,
       4.64771665e+02, 4.64771665e+02, 4.64771665e+02, 4.64771665e+02,
       4.54120136e+02, 4.54120136e+02, 4.54120136e+02, 4.54120136e+02,
       4.49846503e+02, 4.49846503e+02, 4.49846503e+02, 4.49846503e+02,
       4.49195989e+02, 4.49195989e+02, 4.49195989e+02, 4.49195989e+02,
       4.50838120e+02, 4.50838120e+02, 4.50838120e+02, 4.50838120e+02,
       4.52365430e+02, 4.52365430e+02, 4.52365430e+02, 4.52365430e+02,
       4.52826151e+02, 4.52826151e+02, 4.52826151e+02, 4.52826151e+02,
       4.53036969e+02, 4.53036969e+02, 4.53036969e+02, 4.53036969e+02,
       4.53180502e+02, 4.53180502e+02, 4.53180502e+02, 4.53180502e+02,
       4.53367904e+02, 4.53367904e+02, 4.53367904e+02, 4.53367904e+02,
       4.53682043e+02, 4.53682043e+02, 4.53682043e+02, 4.53682043e+02,
       4.54101255e+02, 4.54101255e+02, 4.54101255e+02, 4.54101255e+02,
       4.54550055e+02, 4.54550055e+02, 4.54550055e+02, 4.54550055e+02,
       4.55181873e+02, 4.55181873e+02, 4.55181873e+02, 4.55181873e+02,
       4.56088869e+02, 4.56088869e+02, 4.56088869e+02, 4.56088869e+02,
       4.55314517e+02, 4.55314517e+02, 4.55314517e+02, 4.55314517e+02,
       4.42432305e+02, 4.42432305e+02, 4.42432305e+02, 4.42432305e+02,
       3.73791360e+02, 3.73791360e+02, 3.73791360e+02, 3.73791360e+02,
       1.73331140e+02, 1.73331140e+02, 1.73331140e+02, 1.73331140e+02,
       1.42286314e+01, 1.42286314e+01, 1.42286314e+01, 1.42286314e+01,
       7.35026594e-02, 7.35026594e-02, 7.35026594e-02, 7.35026594e-02,
       1.00088839e-02, 1.00088839e-02, 1.00088839e-02, 1.00088839e-02,
       1.00000013e-02, 1.00000013e-02, 1.00000013e-02, 1.00000013e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999914, 0.99999914, 0.99999914, 0.99999914, 0.9999966 ,
       0.9999966 , 0.9999966 , 0.9999966 , 0.99998894, 0.99998894,
       0.99998894, 0.99998894, 0.99996579, 0.99996579, 0.99996579,
       0.99996579, 0.99990045, 0.99990045, 0.99990045, 0.99990045,
       0.99972809, 0.99972809, 0.99972809, 0.99972809, 0.99930503,
       0.99930503, 0.99930503, 0.99930503, 0.99834358, 0.99834358,
       0.99834358, 0.99834358, 0.99633101, 0.99633101, 0.99633101,
       0.99633101, 0.99247048, 0.99247048, 0.99247048, 0.99247048,
       0.98571275, 0.98571275, 0.98571275, 0.98571275, 0.97494122,
       0.97494122, 0.97494122, 0.97494122, 0.95929193, 0.95929193,
       0.95929193, 0.95929193, 0.93846719, 0.93846719, 0.93846719,
       0.93846719, 0.91285499, 0.91285499, 0.91285499, 0.91285499,
       0.88337065, 0.88337065, 0.88337065, 0.88337065, 0.85110869,
       0.85110869, 0.85110869, 0.85110869, 0.81698796, 0.81698796,
       0.81698796, 0.81698796, 0.78242051, 0.78242051, 0.78242051,
       0.78242051, 0.74907398, 0.74907398, 0.74907398, 0.74907398,
       0.7171757 , 0.7171757 , 0.7171757 , 0.7171757 , 0.68675454,
       0.68675454, 0.68675454, 0.68675454, 0.65817399, 0.65817399,
       0.65817399, 0.65817399, 0.63120015, 0.63120015, 0.63120015,
       0.63120015, 0.60905285, 0.60905285, 0.60905285, 0.60905285,
       0.58738819, 0.58738819, 0.58738819, 0.58738819, 0.57655812,
       0.57655812, 0.57655812, 0.57655812, 0.56731141, 0.56731141,
       0.56731141, 0.56731141, 0.5639553 , 0.5639553 , 0.5639553 ,
       0.5639553 , 0.56439893, 0.56439893, 0.56439893, 0.56439893,
       0.5666221 , 0.5666221 , 0.5666221 , 0.5666221 , 0.56689879,
       0.56689879, 0.56689879, 0.56689879, 0.56688439, 0.56688439,
       0.56688439, 0.56688439, 0.56712646, 0.56712646, 0.56712646,
       0.56712646, 0.56724753, 0.56724753, 0.56724753, 0.56724753,
       0.56747625, 0.56747625, 0.56747625, 0.56747625, 0.56936103,
       0.56936103, 0.56936103, 0.56936103, 0.58025147, 0.58025147,
       0.58025147, 0.58025147, 0.62459777, 0.62459777, 0.62459777,
       0.62459777, 0.76306356, 0.76306356, 0.76306356, 0.76306356,
       1.11089581, 1.11089581, 1.11089581, 1.11089581, 1.83047175,
       1.83047175, 1.83047175, 1.83047175, 2.96543117, 2.96543117,
       2.96543117, 2.96543117, 3.63638824, 3.63638824, 3.63638824,
       3.63638824, 3.47481596, 3.47481596, 3.47481596, 3.47481596,
       1.95403945, 1.95403945, 1.95403945, 1.95403945, 1.08283494,
       1.08283494, 1.08283494, 1.08283494, 1.00335988, 1.00335988,
       1.00335988, 1.00335988, 1.00000576, 1.00000576, 1.00000576,
       1.00000576, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.21524399e-05, 3.21524399e-05, 3.21524399e-05, 3.21524399e-05,
       1.27174228e-04, 1.27174228e-04, 1.27174228e-04, 1.27174228e-04,
       4.13952526e-04, 4.13952526e-04, 4.13952526e-04, 4.13952526e-04,
       1.28010235e-03, 1.28010235e-03, 1.28010235e-03, 1.28010235e-03,
       3.72494678e-03, 3.72494678e-03, 3.72494678e-03, 3.72494678e-03,
       1.01750372e-02, 1.01750372e-02, 1.01750372e-02, 1.01750372e-02,
       2.60100958e-02, 2.60100958e-02, 2.60100958e-02, 2.60100958e-02,
       6.20163885e-02, 6.20163885e-02, 6.20163885e-02, 6.20163885e-02,
       1.37474769e-01, 1.37474769e-01, 1.37474769e-01, 1.37474769e-01,
       2.82559370e-01, 2.82559370e-01, 2.82559370e-01, 2.82559370e-01,
       5.37624629e-01, 5.37624629e-01, 5.37624629e-01, 5.37624629e-01,
       9.47149548e-01, 9.47149548e-01, 9.47149548e-01, 9.47149548e-01,
       1.54878183e+00, 1.54878183e+00, 1.54878183e+00, 1.54878183e+00,
       2.36197526e+00, 2.36197526e+00, 2.36197526e+00, 2.36197526e+00,
       3.38252055e+00, 3.38252055e+00, 3.38252055e+00, 3.38252055e+00,
       4.58640867e+00, 4.58640867e+00, 4.58640867e+00, 4.58640867e+00,
       5.94121401e+00, 5.94121401e+00, 5.94121401e+00, 5.94121401e+00,
       7.41947260e+00, 7.41947260e+00, 7.41947260e+00, 7.41947260e+00,
       8.95560830e+00, 8.95560830e+00, 8.95560830e+00, 8.95560830e+00,
       1.04968275e+01, 1.04968275e+01, 1.04968275e+01, 1.04968275e+01,
       1.20259513e+01, 1.20259513e+01, 1.20259513e+01, 1.20259513e+01,
       1.35357208e+01, 1.35357208e+01, 1.35357208e+01, 1.35357208e+01,
       1.50098538e+01, 1.50098538e+01, 1.50098538e+01, 1.50098538e+01,
       1.64177832e+01, 1.64177832e+01, 1.64177832e+01, 1.64177832e+01,
       1.77019691e+01, 1.77019691e+01, 1.77019691e+01, 1.77019691e+01,
       1.87851353e+01, 1.87851353e+01, 1.87851353e+01, 1.87851353e+01,
       1.95738145e+01, 1.95738145e+01, 1.95738145e+01, 1.95738145e+01,
       2.00235953e+01, 2.00235953e+01, 2.00235953e+01, 2.00235953e+01,
       2.01873321e+01, 2.01873321e+01, 2.01873321e+01, 2.01873321e+01,
       2.01992370e+01, 2.01992370e+01, 2.01992370e+01, 2.01992370e+01,
       2.01017551e+01, 2.01017551e+01, 2.01017551e+01, 2.01017551e+01,
       2.00372744e+01, 2.00372744e+01, 2.00372744e+01, 2.00372744e+01,
       2.00157926e+01, 2.00157926e+01, 2.00157926e+01, 2.00157926e+01,
       2.00082959e+01, 2.00082959e+01, 2.00082959e+01, 2.00082959e+01,
       2.00024907e+01, 2.00024907e+01, 2.00024907e+01, 2.00024907e+01,
       1.99918498e+01, 1.99918498e+01, 1.99918498e+01, 1.99918498e+01,
       1.99718075e+01, 1.99718075e+01, 1.99718075e+01, 1.99718075e+01,
       1.99458177e+01, 1.99458177e+01, 1.99458177e+01, 1.99458177e+01,
       1.99210292e+01, 1.99210292e+01, 1.99210292e+01, 1.99210292e+01,
       1.98969554e+01, 1.98969554e+01, 1.98969554e+01, 1.98969554e+01,
       1.98826323e+01, 1.98826323e+01, 1.98826323e+01, 1.98826323e+01,
       1.98432269e+01, 1.98432269e+01, 1.98432269e+01, 1.98432269e+01,
       1.96844946e+01, 1.96844946e+01, 1.96844946e+01, 1.96844946e+01,
       1.89485092e+01, 1.89485092e+01, 1.89485092e+01, 1.89485092e+01,
       1.58676586e+01, 1.58676586e+01, 1.58676586e+01, 1.58676586e+01,
       7.25693697e+00, 7.25693697e+00, 7.25693697e+00, 7.25693697e+00,
       4.34921777e-01, 4.34921777e-01, 4.34921777e-01, 4.34921777e-01,
       2.27948590e-03, 2.27948590e-03, 2.27948590e-03, 2.27948590e-03,
       6.88627382e-07, 6.88627382e-07, 6.88627382e-07, 6.88627382e-07,
       1.03089844e-10, 1.03089844e-10, 1.03089844e-10, 1.03089844e-10,
       1.60056279e-14, 1.60056279e-14, 1.60056279e-14, 1.60056279e-14,
       2.53568291e-18, 2.53568291e-18, 2.53568291e-18, 2.53568291e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99998797e+02, 9.99998797e+02, 9.99998797e+02, 9.99998797e+02,
       9.99995242e+02, 9.99995242e+02, 9.99995242e+02, 9.99995242e+02,
       9.99984511e+02, 9.99984511e+02, 9.99984511e+02, 9.99984511e+02,
       9.99952104e+02, 9.99952104e+02, 9.99952104e+02, 9.99952104e+02,
       9.99860634e+02, 9.99860634e+02, 9.99860634e+02, 9.99860634e+02,
       9.99619353e+02, 9.99619353e+02, 9.99619353e+02, 9.99619353e+02,
       9.99027231e+02, 9.99027231e+02, 9.99027231e+02, 9.99027231e+02,
       9.97682034e+02, 9.97682034e+02, 9.97682034e+02, 9.97682034e+02,
       9.94868221e+02, 9.94868221e+02, 9.94868221e+02, 9.94868221e+02,
       9.89478098e+02, 9.89478098e+02, 9.89478098e+02, 9.89478098e+02,
       9.80065169e+02, 9.80065169e+02, 9.80065169e+02, 9.80065169e+02,
       9.65118065e+02, 9.65118065e+02, 9.65118065e+02, 9.65118065e+02,
       9.43523368e+02, 9.43523368e+02, 9.43523368e+02, 9.43523368e+02,
       9.15006674e+02, 9.15006674e+02, 9.15006674e+02, 9.15006674e+02,
       8.80278342e+02, 8.80278342e+02, 8.80278342e+02, 8.80278342e+02,
       8.40775285e+02, 8.40775285e+02, 8.40775285e+02, 8.40775285e+02,
       7.98145941e+02, 7.98145941e+02, 7.98145941e+02, 7.98145941e+02,
       7.53755098e+02, 7.53755098e+02, 7.53755098e+02, 7.53755098e+02,
       7.09452587e+02, 7.09452587e+02, 7.09452587e+02, 7.09452587e+02,
       6.67485676e+02, 6.67485676e+02, 6.67485676e+02, 6.67485676e+02,
       6.28046689e+02, 6.28046689e+02, 6.28046689e+02, 6.28046689e+02,
       5.91112375e+02, 5.91112375e+02, 5.91112375e+02, 5.91112375e+02,
       5.56843157e+02, 5.56843157e+02, 5.56843157e+02, 5.56843157e+02,
       5.25742971e+02, 5.25742971e+02, 5.25742971e+02, 5.25742971e+02,
       4.98632093e+02, 4.98632093e+02, 4.98632093e+02, 4.98632093e+02,
       4.76795490e+02, 4.76795490e+02, 4.76795490e+02, 4.76795490e+02,
       4.61393393e+02, 4.61393393e+02, 4.61393393e+02, 4.61393393e+02,
       4.52740843e+02, 4.52740843e+02, 4.52740843e+02, 4.52740843e+02,
       4.49648853e+02, 4.49648853e+02, 4.49648853e+02, 4.49648853e+02,
       4.49459232e+02, 4.49459232e+02, 4.49459232e+02, 4.49459232e+02,
       4.51321023e+02, 4.51321023e+02, 4.51321023e+02, 4.51321023e+02,
       4.52531111e+02, 4.52531111e+02, 4.52531111e+02, 4.52531111e+02,
       4.52874067e+02, 4.52874067e+02, 4.52874067e+02, 4.52874067e+02,
       4.53039653e+02, 4.53039653e+02, 4.53039653e+02, 4.53039653e+02,
       4.53200233e+02, 4.53200233e+02, 4.53200233e+02, 4.53200233e+02,
       4.53441075e+02, 4.53441075e+02, 4.53441075e+02, 4.53441075e+02,
       4.53821299e+02, 4.53821299e+02, 4.53821299e+02, 4.53821299e+02,
       4.54260100e+02, 4.54260100e+02, 4.54260100e+02, 4.54260100e+02,
       4.54669989e+02, 4.54669989e+02, 4.54669989e+02, 4.54669989e+02,
       4.55190229e+02, 4.55190229e+02, 4.55190229e+02, 4.55190229e+02,
       4.56011617e+02, 4.56011617e+02, 4.56011617e+02, 4.56011617e+02,
       4.56384643e+02, 4.56384643e+02, 4.56384643e+02, 4.56384643e+02,
       4.51490886e+02, 4.51490886e+02, 4.51490886e+02, 4.51490886e+02,
       4.17208973e+02, 4.17208973e+02, 4.17208973e+02, 4.17208973e+02,
       2.82109903e+02, 2.82109903e+02, 2.82109903e+02, 2.82109903e+02,
       6.13627160e+01, 6.13627160e+01, 6.13627160e+01, 6.13627160e+01,
       1.21031418e+00, 1.21031418e+00, 1.21031418e+00, 1.21031418e+00,
       1.08068264e-02, 1.08068264e-02, 1.08068264e-02, 1.08068264e-02,
       1.00000814e-02, 1.00000814e-02, 1.00000814e-02, 1.00000814e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999752, 0.99999752, 0.99999752, 0.99999752, 0.99999075,
       0.99999075, 0.99999075, 0.99999075, 0.99997179, 0.99997179,
       0.99997179, 0.99997179, 0.99991817, 0.99991817, 0.99991817,
       0.99991817, 0.99977683, 0.99977683, 0.99977683, 0.99977683,
       0.99942915, 0.99942915, 0.99942915, 0.99942915, 0.99863505,
       0.99863505, 0.99863505, 0.99863505, 0.99695933, 0.99695933,
       0.99695933, 0.99695933, 0.9937087 , 0.9937087 , 0.9937087 ,
       0.9937087 , 0.98793721, 0.98793721, 0.98793721, 0.98793721,
       0.9785829 , 0.9785829 , 0.9785829 , 0.9785829 , 0.96474136,
       0.96474136, 0.96474136, 0.96474136, 0.94597339, 0.94597339,
       0.94597339, 0.94597339, 0.92247486, 0.92247486, 0.92247486,
       0.92247486, 0.89499831, 0.89499831, 0.89499831, 0.89499831,
       0.86456812, 0.86456812, 0.86456812, 0.86456812, 0.83212124,
       0.83212124, 0.83212124, 0.83212124, 0.79863526, 0.79863526,
       0.79863526, 0.79863526, 0.76573988, 0.76573988, 0.76573988,
       0.76573988, 0.73420588, 0.73420588, 0.73420588, 0.73420588,
       0.703996  , 0.703996  , 0.703996  , 0.703996  , 0.67517948,
       0.67517948, 0.67517948, 0.67517948, 0.64829444, 0.64829444,
       0.64829444, 0.64829444, 0.62286674, 0.62286674, 0.62286674,
       0.62286674, 0.60281401, 0.60281401, 0.60281401, 0.60281401,
       0.58304717, 0.58304717, 0.58304717, 0.58304717, 0.5737585 ,
       0.5737585 , 0.5737585 , 0.5737585 , 0.56680383, 0.56680383,
       0.56680383, 0.56680383, 0.56406554, 0.56406554, 0.56406554,
       0.56406554, 0.56445674, 0.56445674, 0.56445674, 0.56445674,
       0.56689479, 0.56689479, 0.56689479, 0.56689479, 0.56721005,
       0.56721005, 0.56721005, 0.56721005, 0.56705228, 0.56705228,
       0.56705228, 0.56705228, 0.56711649, 0.56711649, 0.56711649,
       0.56711649, 0.5672706 , 0.5672706 , 0.5672706 , 0.5672706 ,
       0.56752476, 0.56752476, 0.56752476, 0.56752476, 0.5687617 ,
       0.5687617 , 0.5687617 , 0.5687617 , 0.5756626 , 0.5756626 ,
       0.5756626 , 0.5756626 , 0.60517122, 0.60517122, 0.60517122,
       0.60517122, 0.70225684, 0.70225684, 0.70225684, 0.70225684,
       0.95916964, 0.95916964, 0.95916964, 0.95916964, 1.52074205,
       1.52074205, 1.52074205, 1.52074205, 2.53366254, 2.53366254,
       2.53366254, 2.53366254, 3.51709808, 3.51709808, 3.51709808,
       3.51709808, 3.71733154, 3.71733154, 3.71733154, 3.71733154,
       2.81684948, 2.81684948, 2.81684948, 2.81684948, 1.27928976,
       1.27928976, 1.27928976, 1.27928976, 1.01706333, 1.01706333,
       1.01706333, 1.01706333, 1.00022545, 1.00022545, 1.00022545,
       1.00022545, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([9.27169916e-05, 9.27169916e-05, 9.27169916e-05, 9.27169916e-05,
       3.45942523e-04, 3.45942523e-04, 3.45942523e-04, 3.45942523e-04,
       1.05548283e-03, 1.05548283e-03, 1.05548283e-03, 1.05548283e-03,
       3.06180591e-03, 3.06180591e-03, 3.06180591e-03, 3.06180591e-03,
       8.35099130e-03, 8.35099130e-03, 8.35099130e-03, 8.35099130e-03,
       2.13637129e-02, 2.13637129e-02, 2.13637129e-02, 2.13637129e-02,
       5.10980585e-02, 5.10980585e-02, 5.10980585e-02, 5.10980585e-02,
       1.13904438e-01, 1.13904438e-01, 1.13904438e-01, 1.13904438e-01,
       2.35977350e-01, 2.35977350e-01, 2.35977350e-01, 2.35977350e-01,
       4.53511059e-01, 4.53511059e-01, 4.53511059e-01, 4.53511059e-01,
       8.08290869e-01, 8.08290869e-01, 8.08290869e-01, 8.08290869e-01,
       1.33838461e+00, 1.33838461e+00, 1.33838461e+00, 1.33838461e+00,
       2.06718875e+00, 2.06718875e+00, 2.06718875e+00, 2.06718875e+00,
       2.99650453e+00, 2.99650453e+00, 2.99650453e+00, 2.99650453e+00,
       4.10776410e+00, 4.10776410e+00, 4.10776410e+00, 4.10776410e+00,
       5.37093252e+00, 5.37093252e+00, 5.37093252e+00, 5.37093252e+00,
       6.75756651e+00, 6.75756651e+00, 6.75756651e+00, 6.75756651e+00,
       8.23003026e+00, 8.23003026e+00, 8.23003026e+00, 8.23003026e+00,
       9.71810036e+00, 9.71810036e+00, 9.71810036e+00, 9.71810036e+00,
       1.12035998e+01, 1.12035998e+01, 1.12035998e+01, 1.12035998e+01,
       1.26747396e+01, 1.26747396e+01, 1.26747396e+01, 1.26747396e+01,
       1.41241052e+01, 1.41241052e+01, 1.41241052e+01, 1.41241052e+01,
       1.55324405e+01, 1.55324405e+01, 1.55324405e+01, 1.55324405e+01,
       1.68648788e+01, 1.68648788e+01, 1.68648788e+01, 1.68648788e+01,
       1.80587444e+01, 1.80587444e+01, 1.80587444e+01, 1.80587444e+01,
       1.90363513e+01, 1.90363513e+01, 1.90363513e+01, 1.90363513e+01,
       1.97169663e+01, 1.97169663e+01, 1.97169663e+01, 1.97169663e+01,
       2.00776225e+01, 2.00776225e+01, 2.00776225e+01, 2.00776225e+01,
       2.01888597e+01, 2.01888597e+01, 2.01888597e+01, 2.01888597e+01,
       2.01801125e+01, 2.01801125e+01, 2.01801125e+01, 2.01801125e+01,
       2.00812778e+01, 2.00812778e+01, 2.00812778e+01, 2.00812778e+01,
       2.00318261e+01, 2.00318261e+01, 2.00318261e+01, 2.00318261e+01,
       2.00146648e+01, 2.00146648e+01, 2.00146648e+01, 2.00146648e+01,
       2.00061042e+01, 2.00061042e+01, 2.00061042e+01, 2.00061042e+01,
       1.99986959e+01, 1.99986959e+01, 1.99986959e+01, 1.99986959e+01,
       1.99863432e+01, 1.99863432e+01, 1.99863432e+01, 1.99863432e+01,
       1.99656179e+01, 1.99656179e+01, 1.99656179e+01, 1.99656179e+01,
       1.99415041e+01, 1.99415041e+01, 1.99415041e+01, 1.99415041e+01,
       1.99167435e+01, 1.99167435e+01, 1.99167435e+01, 1.99167435e+01,
       1.98912290e+01, 1.98912290e+01, 1.98912290e+01, 1.98912290e+01,
       1.98732047e+01, 1.98732047e+01, 1.98732047e+01, 1.98732047e+01,
       1.98526648e+01, 1.98526648e+01, 1.98526648e+01, 1.98526648e+01,
       1.97731261e+01, 1.97731261e+01, 1.97731261e+01, 1.97731261e+01,
       1.94093352e+01, 1.94093352e+01, 1.94093352e+01, 1.94093352e+01,
       1.77776801e+01, 1.77776801e+01, 1.77776801e+01, 1.77776801e+01,
       1.19820754e+01, 1.19820754e+01, 1.19820754e+01, 1.19820754e+01,
       2.16019726e+00, 2.16019726e+00, 2.16019726e+00, 2.16019726e+00,
       3.53014742e-02, 3.53014742e-02, 3.53014742e-02, 3.53014742e-02,
       3.82045712e-05, 3.82045712e-05, 3.82045712e-05, 3.82045712e-05,
       6.27267874e-09, 6.27267874e-09, 6.27267874e-09, 6.27267874e-09,
       9.86981788e-13, 9.86981788e-13, 9.86981788e-13, 9.86981788e-13,
       1.50628633e-16, 1.50628633e-16, 1.50628633e-16, 1.50628633e-16,
       1.80645712e-20, 1.80645712e-20, 1.80645712e-20, 1.80645712e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99996531e+02, 9.99996531e+02, 9.99996531e+02, 9.99996531e+02,
       9.99987056e+02, 9.99987056e+02, 9.99987056e+02, 9.99987056e+02,
       9.99960508e+02, 9.99960508e+02, 9.99960508e+02, 9.99960508e+02,
       9.99885444e+02, 9.99885444e+02, 9.99885444e+02, 9.99885444e+02,
       9.99687580e+02, 9.99687580e+02, 9.99687580e+02, 9.99687580e+02,
       9.99200940e+02, 9.99200940e+02, 9.99200940e+02, 9.99200940e+02,
       9.98089767e+02, 9.98089767e+02, 9.98089767e+02, 9.98089767e+02,
       9.95746369e+02, 9.95746369e+02, 9.95746369e+02, 9.95746369e+02,
       9.91205796e+02, 9.91205796e+02, 9.91205796e+02, 9.91205796e+02,
       9.83160321e+02, 9.83160321e+02, 9.83160321e+02, 9.83160321e+02,
       9.70163089e+02, 9.70163089e+02, 9.70163089e+02, 9.70163089e+02,
       9.51025501e+02, 9.51025501e+02, 9.51025501e+02, 9.51025501e+02,
       9.25253700e+02, 9.25253700e+02, 9.25253700e+02, 9.25253700e+02,
       8.93272718e+02, 8.93272718e+02, 8.93272718e+02, 8.93272718e+02,
       8.56285555e+02, 8.56285555e+02, 8.56285555e+02, 8.56285555e+02,
       8.15844374e+02, 8.15844374e+02, 8.15844374e+02, 8.15844374e+02,
       7.73342136e+02, 7.73342136e+02, 7.73342136e+02, 7.73342136e+02,
       7.30129913e+02, 7.30129913e+02, 7.30129913e+02, 7.30129913e+02,
       6.88352942e+02, 6.88352942e+02, 6.88352942e+02, 6.88352942e+02,
       6.49007221e+02, 6.49007221e+02, 6.49007221e+02, 6.49007221e+02,
       6.11939746e+02, 6.11939746e+02, 6.11939746e+02, 6.11939746e+02,
       5.77224777e+02, 5.77224777e+02, 5.77224777e+02, 5.77224777e+02,
       5.45110602e+02, 5.45110602e+02, 5.45110602e+02, 5.45110602e+02,
       5.16188887e+02, 5.16188887e+02, 5.16188887e+02, 5.16188887e+02,
       4.91335604e+02, 4.91335604e+02, 4.91335604e+02, 4.91335604e+02,
       4.71814716e+02, 4.71814716e+02, 4.71814716e+02, 4.71814716e+02,
       4.58644756e+02, 4.58644756e+02, 4.58644756e+02, 4.58644756e+02,
       4.51748779e+02, 4.51748779e+02, 4.51748779e+02, 4.51748779e+02,
       4.49620320e+02, 4.49620320e+02, 4.49620320e+02, 4.49620320e+02,
       4.49793173e+02, 4.49793173e+02, 4.49793173e+02, 4.49793173e+02,
       4.51686270e+02, 4.51686270e+02, 4.51686270e+02, 4.51686270e+02,
       4.52653139e+02, 4.52653139e+02, 4.52653139e+02, 4.52653139e+02,
       4.52934776e+02, 4.52934776e+02, 4.52934776e+02, 4.52934776e+02,
       4.53069098e+02, 4.53069098e+02, 4.53069098e+02, 4.53069098e+02,
       4.53226281e+02, 4.53226281e+02, 4.53226281e+02, 4.53226281e+02,
       4.53501144e+02, 4.53501144e+02, 4.53501144e+02, 4.53501144e+02,
       4.53932351e+02, 4.53932351e+02, 4.53932351e+02, 4.53932351e+02,
       4.54403842e+02, 4.54403842e+02, 4.54403842e+02, 4.54403842e+02,
       4.54828470e+02, 4.54828470e+02, 4.54828470e+02, 4.54828470e+02,
       4.55256571e+02, 4.55256571e+02, 4.55256571e+02, 4.55256571e+02,
       4.55891222e+02, 4.55891222e+02, 4.55891222e+02, 4.55891222e+02,
       4.56695880e+02, 4.56695880e+02, 4.56695880e+02, 4.56695880e+02,
       4.55303353e+02, 4.55303353e+02, 4.55303353e+02, 4.55303353e+02,
       4.39632542e+02, 4.39632542e+02, 4.39632542e+02, 4.39632542e+02,
       3.62585344e+02, 3.62585344e+02, 3.62585344e+02, 3.62585344e+02,
       1.55123980e+02, 1.55123980e+02, 1.55123980e+02, 1.55123980e+02,
       1.06526829e+01, 1.06526829e+01, 1.06526829e+01, 1.06526829e+01,
       4.72581949e-02, 4.72581949e-02, 4.72581949e-02, 4.72581949e-02,
       1.00047111e-02, 1.00047111e-02, 1.00047111e-02, 1.00047111e-02,
       1.00000007e-02, 1.00000007e-02, 1.00000007e-02, 1.00000007e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999334, 0.99999334, 0.99999334, 0.99999334, 0.99997652,
       0.99997652, 0.99997652, 0.99997652, 0.99993274, 0.99993274,
       0.99993274, 0.99993274, 0.9998167 , 0.9998167 , 0.9998167 ,
       0.9998167 , 0.9995308 , 0.9995308 , 0.9995308 , 0.9995308 ,
       0.9988747 , 0.9988747 , 0.9988747 , 0.9988747 , 0.99747962,
       0.99747962, 0.99747962, 0.99747962, 0.99474458, 0.99474458,
       0.99474458, 0.99474458, 0.98982255, 0.98982255, 0.98982255,
       0.98982255, 0.98171633, 0.98171633, 0.98171633, 0.98171633,
       0.96950664, 0.96950664, 0.96950664, 0.96950664, 0.95264288,
       0.95264288, 0.95264288, 0.95264288, 0.93114717, 0.93114717,
       0.93114717, 0.93114717, 0.90560556, 0.90560556, 0.90560556,
       0.90560556, 0.8769476 , 0.8769476 , 0.8769476 , 0.8769476 ,
       0.8461295 , 0.8461295 , 0.8461295 , 0.8461295 , 0.81392176,
       0.81392176, 0.81392176, 0.81392176, 0.78165473, 0.78165473,
       0.78165473, 0.78165473, 0.75050172, 0.75050172, 0.75050172,
       0.75050172, 0.72057659, 0.72057659, 0.72057659, 0.72057659,
       0.69190945, 0.69190945, 0.69190945, 0.69190945, 0.66457344,
       0.66457344, 0.66457344, 0.66457344, 0.63931001, 0.63931001,
       0.63931001, 0.63931001, 0.61533571, 0.61533571, 0.61533571,
       0.61533571, 0.59728585, 0.59728585, 0.59728585, 0.59728585,
       0.57944602, 0.57944602, 0.57944602, 0.57944602, 0.57141549,
       0.57141549, 0.57141549, 0.57141549, 0.56646332, 0.56646332,
       0.56646332, 0.56646332, 0.56429638, 0.56429638, 0.56429638,
       0.56429638, 0.56474556, 0.56474556, 0.56474556, 0.56474556,
       0.56696375, 0.56696375, 0.56696375, 0.56696375, 0.56741743,
       0.56741743, 0.56741743, 0.56741743, 0.5672394 , 0.5672394 ,
       0.5672394 , 0.5672394 , 0.56719598, 0.56719598, 0.56719598,
       0.56719598, 0.56730067, 0.56730067, 0.56730067, 0.56730067,
       0.56757971, 0.56757971, 0.56757971, 0.56757971, 0.5684633 ,
       0.5684633 , 0.5684633 , 0.5684633 , 0.57284684, 0.57284684,
       0.57284684, 0.57284684, 0.59231821, 0.59231821, 0.59231821,
       0.59231821, 0.6596568 , 0.6596568 , 0.6596568 , 0.6596568 ,
       0.84699717, 0.84699717, 0.84699717, 0.84699717, 1.27785893,
       1.27785893, 1.27785893, 1.27785893, 2.10551451, 2.10551451,
       2.10551451, 2.10551451, 3.24550952, 3.24550952, 3.24550952,
       3.24550952, 3.77306813, 3.77306813, 3.77306813, 3.77306813,
       3.47838258, 3.47838258, 3.47838258, 3.47838258, 1.83959453,
       1.83959453, 1.83959453, 1.83959453, 1.0682824 , 1.0682824 ,
       1.0682824 , 1.0682824 , 1.00250794, 1.00250794, 1.00250794,
       1.00250794, 1.00000304, 1.00000304, 1.00000304, 1.00000304,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.49214926e-04, 2.49214926e-04, 2.49214926e-04, 2.49214926e-04,
       8.78604657e-04, 8.78604657e-04, 8.78604657e-04, 8.78604657e-04,
       2.51662102e-03, 2.51662102e-03, 2.51662102e-03, 2.51662102e-03,
       6.85892762e-03, 6.85892762e-03, 6.85892762e-03, 6.85892762e-03,
       1.75588961e-02, 1.75588961e-02, 1.75588961e-02, 1.75588961e-02,
       4.21228901e-02, 4.21228901e-02, 4.21228901e-02, 4.21228901e-02,
       9.43950927e-02, 9.43950927e-02, 9.43950927e-02, 9.43950927e-02,
       1.97042335e-01, 1.97042335e-01, 1.97042335e-01, 1.97042335e-01,
       3.82340085e-01, 3.82340085e-01, 3.82340085e-01, 3.82340085e-01,
       6.89147758e-01, 6.89147758e-01, 6.89147758e-01, 6.89147758e-01,
       1.15519736e+00, 1.15519736e+00, 1.15519736e+00, 1.15519736e+00,
       1.80686376e+00, 1.80686376e+00, 1.80686376e+00, 1.80686376e+00,
       2.65131500e+00, 2.65131500e+00, 2.65131500e+00, 2.65131500e+00,
       3.67550739e+00, 3.67550739e+00, 3.67550739e+00, 3.67550739e+00,
       4.85271275e+00, 4.85271275e+00, 4.85271275e+00, 4.85271275e+00,
       6.15350432e+00, 6.15350432e+00, 6.15350432e+00, 6.15350432e+00,
       7.55357680e+00, 7.55357680e+00, 7.55357680e+00, 7.55357680e+00,
       8.98941000e+00, 8.98941000e+00, 8.98941000e+00, 8.98941000e+00,
       1.04303820e+01, 1.04303820e+01, 1.04303820e+01, 1.04303820e+01,
       1.18617350e+01, 1.18617350e+01, 1.18617350e+01, 1.18617350e+01,
       1.32783330e+01, 1.32783330e+01, 1.32783330e+01, 1.32783330e+01,
       1.46700989e+01, 1.46700989e+01, 1.46700989e+01, 1.46700989e+01,
       1.60141500e+01, 1.60141500e+01, 1.60141500e+01, 1.60141500e+01,
       1.72717577e+01, 1.72717577e+01, 1.72717577e+01, 1.72717577e+01,
       1.83764937e+01, 1.83764937e+01, 1.83764937e+01, 1.83764937e+01,
       1.92517132e+01, 1.92517132e+01, 1.92517132e+01, 1.92517132e+01,
       1.98312363e+01, 1.98312363e+01, 1.98312363e+01, 1.98312363e+01,
       2.01141790e+01, 2.01141790e+01, 2.01141790e+01, 2.01141790e+01,
       2.01871661e+01, 2.01871661e+01, 2.01871661e+01, 2.01871661e+01,
       2.01587304e+01, 2.01587304e+01, 2.01587304e+01, 2.01587304e+01,
       2.00649247e+01, 2.00649247e+01, 2.00649247e+01, 2.00649247e+01,
       2.00267116e+01, 2.00267116e+01, 2.00267116e+01, 2.00267116e+01,
       2.00134137e+01, 2.00134137e+01, 2.00134137e+01, 2.00134137e+01,
       2.00048366e+01, 2.00048366e+01, 2.00048366e+01, 2.00048366e+01,
       1.99955344e+01, 1.99955344e+01, 1.99955344e+01, 1.99955344e+01,
       1.99804744e+01, 1.99804744e+01, 1.99804744e+01, 1.99804744e+01,
       1.99582608e+01, 1.99582608e+01, 1.99582608e+01, 1.99582608e+01,
       1.99352201e+01, 1.99352201e+01, 1.99352201e+01, 1.99352201e+01,
       1.99120283e+01, 1.99120283e+01, 1.99120283e+01, 1.99120283e+01,
       1.98878907e+01, 1.98878907e+01, 1.98878907e+01, 1.98878907e+01,
       1.98653154e+01, 1.98653154e+01, 1.98653154e+01, 1.98653154e+01,
       1.98516094e+01, 1.98516094e+01, 1.98516094e+01, 1.98516094e+01,
       1.98100006e+01, 1.98100006e+01, 1.98100006e+01, 1.98100006e+01,
       1.96316470e+01, 1.96316470e+01, 1.96316470e+01, 1.96316470e+01,
       1.88041286e+01, 1.88041286e+01, 1.88041286e+01, 1.88041286e+01,
       1.54317797e+01, 1.54317797e+01, 1.54317797e+01, 1.54317797e+01,
       6.46630891e+00, 6.46630891e+00, 6.46630891e+00, 6.46630891e+00,
       3.26471041e-01, 3.26471041e-01, 3.26471041e-01, 3.26471041e-01,
       1.39752195e-03, 1.39752195e-03, 1.39752195e-03, 1.39752195e-03,
       3.61410681e-07, 3.61410681e-07, 3.61410681e-07, 3.61410681e-07,
       5.50928989e-11, 5.50928989e-11, 5.50928989e-11, 5.50928989e-11,
       8.73446544e-15, 8.73446544e-15, 8.73446544e-15, 8.73446544e-15,
       1.37689406e-18, 1.37689406e-18, 1.37689406e-18, 1.37689406e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99990675e+02, 9.99990675e+02, 9.99990675e+02, 9.99990675e+02,
       9.99967126e+02, 9.99967126e+02, 9.99967126e+02, 9.99967126e+02,
       9.99905841e+02, 9.99905841e+02, 9.99905841e+02, 9.99905841e+02,
       9.99743393e+02, 9.99743393e+02, 9.99743393e+02, 9.99743393e+02,
       9.99343207e+02, 9.99343207e+02, 9.99343207e+02, 9.99343207e+02,
       9.98425049e+02, 9.98425049e+02, 9.98425049e+02, 9.98425049e+02,
       9.96473752e+02, 9.96473752e+02, 9.96473752e+02, 9.96473752e+02,
       9.92651960e+02, 9.92651960e+02, 9.92651960e+02, 9.92651960e+02,
       9.85786061e+02, 9.85786061e+02, 9.85786061e+02, 9.85786061e+02,
       9.74510522e+02, 9.74510522e+02, 9.74510522e+02, 9.74510522e+02,
       9.57600381e+02, 9.57600381e+02, 9.57600381e+02, 9.57600381e+02,
       9.34386650e+02, 9.34386650e+02, 9.34386650e+02, 9.34386650e+02,
       9.05034576e+02, 9.05034576e+02, 9.05034576e+02, 9.05034576e+02,
       8.70506126e+02, 8.70506126e+02, 8.70506126e+02, 8.70506126e+02,
       8.32221605e+02, 8.32221605e+02, 8.32221605e+02, 8.32221605e+02,
       7.91601867e+02, 7.91601867e+02, 7.91601867e+02, 7.91601867e+02,
       7.49771930e+02, 7.49771930e+02, 7.49771930e+02, 7.49771930e+02,
       7.08448789e+02, 7.08448789e+02, 7.08448789e+02, 7.08448789e+02,
       6.69249654e+02, 6.69249654e+02, 6.69249654e+02, 6.69249654e+02,
       6.32199855e+02, 6.32199855e+02, 6.32199855e+02, 6.32199855e+02,
       5.97271856e+02, 5.97271856e+02, 5.97271856e+02, 5.97271856e+02,
       5.64593117e+02, 5.64593117e+02, 5.64593117e+02, 5.64593117e+02,
       5.34481735e+02, 5.34481735e+02, 5.34481735e+02, 5.34481735e+02,
       5.07617179e+02, 5.07617179e+02, 5.07617179e+02, 5.07617179e+02,
       4.84923891e+02, 4.84923891e+02, 4.84923891e+02, 4.84923891e+02,
       4.67588272e+02, 4.67588272e+02, 4.67588272e+02, 4.67588272e+02,
       4.56440880e+02, 4.56440880e+02, 4.56440880e+02, 4.56440880e+02,
       4.51073579e+02, 4.51073579e+02, 4.51073579e+02, 4.51073579e+02,
       4.49670476e+02, 4.49670476e+02, 4.49670476e+02, 4.49670476e+02,
       4.50197414e+02, 4.50197414e+02, 4.50197414e+02, 4.50197414e+02,
       4.51964568e+02, 4.51964568e+02, 4.51964568e+02, 4.51964568e+02,
       4.52734660e+02, 4.52734660e+02, 4.52734660e+02, 4.52734660e+02,
       4.52988476e+02, 4.52988476e+02, 4.52988476e+02, 4.52988476e+02,
       4.53122020e+02, 4.53122020e+02, 4.53122020e+02, 4.53122020e+02,
       4.53277355e+02, 4.53277355e+02, 4.53277355e+02, 4.53277355e+02,
       4.53570948e+02, 4.53570948e+02, 4.53570948e+02, 4.53570948e+02,
       4.54027799e+02, 4.54027799e+02, 4.54027799e+02, 4.54027799e+02,
       4.54514822e+02, 4.54514822e+02, 4.54514822e+02, 4.54514822e+02,
       4.54967633e+02, 4.54967633e+02, 4.54967633e+02, 4.54967633e+02,
       4.55383145e+02, 4.55383145e+02, 4.55383145e+02, 4.55383145e+02,
       4.55885058e+02, 4.55885058e+02, 4.55885058e+02, 4.55885058e+02,
       4.56660485e+02, 4.56660485e+02, 4.56660485e+02, 4.56660485e+02,
       4.56707224e+02, 4.56707224e+02, 4.56707224e+02, 4.56707224e+02,
       4.50332485e+02, 4.50332485e+02, 4.50332485e+02, 4.50332485e+02,
       4.10745038e+02, 4.10745038e+02, 4.10745038e+02, 4.10745038e+02,
       2.64438188e+02, 2.64438188e+02, 2.64438188e+02, 2.64438188e+02,
       5.04920492e+01, 5.04920492e+01, 5.04920492e+01, 5.04920492e+01,
       8.21200453e-01, 8.21200453e-01, 8.21200453e-01, 8.21200453e-01,
       1.04110586e-02, 1.04110586e-02, 1.04110586e-02, 1.04110586e-02,
       1.00000427e-02, 1.00000427e-02, 1.00000427e-02, 1.00000427e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998324, 0.99998324, 0.99998324, 0.99998324, 0.99994409,
       0.99994409, 0.99994409, 0.99994409, 0.99984947, 0.99984947,
       0.99984947, 0.99984947, 0.99961409, 0.99961409, 0.99961409,
       0.99961409, 0.99907186, 0.99907186, 0.99907186, 0.99907186,
       0.99791058, 0.99791058, 0.99791058, 0.99791058, 0.99561098,
       0.99561098, 0.99561098, 0.99561098, 0.99141916, 0.99141916,
       0.99141916, 0.99141916, 0.98440893, 0.98440893, 0.98440893,
       0.98440893, 0.97366694, 0.97366694, 0.97366694, 0.97366694,
       0.95855926, 0.95855926, 0.95855926, 0.95855926, 0.93895505,
       0.93895505, 0.93895505, 0.93895505, 0.91527616, 0.91527616,
       0.91527616, 0.91527616, 0.88833959, 0.88833959, 0.88833959,
       0.88833959, 0.85907786, 0.85907786, 0.85907786, 0.85907786,
       0.82825782, 0.82825782, 0.82825782, 0.82825782, 0.79682367,
       0.79682367, 0.79682367, 0.79682367, 0.7660904 , 0.7660904 ,
       0.7660904 , 0.7660904 , 0.73649342, 0.73649342, 0.73649342,
       0.73649342, 0.7080382 , 0.7080382 , 0.7080382 , 0.7080382 ,
       0.68079751, 0.68079751, 0.68079751, 0.68079751, 0.65483468,
       0.65483468, 0.65483468, 0.65483468, 0.63114051, 0.63114051,
       0.63114051, 0.63114051, 0.60854849, 0.60854849, 0.60854849,
       0.60854849, 0.59238504, 0.59238504, 0.59238504, 0.59238504,
       0.57651033, 0.57651033, 0.57651033, 0.57651033, 0.56951125,
       0.56951125, 0.56951125, 0.56951125, 0.5662106 , 0.5662106 ,
       0.5662106 , 0.5662106 , 0.56457441, 0.56457441, 0.56457441,
       0.56457441, 0.56518521, 0.56518521, 0.56518521, 0.56518521,
       0.5669638 , 0.5669638 , 0.5669638 , 0.5669638 , 0.56753478,
       0.56753478, 0.56753478, 0.56753478, 0.56741507, 0.56741507,
       0.56741507, 0.56741507, 0.56730543, 0.56730543, 0.56730543,
       0.56730543, 0.56737641, 0.56737641, 0.56737641, 0.56737641,
       0.56765193, 0.56765193, 0.56765193, 0.56765193, 0.56833782,
       0.56833782, 0.56833782, 0.56833782, 0.57115323, 0.57115323,
       0.57115323, 0.57115323, 0.58390602, 0.58390602, 0.58390602,
       0.58390602, 0.63015878, 0.63015878, 0.63015878, 0.63015878,
       0.76511277, 0.76511277, 0.76511277, 0.76511277, 1.09098504,
       1.09098504, 1.09098504, 1.09098504, 1.75190783, 1.75190783,
       1.75190783, 1.75190783, 2.84524356, 2.84524356, 2.84524356,
       2.84524356, 3.69818791, 3.69818791, 3.69818791, 3.69818791,
       3.79299239, 3.79299239, 3.79299239, 3.79299239, 2.70622572,
       2.70622572, 2.70622572, 2.70622572, 1.23074962, 1.23074962,
       1.23074962, 1.23074962, 1.01357481, 1.01357481, 1.01357481,
       1.01357481, 1.00013936, 1.00013936, 1.00013936, 1.00013936,
       1.00000003, 1.00000003, 1.00000003, 1.00000003, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([6.27176089e-04, 6.27176089e-04, 6.27176089e-04, 6.27176089e-04,
       2.09197510e-03, 2.09197510e-03, 2.09197510e-03, 2.09197510e-03,
       5.63246589e-03, 5.63246589e-03, 5.63246589e-03, 5.63246589e-03,
       1.44413910e-02, 1.44413910e-02, 1.44413910e-02, 1.44413910e-02,
       3.47398084e-02, 3.47398084e-02, 3.47398084e-02, 3.47398084e-02,
       7.82416435e-02, 7.82416435e-02, 7.82416435e-02, 7.82416435e-02,
       1.64502448e-01, 1.64502448e-01, 1.64502448e-01, 1.64502448e-01,
       3.22153674e-01, 3.22153674e-01, 3.22153674e-01, 3.22153674e-01,
       5.87013093e-01, 5.87013093e-01, 5.87013093e-01, 5.87013093e-01,
       9.95867432e-01, 9.95867432e-01, 9.95867432e-01, 9.95867432e-01,
       1.57717960e+00, 1.57717960e+00, 1.57717960e+00, 1.57717960e+00,
       2.34277075e+00, 2.34277075e+00, 2.34277075e+00, 2.34277075e+00,
       3.28498965e+00, 3.28498965e+00, 3.28498965e+00, 3.28498965e+00,
       4.38103253e+00, 4.38103253e+00, 4.38103253e+00, 4.38103253e+00,
       5.60227400e+00, 5.60227400e+00, 5.60227400e+00, 5.60227400e+00,
       6.92499000e+00, 6.92499000e+00, 6.92499000e+00, 6.92499000e+00,
       8.30862980e+00, 8.30862980e+00, 8.30862980e+00, 8.30862980e+00,
       9.70342488e+00, 9.70342488e+00, 9.70342488e+00, 9.70342488e+00,
       1.10947376e+01, 1.10947376e+01, 1.10947376e+01, 1.10947376e+01,
       1.24759421e+01, 1.24759421e+01, 1.24759421e+01, 1.24759421e+01,
       1.38409096e+01, 1.38409096e+01, 1.38409096e+01, 1.38409096e+01,
       1.51771753e+01, 1.51771753e+01, 1.51771753e+01, 1.51771753e+01,
       1.64580614e+01, 1.64580614e+01, 1.64580614e+01, 1.64580614e+01,
       1.76410460e+01, 1.76410460e+01, 1.76410460e+01, 1.76410460e+01,
       1.86577470e+01, 1.86577470e+01, 1.86577470e+01, 1.86577470e+01,
       1.94346504e+01, 1.94346504e+01, 1.94346504e+01, 1.94346504e+01,
       1.99206783e+01, 1.99206783e+01, 1.99206783e+01, 1.99206783e+01,
       2.01373825e+01, 2.01373825e+01, 2.01373825e+01, 2.01373825e+01,
       2.01827557e+01, 2.01827557e+01, 2.01827557e+01, 2.01827557e+01,
       2.01362430e+01, 2.01362430e+01, 2.01362430e+01, 2.01362430e+01,
       2.00527163e+01, 2.00527163e+01, 2.00527163e+01, 2.00527163e+01,
       2.00220889e+01, 2.00220889e+01, 2.00220889e+01, 2.00220889e+01,
       2.00113415e+01, 2.00113415e+01, 2.00113415e+01, 2.00113415e+01,
       2.00032017e+01, 2.00032017e+01, 2.00032017e+01, 2.00032017e+01,
       1.99928716e+01, 1.99928716e+01, 1.99928716e+01, 1.99928716e+01,
       1.99752195e+01, 1.99752195e+01, 1.99752195e+01, 1.99752195e+01,
       1.99510048e+01, 1.99510048e+01, 1.99510048e+01, 1.99510048e+01,
       1.99278369e+01, 1.99278369e+01, 1.99278369e+01, 1.99278369e+01,
       1.99060511e+01, 1.99060511e+01, 1.99060511e+01, 1.99060511e+01,
       1.98834898e+01, 1.98834898e+01, 1.98834898e+01, 1.98834898e+01,
       1.98602307e+01, 1.98602307e+01, 1.98602307e+01, 1.98602307e+01,
       1.98460230e+01, 1.98460230e+01, 1.98460230e+01, 1.98460230e+01,
       1.98231060e+01, 1.98231060e+01, 1.98231060e+01, 1.98231060e+01,
       1.97344284e+01, 1.97344284e+01, 1.97344284e+01, 1.97344284e+01,
       1.93234157e+01, 1.93234157e+01, 1.93234157e+01, 1.93234157e+01,
       1.75098690e+01, 1.75098690e+01, 1.75098690e+01, 1.75098690e+01,
       1.13120733e+01, 1.13120733e+01, 1.13120733e+01, 1.13120733e+01,
       1.72019020e+00, 1.72019020e+00, 1.72019020e+00, 1.72019020e+00,
       2.39627567e-02, 2.39627567e-02, 2.39627567e-02, 2.39627567e-02,
       2.10492230e-05, 2.10492230e-05, 2.10492230e-05, 2.10492230e-05,
       3.37580296e-09, 3.37580296e-09, 3.37580296e-09, 3.37580296e-09,
       5.24794943e-13, 5.24794943e-13, 5.24794943e-13, 5.24794943e-13,
       8.00869120e-17, 8.00869120e-17, 8.00869120e-17, 8.00869120e-17,
       1.80543624e-20, 1.80543624e-20, 1.80543624e-20, 1.80543624e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99976534e+02, 9.99976534e+02, 9.99976534e+02, 9.99976534e+02,
       9.99921728e+02, 9.99921728e+02, 9.99921728e+02, 9.99921728e+02,
       9.99789273e+02, 9.99789273e+02, 9.99789273e+02, 9.99789273e+02,
       9.99459788e+02, 9.99459788e+02, 9.99459788e+02, 9.99459788e+02,
       9.98700933e+02, 9.98700933e+02, 9.98700933e+02, 9.98700933e+02,
       9.97076380e+02, 9.97076380e+02, 9.97076380e+02, 9.97076380e+02,
       9.93862050e+02, 9.93862050e+02, 9.93862050e+02, 9.93862050e+02,
       9.88011449e+02, 9.88011449e+02, 9.88011449e+02, 9.88011449e+02,
       9.78251147e+02, 9.78251147e+02, 9.78251147e+02, 9.78251147e+02,
       9.63351703e+02, 9.63351703e+02, 9.63351703e+02, 9.63351703e+02,
       9.42510461e+02, 9.42510461e+02, 9.42510461e+02, 9.42510461e+02,
       9.15662316e+02, 9.15662316e+02, 9.15662316e+02, 9.15662316e+02,
       8.83529955e+02, 8.83529955e+02, 8.83529955e+02, 8.83529955e+02,
       8.47375347e+02, 8.47375347e+02, 8.47375347e+02, 8.47375347e+02,
       8.08589521e+02, 8.08589521e+02, 8.08589521e+02, 8.08589521e+02,
       7.68302840e+02, 7.68302840e+02, 7.68302840e+02, 7.68302840e+02,
       7.27777466e+02, 7.27777466e+02, 7.27777466e+02, 7.27777466e+02,
       6.88776134e+02, 6.88776134e+02, 6.88776134e+02, 6.88776134e+02,
       6.51822493e+02, 6.51822493e+02, 6.51822493e+02, 6.51822493e+02,
       6.16850793e+02, 6.16850793e+02, 6.16850793e+02, 6.16850793e+02,
       5.83873049e+02, 5.83873049e+02, 5.83873049e+02, 5.83873049e+02,
       5.53077621e+02, 5.53077621e+02, 5.53077621e+02, 5.53077621e+02,
       5.24847307e+02, 5.24847307e+02, 5.24847307e+02, 5.24847307e+02,
       4.99936052e+02, 4.99936052e+02, 4.99936052e+02, 4.99936052e+02,
       4.79307983e+02, 4.79307983e+02, 4.79307983e+02, 4.79307983e+02,
       4.64037017e+02, 4.64037017e+02, 4.64037017e+02, 4.64037017e+02,
       4.54717049e+02, 4.54717049e+02, 4.54717049e+02, 4.54717049e+02,
       4.50630729e+02, 4.50630729e+02, 4.50630729e+02, 4.50630729e+02,
       4.49766128e+02, 4.49766128e+02, 4.49766128e+02, 4.49766128e+02,
       4.50635760e+02, 4.50635760e+02, 4.50635760e+02, 4.50635760e+02,
       4.52192339e+02, 4.52192339e+02, 4.52192339e+02, 4.52192339e+02,
       4.52791836e+02, 4.52791836e+02, 4.52791836e+02, 4.52791836e+02,
       4.53026052e+02, 4.53026052e+02, 4.53026052e+02, 4.53026052e+02,
       4.53174609e+02, 4.53174609e+02, 4.53174609e+02, 4.53174609e+02,
       4.53352116e+02, 4.53352116e+02, 4.53352116e+02, 4.53352116e+02,
       4.53668407e+02, 4.53668407e+02, 4.53668407e+02, 4.53668407e+02,
       4.54129426e+02, 4.54129426e+02, 4.54129426e+02, 4.54129426e+02,
       4.54606825e+02, 4.54606825e+02, 4.54606825e+02, 4.54606825e+02,
       4.55071542e+02, 4.55071542e+02, 4.55071542e+02, 4.55071542e+02,
       4.55519242e+02, 4.55519242e+02, 4.55519242e+02, 4.55519242e+02,
       4.55942322e+02, 4.55942322e+02, 4.55942322e+02, 4.55942322e+02,
       4.56555572e+02, 4.56555572e+02, 4.56555572e+02, 4.56555572e+02,
       4.57153744e+02, 4.57153744e+02, 4.57153744e+02, 4.57153744e+02,
       4.55012364e+02, 4.55012364e+02, 4.55012364e+02, 4.55012364e+02,
       4.36291749e+02, 4.36291749e+02, 4.36291749e+02, 4.36291749e+02,
       3.50253071e+02, 3.50253071e+02, 3.50253071e+02, 3.50253071e+02,
       1.37331684e+02, 1.37331684e+02, 1.37331684e+02, 1.37331684e+02,
       7.81961782e+00, 7.81961782e+00, 7.81961782e+00, 7.81961782e+00,
       3.15710255e-02, 3.15710255e-02, 3.15710255e-02, 3.15710255e-02,
       1.00025204e-02, 1.00025204e-02, 1.00025204e-02, 1.00025204e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99996035, 0.99996035, 0.99996035, 0.99996035, 0.99987476,
       0.99987476, 0.99987476, 0.99987476, 0.99968276, 0.99968276,
       0.99968276, 0.99968276, 0.99923411, 0.99923411, 0.99923411,
       0.99923411, 0.99826762, 0.99826762, 0.99826762, 0.99826762,
       0.99633541, 0.99633541, 0.99633541, 0.99633541, 0.99277013,
       0.99277013, 0.99277013, 0.99277013, 0.98671964, 0.98671964,
       0.98671964, 0.98671964, 0.977293  , 0.977293  , 0.977293  ,
       0.977293  , 0.96379833, 0.96379833, 0.96379833, 0.96379833,
       0.94597383, 0.94597383, 0.94597383, 0.94597383, 0.9240842 ,
       0.9240842 , 0.9240842 , 0.9240842 , 0.89882269, 0.89882269,
       0.89882269, 0.89882269, 0.87107325, 0.87107325, 0.87107325,
       0.87107325, 0.84163799, 0.84163799, 0.84163799, 0.84163799,
       0.81121158, 0.81121158, 0.81121158, 0.81121158, 0.7809964 ,
       0.7809964 , 0.7809964 , 0.7809964 , 0.75175867, 0.75175867,
       0.75175867, 0.75175867, 0.72358262, 0.72358262, 0.72358262,
       0.72358262, 0.69646996, 0.69646996, 0.69646996, 0.69646996,
       0.67055951, 0.67055951, 0.67055951, 0.67055951, 0.64587767,
       0.64587767, 0.64587767, 0.64587767, 0.62371507, 0.62371507,
       0.62371507, 0.62371507, 0.60245905, 0.60245905, 0.60245905,
       0.60245905, 0.58804181, 0.58804181, 0.58804181, 0.58804181,
       0.57415787, 0.57415787, 0.57415787, 0.57415787, 0.56801698,
       0.56801698, 0.56801698, 0.56801698, 0.56600286, 0.56600286,
       0.56600286, 0.56600286, 0.56486913, 0.56486913, 0.56486913,
       0.56486913, 0.56568532, 0.56568532, 0.56568532, 0.56568532,
       0.56697037, 0.56697037, 0.56697037, 0.56697037, 0.567595  ,
       0.567595  , 0.567595  , 0.567595  , 0.56755691, 0.56755691,
       0.56755691, 0.56755691, 0.56742984, 0.56742984, 0.56742984,
       0.56742984, 0.56748199, 0.56748199, 0.56748199, 0.56748199,
       0.56775104, 0.56775104, 0.56775104, 0.56775104, 0.56831532,
       0.56831532, 0.56831532, 0.56831532, 0.57016477, 0.57016477,
       0.57016477, 0.57016477, 0.57848067, 0.57848067, 0.57848067,
       0.57848067, 0.60993862, 0.60993862, 0.60993862, 0.60993862,
       0.70608446, 0.70608446, 0.70608446, 0.70608446, 0.94942581,
       0.94942581, 0.94942581, 0.94942581, 1.46794713, 1.46794713,
       1.46794713, 1.46794713, 2.399093  , 2.399093  , 2.399093  ,
       2.399093  , 3.49161502, 3.49161502, 3.49161502, 3.49161502,
       3.88909392, 3.88909392, 3.88909392, 3.88909392, 3.45166183,
       3.45166183, 3.45166183, 3.45166183, 1.72693552, 1.72693552,
       1.72693552, 1.72693552, 1.05571813, 1.05571813, 1.05571813,
       1.05571813, 1.00183475, 1.00183475, 1.00183475, 1.00183475,
       1.00000159, 1.00000159, 1.00000159, 1.00000159, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.48343235e-03, 1.48343235e-03, 1.48343235e-03, 1.48343235e-03,
       4.68625754e-03, 4.68625754e-03, 4.68625754e-03, 4.68625754e-03,
       1.18714812e-02, 1.18714812e-02, 1.18714812e-02, 1.18714812e-02,
       2.86653854e-02, 2.86653854e-02, 2.86653854e-02, 2.86653854e-02,
       6.48624680e-02, 6.48624680e-02, 6.48624680e-02, 6.48624680e-02,
       1.37311383e-01, 1.37311383e-01, 1.37311383e-01, 1.37311383e-01,
       2.71286993e-01, 2.71286993e-01, 2.71286993e-01, 2.71286993e-01,
       4.99544165e-01, 4.99544165e-01, 4.99544165e-01, 4.99544165e-01,
       8.57450278e-01, 8.57450278e-01, 8.57450278e-01, 8.57450278e-01,
       1.37475596e+00, 1.37475596e+00, 1.37475596e+00, 1.37475596e+00,
       2.06719154e+00, 2.06719154e+00, 2.06719154e+00, 2.06719154e+00,
       2.93221227e+00, 2.93221227e+00, 2.93221227e+00, 2.93221227e+00,
       3.95128996e+00, 3.95128996e+00, 3.95128996e+00, 3.95128996e+00,
       5.09756199e+00, 5.09756199e+00, 5.09756199e+00, 5.09756199e+00,
       6.34579257e+00, 6.34579257e+00, 6.34579257e+00, 6.34579257e+00,
       7.67146094e+00, 7.67146094e+00, 7.67146094e+00, 7.67146094e+00,
       9.01982632e+00, 9.01982632e+00, 9.01982632e+00, 9.01982632e+00,
       1.03717565e+01, 1.03717565e+01, 1.03717565e+01, 1.03717565e+01,
       1.17165199e+01, 1.17165199e+01, 1.17165199e+01, 1.17165199e+01,
       1.30503359e+01, 1.30503359e+01, 1.30503359e+01, 1.30503359e+01,
       1.43659229e+01, 1.43659229e+01, 1.43659229e+01, 1.43659229e+01,
       1.56482456e+01, 1.56482456e+01, 1.56482456e+01, 1.56482456e+01,
       1.68667491e+01, 1.68667491e+01, 1.68667491e+01, 1.68667491e+01,
       1.79752388e+01, 1.79752388e+01, 1.79752388e+01, 1.79752388e+01,
       1.89049267e+01, 1.89049267e+01, 1.89049267e+01, 1.89049267e+01,
       1.95880409e+01, 1.95880409e+01, 1.95880409e+01, 1.95880409e+01,
       1.99895045e+01, 1.99895045e+01, 1.99895045e+01, 1.99895045e+01,
       2.01509131e+01, 2.01509131e+01, 2.01509131e+01, 2.01509131e+01,
       2.01756935e+01, 2.01756935e+01, 2.01756935e+01, 2.01756935e+01,
       2.01136639e+01, 2.01136639e+01, 2.01136639e+01, 2.01136639e+01,
       2.00436849e+01, 2.00436849e+01, 2.00436849e+01, 2.00436849e+01,
       2.00184695e+01, 2.00184695e+01, 2.00184695e+01, 2.00184695e+01,
       2.00087073e+01, 2.00087073e+01, 2.00087073e+01, 2.00087073e+01,
       2.00007501e+01, 2.00007501e+01, 2.00007501e+01, 2.00007501e+01,
       1.99896154e+01, 1.99896154e+01, 1.99896154e+01, 1.99896154e+01,
       1.99701656e+01, 1.99701656e+01, 1.99701656e+01, 1.99701656e+01,
       1.99446240e+01, 1.99446240e+01, 1.99446240e+01, 1.99446240e+01,
       1.99208683e+01, 1.99208683e+01, 1.99208683e+01, 1.99208683e+01,
       1.98989526e+01, 1.98989526e+01, 1.98989526e+01, 1.98989526e+01,
       1.98779645e+01, 1.98779645e+01, 1.98779645e+01, 1.98779645e+01,
       1.98568827e+01, 1.98568827e+01, 1.98568827e+01, 1.98568827e+01,
       1.98394425e+01, 1.98394425e+01, 1.98394425e+01, 1.98394425e+01,
       1.98253039e+01, 1.98253039e+01, 1.98253039e+01, 1.98253039e+01,
       1.97798791e+01, 1.97798791e+01, 1.97798791e+01, 1.97798791e+01,
       1.95773152e+01, 1.95773152e+01, 1.95773152e+01, 1.95773152e+01,
       1.86462995e+01, 1.86462995e+01, 1.86462995e+01, 1.86462995e+01,
       1.49605093e+01, 1.49605093e+01, 1.49605093e+01, 1.49605093e+01,
       5.66403104e+00, 5.66403104e+00, 5.66403104e+00, 5.66403104e+00,
       2.39671368e-01, 2.39671368e-01, 2.39671368e-01, 2.39671368e-01,
       8.33807575e-04, 8.33807575e-04, 8.33807575e-04, 8.33807575e-04,
       1.88954541e-07, 1.88954541e-07, 1.88954541e-07, 1.88954541e-07,
       2.94104736e-11, 2.94104736e-11, 2.94104736e-11, 2.94104736e-11,
       4.70101359e-15, 4.70101359e-15, 4.70101359e-15, 4.70101359e-15,
       7.41275834e-19, 7.41275834e-19, 7.41275834e-19, 7.41275834e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99944497e+02, 9.99944497e+02, 9.99944497e+02, 9.99944497e+02,
       9.99824671e+02, 9.99824671e+02, 9.99824671e+02, 9.99824671e+02,
       9.99555901e+02, 9.99555901e+02, 9.99555901e+02, 9.99555901e+02,
       9.98927969e+02, 9.98927969e+02, 9.98927969e+02, 9.98927969e+02,
       9.97575760e+02, 9.97575760e+02, 9.97575760e+02, 9.97575760e+02,
       9.94874250e+02, 9.94874250e+02, 9.94874250e+02, 9.94874250e+02,
       9.89895755e+02, 9.89895755e+02, 9.89895755e+02, 9.89895755e+02,
       9.81464823e+02, 9.81464823e+02, 9.81464823e+02, 9.81464823e+02,
       9.68372978e+02, 9.68372978e+02, 9.68372978e+02, 9.68372978e+02,
       9.49721618e+02, 9.49721618e+02, 9.49721618e+02, 9.49721618e+02,
       9.25246848e+02, 9.25246848e+02, 9.25246848e+02, 9.25246848e+02,
       8.95440766e+02, 8.95440766e+02, 8.95440766e+02, 8.95440766e+02,
       8.61389674e+02, 8.61389674e+02, 8.61389674e+02, 8.61389674e+02,
       8.24419634e+02, 8.24419634e+02, 8.24419634e+02, 8.24419634e+02,
       7.85711897e+02, 7.85711897e+02, 7.85711897e+02, 7.85711897e+02,
       7.46248517e+02, 7.46248517e+02, 7.46248517e+02, 7.46248517e+02,
       7.07596025e+02, 7.07596025e+02, 7.07596025e+02, 7.07596025e+02,
       6.70801074e+02, 6.70801074e+02, 6.70801074e+02, 6.70801074e+02,
       6.35877624e+02, 6.35877624e+02, 6.35877624e+02, 6.35877624e+02,
       6.02787079e+02, 6.02787079e+02, 6.02787079e+02, 6.02787079e+02,
       5.71599803e+02, 5.71599803e+02, 5.71599803e+02, 5.71599803e+02,
       5.42561321e+02, 5.42561321e+02, 5.42561321e+02, 5.42561321e+02,
       5.16114337e+02, 5.16114337e+02, 5.16114337e+02, 5.16114337e+02,
       4.93068680e+02, 4.93068680e+02, 4.93068680e+02, 4.93068680e+02,
       4.74411379e+02, 4.74411379e+02, 4.74411379e+02, 4.74411379e+02,
       4.61084454e+02, 4.61084454e+02, 4.61084454e+02, 4.61084454e+02,
       4.53401496e+02, 4.53401496e+02, 4.53401496e+02, 4.53401496e+02,
       4.50361189e+02, 4.50361189e+02, 4.50361189e+02, 4.50361189e+02,
       4.49900506e+02, 4.49900506e+02, 4.49900506e+02, 4.49900506e+02,
       4.51070680e+02, 4.51070680e+02, 4.51070680e+02, 4.51070680e+02,
       4.52380461e+02, 4.52380461e+02, 4.52380461e+02, 4.52380461e+02,
       4.52845112e+02, 4.52845112e+02, 4.52845112e+02, 4.52845112e+02,
       4.53055158e+02, 4.53055158e+02, 4.53055158e+02, 4.53055158e+02,
       4.53218903e+02, 4.53218903e+02, 4.53218903e+02, 4.53218903e+02,
       4.53431056e+02, 4.53431056e+02, 4.53431056e+02, 4.53431056e+02,
       4.53786396e+02, 4.53786396e+02, 4.53786396e+02, 4.53786396e+02,
       4.54248310e+02, 4.54248310e+02, 4.54248310e+02, 4.54248310e+02,
       4.54702361e+02, 4.54702361e+02, 4.54702361e+02, 4.54702361e+02,
       4.55162009e+02, 4.55162009e+02, 4.55162009e+02, 4.55162009e+02,
       4.55624655e+02, 4.55624655e+02, 4.55624655e+02, 4.55624655e+02,
       4.56025036e+02, 4.56025036e+02, 4.56025036e+02, 4.56025036e+02,
       4.56514938e+02, 4.56514938e+02, 4.56514938e+02, 4.56514938e+02,
       4.57215307e+02, 4.57215307e+02, 4.57215307e+02, 4.57215307e+02,
       4.56862932e+02, 4.56862932e+02, 4.56862932e+02, 4.56862932e+02,
       4.48795942e+02, 4.48795942e+02, 4.48795942e+02, 4.48795942e+02,
       4.03414163e+02, 4.03414163e+02, 4.03414163e+02, 4.03414163e+02,
       2.46087022e+02, 2.46087022e+02, 2.46087022e+02, 2.46087022e+02,
       4.07741358e+01, 4.07741358e+01, 4.07741358e+01, 4.07741358e+01,
       5.40974800e-01, 5.40974800e-01, 5.40974800e-01, 5.40974800e-01,
       1.02032471e-02, 1.02032471e-02, 1.02032471e-02, 1.02032471e-02,
       1.00000224e-02, 1.00000224e-02, 1.00000224e-02, 1.00000224e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99991158, 0.99991158, 0.99991158, 0.99991158, 0.99973526,
       0.99973526, 0.99973526, 0.99973526, 0.99936862, 0.99936862,
       0.99936862, 0.99936862, 0.9985633 , 0.9985633 , 0.9985633 ,
       0.9985633 , 0.99694101, 0.99694101, 0.99694101, 0.99694101,
       0.99391234, 0.99391234, 0.99391234, 0.99391234, 0.9887    ,
       0.9887    , 0.9887    , 0.9887    , 0.98044802, 0.98044802,
       0.98044802, 0.98044802, 0.968429  , 0.968429  , 0.968429  ,
       0.968429  , 0.95227242, 0.95227242, 0.95227242, 0.95227242,
       0.93209641, 0.93209641, 0.93209641, 0.93209641, 0.90846461,
       0.90846461, 0.90846461, 0.90846461, 0.88219172, 0.88219172,
       0.88219172, 0.88219172, 0.8540954 , 0.8540954 , 0.8540954 ,
       0.8540954 , 0.82480124, 0.82480124, 0.82480124, 0.82480124,
       0.7952339 , 0.7952339 , 0.7952339 , 0.7952339 , 0.7663955 ,
       0.7663955 , 0.7663955 , 0.7663955 , 0.73852584, 0.73852584,
       0.73852584, 0.73852584, 0.71164018, 0.71164018, 0.71164018,
       0.71164018, 0.6857697 , 0.6857697 , 0.6857697 , 0.6857697 ,
       0.66111252, 0.66111252, 0.66111252, 0.66111252, 0.63763059,
       0.63763059, 0.63763059, 0.63763059, 0.6169687 , 0.6169687 ,
       0.6169687 , 0.6169687 , 0.59702916, 0.59702916, 0.59702916,
       0.59702916, 0.58420196, 0.58420196, 0.58420196, 0.58420196,
       0.57229985, 0.57229985, 0.57229985, 0.57229985, 0.56689435,
       0.56689435, 0.56689435, 0.56689435, 0.56582645, 0.56582645,
       0.56582645, 0.56582645, 0.56516822, 0.56516822, 0.56516822,
       0.56516822, 0.56616647, 0.56616647, 0.56616647, 0.56616647,
       0.56702185, 0.56702185, 0.56702185, 0.56702185, 0.56762457,
       0.56762457, 0.56762457, 0.56762457, 0.56765827, 0.56765827,
       0.56765827, 0.56765827, 0.56756729, 0.56756729, 0.56756729,
       0.56756729, 0.56761051, 0.56761051, 0.56761051, 0.56761051,
       0.56786939, 0.56786939, 0.56786939, 0.56786939, 0.56835266,
       0.56835266, 0.56835266, 0.56835266, 0.5696172 , 0.5696172 ,
       0.5696172 , 0.5696172 , 0.57503406, 0.57503406, 0.57503406,
       0.57503406, 0.59623637, 0.59623637, 0.59623637, 0.59623637,
       0.66403011, 0.66403011, 0.66403011, 0.66403011, 0.84354865,
       0.84354865, 0.84354865, 0.84354865, 1.24434905, 1.24434905,
       1.24434905, 1.24434905, 2.00424343, 2.00424343, 2.00424343,
       2.00424343, 3.13960403, 3.13960403, 3.13960403, 3.13960403,
       3.85414213, 3.85414213, 3.85414213, 3.85414213, 3.84786708,
       3.84786708, 3.84786708, 3.84786708, 2.5771983 , 2.5771983 ,
       2.5771983 , 2.5771983 , 1.18896322, 1.18896322, 1.18896322,
       1.18896322, 1.01065342, 1.01065342, 1.01065342, 1.01065342,
       1.00008186, 1.00008186, 1.00008186, 1.00008186, 1.00000002,
       1.00000002, 1.00000002, 1.00000002, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.30857813e-03, 3.30857813e-03, 3.30857813e-03, 3.30857813e-03,
       9.90650995e-03, 9.90650995e-03, 9.90650995e-03, 9.90650995e-03,
       2.36295980e-02, 2.36295980e-02, 2.36295980e-02, 2.36295980e-02,
       5.37860149e-02, 5.37860149e-02, 5.37860149e-02, 5.37860149e-02,
       1.14592327e-01, 1.14592327e-01, 1.14592327e-01, 1.14592327e-01,
       2.28324216e-01, 2.28324216e-01, 2.28324216e-01, 2.28324216e-01,
       4.24711771e-01, 4.24711771e-01, 4.24711771e-01, 4.24711771e-01,
       7.37353653e-01, 7.37353653e-01, 7.37353653e-01, 7.37353653e-01,
       1.19658658e+00, 1.19658658e+00, 1.19658658e+00, 1.19658658e+00,
       1.82130732e+00, 1.82130732e+00, 1.82130732e+00, 1.82130732e+00,
       2.61367668e+00, 2.61367668e+00, 2.61367668e+00, 2.61367668e+00,
       3.55960001e+00, 3.55960001e+00, 3.55960001e+00, 3.55960001e+00,
       4.63473086e+00, 4.63473086e+00, 4.63473086e+00, 4.63473086e+00,
       5.81317888e+00, 5.81317888e+00, 5.81317888e+00, 5.81317888e+00,
       7.07525107e+00, 7.07525107e+00, 7.07525107e+00, 7.07525107e+00,
       8.37802334e+00, 8.37802334e+00, 8.37802334e+00, 8.37802334e+00,
       9.69020641e+00, 9.69020641e+00, 9.69020641e+00, 9.69020641e+00,
       1.09986461e+01, 1.09986461e+01, 1.09986461e+01, 1.09986461e+01,
       1.22993392e+01, 1.22993392e+01, 1.22993392e+01, 1.22993392e+01,
       1.35884048e+01, 1.35884048e+01, 1.35884048e+01, 1.35884048e+01,
       1.48563893e+01, 1.48563893e+01, 1.48563893e+01, 1.48563893e+01,
       1.60857753e+01, 1.60857753e+01, 1.60857753e+01, 1.60857753e+01,
       1.72423634e+01, 1.72423634e+01, 1.72423634e+01, 1.72423634e+01,
       1.82765856e+01, 1.82765856e+01, 1.82765856e+01, 1.82765856e+01,
       1.91204857e+01, 1.91204857e+01, 1.91204857e+01, 1.91204857e+01,
       1.97147730e+01, 1.97147730e+01, 1.97147730e+01, 1.97147730e+01,
       2.00413906e+01, 2.00413906e+01, 2.00413906e+01, 2.00413906e+01,
       2.01574495e+01, 2.01574495e+01, 2.01574495e+01, 2.01574495e+01,
       2.01659188e+01, 2.01659188e+01, 2.01659188e+01, 2.01659188e+01,
       2.00925092e+01, 2.00925092e+01, 2.00925092e+01, 2.00925092e+01,
       2.00365890e+01, 2.00365890e+01, 2.00365890e+01, 2.00365890e+01,
       2.00158066e+01, 2.00158066e+01, 2.00158066e+01, 2.00158066e+01,
       2.00060951e+01, 2.00060951e+01, 2.00060951e+01, 2.00060951e+01,
       1.99977273e+01, 1.99977273e+01, 1.99977273e+01, 1.99977273e+01,
       1.99853901e+01, 1.99853901e+01, 1.99853901e+01, 1.99853901e+01,
       1.99645055e+01, 1.99645055e+01, 1.99645055e+01, 1.99645055e+01,
       1.99389693e+01, 1.99389693e+01, 1.99389693e+01, 1.99389693e+01,
       1.99147513e+01, 1.99147513e+01, 1.99147513e+01, 1.99147513e+01,
       1.98919906e+01, 1.98919906e+01, 1.98919906e+01, 1.98919906e+01,
       1.98717727e+01, 1.98717727e+01, 1.98717727e+01, 1.98717727e+01,
       1.98525425e+01, 1.98525425e+01, 1.98525425e+01, 1.98525425e+01,
       1.98340626e+01, 1.98340626e+01, 1.98340626e+01, 1.98340626e+01,
       1.98228656e+01, 1.98228656e+01, 1.98228656e+01, 1.98228656e+01,
       1.97973138e+01, 1.97973138e+01, 1.97973138e+01, 1.97973138e+01,
       1.96970829e+01, 1.96970829e+01, 1.96970829e+01, 1.96970829e+01,
       1.92311319e+01, 1.92311319e+01, 1.92311319e+01, 1.92311319e+01,
       1.72194921e+01, 1.72194921e+01, 1.72194921e+01, 1.72194921e+01,
       1.05940203e+01, 1.05940203e+01, 1.05940203e+01, 1.05940203e+01,
       1.33734950e+00, 1.33734950e+00, 1.33734950e+00, 1.33734950e+00,
       1.58314232e-02, 1.58314232e-02, 1.58314232e-02, 1.58314232e-02,
       1.13008501e-05, 1.13008501e-05, 1.13008501e-05, 1.13008501e-05,
       1.78142403e-09, 1.78142403e-09, 1.78142403e-09, 1.78142403e-09,
       2.75475972e-13, 2.75475972e-13, 2.75475972e-13, 2.75475972e-13,
       4.22869040e-17, 4.22869040e-17, 4.22869040e-17, 4.22869040e-17,
       4.15971299e-21, 4.15971299e-21, 4.15971299e-21, 4.15971299e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99876214e+02, 9.99876214e+02, 9.99876214e+02, 9.99876214e+02,
       9.99629396e+02, 9.99629396e+02, 9.99629396e+02, 9.99629396e+02,
       9.99116221e+02, 9.99116221e+02, 9.99116221e+02, 9.99116221e+02,
       9.97989363e+02, 9.97989363e+02, 9.97989363e+02, 9.97989363e+02,
       9.95720692e+02, 9.95720692e+02, 9.95720692e+02, 9.95720692e+02,
       9.91489781e+02, 9.91489781e+02, 9.91489781e+02, 9.91489781e+02,
       9.84221698e+02, 9.84221698e+02, 9.84221698e+02, 9.84221698e+02,
       9.72748451e+02, 9.72748451e+02, 9.72748451e+02, 9.72748451e+02,
       9.56108956e+02, 9.56108956e+02, 9.56108956e+02, 9.56108956e+02,
       9.33872727e+02, 9.33872727e+02, 9.33872727e+02, 9.33872727e+02,
       9.06315492e+02, 9.06315492e+02, 9.06315492e+02, 9.06315492e+02,
       8.74337896e+02, 8.74337896e+02, 8.74337896e+02, 8.74337896e+02,
       8.39171349e+02, 8.39171349e+02, 8.39171349e+02, 8.39171349e+02,
       8.02021280e+02, 8.02021280e+02, 8.02021280e+02, 8.02021280e+02,
       7.63802020e+02, 7.63802020e+02, 7.63802020e+02, 7.63802020e+02,
       7.25718152e+02, 7.25718152e+02, 7.25718152e+02, 7.25718152e+02,
       6.89144129e+02, 6.89144129e+02, 6.89144129e+02, 6.89144129e+02,
       6.54324851e+02, 6.54324851e+02, 6.54324851e+02, 6.54324851e+02,
       6.21229262e+02, 6.21229262e+02, 6.21229262e+02, 6.21229262e+02,
       5.89863923e+02, 5.89863923e+02, 5.89863923e+02, 5.89863923e+02,
       5.60333915e+02, 5.60333915e+02, 5.60333915e+02, 5.60333915e+02,
       5.32945780e+02, 5.32945780e+02, 5.32945780e+02, 5.32945780e+02,
       5.08201682e+02, 5.08201682e+02, 5.08201682e+02, 5.08201682e+02,
       4.86948766e+02, 4.86948766e+02, 4.86948766e+02, 4.86948766e+02,
       4.70169922e+02, 4.70169922e+02, 4.70169922e+02, 4.70169922e+02,
       4.58655322e+02, 4.58655322e+02, 4.58655322e+02, 4.58655322e+02,
       4.52421155e+02, 4.52421155e+02, 4.52421155e+02, 4.52421155e+02,
       4.50227207e+02, 4.50227207e+02, 4.50227207e+02, 4.50227207e+02,
       4.50078663e+02, 4.50078663e+02, 4.50078663e+02, 4.50078663e+02,
       4.51471203e+02, 4.51471203e+02, 4.51471203e+02, 4.51471203e+02,
       4.52529169e+02, 4.52529169e+02, 4.52529169e+02, 4.52529169e+02,
       4.52901471e+02, 4.52901471e+02, 4.52901471e+02, 4.52901471e+02,
       4.53088208e+02, 4.53088208e+02, 4.53088208e+02, 4.53088208e+02,
       4.53261283e+02, 4.53261283e+02, 4.53261283e+02, 4.53261283e+02,
       4.53508024e+02, 4.53508024e+02, 4.53508024e+02, 4.53508024e+02,
       4.53907221e+02, 4.53907221e+02, 4.53907221e+02, 4.53907221e+02,
       4.54378816e+02, 4.54378816e+02, 4.54378816e+02, 4.54378816e+02,
       4.54816020e+02, 4.54816020e+02, 4.54816020e+02, 4.54816020e+02,
       4.55254101e+02, 4.55254101e+02, 4.55254101e+02, 4.55254101e+02,
       4.55702968e+02, 4.55702968e+02, 4.55702968e+02, 4.55702968e+02,
       4.56112277e+02, 4.56112277e+02, 4.56112277e+02, 4.56112277e+02,
       4.56533652e+02, 4.56533652e+02, 4.56533652e+02, 4.56533652e+02,
       4.57147821e+02, 4.57147821e+02, 4.57147821e+02, 4.57147821e+02,
       4.57487722e+02, 4.57487722e+02, 4.57487722e+02, 4.57487722e+02,
       4.54489765e+02, 4.54489765e+02, 4.54489765e+02, 4.54489765e+02,
       4.32367414e+02, 4.32367414e+02, 4.32367414e+02, 4.32367414e+02,
       3.36891352e+02, 3.36891352e+02, 3.36891352e+02, 3.36891352e+02,
       1.20082128e+02, 1.20082128e+02, 1.20082128e+02, 1.20082128e+02,
       5.54711825e+00, 5.54711825e+00, 5.54711825e+00, 5.54711825e+00,
       2.19907181e-02, 2.19907181e-02, 2.19907181e-02, 2.19907181e-02,
       1.00013363e-02, 1.00013363e-02, 1.00013363e-02, 1.00013363e-02,
       1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99981351, 0.99981351, 0.99981351, 0.99981351, 0.99947054,
       0.99947054, 0.99947054, 0.99947054, 0.9988105 , 0.9988105 ,
       0.9988105 , 0.9988105 , 0.99744661, 0.99744661, 0.99744661,
       0.99744661, 0.99487737, 0.99487737, 0.99487737, 0.99487737,
       0.99039499, 0.99039499, 0.99039499, 0.99039499, 0.98318849,
       0.98318849, 0.98318849, 0.98318849, 0.97251404, 0.97251404,
       0.97251404, 0.97251404, 0.95791416, 0.95791416, 0.95791416,
       0.95791416, 0.9393737 , 0.9393737 , 0.9393737 , 0.9393737 ,
       0.91732519, 0.91732519, 0.91732519, 0.91732519, 0.8924994 ,
       0.8924994 , 0.8924994 , 0.8924994 , 0.86569902, 0.86569902,
       0.86569902, 0.86569902, 0.83758007, 0.83758007, 0.83758007,
       0.83758007, 0.80880936, 0.80880936, 0.80880936, 0.80880936,
       0.78041711, 0.78041711, 0.78041711, 0.78041711, 0.75287396,
       0.75287396, 0.75287396, 0.75287396, 0.7262632 , 0.7262632 ,
       0.7262632 , 0.7262632 , 0.70056925, 0.70056925, 0.70056925,
       0.70056925, 0.67584993, 0.67584993, 0.67584993, 0.67584993,
       0.65238615, 0.65238615, 0.65238615, 0.65238615, 0.63003424,
       0.63003424, 0.63003424, 0.63003424, 0.61084192, 0.61084192,
       0.61084192, 0.61084192, 0.59222361, 0.59222361, 0.59222361,
       0.59222361, 0.58082307, 0.58082307, 0.58082307, 0.58082307,
       0.57084769, 0.57084769, 0.57084769, 0.57084769, 0.56609991,
       0.56609991, 0.56609991, 0.56609991, 0.56568386, 0.56568386,
       0.56568386, 0.56568386, 0.56548787, 0.56548787, 0.56548787,
       0.56548787, 0.56657134, 0.56657134, 0.56657134, 0.56657134,
       0.56710969, 0.56710969, 0.56710969, 0.56710969, 0.56763591,
       0.56763591, 0.56763591, 0.56763591, 0.56774535, 0.56774535,
       0.56774535, 0.56774535, 0.56770037, 0.56770037, 0.56770037,
       0.56770037, 0.56775753, 0.56775753, 0.56775753, 0.56775753,
       0.568006  , 0.568006  , 0.568006  , 0.568006  , 0.56842167,
       0.56842167, 0.56842167, 0.56842167, 0.56933391, 0.56933391,
       0.56933391, 0.56933391, 0.57288369, 0.57288369, 0.57288369,
       0.57288369, 0.58706794, 0.58706794, 0.58706794, 0.58706794,
       0.6343945 , 0.6343945 , 0.6343945 , 0.6343945 , 0.76532497,
       0.76532497, 0.76532497, 0.76532497, 1.0710979 , 1.0710979 ,
       1.0710979 , 1.0710979 , 1.67993717, 1.67993717, 1.67993717,
       1.67993717, 2.70591502, 2.70591502, 2.70591502, 2.70591502,
       3.70007988, 3.70007988, 3.70007988, 3.70007988, 3.98442962,
       3.98442962, 3.98442962, 3.98442962, 3.39924656, 3.39924656,
       3.39924656, 3.39924656, 1.61726694, 1.61726694, 1.61726694,
       1.61726694, 1.04481323, 1.04481323, 1.04481323, 1.04481323,
       1.00129504, 1.00129504, 1.00129504, 1.00129504, 1.00000081,
       1.00000081, 1.00000081, 1.00000081, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([6.97829163e-03, 6.97829163e-03, 6.97829163e-03, 6.97829163e-03,
       1.98144360e-02, 1.98144360e-02, 1.98144360e-02, 1.98144360e-02,
       4.45271720e-02, 4.45271720e-02, 4.45271720e-02, 4.45271720e-02,
       9.56332947e-02, 9.56332947e-02, 9.56332947e-02, 9.56332947e-02,
       1.92056185e-01, 1.92056185e-01, 1.92056185e-01, 1.92056185e-01,
       3.60758718e-01, 3.60758718e-01, 3.60758718e-01, 3.60758718e-01,
       6.33292020e-01, 6.33292020e-01, 6.33292020e-01, 6.33292020e-01,
       1.03998760e+00, 1.03998760e+00, 1.03998760e+00, 1.03998760e+00,
       1.60218999e+00, 1.60218999e+00, 1.60218999e+00, 1.60218999e+00,
       2.32628483e+00, 2.32628483e+00, 2.32628483e+00, 2.32628483e+00,
       3.20261012e+00, 3.20261012e+00, 3.20261012e+00, 3.20261012e+00,
       4.20983812e+00, 4.20983812e+00, 4.20983812e+00, 4.20983812e+00,
       5.32266284e+00, 5.32266284e+00, 5.32266284e+00, 5.32266284e+00,
       6.52018139e+00, 6.52018139e+00, 6.52018139e+00, 6.52018139e+00,
       7.77578750e+00, 7.77578750e+00, 7.77578750e+00, 7.77578750e+00,
       9.04696669e+00, 9.04696669e+00, 9.04696669e+00, 9.04696669e+00,
       1.03198134e+01, 1.03198134e+01, 1.03198134e+01, 1.03198134e+01,
       1.15876099e+01, 1.15876099e+01, 1.15876099e+01, 1.15876099e+01,
       1.28468639e+01, 1.28468639e+01, 1.28468639e+01, 1.28468639e+01,
       1.40930929e+01, 1.40930929e+01, 1.40930929e+01, 1.40930929e+01,
       1.53148719e+01, 1.53148719e+01, 1.53148719e+01, 1.53148719e+01,
       1.64919282e+01, 1.64919282e+01, 1.64919282e+01, 1.64919282e+01,
       1.75867321e+01, 1.75867321e+01, 1.75867321e+01, 1.75867321e+01,
       1.85470262e+01, 1.85470262e+01, 1.85470262e+01, 1.85470262e+01,
       1.93069541e+01, 1.93069541e+01, 1.93069541e+01, 1.93069541e+01,
       1.98179609e+01, 1.98179609e+01, 1.98179609e+01, 1.98179609e+01,
       2.00793284e+01, 2.00793284e+01, 2.00793284e+01, 2.00793284e+01,
       2.01586176e+01, 2.01586176e+01, 2.01586176e+01, 2.01586176e+01,
       2.01524831e+01, 2.01524831e+01, 2.01524831e+01, 2.01524831e+01,
       2.00752058e+01, 2.00752058e+01, 2.00752058e+01, 2.00752058e+01,
       2.00307498e+01, 2.00307498e+01, 2.00307498e+01, 2.00307498e+01,
       2.00136099e+01, 2.00136099e+01, 2.00136099e+01, 2.00136099e+01,
       2.00037603e+01, 2.00037603e+01, 2.00037603e+01, 2.00037603e+01,
       1.99945192e+01, 1.99945192e+01, 1.99945192e+01, 1.99945192e+01,
       1.99804496e+01, 1.99804496e+01, 1.99804496e+01, 1.99804496e+01,
       1.99580977e+01, 1.99580977e+01, 1.99580977e+01, 1.99580977e+01,
       1.99332124e+01, 1.99332124e+01, 1.99332124e+01, 1.99332124e+01,
       1.99091877e+01, 1.99091877e+01, 1.99091877e+01, 1.99091877e+01,
       1.98860108e+01, 1.98860108e+01, 1.98860108e+01, 1.98860108e+01,
       1.98654280e+01, 1.98654280e+01, 1.98654280e+01, 1.98654280e+01,
       1.98471370e+01, 1.98471370e+01, 1.98471370e+01, 1.98471370e+01,
       1.98298574e+01, 1.98298574e+01, 1.98298574e+01, 1.98298574e+01,
       1.98171370e+01, 1.98171370e+01, 1.98171370e+01, 1.98171370e+01,
       1.98030159e+01, 1.98030159e+01, 1.98030159e+01, 1.98030159e+01,
       1.97516465e+01, 1.97516465e+01, 1.97516465e+01, 1.97516465e+01,
       1.95204012e+01, 1.95204012e+01, 1.95204012e+01, 1.95204012e+01,
       1.84745602e+01, 1.84745602e+01, 1.84745602e+01, 1.84745602e+01,
       1.44416174e+01, 1.44416174e+01, 1.44416174e+01, 1.44416174e+01,
       4.87006574e+00, 4.87006574e+00, 4.87006574e+00, 4.87006574e+00,
       1.70878215e-01, 1.70878215e-01, 1.70878215e-01, 1.70878215e-01,
       4.74222438e-04, 4.74222438e-04, 4.74222438e-04, 4.74222438e-04,
       9.62797091e-08, 9.62797091e-08, 9.62797091e-08, 9.62797091e-08,
       1.54134491e-11, 1.54134491e-11, 1.54134491e-11, 1.54134491e-11,
       2.48678570e-15, 2.48678570e-15, 2.48678570e-15, 2.48678570e-15,
       3.95125006e-19, 3.95125006e-19, 3.95125006e-19, 3.95125006e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99738937e+02, 9.99738937e+02, 9.99738937e+02, 9.99738937e+02,
       9.99258865e+02, 9.99258865e+02, 9.99258865e+02, 9.99258865e+02,
       9.98335213e+02, 9.98335213e+02, 9.98335213e+02, 9.98335213e+02,
       9.96427546e+02, 9.96427546e+02, 9.96427546e+02, 9.96427546e+02,
       9.92837210e+02, 9.92837210e+02, 9.92837210e+02, 9.92837210e+02,
       9.86583249e+02, 9.86583249e+02, 9.86583249e+02, 9.86583249e+02,
       9.76553906e+02, 9.76553906e+02, 9.76553906e+02, 9.76553906e+02,
       9.61754277e+02, 9.61754277e+02, 9.61754277e+02, 9.61754277e+02,
       9.41618962e+02, 9.41618962e+02, 9.41618962e+02, 9.41618962e+02,
       9.16225667e+02, 9.16225667e+02, 9.16225667e+02, 9.16225667e+02,
       8.86285914e+02, 8.86285914e+02, 8.86285914e+02, 8.86285914e+02,
       8.52914522e+02, 8.52914522e+02, 8.52914522e+02, 8.52914522e+02,
       8.17299685e+02, 8.17299685e+02, 8.17299685e+02, 8.17299685e+02,
       7.80401265e+02, 7.80401265e+02, 7.80401265e+02, 7.80401265e+02,
       7.43128313e+02, 7.43128313e+02, 7.43128313e+02, 7.43128313e+02,
       7.06850048e+02, 7.06850048e+02, 7.06850048e+02, 7.06850048e+02,
       6.72179206e+02, 6.72179206e+02, 6.72179206e+02, 6.72179206e+02,
       6.39161893e+02, 6.39161893e+02, 6.39161893e+02, 6.39161893e+02,
       6.07736695e+02, 6.07736695e+02, 6.07736695e+02, 6.07736695e+02,
       5.77958609e+02, 5.77958609e+02, 5.77958609e+02, 5.77958609e+02,
       5.49975461e+02, 5.49975461e+02, 5.49975461e+02, 5.49975461e+02,
       5.24148628e+02, 5.24148628e+02, 5.24148628e+02, 5.24148628e+02,
       5.01038900e+02, 5.01038900e+02, 5.01038900e+02, 5.01038900e+02,
       4.81516564e+02, 4.81516564e+02, 4.81516564e+02, 4.81516564e+02,
       4.66526226e+02, 4.66526226e+02, 4.66526226e+02, 4.66526226e+02,
       4.56679419e+02, 4.56679419e+02, 4.56679419e+02, 4.56679419e+02,
       4.51709116e+02, 4.51709116e+02, 4.51709116e+02, 4.51709116e+02,
       4.50204516e+02, 4.50204516e+02, 4.50204516e+02, 4.50204516e+02,
       4.50323474e+02, 4.50323474e+02, 4.50323474e+02, 4.50323474e+02,
       4.51792099e+02, 4.51792099e+02, 4.51792099e+02, 4.51792099e+02,
       4.52644533e+02, 4.52644533e+02, 4.52644533e+02, 4.52644533e+02,
       4.52957374e+02, 4.52957374e+02, 4.52957374e+02, 4.52957374e+02,
       4.53131411e+02, 4.53131411e+02, 4.53131411e+02, 4.53131411e+02,
       4.53310711e+02, 4.53310711e+02, 4.53310711e+02, 4.53310711e+02,
       4.53588206e+02, 4.53588206e+02, 4.53588206e+02, 4.53588206e+02,
       4.54024216e+02, 4.54024216e+02, 4.54024216e+02, 4.54024216e+02,
       4.54505579e+02, 4.54505579e+02, 4.54505579e+02, 4.54505579e+02,
       4.54941322e+02, 4.54941322e+02, 4.54941322e+02, 4.54941322e+02,
       4.55358316e+02, 4.55358316e+02, 4.55358316e+02, 4.55358316e+02,
       4.55776216e+02, 4.55776216e+02, 4.55776216e+02, 4.55776216e+02,
       4.56187451e+02, 4.56187451e+02, 4.56187451e+02, 4.56187451e+02,
       4.56567868e+02, 4.56567868e+02, 4.56567868e+02, 4.56567868e+02,
       4.57061252e+02, 4.57061252e+02, 4.57061252e+02, 4.57061252e+02,
       4.57670049e+02, 4.57670049e+02, 4.57670049e+02, 4.57670049e+02,
       4.56861977e+02, 4.56861977e+02, 4.56861977e+02, 4.56861977e+02,
       4.46897134e+02, 4.46897134e+02, 4.46897134e+02, 4.46897134e+02,
       3.95213842e+02, 3.95213842e+02, 3.95213842e+02, 3.95213842e+02,
       2.27017462e+02, 2.27017462e+02, 2.27017462e+02, 2.27017462e+02,
       3.24722316e+01, 3.24722316e+01, 3.24722316e+01, 3.24722316e+01,
       3.44215454e-01, 3.44215454e-01, 3.44215454e-01, 3.44215454e-01,
       1.00956522e-02, 1.00956522e-02, 1.00956522e-02, 1.00956522e-02,
       1.00000114e-02, 1.00000114e-02, 1.00000114e-02, 1.00000114e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99962715, 0.99962715, 0.99962715, 0.99962715, 0.9989959 ,
       0.9989959 , 0.9989959 , 0.9989959 , 0.99787399, 0.99787399,
       0.99787399, 0.99787399, 0.99569077, 0.99569077, 0.99569077,
       0.99569077, 0.99184415, 0.99184415, 0.99184415, 0.99184415,
       0.98556472, 0.98556472, 0.98556472, 0.98556472, 0.97611065,
       0.97611065, 0.97611065, 0.97611065, 0.96295756, 0.96295756,
       0.96295756, 0.96295756, 0.94597218, 0.94597218, 0.94597218,
       0.94597218, 0.92545827, 0.92545827, 0.92545827, 0.92545827,
       0.90205196, 0.90205196, 0.90205196, 0.90205196, 0.87652198,
       0.87652198, 0.87652198, 0.87652198, 0.84956063, 0.84956063,
       0.84956063, 0.84956063, 0.82170304, 0.82170304, 0.82170304,
       0.82170304, 0.79383738, 0.79383738, 0.79383738, 0.79383738,
       0.76665912, 0.76665912, 0.76665912, 0.76665912, 0.74033691,
       0.74033691, 0.74033691, 0.74033691, 0.71486688, 0.71486688,
       0.71486688, 0.71486688, 0.69028102, 0.69028102, 0.69028102,
       0.69028102, 0.6666371 , 0.6666371 , 0.6666371 , 0.6666371 ,
       0.64432028, 0.64432028, 0.64432028, 0.64432028, 0.62304012,
       0.62304012, 0.62304012, 0.62304012, 0.60528142, 0.60528142,
       0.60528142, 0.60528142, 0.58800675, 0.58800675, 0.58800675,
       0.58800675, 0.5778694 , 0.5778694 , 0.5778694 , 0.5778694 ,
       0.56972246, 0.56972246, 0.56972246, 0.56972246, 0.56560315,
       0.56560315, 0.56560315, 0.56560315, 0.56553233, 0.56553233,
       0.56553233, 0.56553233, 0.56584834, 0.56584834, 0.56584834,
       0.56584834, 0.56690991, 0.56690991, 0.56690991, 0.56690991,
       0.56721384, 0.56721384, 0.56721384, 0.56721384, 0.56762924,
       0.56762924, 0.56762924, 0.56762924, 0.56782241, 0.56782241,
       0.56782241, 0.56782241, 0.56782868, 0.56782868, 0.56782868,
       0.56782868, 0.56791572, 0.56791572, 0.56791572, 0.56791572,
       0.56816164, 0.56816164, 0.56816164, 0.56816164, 0.56851365,
       0.56851365, 0.56851365, 0.56851365, 0.56920152, 0.56920152,
       0.56920152, 0.56920152, 0.57156713, 0.57156713, 0.57156713,
       0.57156713, 0.58101327, 0.58101327, 0.58101327, 0.58101327,
       0.61373599, 0.61373599, 0.61373599, 0.61373599, 0.70822132,
       0.70822132, 0.70822132, 0.70822132, 0.93867528, 0.93867528,
       0.93867528, 0.93867528, 1.41891316, 1.41891316, 1.41891316,
       1.41891316, 2.27525624, 2.27525624, 2.27525624, 2.27525624,
       3.41072177, 3.41072177, 3.41072177, 3.41072177, 3.98667427,
       3.98667427, 3.98667427, 3.98667427, 3.87982047, 3.87982047,
       3.87982047, 3.87982047, 2.43231843, 2.43231843, 2.43231843,
       2.43231843, 1.15615318, 1.15615318, 1.15615318, 1.15615318,
       1.00824283, 1.00824283, 1.00824283, 1.00824283, 1.0000454 ,
       1.0000454 , 1.0000454 , 1.0000454 , 1.00000001, 1.00000001,
       1.00000001, 1.00000001, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.39530183e-02, 1.39530183e-02, 1.39530183e-02, 1.39530183e-02,
       3.75848880e-02, 3.75848880e-02, 3.75848880e-02, 3.75848880e-02,
       7.96128157e-02, 7.96128157e-02, 7.96128157e-02, 7.96128157e-02,
       1.61508250e-01, 1.61508250e-01, 1.61508250e-01, 1.61508250e-01,
       3.06150477e-01, 3.06150477e-01, 3.06150477e-01, 3.06150477e-01,
       5.43251766e-01, 5.43251766e-01, 5.43251766e-01, 5.43251766e-01,
       9.02556002e-01, 9.02556002e-01, 9.02556002e-01, 9.02556002e-01,
       1.40720176e+00, 1.40720176e+00, 1.40720176e+00, 1.40720176e+00,
       2.06726331e+00, 2.06726331e+00, 2.06726331e+00, 2.06726331e+00,
       2.87738380e+00, 2.87738380e+00, 2.87738380e+00, 2.87738380e+00,
       3.81959664e+00, 3.81959664e+00, 3.81959664e+00, 3.81959664e+00,
       4.86989842e+00, 4.86989842e+00, 4.86989842e+00, 4.86989842e+00,
       6.00593747e+00, 6.00593747e+00, 6.00593747e+00, 6.00593747e+00,
       7.20976710e+00, 7.20976710e+00, 7.20976710e+00, 7.20976710e+00,
       8.44013430e+00, 8.44013430e+00, 8.44013430e+00, 8.44013430e+00,
       9.67820971e+00, 9.67820971e+00, 9.67820971e+00, 9.67820971e+00,
       1.09131010e+01, 1.09131010e+01, 1.09131010e+01, 1.09131010e+01,
       1.21419057e+01, 1.21419057e+01, 1.21419057e+01, 1.21419057e+01,
       1.33619281e+01, 1.33619281e+01, 1.33619281e+01, 1.33619281e+01,
       1.45669883e+01, 1.45669883e+01, 1.45669883e+01, 1.45669883e+01,
       1.57435737e+01, 1.57435737e+01, 1.57435737e+01, 1.57435737e+01,
       1.68686020e+01, 1.68686020e+01, 1.68686020e+01, 1.68686020e+01,
       1.79014772e+01, 1.79014772e+01, 1.79014772e+01, 1.79014772e+01,
       1.87882849e+01, 1.87882849e+01, 1.87882849e+01, 1.87882849e+01,
       1.94668837e+01, 1.94668837e+01, 1.94668837e+01, 1.94668837e+01,
       1.99006239e+01, 1.99006239e+01, 1.99006239e+01, 1.99006239e+01,
       2.01050731e+01, 2.01050731e+01, 2.01050731e+01, 2.01050731e+01,
       2.01571544e+01, 2.01571544e+01, 2.01571544e+01, 2.01571544e+01,
       2.01363521e+01, 2.01363521e+01, 2.01363521e+01, 2.01363521e+01,
       2.00613129e+01, 2.00613129e+01, 2.00613129e+01, 2.00613129e+01,
       2.00257473e+01, 2.00257473e+01, 2.00257473e+01, 2.00257473e+01,
       2.00113940e+01, 2.00113940e+01, 2.00113940e+01, 2.00113940e+01,
       2.00016210e+01, 2.00016210e+01, 2.00016210e+01, 2.00016210e+01,
       1.99912688e+01, 1.99912688e+01, 1.99912688e+01, 1.99912688e+01,
       1.99751513e+01, 1.99751513e+01, 1.99751513e+01, 1.99751513e+01,
       1.99512938e+01, 1.99512938e+01, 1.99512938e+01, 1.99512938e+01,
       1.99269046e+01, 1.99269046e+01, 1.99269046e+01, 1.99269046e+01,
       1.99037068e+01, 1.99037068e+01, 1.99037068e+01, 1.99037068e+01,
       1.98807884e+01, 1.98807884e+01, 1.98807884e+01, 1.98807884e+01,
       1.98596458e+01, 1.98596458e+01, 1.98596458e+01, 1.98596458e+01,
       1.98416867e+01, 1.98416867e+01, 1.98416867e+01, 1.98416867e+01,
       1.98257179e+01, 1.98257179e+01, 1.98257179e+01, 1.98257179e+01,
       1.98115993e+01, 1.98115993e+01, 1.98115993e+01, 1.98115993e+01,
       1.98022942e+01, 1.98022942e+01, 1.98022942e+01, 1.98022942e+01,
       1.97745446e+01, 1.97745446e+01, 1.97745446e+01, 1.97745446e+01,
       1.96599658e+01, 1.96599658e+01, 1.96599658e+01, 1.96599658e+01,
       1.91316282e+01, 1.91316282e+01, 1.91316282e+01, 1.91316282e+01,
       1.68989432e+01, 1.68989432e+01, 1.68989432e+01, 1.68989432e+01,
       9.82776433e+00, 9.82776433e+00, 9.82776433e+00, 9.82776433e+00,
       1.03966586e+00, 1.03966586e+00, 1.03966586e+00, 1.03966586e+00,
       1.02686172e-02, 1.02686172e-02, 1.02686172e-02, 1.02686172e-02,
       5.87596530e-06, 5.87596530e-06, 5.87596530e-06, 5.87596530e-06,
       9.09802870e-10, 9.09802870e-10, 9.09802870e-10, 9.09802870e-10,
       1.40162828e-13, 1.40162828e-13, 1.40162828e-13, 1.40162828e-13,
       2.18096263e-17, 2.18096263e-17, 2.18096263e-17, 2.18096263e-17,
       4.14673755e-21, 4.14673755e-21, 4.14673755e-21, 4.14673755e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99478084e+02, 9.99478084e+02, 9.99478084e+02, 9.99478084e+02,
       9.98594612e+02, 9.98594612e+02, 9.98594612e+02, 9.98594612e+02,
       9.97025182e+02, 9.97025182e+02, 9.97025182e+02, 9.97025182e+02,
       9.93973403e+02, 9.93973403e+02, 9.93973403e+02, 9.93973403e+02,
       9.88603735e+02, 9.88603735e+02, 9.88603735e+02, 9.88603735e+02,
       9.79857278e+02, 9.79857278e+02, 9.79857278e+02, 9.79857278e+02,
       9.66732858e+02, 9.66732858e+02, 9.66732858e+02, 9.66732858e+02,
       9.48559568e+02, 9.48559568e+02, 9.48559568e+02, 9.48559568e+02,
       9.25238470e+02, 9.25238470e+02, 9.25238470e+02, 9.25238470e+02,
       8.97294073e+02, 8.97294073e+02, 8.97294073e+02, 8.97294073e+02,
       8.65708163e+02, 8.65708163e+02, 8.65708163e+02, 8.65708163e+02,
       8.31624879e+02, 8.31624879e+02, 8.31624879e+02, 8.31624879e+02,
       7.96056352e+02, 7.96056352e+02, 7.96056352e+02, 7.96056352e+02,
       7.59769847e+02, 7.59769847e+02, 7.59769847e+02, 7.59769847e+02,
       7.23915193e+02, 7.23915193e+02, 7.23915193e+02, 7.23915193e+02,
       6.89464378e+02, 6.89464378e+02, 6.89464378e+02, 6.89464378e+02,
       6.56557931e+02, 6.56557931e+02, 6.56557931e+02, 6.56557931e+02,
       6.25161940e+02, 6.25161940e+02, 6.25161940e+02, 6.25161940e+02,
       5.95273088e+02, 5.95273088e+02, 5.95273088e+02, 5.95273088e+02,
       5.66968750e+02, 5.66968750e+02, 5.66968750e+02, 5.66968750e+02,
       5.40439673e+02, 5.40439673e+02, 5.40439673e+02, 5.40439673e+02,
       5.16100425e+02, 5.16100425e+02, 5.16100425e+02, 5.16100425e+02,
       4.94565963e+02, 4.94565963e+02, 4.94565963e+02, 4.94565963e+02,
       4.76716435e+02, 4.76716435e+02, 4.76716435e+02, 4.76716435e+02,
       4.63423824e+02, 4.63423824e+02, 4.63423824e+02, 4.63423824e+02,
       4.55097958e+02, 4.55097958e+02, 4.55097958e+02, 4.55097958e+02,
       4.51223672e+02, 4.51223672e+02, 4.51223672e+02, 4.51223672e+02,
       4.50235886e+02, 4.50235886e+02, 4.50235886e+02, 4.50235886e+02,
       4.50627214e+02, 4.50627214e+02, 4.50627214e+02, 4.50627214e+02,
       4.52045781e+02, 4.52045781e+02, 4.52045781e+02, 4.52045781e+02,
       4.52733619e+02, 4.52733619e+02, 4.52733619e+02, 4.52733619e+02,
       4.53008677e+02, 4.53008677e+02, 4.53008677e+02, 4.53008677e+02,
       4.53183711e+02, 4.53183711e+02, 4.53183711e+02, 4.53183711e+02,
       4.53371405e+02, 4.53371405e+02, 4.53371405e+02, 4.53371405e+02,
       4.53677995e+02, 4.53677995e+02, 4.53677995e+02, 4.53677995e+02,
       4.54140504e+02, 4.54140504e+02, 4.54140504e+02, 4.54140504e+02,
       4.54621285e+02, 4.54621285e+02, 4.54621285e+02, 4.54621285e+02,
       4.55065003e+02, 4.55065003e+02, 4.55065003e+02, 4.55065003e+02,
       4.55473454e+02, 4.55473454e+02, 4.55473454e+02, 4.55473454e+02,
       4.55862605e+02, 4.55862605e+02, 4.55862605e+02, 4.55862605e+02,
       4.56251236e+02, 4.56251236e+02, 4.56251236e+02, 4.56251236e+02,
       4.56613227e+02, 4.56613227e+02, 4.56613227e+02, 4.56613227e+02,
       4.57031953e+02, 4.57031953e+02, 4.57031953e+02, 4.57031953e+02,
       4.57636572e+02, 4.57636572e+02, 4.57636572e+02, 4.57636572e+02,
       4.57734018e+02, 4.57734018e+02, 4.57734018e+02, 4.57734018e+02,
       4.53736791e+02, 4.53736791e+02, 4.53736791e+02, 4.53736791e+02,
       4.27841681e+02, 4.27841681e+02, 4.27841681e+02, 4.27841681e+02,
       3.22491407e+02, 3.22491407e+02, 3.22491407e+02, 3.22491407e+02,
       1.03503221e+02, 1.03503221e+02, 1.03503221e+02, 1.03503221e+02,
       3.92201766e+00, 3.92201766e+00, 3.92201766e+00, 3.92201766e+00,
       1.65463831e-02, 1.65463831e-02, 1.65463831e-02, 1.65463831e-02,
       1.00006926e-02, 1.00006926e-02, 1.00006926e-02, 1.00006926e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99929182, 0.99929182, 0.99929182, 0.99929182, 0.99819056,
       0.99819056, 0.99819056, 0.99819056, 0.99638774, 0.99638774,
       0.99638774, 0.99638774, 0.99307857, 0.99307857, 0.99307857,
       0.99307857, 0.98762234, 0.98762234, 0.98762234, 0.98762234,
       0.97927076, 0.97927076, 0.97927076, 0.97927076, 0.96745681,
       0.96745681, 0.96745681, 0.96745681, 0.95194398, 0.95194398,
       0.95194398, 0.95194398, 0.93291304, 0.93291304, 0.93291304,
       0.93291304, 0.91089851, 0.91089851, 0.91089851, 0.91089851,
       0.88661886, 0.88661886, 0.88661886, 0.88661886, 0.86077838,
       0.86077838, 0.86077838, 0.86077838, 0.83390834, 0.83390834,
       0.83390834, 0.83390834, 0.80667351, 0.80667351, 0.80667351,
       0.80667351, 0.77989973, 0.77989973, 0.77989973, 0.77989973,
       0.75387045, 0.75387045, 0.75387045, 0.75387045, 0.72866226,
       0.72866226, 0.72866226, 0.72866226, 0.70425431, 0.70425431,
       0.70425431, 0.70425431, 0.68070198, 0.68070198, 0.68070198,
       0.68070198, 0.65806701, 0.65806701, 0.65806701, 0.65806701,
       0.63686275, 0.63686275, 0.63686275, 0.63686275, 0.61660877,
       0.61660877, 0.61660877, 0.61660877, 0.60023979, 0.60023979,
       0.60023979, 0.60023979, 0.58434031, 0.58434031, 0.58434031,
       0.58434031, 0.57531196, 0.57531196, 0.57531196, 0.57531196,
       0.56885665, 0.56885665, 0.56885665, 0.56885665, 0.56535251,
       0.56535251, 0.56535251, 0.56535251, 0.56542652, 0.56542652,
       0.56542652, 0.56542652, 0.56613675, 0.56613675, 0.56613675,
       0.56613675, 0.56722021, 0.56722021, 0.56722021, 0.56722021,
       0.56734999, 0.56734999, 0.56734999, 0.56734999, 0.56761109,
       0.56761109, 0.56761109, 0.56761109, 0.56787835, 0.56787835,
       0.56787835, 0.56787835, 0.56795177, 0.56795177, 0.56795177,
       0.56795177, 0.56808491, 0.56808491, 0.56808491, 0.56808491,
       0.56833262, 0.56833262, 0.56833262, 0.56833262, 0.56862979,
       0.56862979, 0.56862979, 0.56862979, 0.56915933, 0.56915933,
       0.56915933, 0.56915933, 0.570773  , 0.570773  , 0.570773  ,
       0.570773  , 0.57706088, 0.57706088, 0.57706088, 0.57706088,
       0.59949934, 0.59949934, 0.59949934, 0.59949934, 0.66700177,
       0.66700177, 0.66700177, 0.66700177, 0.83868505, 0.83868505,
       0.83868505, 0.83868505, 1.21237055, 1.21237055, 1.21237055,
       1.21237055, 1.91223289, 1.91223289, 1.91223289, 1.91223289,
       3.007806  , 3.007806  , 3.007806  , 3.007806  , 3.87809533,
       3.87809533, 3.87809533, 3.87809533, 4.06550349, 4.06550349,
       4.06550349, 4.06550349, 3.31660165, 3.31660165, 3.31660165,
       3.31660165, 1.51650855, 1.51650855, 1.51650855, 1.51650855,
       1.03580283, 1.03580283, 1.03580283, 1.03580283, 1.00089283,
       1.00089283, 1.00089283, 1.00089283, 1.00000042, 1.00000042,
       1.00000042, 1.00000042, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.65061748e-02, 2.65061748e-02, 2.65061748e-02, 2.65061748e-02,
       6.77521323e-02, 6.77521323e-02, 6.77521323e-02, 6.77521323e-02,
       1.35347197e-01, 1.35347197e-01, 1.35347197e-01, 1.35347197e-01,
       2.59685207e-01, 2.59685207e-01, 2.59685207e-01, 2.59685207e-01,
       4.65425979e-01, 4.65425979e-01, 4.65425979e-01, 4.65425979e-01,
       7.82144211e-01, 7.82144211e-01, 7.82144211e-01, 7.82144211e-01,
       1.23395371e+00, 1.23395371e+00, 1.23395371e+00, 1.23395371e+00,
       1.83410775e+00, 1.83410775e+00, 1.83410775e+00, 1.83410775e+00,
       2.58131290e+00, 2.58131290e+00, 2.58131290e+00, 2.58131290e+00,
       3.46116458e+00, 3.46116458e+00, 3.46116458e+00, 3.46116458e+00,
       4.45155217e+00, 4.45155217e+00, 4.45155217e+00, 4.45155217e+00,
       5.52969690e+00, 5.52969690e+00, 5.52969690e+00, 5.52969690e+00,
       6.67852811e+00, 6.67852811e+00, 6.67852811e+00, 6.67852811e+00,
       7.86873820e+00, 7.86873820e+00, 7.86873820e+00, 7.86873820e+00,
       9.07107121e+00, 9.07107121e+00, 9.07107121e+00, 9.07107121e+00,
       1.02736328e+01, 1.02736328e+01, 1.02736328e+01, 1.02736328e+01,
       1.14723262e+01, 1.14723262e+01, 1.14723262e+01, 1.14723262e+01,
       1.26646432e+01, 1.26646432e+01, 1.26646432e+01, 1.26646432e+01,
       1.38470920e+01, 1.38470920e+01, 1.38470920e+01, 1.38470920e+01,
       1.50122685e+01, 1.50122685e+01, 1.50122685e+01, 1.50122685e+01,
       1.61443786e+01, 1.61443786e+01, 1.61443786e+01, 1.61443786e+01,
       1.72174436e+01, 1.72174436e+01, 1.72174436e+01, 1.72174436e+01,
       1.81881157e+01, 1.81881157e+01, 1.81881157e+01, 1.81881157e+01,
       1.90020678e+01, 1.90020678e+01, 1.90020678e+01, 1.90020678e+01,
       1.96026064e+01, 1.96026064e+01, 1.96026064e+01, 1.96026064e+01,
       1.99654493e+01, 1.99654493e+01, 1.99654493e+01, 1.99654493e+01,
       2.01215540e+01, 2.01215540e+01, 2.01215540e+01, 2.01215540e+01,
       2.01536613e+01, 2.01536613e+01, 2.01536613e+01, 2.01536613e+01,
       2.01186860e+01, 2.01186860e+01, 2.01186860e+01, 2.01186860e+01,
       2.00503930e+01, 2.00503930e+01, 2.00503930e+01, 2.00503930e+01,
       2.00214278e+01, 2.00214278e+01, 2.00214278e+01, 2.00214278e+01,
       2.00088918e+01, 2.00088918e+01, 2.00088918e+01, 2.00088918e+01,
       1.99992270e+01, 1.99992270e+01, 1.99992270e+01, 1.99992270e+01,
       1.99879478e+01, 1.99879478e+01, 1.99879478e+01, 1.99879478e+01,
       1.99697555e+01, 1.99697555e+01, 1.99697555e+01, 1.99697555e+01,
       1.99444645e+01, 1.99444645e+01, 1.99444645e+01, 1.99444645e+01,
       1.99203251e+01, 1.99203251e+01, 1.99203251e+01, 1.99203251e+01,
       1.98978235e+01, 1.98978235e+01, 1.98978235e+01, 1.98978235e+01,
       1.98758306e+01, 1.98758306e+01, 1.98758306e+01, 1.98758306e+01,
       1.98547615e+01, 1.98547615e+01, 1.98547615e+01, 1.98547615e+01,
       1.98366120e+01, 1.98366120e+01, 1.98366120e+01, 1.98366120e+01,
       1.98210642e+01, 1.98210642e+01, 1.98210642e+01, 1.98210642e+01,
       1.98067178e+01, 1.98067178e+01, 1.98067178e+01, 1.98067178e+01,
       1.97979636e+01, 1.97979636e+01, 1.97979636e+01, 1.97979636e+01,
       1.97829582e+01, 1.97829582e+01, 1.97829582e+01, 1.97829582e+01,
       1.97247063e+01, 1.97247063e+01, 1.97247063e+01, 1.97247063e+01,
       1.94611034e+01, 1.94611034e+01, 1.94611034e+01, 1.94611034e+01,
       1.82839011e+01, 1.82839011e+01, 1.82839011e+01, 1.82839011e+01,
       1.38817854e+01, 1.38817854e+01, 1.38817854e+01, 1.38817854e+01,
       4.10564450e+00, 4.10564450e+00, 4.10564450e+00, 4.10564450e+00,
       1.19559981e-01, 1.19559981e-01, 1.19559981e-01, 1.19559981e-01,
       2.64879102e-04, 2.64879102e-04, 2.64879102e-04, 2.64879102e-04,
       4.95793305e-08, 4.95793305e-08, 4.95793305e-08, 4.95793305e-08,
       8.02645853e-12, 8.02645853e-12, 8.02645853e-12, 8.02645853e-12,
       1.28397217e-15, 1.28397217e-15, 1.28397217e-15, 1.28397217e-15,
       1.96745591e-19, 1.96745591e-19, 1.96745591e-19, 1.96745591e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99008791e+02, 9.99008791e+02, 9.99008791e+02, 9.99008791e+02,
       9.97467896e+02, 9.97467896e+02, 9.97467896e+02, 9.97467896e+02,
       9.94947317e+02, 9.94947317e+02, 9.94947317e+02, 9.94947317e+02,
       9.90325847e+02, 9.90325847e+02, 9.90325847e+02, 9.90325847e+02,
       9.82720519e+02, 9.82720519e+02, 9.82720519e+02, 9.82720519e+02,
       9.71113593e+02, 9.71113593e+02, 9.71113593e+02, 9.71113593e+02,
       9.54764008e+02, 9.54764008e+02, 9.54764008e+02, 9.54764008e+02,
       9.33417401e+02, 9.33417401e+02, 9.33417401e+02, 9.33417401e+02,
       9.07418550e+02, 9.07418550e+02, 9.07418550e+02, 9.07418550e+02,
       8.77605065e+02, 8.77605065e+02, 8.77605065e+02, 8.77605065e+02,
       8.45053460e+02, 8.45053460e+02, 8.45053460e+02, 8.45053460e+02,
       8.10795758e+02, 8.10795758e+02, 8.10795758e+02, 8.10795758e+02,
       7.75604847e+02, 7.75604847e+02, 7.75604847e+02, 7.75604847e+02,
       7.40358342e+02, 7.40358342e+02, 7.40358342e+02, 7.40358342e+02,
       7.06183106e+02, 7.06183106e+02, 7.06183106e+02, 7.06183106e+02,
       6.73414104e+02, 6.73414104e+02, 6.73414104e+02, 6.73414104e+02,
       6.42106090e+02, 6.42106090e+02, 6.42106090e+02, 6.42106090e+02,
       6.12205307e+02, 6.12205307e+02, 6.12205307e+02, 6.12205307e+02,
       5.83733464e+02, 5.83733464e+02, 5.83733464e+02, 5.83733464e+02,
       5.56805862e+02, 5.56805862e+02, 5.56805862e+02, 5.56805862e+02,
       5.31654012e+02, 5.31654012e+02, 5.31654012e+02, 5.31654012e+02,
       5.08742192e+02, 5.08742192e+02, 5.08742192e+02, 5.08742192e+02,
       4.88731625e+02, 4.88731625e+02, 4.88731625e+02, 4.88731625e+02,
       4.72495806e+02, 4.72495806e+02, 4.72495806e+02, 4.72495806e+02,
       4.60808275e+02, 4.60808275e+02, 4.60808275e+02, 4.60808275e+02,
       4.53862047e+02, 4.53862047e+02, 4.53862047e+02, 4.53862047e+02,
       4.50909195e+02, 4.50909195e+02, 4.50909195e+02, 4.50909195e+02,
       4.50303363e+02, 4.50303363e+02, 4.50303363e+02, 4.50303363e+02,
       4.50963314e+02, 4.50963314e+02, 4.50963314e+02, 4.50963314e+02,
       4.52251030e+02, 4.52251030e+02, 4.52251030e+02, 4.52251030e+02,
       4.52805650e+02, 4.52805650e+02, 4.52805650e+02, 4.52805650e+02,
       4.53054444e+02, 4.53054444e+02, 4.53054444e+02, 4.53054444e+02,
       4.53236462e+02, 4.53236462e+02, 4.53236462e+02, 4.53236462e+02,
       4.53444188e+02, 4.53444188e+02, 4.53444188e+02, 4.53444188e+02,
       4.53782015e+02, 4.53782015e+02, 4.53782015e+02, 4.53782015e+02,
       4.54259731e+02, 4.54259731e+02, 4.54259731e+02, 4.54259731e+02,
       4.54730412e+02, 4.54730412e+02, 4.54730412e+02, 4.54730412e+02,
       4.55178339e+02, 4.55178339e+02, 4.55178339e+02, 4.55178339e+02,
       4.55590920e+02, 4.55590920e+02, 4.55590920e+02, 4.55590920e+02,
       4.55961244e+02, 4.55961244e+02, 4.55961244e+02, 4.55961244e+02,
       4.56316460e+02, 4.56316460e+02, 4.56316460e+02, 4.56316460e+02,
       4.56666544e+02, 4.56666544e+02, 4.56666544e+02, 4.56666544e+02,
       4.57026199e+02, 4.57026199e+02, 4.57026199e+02, 4.57026199e+02,
       4.57531552e+02, 4.57531552e+02, 4.57531552e+02, 4.57531552e+02,
       4.58018403e+02, 4.58018403e+02, 4.58018403e+02, 4.58018403e+02,
       4.56713026e+02, 4.56713026e+02, 4.56713026e+02, 4.56713026e+02,
       4.44619433e+02, 4.44619433e+02, 4.44619433e+02, 4.44619433e+02,
       3.86158645e+02, 3.86158645e+02, 3.86158645e+02, 3.86158645e+02,
       2.07519215e+02, 2.07519215e+02, 2.07519215e+02, 2.07519215e+02,
       2.53994497e+01, 2.53994497e+01, 2.53994497e+01, 2.53994497e+01,
       2.14148688e-01, 2.14148688e-01, 2.14148688e-01, 2.14148688e-01,
       1.00450120e-02, 1.00450120e-02, 1.00450120e-02, 1.00450120e-02,
       1.00000059e-02, 1.00000059e-02, 1.00000059e-02, 1.00000059e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99871963, 0.99871963, 0.99871963, 0.99871963, 0.99689581,
       0.99689581, 0.99689581, 0.99689581, 0.99415366, 0.99415366,
       0.99415366, 0.99415366, 0.98939445, 0.98939445, 0.98939445,
       0.98939445, 0.98204346, 0.98204346, 0.98204346, 0.98204346,
       0.97146171, 0.97146171, 0.97146171, 0.97146171, 0.9573379 ,
       0.9573379 , 0.9573379 , 0.9573379 , 0.93973497, 0.93973497,
       0.93973497, 0.93973497, 0.91908294, 0.91908294, 0.91908294,
       0.91908294, 0.89603722, 0.89603722, 0.89603722, 0.89603722,
       0.87129459, 0.87129459, 0.87129459, 0.87129459, 0.84542383,
       0.84542383, 0.84542383, 0.84542383, 0.81892298, 0.81892298,
       0.81892298, 0.81892298, 0.79259907, 0.79259907, 0.79259907,
       0.79259907, 0.76689349, 0.76689349, 0.76689349, 0.76689349,
       0.74195878, 0.74195878, 0.74195878, 0.74195878, 0.71776989,
       0.71776989, 0.71776989, 0.71776989, 0.69434792, 0.69434792,
       0.69434792, 0.69434792, 0.67176942, 0.67176942, 0.67176942,
       0.67176942, 0.65008496, 0.65008496, 0.65008496, 0.65008496,
       0.62996773, 0.62996773, 0.62996773, 0.62996773, 0.61070758,
       0.61070758, 0.61070758, 0.61070758, 0.59567443, 0.59567443,
       0.59567443, 0.59567443, 0.58118471, 0.58118471, 0.58118471,
       0.58118471, 0.57312756, 0.57312756, 0.57312756, 0.57312756,
       0.56818316, 0.56818316, 0.56818316, 0.56818316, 0.56529871,
       0.56529871, 0.56529871, 0.56529871, 0.56537711, 0.56537711,
       0.56537711, 0.56537711, 0.56637301, 0.56637301, 0.56637301,
       0.56637301, 0.56746355, 0.56746355, 0.56746355, 0.56746355,
       0.56750707, 0.56750707, 0.56750707, 0.56750707, 0.56762621,
       0.56762621, 0.56762621, 0.56762621, 0.56789882, 0.56789882,
       0.56789882, 0.56789882, 0.56806145, 0.56806145, 0.56806145,
       0.56806145, 0.56826163, 0.56826163, 0.56826163, 0.56826163,
       0.56851406, 0.56851406, 0.56851406, 0.56851406, 0.56877122,
       0.56877122, 0.56877122, 0.56877122, 0.56918068, 0.56918068,
       0.56918068, 0.56918068, 0.57030245, 0.57030245, 0.57030245,
       0.57030245, 0.5745043 , 0.5745043 , 0.5745043 , 0.5745043 ,
       0.58979671, 0.58979671, 0.58979671, 0.58979671, 0.63756363,
       0.63756363, 0.63756363, 0.63756363, 0.7640859 , 0.7640859 ,
       0.7640859 , 0.7640859 , 1.05129673, 1.05129673, 1.05129673,
       1.05129673, 1.61395351, 1.61395351, 1.61395351, 1.61395351,
       2.56324844, 2.56324844, 2.56324844, 2.56324844, 3.64796108,
       3.64796108, 3.64796108, 3.64796108, 4.10212289, 4.10212289,
       4.10212289, 4.10212289, 3.88420625, 3.88420625, 3.88420625,
       3.88420625, 2.28314086, 2.28314086, 2.28314086, 2.28314086,
       1.12772592, 1.12772592, 1.12772592, 1.12772592, 1.00628402,
       1.00628402, 1.00628402, 1.00628402, 1.00002417, 1.00002417,
       1.00002417, 1.00002417, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([4.79346584e-02, 4.79346584e-02, 4.79346584e-02, 4.79346584e-02,
       1.16295186e-01, 1.16295186e-01, 1.16295186e-01, 1.16295186e-01,
       2.19249025e-01, 2.19249025e-01, 2.19249025e-01, 2.19249025e-01,
       3.98505426e-01, 3.98505426e-01, 3.98505426e-01, 3.98505426e-01,
       6.76753261e-01, 6.76753261e-01, 6.76753261e-01, 6.76753261e-01,
       1.08029397e+00, 1.08029397e+00, 1.08029397e+00, 1.08029397e+00,
       1.62453623e+00, 1.62453623e+00, 1.62453623e+00, 1.62453623e+00,
       2.31205472e+00, 2.31205472e+00, 2.31205472e+00, 2.31205472e+00,
       3.13205824e+00, 3.13205824e+00, 3.13205824e+00, 3.13205824e+00,
       4.06476657e+00, 4.06476657e+00, 4.06476657e+00, 4.06476657e+00,
       5.08775132e+00, 5.08775132e+00, 5.08775132e+00, 5.08775132e+00,
       6.18246089e+00, 6.18246089e+00, 6.18246089e+00, 6.18246089e+00,
       7.33022569e+00, 7.33022569e+00, 7.33022569e+00, 7.33022569e+00,
       8.49610187e+00, 8.49610187e+00, 8.49610187e+00, 8.49610187e+00,
       9.66738034e+00, 9.66738034e+00, 9.66738034e+00, 9.66738034e+00,
       1.08365227e+01, 1.08365227e+01, 1.08365227e+01, 1.08365227e+01,
       1.20006085e+01, 1.20006085e+01, 1.20006085e+01, 1.20006085e+01,
       1.31582056e+01, 1.31582056e+01, 1.31582056e+01, 1.31582056e+01,
       1.43045927e+01, 1.43045927e+01, 1.43045927e+01, 1.43045927e+01,
       1.54308433e+01, 1.54308433e+01, 1.54308433e+01, 1.54308433e+01,
       1.65188815e+01, 1.65188815e+01, 1.65188815e+01, 1.65188815e+01,
       1.75398658e+01, 1.75398658e+01, 1.75398658e+01, 1.75398658e+01,
       1.84481157e+01, 1.84481157e+01, 1.84481157e+01, 1.84481157e+01,
       1.91900861e+01, 1.91900861e+01, 1.91900861e+01, 1.91900861e+01,
       1.97162589e+01, 1.97162589e+01, 1.97162589e+01, 1.97162589e+01,
       2.00152679e+01, 2.00152679e+01, 2.00152679e+01, 2.00152679e+01,
       2.01312403e+01, 2.01312403e+01, 2.01312403e+01, 2.01312403e+01,
       2.01482309e+01, 2.01482309e+01, 2.01482309e+01, 2.01482309e+01,
       2.01006098e+01, 2.01006098e+01, 2.01006098e+01, 2.01006098e+01,
       2.00417664e+01, 2.00417664e+01, 2.00417664e+01, 2.00417664e+01,
       2.00177684e+01, 2.00177684e+01, 2.00177684e+01, 2.00177684e+01,
       2.00061893e+01, 2.00061893e+01, 2.00061893e+01, 2.00061893e+01,
       1.99964358e+01, 1.99964358e+01, 1.99964358e+01, 1.99964358e+01,
       1.99841326e+01, 1.99841326e+01, 1.99841326e+01, 1.99841326e+01,
       1.99640722e+01, 1.99640722e+01, 1.99640722e+01, 1.99640722e+01,
       1.99380327e+01, 1.99380327e+01, 1.99380327e+01, 1.99380327e+01,
       1.99138950e+01, 1.99138950e+01, 1.99138950e+01, 1.99138950e+01,
       1.98915983e+01, 1.98915983e+01, 1.98915983e+01, 1.98915983e+01,
       1.98706224e+01, 1.98706224e+01, 1.98706224e+01, 1.98706224e+01,
       1.98504781e+01, 1.98504781e+01, 1.98504781e+01, 1.98504781e+01,
       1.98321531e+01, 1.98321531e+01, 1.98321531e+01, 1.98321531e+01,
       1.98164498e+01, 1.98164498e+01, 1.98164498e+01, 1.98164498e+01,
       1.98028802e+01, 1.98028802e+01, 1.98028802e+01, 1.98028802e+01,
       1.97923327e+01, 1.97923327e+01, 1.97923327e+01, 1.97923327e+01,
       1.97838509e+01, 1.97838509e+01, 1.97838509e+01, 1.97838509e+01,
       1.97535132e+01, 1.97535132e+01, 1.97535132e+01, 1.97535132e+01,
       1.96225421e+01, 1.96225421e+01, 1.96225421e+01, 1.96225421e+01,
       1.90212196e+01, 1.90212196e+01, 1.90212196e+01, 1.90212196e+01,
       1.65525784e+01, 1.65525784e+01, 1.65525784e+01, 1.65525784e+01,
       9.01356040e+00, 9.01356040e+00, 9.01356040e+00, 9.01356040e+00,
       7.89629666e-01, 7.89629666e-01, 7.89629666e-01, 7.89629666e-01,
       6.47563091e-03, 6.47563091e-03, 6.47563091e-03, 6.47563091e-03,
       3.00072068e-06, 3.00072068e-06, 3.00072068e-06, 3.00072068e-06,
       4.61483424e-10, 4.61483424e-10, 4.61483424e-10, 4.61483424e-10,
       7.14105492e-14, 7.14105492e-14, 7.14105492e-14, 7.14105492e-14,
       1.12055754e-17, 1.12055754e-17, 1.12055754e-17, 1.12055754e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.98208251e+02, 9.98208251e+02, 9.98208251e+02, 9.98208251e+02,
       9.95657307e+02, 9.95657307e+02, 9.95657307e+02, 9.95657307e+02,
       9.91826551e+02, 9.91826551e+02, 9.91826551e+02, 9.91826551e+02,
       9.85188507e+02, 9.85188507e+02, 9.85188507e+02, 9.85188507e+02,
       9.74962220e+02, 9.74962220e+02, 9.74962220e+02, 9.74962220e+02,
       9.60296787e+02, 9.60296787e+02, 9.60296787e+02, 9.60296787e+02,
       9.40822905e+02, 9.40822905e+02, 9.40822905e+02, 9.40822905e+02,
       9.16712279e+02, 9.16712279e+02, 9.16712279e+02, 9.16712279e+02,
       8.88653079e+02, 8.88653079e+02, 8.88653079e+02, 8.88653079e+02,
       8.57635270e+02, 8.57635270e+02, 8.57635270e+02, 8.57635270e+02,
       8.24683912e+02, 8.24683912e+02, 8.24683912e+02, 8.24683912e+02,
       7.90625936e+02, 7.90625936e+02, 7.90625936e+02, 7.90625936e+02,
       7.56152074e+02, 7.56152074e+02, 7.56152074e+02, 7.56152074e+02,
       7.22323562e+02, 7.22323562e+02, 7.22323562e+02, 7.22323562e+02,
       6.89748211e+02, 6.89748211e+02, 6.89748211e+02, 6.89748211e+02,
       6.58562261e+02, 6.58562261e+02, 6.58562261e+02, 6.58562261e+02,
       6.28705838e+02, 6.28705838e+02, 6.28705838e+02, 6.28705838e+02,
       6.00181833e+02, 6.00181833e+02, 6.00181833e+02, 6.00181833e+02,
       5.73028492e+02, 5.73028492e+02, 5.73028492e+02, 5.73028492e+02,
       5.47394913e+02, 5.47394913e+02, 5.47394913e+02, 5.47394913e+02,
       5.23556041e+02, 5.23556041e+02, 5.23556041e+02, 5.23556041e+02,
       5.02022645e+02, 5.02022645e+02, 5.02022645e+02, 5.02022645e+02,
       4.83490652e+02, 4.83490652e+02, 4.83490652e+02, 4.83490652e+02,
       4.68807418e+02, 4.68807418e+02, 4.68807418e+02, 4.68807418e+02,
       4.58628006e+02, 4.58628006e+02, 4.58628006e+02, 4.58628006e+02,
       4.52917665e+02, 4.52917665e+02, 4.52917665e+02, 4.52917665e+02,
       4.50722891e+02, 4.50722891e+02, 4.50722891e+02, 4.50722891e+02,
       4.50404840e+02, 4.50404840e+02, 4.50404840e+02, 4.50404840e+02,
       4.51305706e+02, 4.51305706e+02, 4.51305706e+02, 4.51305706e+02,
       4.52417827e+02, 4.52417827e+02, 4.52417827e+02, 4.52417827e+02,
       4.52869771e+02, 4.52869771e+02, 4.52869771e+02, 4.52869771e+02,
       4.53098143e+02, 4.53098143e+02, 4.53098143e+02, 4.53098143e+02,
       4.53288109e+02, 4.53288109e+02, 4.53288109e+02, 4.53288109e+02,
       4.53522454e+02, 4.53522454e+02, 4.53522454e+02, 4.53522454e+02,
       4.53898721e+02, 4.53898721e+02, 4.53898721e+02, 4.53898721e+02,
       4.54383577e+02, 4.54383577e+02, 4.54383577e+02, 4.54383577e+02,
       4.54840633e+02, 4.54840633e+02, 4.54840633e+02, 4.54840633e+02,
       4.55282568e+02, 4.55282568e+02, 4.55282568e+02, 4.55282568e+02,
       4.55699208e+02, 4.55699208e+02, 4.55699208e+02, 4.55699208e+02,
       4.56064730e+02, 4.56064730e+02, 4.56064730e+02, 4.56064730e+02,
       4.56394118e+02, 4.56394118e+02, 4.56394118e+02, 4.56394118e+02,
       4.56721490e+02, 4.56721490e+02, 4.56721490e+02, 4.56721490e+02,
       4.57041842e+02, 4.57041842e+02, 4.57041842e+02, 4.57041842e+02,
       4.57452339e+02, 4.57452339e+02, 4.57452339e+02, 4.57452339e+02,
       4.58033692e+02, 4.58033692e+02, 4.58033692e+02, 4.58033692e+02,
       4.57888048e+02, 4.57888048e+02, 4.57888048e+02, 4.57888048e+02,
       4.52727602e+02, 4.52727602e+02, 4.52727602e+02, 4.52727602e+02,
       4.22759926e+02, 4.22759926e+02, 4.22759926e+02, 4.22759926e+02,
       3.07068930e+02, 3.07068930e+02, 3.07068930e+02, 3.07068930e+02,
       8.77696574e+01, 8.77696574e+01, 8.77696574e+01, 8.77696574e+01,
       2.68785775e+00, 2.68785775e+00, 2.68785775e+00, 2.68785775e+00,
       1.34301951e-02, 1.34301951e-02, 1.34301951e-02, 1.34301951e-02,
       1.00003538e-02, 1.00003538e-02, 1.00003538e-02, 1.00003538e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99779253, 0.99779253, 0.99779253, 0.99779253, 0.99492087,
       0.99492087, 0.99492087, 0.99492087, 0.99096776, 0.99096776,
       0.99096776, 0.99096776, 0.98445746, 0.98445746, 0.98445746,
       0.98445746, 0.97502252, 0.97502252, 0.97502252, 0.97502252,
       0.9621987 , 0.9621987 , 0.9621987 , 0.9621987 , 0.94596677,
       0.94596677, 0.94596677, 0.94596677, 0.92664513, 0.92664513,
       0.92664513, 0.92664513, 0.90481789, 0.90481789, 0.90481789,
       0.90481789, 0.88115819, 0.88115819, 0.88115819, 0.88115819,
       0.85626688, 0.85626688, 0.85626688, 0.85626688, 0.83058143,
       0.83058143, 0.83058143, 0.83058143, 0.80476657, 0.80476657,
       0.80476657, 0.80476657, 0.77943364, 0.77943364, 0.77943364,
       0.77943364, 0.75476663, 0.75476663, 0.75476663, 0.75476663,
       0.73082127, 0.73082127, 0.73082127, 0.73082127, 0.70758612,
       0.70758612, 0.70758612, 0.70758612, 0.6850841 , 0.6850841 ,
       0.6850841 , 0.6850841 , 0.66342869, 0.66342869, 0.66342869,
       0.66342869, 0.6426441 , 0.6426441 , 0.6426441 , 0.6426441 ,
       0.62359474, 0.62359474, 0.62359474, 0.62359474, 0.60530901,
       0.60530901, 0.60530901, 0.60530901, 0.59154744, 0.59154744,
       0.59154744, 0.59154744, 0.57849861, 0.57849861, 0.57849861,
       0.57849861, 0.57129468, 0.57129468, 0.57129468, 0.57129468,
       0.56764504, 0.56764504, 0.56764504, 0.56764504, 0.56537656,
       0.56537656, 0.56537656, 0.56537656, 0.56541728, 0.56541728,
       0.56541728, 0.56541728, 0.566573  , 0.566573  , 0.566573  ,
       0.566573  , 0.56761976, 0.56761976, 0.56761976, 0.56761976,
       0.56766123, 0.56766123, 0.56766123, 0.56766123, 0.56769891,
       0.56769891, 0.56769891, 0.56769891, 0.56789839, 0.56789839,
       0.56789839, 0.56789839, 0.56815101, 0.56815101, 0.56815101,
       0.56815101, 0.56843359, 0.56843359, 0.56843359, 0.56843359,
       0.56870197, 0.56870197, 0.56870197, 0.56870197, 0.56893189,
       0.56893189, 0.56893189, 0.56893189, 0.56925247, 0.56925247,
       0.56925247, 0.56925247, 0.57003928, 0.57003928, 0.57003928,
       0.57003928, 0.57286264, 0.57286264, 0.57286264, 0.57286264,
       0.58324543, 0.58324543, 0.58324543, 0.58324543, 0.61675826,
       0.61675826, 0.61675826, 0.61675826, 0.70906129, 0.70906129,
       0.70906129, 0.70906129, 0.92724037, 0.92724037, 0.92724037,
       0.92724037, 1.37323589, 1.37323589, 1.37323589, 1.37323589,
       2.1635062 , 2.1635062 , 2.1635062 , 2.1635062 , 3.29148444,
       3.29148444, 3.29148444, 3.29148444, 4.0332475 , 4.0332475 ,
       4.0332475 , 4.0332475 , 4.12979469, 4.12979469, 4.12979469,
       4.12979469, 3.20980045, 3.20980045, 3.20980045, 3.20980045,
       1.4244878 , 1.4244878 , 1.4244878 , 1.4244878 , 1.02817994,
       1.02817994, 1.02817994, 1.02817994, 1.00058696, 1.00058696,
       1.00058696, 1.00058696, 1.00000021, 1.00000021, 1.00000021,
       1.00000021, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.26770714e-02, 8.26770714e-02, 8.26770714e-02, 8.26770714e-02,
       1.90444567e-01, 1.90444567e-01, 1.90444567e-01, 1.90444567e-01,
       3.39156393e-01, 3.39156393e-01, 3.39156393e-01, 3.39156393e-01,
       5.85196350e-01, 5.85196350e-01, 5.85196350e-01, 5.85196350e-01,
       9.44102208e-01, 9.44102208e-01, 9.44102208e-01, 9.44102208e-01,
       1.43650190e+00, 1.43650190e+00, 1.43650190e+00, 1.43650190e+00,
       2.06747296e+00, 2.06747296e+00, 2.06747296e+00, 2.06747296e+00,
       2.83007409e+00, 2.83007409e+00, 2.83007409e+00, 2.83007409e+00,
       3.70711102e+00, 3.70711102e+00, 3.70711102e+00, 3.70711102e+00,
       4.67711511e+00, 4.67711511e+00, 4.67711511e+00, 4.67711511e+00,
       5.72031049e+00, 5.72031049e+00, 5.72031049e+00, 5.72031049e+00,
       6.82230541e+00, 6.82230541e+00, 6.82230541e+00, 6.82230541e+00,
       7.95228204e+00, 7.95228204e+00, 7.95228204e+00, 7.95228204e+00,
       9.09250910e+00, 9.09250910e+00, 9.09250910e+00, 9.09250910e+00,
       1.02322411e+01, 1.02322411e+01, 1.02322411e+01, 1.02322411e+01,
       1.13687918e+01, 1.13687918e+01, 1.13687918e+01, 1.13687918e+01,
       1.25004504e+01, 1.25004504e+01, 1.25004504e+01, 1.25004504e+01,
       1.36248432e+01, 1.36248432e+01, 1.36248432e+01, 1.36248432e+01,
       1.47363425e+01, 1.47363425e+01, 1.47363425e+01, 1.47363425e+01,
       1.58243684e+01, 1.58243684e+01, 1.58243684e+01, 1.58243684e+01,
       1.68684615e+01, 1.68684615e+01, 1.68684615e+01, 1.68684615e+01,
       1.78370966e+01, 1.78370966e+01, 1.78370966e+01, 1.78370966e+01,
       1.86828484e+01, 1.86828484e+01, 1.86828484e+01, 1.86828484e+01,
       1.93540793e+01, 1.93540793e+01, 1.93540793e+01, 1.93540793e+01,
       1.98100759e+01, 1.98100759e+01, 1.98100759e+01, 1.98100759e+01,
       2.00526668e+01, 2.00526668e+01, 2.00526668e+01, 2.00526668e+01,
       2.01358422e+01, 2.01358422e+01, 2.01358422e+01, 2.01358422e+01,
       2.01409960e+01, 2.01409960e+01, 2.01409960e+01, 2.01409960e+01,
       2.00831703e+01, 2.00831703e+01, 2.00831703e+01, 2.00831703e+01,
       2.00347786e+01, 2.00347786e+01, 2.00347786e+01, 2.00347786e+01,
       2.00146195e+01, 2.00146195e+01, 2.00146195e+01, 2.00146195e+01,
       2.00034460e+01, 2.00034460e+01, 2.00034460e+01, 2.00034460e+01,
       1.99933175e+01, 1.99933175e+01, 1.99933175e+01, 1.99933175e+01,
       1.99796992e+01, 1.99796992e+01, 1.99796992e+01, 1.99796992e+01,
       1.99579053e+01, 1.99579053e+01, 1.99579053e+01, 1.99579053e+01,
       1.99319311e+01, 1.99319311e+01, 1.99319311e+01, 1.99319311e+01,
       1.99078330e+01, 1.99078330e+01, 1.99078330e+01, 1.99078330e+01,
       1.98854258e+01, 1.98854258e+01, 1.98854258e+01, 1.98854258e+01,
       1.98650641e+01, 1.98650641e+01, 1.98650641e+01, 1.98650641e+01,
       1.98461462e+01, 1.98461462e+01, 1.98461462e+01, 1.98461462e+01,
       1.98282545e+01, 1.98282545e+01, 1.98282545e+01, 1.98282545e+01,
       1.98124498e+01, 1.98124498e+01, 1.98124498e+01, 1.98124498e+01,
       1.97991749e+01, 1.97991749e+01, 1.97991749e+01, 1.97991749e+01,
       1.97873673e+01, 1.97873673e+01, 1.97873673e+01, 1.97873673e+01,
       1.97808776e+01, 1.97808776e+01, 1.97808776e+01, 1.97808776e+01,
       1.97645088e+01, 1.97645088e+01, 1.97645088e+01, 1.97645088e+01,
       1.96988900e+01, 1.96988900e+01, 1.96988900e+01, 1.96988900e+01,
       1.93964557e+01, 1.93964557e+01, 1.93964557e+01, 1.93964557e+01,
       1.80772383e+01, 1.80772383e+01, 1.80772383e+01, 1.80772383e+01,
       1.32758210e+01, 1.32758210e+01, 1.32758210e+01, 1.32758210e+01,
       3.37432001e+00, 3.37432001e+00, 3.37432001e+00, 3.37432001e+00,
       8.08064010e-02, 8.08064010e-02, 8.08064010e-02, 8.08064010e-02,
       1.40942456e-04, 1.40942456e-04, 1.40942456e-04, 1.40942456e-04,
       2.50612552e-08, 2.50612552e-08, 2.50612552e-08, 2.50612552e-08,
       4.11745361e-12, 4.11745361e-12, 4.11745361e-12, 4.11745361e-12,
       6.55937311e-16, 6.55937311e-16, 6.55937311e-16, 6.55937311e-16,
       9.42282893e-20, 9.42282893e-20, 9.42282893e-20, 9.42282893e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.96911775e+02, 9.96911775e+02, 9.96911775e+02, 9.96911775e+02,
       9.92897461e+02, 9.92897461e+02, 9.92897461e+02, 9.92897461e+02,
       9.87381492e+02, 9.87381492e+02, 9.87381492e+02, 9.87381492e+02,
       9.78316630e+02, 9.78316630e+02, 9.78316630e+02, 9.78316630e+02,
       9.65224072e+02, 9.65224072e+02, 9.65224072e+02, 9.65224072e+02,
       9.47511089e+02, 9.47511089e+02, 9.47511089e+02, 9.47511089e+02,
       9.25225984e+02, 9.25225984e+02, 9.25225984e+02, 9.25225984e+02,
       8.98896472e+02, 8.98896472e+02, 8.98896472e+02, 8.98896472e+02,
       8.69413243e+02, 8.69413243e+02, 8.69413243e+02, 8.69413243e+02,
       8.37771694e+02, 8.37771694e+02, 8.37771694e+02, 8.37771694e+02,
       8.04845422e+02, 8.04845422e+02, 8.04845422e+02, 8.04845422e+02,
       7.71265034e+02, 7.71265034e+02, 7.71265034e+02, 7.71265034e+02,
       7.37891694e+02, 7.37891694e+02, 7.37891694e+02, 7.37891694e+02,
       7.05581087e+02, 7.05581087e+02, 7.05581087e+02, 7.05581087e+02,
       6.74524283e+02, 6.74524283e+02, 6.74524283e+02, 6.74524283e+02,
       6.44761697e+02, 6.44761697e+02, 6.44761697e+02, 6.44761697e+02,
       6.16250581e+02, 6.16250581e+02, 6.16250581e+02, 6.16250581e+02,
       5.89001288e+02, 5.89001288e+02, 5.89001288e+02, 5.89001288e+02,
       5.63080642e+02, 5.63080642e+02, 5.63080642e+02, 5.63080642e+02,
       5.38671716e+02, 5.38671716e+02, 5.38671716e+02, 5.38671716e+02,
       5.16092282e+02, 5.16092282e+02, 5.16092282e+02, 5.16092282e+02,
       4.95896244e+02, 4.95896244e+02, 4.95896244e+02, 4.95896244e+02,
       4.78802137e+02, 4.78802137e+02, 4.78802137e+02, 4.78802137e+02,
       4.65608882e+02, 4.65608882e+02, 4.65608882e+02, 4.65608882e+02,
       4.56832207e+02, 4.56832207e+02, 4.56832207e+02, 4.56832207e+02,
       4.52212128e+02, 4.52212128e+02, 4.52212128e+02, 4.52212128e+02,
       4.50635329e+02, 4.50635329e+02, 4.50635329e+02, 4.50635329e+02,
       4.50539724e+02, 4.50539724e+02, 4.50539724e+02, 4.50539724e+02,
       4.51634371e+02, 4.51634371e+02, 4.51634371e+02, 4.51634371e+02,
       4.52552736e+02, 4.52552736e+02, 4.52552736e+02, 4.52552736e+02,
       4.52930057e+02, 4.52930057e+02, 4.52930057e+02, 4.52930057e+02,
       4.53144052e+02, 4.53144052e+02, 4.53144052e+02, 4.53144052e+02,
       4.53341730e+02, 4.53341730e+02, 4.53341730e+02, 4.53341730e+02,
       4.53605101e+02, 4.53605101e+02, 4.53605101e+02, 4.53605101e+02,
       4.54020478e+02, 4.54020478e+02, 4.54020478e+02, 4.54020478e+02,
       4.54510123e+02, 4.54510123e+02, 4.54510123e+02, 4.54510123e+02,
       4.54955970e+02, 4.54955970e+02, 4.54955970e+02, 4.54955970e+02,
       4.55384422e+02, 4.55384422e+02, 4.55384422e+02, 4.55384422e+02,
       4.55795165e+02, 4.55795165e+02, 4.55795165e+02, 4.55795165e+02,
       4.56163141e+02, 4.56163141e+02, 4.56163141e+02, 4.56163141e+02,
       4.56482181e+02, 4.56482181e+02, 4.56482181e+02, 4.56482181e+02,
       4.56781749e+02, 4.56781749e+02, 4.56781749e+02, 4.56781749e+02,
       4.57078389e+02, 4.57078389e+02, 4.57078389e+02, 4.57078389e+02,
       4.57417386e+02, 4.57417386e+02, 4.57417386e+02, 4.57417386e+02,
       4.57936162e+02, 4.57936162e+02, 4.57936162e+02, 4.57936162e+02,
       4.58275885e+02, 4.58275885e+02, 4.58275885e+02, 4.58275885e+02,
       4.56396881e+02, 4.56396881e+02, 4.56396881e+02, 4.56396881e+02,
       4.42008574e+02, 4.42008574e+02, 4.42008574e+02, 4.42008574e+02,
       3.76142236e+02, 3.76142236e+02, 3.76142236e+02, 3.76142236e+02,
       1.87877799e+02, 1.87877799e+02, 1.87877799e+02, 1.87877799e+02,
       1.93878950e+01, 1.93878950e+01, 1.93878950e+01, 1.93878950e+01,
       1.28441959e-01, 1.28441959e-01, 1.28441959e-01, 1.28441959e-01,
       1.00206317e-02, 1.00206317e-02, 1.00206317e-02, 1.00206317e-02,
       1.00000030e-02, 1.00000030e-02, 1.00000030e-02, 1.00000030e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99636432, 0.99636432, 0.99636432, 0.99636432, 0.99205876,
       0.99205876, 0.99205876, 0.99205876, 0.98664933, 0.98664933,
       0.98664933, 0.98664933, 0.97815371, 0.97815371, 0.97815371,
       0.97815371, 0.9665772 , 0.9665772 , 0.9665772 , 0.9665772 ,
       0.95164637, 0.95164637, 0.95164637, 0.95164637, 0.93362252,
       0.93362252, 0.93362252, 0.93362252, 0.91299712, 0.91299712,
       0.91299712, 0.91299712, 0.89041028, 0.89041028, 0.89041028,
       0.89041028, 0.86647311, 0.86647311, 0.86647311, 0.86647311,
       0.84164558, 0.84164558, 0.84164558, 0.84164558, 0.81642336,
       0.81642336, 0.81642336, 0.81642336, 0.79148604, 0.79148604,
       0.79148604, 0.79148604, 0.76710834, 0.76710834, 0.76710834,
       0.76710834, 0.7434205 , 0.7434205 , 0.7434205 , 0.7434205 ,
       0.72039324, 0.72039324, 0.72039324, 0.72039324, 0.69804488,
       0.69804488, 0.69804488, 0.69804488, 0.67640665, 0.67640665,
       0.67640665, 0.67640665, 0.65563302, 0.65563302, 0.65563302,
       0.65563302, 0.63570432, 0.63570432, 0.63570432, 0.63570432,
       0.61770755, 0.61770755, 0.61770755, 0.61770755, 0.60038962,
       0.60038962, 0.60038962, 0.60038962, 0.58782557, 0.58782557,
       0.58782557, 0.58782557, 0.57623676, 0.57623676, 0.57623676,
       0.57623676, 0.56979185, 0.56979185, 0.56979185, 0.56979185,
       0.56720324, 0.56720324, 0.56720324, 0.56720324, 0.56553241,
       0.56553241, 0.56553241, 0.56553241, 0.56556965, 0.56556965,
       0.56556965, 0.56556965, 0.56672103, 0.56672103, 0.56672103,
       0.56672103, 0.56770851, 0.56770851, 0.56770851, 0.56770851,
       0.56779669, 0.56779669, 0.56779669, 0.56779669, 0.56780547,
       0.56780547, 0.56780547, 0.56780547, 0.56792996, 0.56792996,
       0.56792996, 0.56792996, 0.56821566, 0.56821566, 0.56821566,
       0.56821566, 0.5685916 , 0.5685916 , 0.5685916 , 0.5685916 ,
       0.56888519, 0.56888519, 0.56888519, 0.56888519, 0.56910119,
       0.56910119, 0.56910119, 0.56910119, 0.56936231, 0.56936231,
       0.56936231, 0.56936231, 0.56991804, 0.56991804, 0.56991804,
       0.56991804, 0.57182047, 0.57182047, 0.57182047, 0.57182047,
       0.57885305, 0.57885305, 0.57885305, 0.57885305, 0.60219878,
       0.60219878, 0.60219878, 0.60219878, 0.66890255, 0.66890255,
       0.66890255, 0.66890255, 0.83282931, 0.83282931, 0.83282931,
       0.83282931, 1.18191186, 1.18191186, 1.18191186, 1.18191186,
       1.82871125, 1.82871125, 1.82871125, 1.82871125, 2.86090807,
       2.86090807, 2.86090807, 2.86090807, 3.85054369, 3.85054369,
       3.85054369, 3.85054369, 4.19989541, 4.19989541, 4.19989541,
       4.19989541, 3.86486856, 3.86486856, 3.86486856, 3.86486856,
       2.13052935, 2.13052935, 2.13052935, 2.13052935, 1.10421234,
       1.10421234, 1.10421234, 1.10421234, 1.0046868 , 1.0046868 ,
       1.0046868 , 1.0046868 , 1.00001224, 1.00001224, 1.00001224,
       1.00001224, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.36253533e-01, 1.36253533e-01, 1.36253533e-01, 1.36253533e-01,
       2.98133139e-01, 2.98133139e-01, 2.98133139e-01, 2.98133139e-01,
       5.02180164e-01, 5.02180164e-01, 5.02180164e-01, 5.02180164e-01,
       8.24685029e-01, 8.24685029e-01, 8.24685029e-01, 8.24685029e-01,
       1.26777639e+00, 1.26777639e+00, 1.26777639e+00, 1.26777639e+00,
       1.84570316e+00, 1.84570316e+00, 1.84570316e+00, 1.84570316e+00,
       2.55320788e+00, 2.55320788e+00, 2.55320788e+00, 2.55320788e+00,
       3.37646407e+00, 3.37646407e+00, 3.37646407e+00, 3.37646407e+00,
       4.29528509e+00, 4.29528509e+00, 4.29528509e+00, 4.29528509e+00,
       5.28957743e+00, 5.28957743e+00, 5.28957743e+00, 5.28957743e+00,
       6.34426536e+00, 6.34426536e+00, 6.34426536e+00, 6.34426536e+00,
       7.43855306e+00, 7.43855306e+00, 7.43855306e+00, 7.43855306e+00,
       8.54650989e+00, 8.54650989e+00, 8.54650989e+00, 8.54650989e+00,
       9.65778684e+00, 9.65778684e+00, 9.65778684e+00, 9.65778684e+00,
       1.07675433e+01, 1.07675433e+01, 1.07675433e+01, 1.07675433e+01,
       1.18732730e+01, 1.18732730e+01, 1.18732730e+01, 1.18732730e+01,
       1.29739395e+01, 1.29739395e+01, 1.29739395e+01, 1.29739395e+01,
       1.40664784e+01, 1.40664784e+01, 1.40664784e+01, 1.40664784e+01,
       1.51440272e+01, 1.51440272e+01, 1.51440272e+01, 1.51440272e+01,
       1.61942747e+01, 1.61942747e+01, 1.61942747e+01, 1.61942747e+01,
       1.71943313e+01, 1.71943313e+01, 1.71943313e+01, 1.71943313e+01,
       1.81102285e+01, 1.81102285e+01, 1.81102285e+01, 1.81102285e+01,
       1.88935753e+01, 1.88935753e+01, 1.88935753e+01, 1.88935753e+01,
       1.94958477e+01, 1.94958477e+01, 1.94958477e+01, 1.94958477e+01,
       1.98864185e+01, 1.98864185e+01, 1.98864185e+01, 1.98864185e+01,
       2.00798147e+01, 2.00798147e+01, 2.00798147e+01, 2.00798147e+01,
       2.01365297e+01, 2.01365297e+01, 2.01365297e+01, 2.01365297e+01,
       2.01309132e+01, 2.01309132e+01, 2.01309132e+01, 2.01309132e+01,
       2.00684530e+01, 2.00684530e+01, 2.00684530e+01, 2.00684530e+01,
       2.00289832e+01, 2.00289832e+01, 2.00289832e+01, 2.00289832e+01,
       2.00117538e+01, 2.00117538e+01, 2.00117538e+01, 2.00117538e+01,
       2.00007059e+01, 2.00007059e+01, 2.00007059e+01, 2.00007059e+01,
       1.99899662e+01, 1.99899662e+01, 1.99899662e+01, 1.99899662e+01,
       1.99747375e+01, 1.99747375e+01, 1.99747375e+01, 1.99747375e+01,
       1.99513167e+01, 1.99513167e+01, 1.99513167e+01, 1.99513167e+01,
       1.99258024e+01, 1.99258024e+01, 1.99258024e+01, 1.99258024e+01,
       1.99020913e+01, 1.99020913e+01, 1.99020913e+01, 1.99020913e+01,
       1.98796675e+01, 1.98796675e+01, 1.98796675e+01, 1.98796675e+01,
       1.98594450e+01, 1.98594450e+01, 1.98594450e+01, 1.98594450e+01,
       1.98414283e+01, 1.98414283e+01, 1.98414283e+01, 1.98414283e+01,
       1.98245672e+01, 1.98245672e+01, 1.98245672e+01, 1.98245672e+01,
       1.98089852e+01, 1.98089852e+01, 1.98089852e+01, 1.98089852e+01,
       1.97956031e+01, 1.97956031e+01, 1.97956031e+01, 1.97956031e+01,
       1.97837093e+01, 1.97837093e+01, 1.97837093e+01, 1.97837093e+01,
       1.97755943e+01, 1.97755943e+01, 1.97755943e+01, 1.97755943e+01,
       1.97672969e+01, 1.97672969e+01, 1.97672969e+01, 1.97672969e+01,
       1.97336516e+01, 1.97336516e+01, 1.97336516e+01, 1.97336516e+01,
       1.95824012e+01, 1.95824012e+01, 1.95824012e+01, 1.95824012e+01,
       1.89016608e+01, 1.89016608e+01, 1.89016608e+01, 1.89016608e+01,
       1.61684252e+01, 1.61684252e+01, 1.61684252e+01, 1.61684252e+01,
       8.15698720e+00, 8.15698720e+00, 8.15698720e+00, 8.15698720e+00,
       5.95654577e-01, 5.95654577e-01, 5.95654577e-01, 5.95654577e-01,
       3.94968248e-03, 3.94968248e-03, 3.94968248e-03, 3.94968248e-03,
       1.48333272e-06, 1.48333272e-06, 1.48333272e-06, 1.48333272e-06,
       2.26392355e-10, 2.26392355e-10, 2.26392355e-10, 2.26392355e-10,
       3.54863604e-14, 3.54863604e-14, 3.54863604e-14, 3.54863604e-14,
       5.67765305e-18, 5.67765305e-18, 5.67765305e-18, 5.67765305e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.94915923e+02, 9.94915923e+02, 9.94915923e+02, 9.94915923e+02,
       9.88901826e+02, 9.88901826e+02, 9.88901826e+02, 9.88901826e+02,
       9.81366024e+02, 9.81366024e+02, 9.81366024e+02, 9.81366024e+02,
       9.69562839e+02, 9.69562839e+02, 9.69562839e+02, 9.69562839e+02,
       9.53547612e+02, 9.53547612e+02, 9.53547612e+02, 9.53547612e+02,
       9.33005104e+02, 9.33005104e+02, 9.33005104e+02, 9.33005104e+02,
       9.08377668e+02, 9.08377668e+02, 9.08377668e+02, 9.08377668e+02,
       8.80425926e+02, 8.80425926e+02, 8.80425926e+02, 8.80425926e+02,
       8.50101783e+02, 8.50101783e+02, 8.50101783e+02, 8.50101783e+02,
       8.18296299e+02, 8.18296299e+02, 8.18296299e+02, 8.18296299e+02,
       7.85675395e+02, 7.85675395e+02, 7.85675395e+02, 7.85675395e+02,
       7.52902859e+02, 7.52902859e+02, 7.52902859e+02, 7.52902859e+02,
       7.20897155e+02, 7.20897155e+02, 7.20897155e+02, 7.20897155e+02,
       6.90007959e+02, 6.90007959e+02, 6.90007959e+02, 6.90007959e+02,
       6.60368829e+02, 6.60368829e+02, 6.60368829e+02, 6.60368829e+02,
       6.31916337e+02, 6.31916337e+02, 6.31916337e+02, 6.31916337e+02,
       6.04645783e+02, 6.04645783e+02, 6.04645783e+02, 6.04645783e+02,
       5.78584743e+02, 5.78584743e+02, 5.78584743e+02, 5.78584743e+02,
       5.53823640e+02, 5.53823640e+02, 5.53823640e+02, 5.53823640e+02,
       5.30581052e+02, 5.30581052e+02, 5.30581052e+02, 5.30581052e+02,
       5.09216724e+02, 5.09216724e+02, 5.09216724e+02, 5.09216724e+02,
       4.90322663e+02, 4.90322663e+02, 4.90322663e+02, 4.90322663e+02,
       4.74628094e+02, 4.74628094e+02, 4.74628094e+02, 4.74628094e+02,
       4.62859662e+02, 4.62859662e+02, 4.62859662e+02, 4.62859662e+02,
       4.55372213e+02, 4.55372213e+02, 4.55372213e+02, 4.55372213e+02,
       4.51700059e+02, 4.51700059e+02, 4.51700059e+02, 4.51700059e+02,
       4.50624155e+02, 4.50624155e+02, 4.50624155e+02, 4.50624155e+02,
       4.50729577e+02, 4.50729577e+02, 4.50729577e+02, 4.50729577e+02,
       4.51910877e+02, 4.51910877e+02, 4.51910877e+02, 4.51910877e+02,
       4.52662577e+02, 4.52662577e+02, 4.52662577e+02, 4.52662577e+02,
       4.52987231e+02, 4.52987231e+02, 4.52987231e+02, 4.52987231e+02,
       4.53194374e+02, 4.53194374e+02, 4.53194374e+02, 4.53194374e+02,
       4.53400795e+02, 4.53400795e+02, 4.53400795e+02, 4.53400795e+02,
       4.53694238e+02, 4.53694238e+02, 4.53694238e+02, 4.53694238e+02,
       4.54143778e+02, 4.54143778e+02, 4.54143778e+02, 4.54143778e+02,
       4.54633274e+02, 4.54633274e+02, 4.54633274e+02, 4.54633274e+02,
       4.55075065e+02, 4.55075065e+02, 4.55075065e+02, 4.55075065e+02,
       4.55489841e+02, 4.55489841e+02, 4.55489841e+02, 4.55489841e+02,
       4.55884753e+02, 4.55884753e+02, 4.55884753e+02, 4.55884753e+02,
       4.56250604e+02, 4.56250604e+02, 4.56250604e+02, 4.56250604e+02,
       4.56569475e+02, 4.56569475e+02, 4.56569475e+02, 4.56569475e+02,
       4.56850195e+02, 4.56850195e+02, 4.56850195e+02, 4.56850195e+02,
       4.57127711e+02, 4.57127711e+02, 4.57127711e+02, 4.57127711e+02,
       4.57412507e+02, 4.57412507e+02, 4.57412507e+02, 4.57412507e+02,
       4.57820992e+02, 4.57820992e+02, 4.57820992e+02, 4.57820992e+02,
       4.58356923e+02, 4.58356923e+02, 4.58356923e+02, 4.58356923e+02,
       4.57913485e+02, 4.57913485e+02, 4.57913485e+02, 4.57913485e+02,
       4.51520684e+02, 4.51520684e+02, 4.51520684e+02, 4.51520684e+02,
       4.16998340e+02, 4.16998340e+02, 4.16998340e+02, 4.16998340e+02,
       2.90460159e+02, 2.90460159e+02, 2.90460159e+02, 2.90460159e+02,
       7.32958303e+01, 7.32958303e+01, 7.32958303e+01, 7.32958303e+01,
       1.83484411e+00, 1.83484411e+00, 1.83484411e+00, 1.83484411e+00,
       1.17220052e-02, 1.17220052e-02, 1.17220052e-02, 1.17220052e-02,
       1.00001751e-02, 1.00001751e-02, 1.00001751e-02, 1.00001751e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99426946, 0.99426946, 0.99426946, 0.99426946, 0.98811149,
       0.98811149, 0.98811149, 0.98811149, 0.98107232, 0.98107232,
       0.98107232, 0.98107232, 0.97045921, 0.97045921, 0.97045921,
       0.97045921, 0.95682737, 0.95682737, 0.95682737, 0.95682737,
       0.94004521, 0.94004521, 0.94004521, 0.94004521, 0.92060887,
       0.92060887, 0.92060887, 0.92060887, 0.89908557, 0.89908557,
       0.89908557, 0.89908557, 0.87609083, 0.87609083, 0.87609083,
       0.87609083, 0.85212027, 0.85212027, 0.85212027, 0.85212027,
       0.82756445, 0.82756445, 0.82756445, 0.82756445, 0.80306007,
       0.80306007, 0.80306007, 0.80306007, 0.77900808, 0.77900808,
       0.77900808, 0.77900808, 0.75557607, 0.75557607, 0.75557607,
       0.75557607, 0.73277632, 0.73277632, 0.73277632, 0.73277632,
       0.71060835, 0.71060835, 0.71060835, 0.71060835, 0.68909145,
       0.68909145, 0.68909145, 0.68909145, 0.66826654, 0.66826654,
       0.66826654, 0.66826654, 0.64834169, 0.64834169, 0.64834169,
       0.64834169, 0.62923142, 0.62923142, 0.62923142, 0.62923142,
       0.61227339, 0.61227339, 0.61227339, 0.61227339, 0.5959292 ,
       0.5959292 , 0.5959292 , 0.5959292 , 0.58448008, 0.58448008,
       0.58448008, 0.58448008, 0.57434928, 0.57434928, 0.57434928,
       0.57434928, 0.56859881, 0.56859881, 0.56859881, 0.56859881,
       0.56684346, 0.56684346, 0.56684346, 0.56684346, 0.56569203,
       0.56569203, 0.56569203, 0.56569203, 0.56583937, 0.56583937,
       0.56583937, 0.56583937, 0.56683174, 0.56683174, 0.56683174,
       0.56683174, 0.56774694, 0.56774694, 0.56774694, 0.56774694,
       0.56791077, 0.56791077, 0.56791077, 0.56791077, 0.56792256,
       0.56792256, 0.56792256, 0.56792256, 0.56800423, 0.56800423,
       0.56800423, 0.56800423, 0.56828226, 0.56828226, 0.56828226,
       0.56828226, 0.56872634, 0.56872634, 0.56872634, 0.56872634,
       0.5690527 , 0.5690527 , 0.5690527 , 0.5690527 , 0.56926962,
       0.56926962, 0.56926962, 0.56926962, 0.56949685, 0.56949685,
       0.56949685, 0.56949685, 0.569897  , 0.569897  , 0.569897  ,
       0.569897  , 0.57117768, 0.57117768, 0.57117768, 0.57117768,
       0.57592859, 0.57592859, 0.57592859, 0.57592859, 0.59209704,
       0.59209704, 0.59209704, 0.59209704, 0.63988261, 0.63988261,
       0.63988261, 0.63988261, 0.76179894, 0.76179894, 0.76179894,
       0.76179894, 1.03182564, 1.03182564, 1.03182564, 1.03182564,
       1.55348275, 1.55348275, 1.55348275, 1.55348275, 2.43068895,
       2.43068895, 2.43068895, 2.43068895, 3.55229101, 3.55229101,
       3.55229101, 3.55229101, 4.16458528, 4.16458528, 4.16458528,
       4.16458528, 4.1800089 , 4.1800089 , 4.1800089 , 4.1800089 ,
       3.07676045, 3.07676045, 3.07676045, 3.07676045, 1.34520374,
       1.34520374, 1.34520374, 1.34520374, 1.02204848, 1.02204848,
       1.02204848, 1.02204848, 1.00037232, 1.00037232, 1.00037232,
       1.00037232, 1.00000011, 1.00000011, 1.00000011, 1.00000011,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.14957957e-01, 2.14957957e-01, 2.14957957e-01, 2.14957957e-01,
       4.47108627e-01, 4.47108627e-01, 4.47108627e-01, 4.47108627e-01,
       7.13561081e-01, 7.13561081e-01, 7.13561081e-01, 7.13561081e-01,
       1.11872396e+00, 1.11872396e+00, 1.11872396e+00, 1.11872396e+00,
       1.64431395e+00, 1.64431395e+00, 1.64431395e+00, 1.64431395e+00,
       2.29983169e+00, 2.29983169e+00, 2.29983169e+00, 2.29983169e+00,
       3.07089753e+00, 3.07089753e+00, 3.07089753e+00, 3.07089753e+00,
       3.94015044e+00, 3.94015044e+00, 3.94015044e+00, 3.94015044e+00,
       4.88739659e+00, 4.88739659e+00, 4.88739659e+00, 4.88739659e+00,
       5.89618557e+00, 5.89618557e+00, 5.89618557e+00, 5.89618557e+00,
       6.95255343e+00, 6.95255343e+00, 6.95255343e+00, 6.95255343e+00,
       8.02806459e+00, 8.02806459e+00, 8.02806459e+00, 8.02806459e+00,
       9.11164658e+00, 9.11164658e+00, 9.11164658e+00, 9.11164658e+00,
       1.01949310e+01, 1.01949310e+01, 1.01949310e+01, 1.01949310e+01,
       1.12753220e+01, 1.12753220e+01, 1.12753220e+01, 1.12753220e+01,
       1.23519886e+01, 1.23519886e+01, 1.23519886e+01, 1.23519886e+01,
       1.34230468e+01, 1.34230468e+01, 1.34230468e+01, 1.34230468e+01,
       1.44847959e+01, 1.44847959e+01, 1.44847959e+01, 1.44847959e+01,
       1.55291038e+01, 1.55291038e+01, 1.55291038e+01, 1.55291038e+01,
       1.65418026e+01, 1.65418026e+01, 1.65418026e+01, 1.65418026e+01,
       1.74975626e+01, 1.74975626e+01, 1.74975626e+01, 1.74975626e+01,
       1.83602647e+01, 1.83602647e+01, 1.83602647e+01, 1.83602647e+01,
       1.90815134e+01, 1.90815134e+01, 1.90815134e+01, 1.90815134e+01,
       1.96172465e+01, 1.96172465e+01, 1.96172465e+01, 1.96172465e+01,
       1.99474835e+01, 1.99474835e+01, 1.99474835e+01, 1.99474835e+01,
       2.00981416e+01, 2.00981416e+01, 2.00981416e+01, 2.00981416e+01,
       2.01352473e+01, 2.01352473e+01, 2.01352473e+01, 2.01352473e+01,
       2.01181972e+01, 2.01181972e+01, 2.01181972e+01, 2.01181972e+01,
       2.00565244e+01, 2.00565244e+01, 2.00565244e+01, 2.00565244e+01,
       2.00240733e+01, 2.00240733e+01, 2.00240733e+01, 2.00240733e+01,
       2.00089626e+01, 2.00089626e+01, 2.00089626e+01, 2.00089626e+01,
       1.99979297e+01, 1.99979297e+01, 1.99979297e+01, 1.99979297e+01,
       1.99863891e+01, 1.99863891e+01, 1.99863891e+01, 1.99863891e+01,
       1.99693717e+01, 1.99693717e+01, 1.99693717e+01, 1.99693717e+01,
       1.99445026e+01, 1.99445026e+01, 1.99445026e+01, 1.99445026e+01,
       1.99195116e+01, 1.99195116e+01, 1.99195116e+01, 1.99195116e+01,
       1.98964046e+01, 1.98964046e+01, 1.98964046e+01, 1.98964046e+01,
       1.98743565e+01, 1.98743565e+01, 1.98743565e+01, 1.98743565e+01,
       1.98541585e+01, 1.98541585e+01, 1.98541585e+01, 1.98541585e+01,
       1.98364920e+01, 1.98364920e+01, 1.98364920e+01, 1.98364920e+01,
       1.98206754e+01, 1.98206754e+01, 1.98206754e+01, 1.98206754e+01,
       1.98057571e+01, 1.98057571e+01, 1.98057571e+01, 1.98057571e+01,
       1.97923828e+01, 1.97923828e+01, 1.97923828e+01, 1.97923828e+01,
       1.97808552e+01, 1.97808552e+01, 1.97808552e+01, 1.97808552e+01,
       1.97709468e+01, 1.97709468e+01, 1.97709468e+01, 1.97709468e+01,
       1.97654812e+01, 1.97654812e+01, 1.97654812e+01, 1.97654812e+01,
       1.97477731e+01, 1.97477731e+01, 1.97477731e+01, 1.97477731e+01,
       1.96722020e+01, 1.96722020e+01, 1.96722020e+01, 1.96722020e+01,
       1.93272540e+01, 1.93272540e+01, 1.93272540e+01, 1.93272540e+01,
       1.78485419e+01, 1.78485419e+01, 1.78485419e+01, 1.78485419e+01,
       1.26228462e+01, 1.26228462e+01, 1.26228462e+01, 1.26228462e+01,
       2.71270096e+00, 2.71270096e+00, 2.71270096e+00, 2.71270096e+00,
       5.37681970e-02, 5.37681970e-02, 5.37681970e-02, 5.37681970e-02,
       7.39978310e-05, 7.39978310e-05, 7.39978310e-05, 7.39978310e-05,
       1.26879911e-08, 1.26879911e-08, 1.26879911e-08, 1.26879911e-08,
       2.06933606e-12, 2.06933606e-12, 2.06933606e-12, 2.06933606e-12,
       3.25161787e-16, 3.25161787e-16, 3.25161787e-16, 3.25161787e-16,
       5.40240794e-20, 5.40240794e-20, 5.40240794e-20, 5.40240794e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.91991427e+02, 9.91991427e+02, 9.91991427e+02, 9.91991427e+02,
       9.83398788e+02, 9.83398788e+02, 9.83398788e+02, 9.83398788e+02,
       9.73613696e+02, 9.73613696e+02, 9.73613696e+02, 9.73613696e+02,
       9.58908504e+02, 9.58908504e+02, 9.58908504e+02, 9.58908504e+02,
       9.40117970e+02, 9.40117970e+02, 9.40117970e+02, 9.40117970e+02,
       9.17130377e+02, 9.17130377e+02, 9.17130377e+02, 9.17130377e+02,
       8.90710253e+02, 8.90710253e+02, 8.90710253e+02, 8.90710253e+02,
       8.61710068e+02, 8.61710068e+02, 8.61710068e+02, 8.61710068e+02,
       8.31030081e+02, 8.31030081e+02, 8.31030081e+02, 8.31030081e+02,
       7.99387307e+02, 7.99387307e+02, 7.99387307e+02, 7.99387307e+02,
       7.67330949e+02, 7.67330949e+02, 7.67330949e+02, 7.67330949e+02,
       7.35690337e+02, 7.35690337e+02, 7.35690337e+02, 7.35690337e+02,
       7.05034804e+02, 7.05034804e+02, 7.05034804e+02, 7.05034804e+02,
       6.75527261e+02, 6.75527261e+02, 6.75527261e+02, 6.75527261e+02,
       6.47167439e+02, 6.47167439e+02, 6.47167439e+02, 6.47167439e+02,
       6.19930743e+02, 6.19930743e+02, 6.19930743e+02, 6.19930743e+02,
       5.93813015e+02, 5.93813015e+02, 5.93813015e+02, 5.93813015e+02,
       5.68863894e+02, 5.68863894e+02, 5.68863894e+02, 5.68863894e+02,
       5.45199993e+02, 5.45199993e+02, 5.45199993e+02, 5.45199993e+02,
       5.23075190e+02, 5.23075190e+02, 5.23075190e+02, 5.23075190e+02,
       5.02889600e+02, 5.02889600e+02, 5.02889600e+02, 5.02889600e+02,
       4.85266432e+02, 4.85266432e+02, 4.85266432e+02, 4.85266432e+02,
       4.70932260e+02, 4.70932260e+02, 4.70932260e+02, 4.70932260e+02,
       4.60518670e+02, 4.60518670e+02, 4.60518670e+02, 4.60518670e+02,
       4.54205957e+02, 4.54205957e+02, 4.54205957e+02, 4.54205957e+02,
       4.51352380e+02, 4.51352380e+02, 4.51352380e+02, 4.51352380e+02,
       4.50649917e+02, 4.50649917e+02, 4.50649917e+02, 4.50649917e+02,
       4.50971173e+02, 4.50971173e+02, 4.50971173e+02, 4.50971173e+02,
       4.52135940e+02, 4.52135940e+02, 4.52135940e+02, 4.52135940e+02,
       4.52753679e+02, 4.52753679e+02, 4.52753679e+02, 4.52753679e+02,
       4.53041751e+02, 4.53041751e+02, 4.53041751e+02, 4.53041751e+02,
       4.53249156e+02, 4.53249156e+02, 4.53249156e+02, 4.53249156e+02,
       4.53466954e+02, 4.53466954e+02, 4.53466954e+02, 4.53466954e+02,
       4.53791825e+02, 4.53791825e+02, 4.53791825e+02, 4.53791825e+02,
       4.54268545e+02, 4.54268545e+02, 4.54268545e+02, 4.54268545e+02,
       4.54750752e+02, 4.54750752e+02, 4.54750752e+02, 4.54750752e+02,
       4.55192196e+02, 4.55192196e+02, 4.55192196e+02, 4.55192196e+02,
       4.55599122e+02, 4.55599122e+02, 4.55599122e+02, 4.55599122e+02,
       4.55975922e+02, 4.55975922e+02, 4.55975922e+02, 4.55975922e+02,
       4.56329221e+02, 4.56329221e+02, 4.56329221e+02, 4.56329221e+02,
       4.56648137e+02, 4.56648137e+02, 4.56648137e+02, 4.56648137e+02,
       4.56923106e+02, 4.56923106e+02, 4.56923106e+02, 4.56923106e+02,
       4.57181465e+02, 4.57181465e+02, 4.57181465e+02, 4.57181465e+02,
       4.57438180e+02, 4.57438180e+02, 4.57438180e+02, 4.57438180e+02,
       4.57763252e+02, 4.57763252e+02, 4.57763252e+02, 4.57763252e+02,
       4.58282193e+02, 4.58282193e+02, 4.58282193e+02, 4.58282193e+02,
       4.58443493e+02, 4.58443493e+02, 4.58443493e+02, 4.58443493e+02,
       4.55958160e+02, 4.55958160e+02, 4.55958160e+02, 4.55958160e+02,
       4.38959204e+02, 4.38959204e+02, 4.38959204e+02, 4.38959204e+02,
       3.65073159e+02, 3.65073159e+02, 3.65073159e+02, 3.65073159e+02,
       1.68405632e+02, 1.68405632e+02, 1.68405632e+02, 1.68405632e+02,
       1.44222649e+01, 1.44222649e+01, 1.44222649e+01, 1.44222649e+01,
       7.69577756e-02, 7.69577756e-02, 7.69577756e-02, 7.69577756e-02,
       1.00097351e-02, 1.00097351e-02, 1.00097351e-02, 1.00097351e-02,
       1.00000015e-02, 1.00000015e-02, 1.00000015e-02, 1.00000015e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99133911, 0.99133911, 0.99133911, 0.99133911, 0.98292058,
       0.98292058, 0.98292058, 0.98292058, 0.97419061, 0.97419061,
       0.97419061, 0.97419061, 0.96144618, 0.96144618, 0.96144618,
       0.96144618, 0.94597586, 0.94597586, 0.94597586, 0.94597586,
       0.9276744 , 0.9276744 , 0.9276744 , 0.9276744 , 0.90721706,
       0.90721706, 0.90721706, 0.90721706, 0.88515443, 0.88515443,
       0.88515443, 0.88515443, 0.86202321, 0.86202321, 0.86202321,
       0.86202321, 0.83819213, 0.83819213, 0.83819213, 0.83819213,
       0.8141677 , 0.8141677 , 0.8141677 , 0.8141677 , 0.79048162,
       0.79048162, 0.79048162, 0.79048162, 0.76730128, 0.76730128,
       0.76730128, 0.76730128, 0.74474398, 0.74474398, 0.74474398,
       0.74474398, 0.72277684, 0.72277684, 0.72277684, 0.72277684,
       0.70140995, 0.70140995, 0.70140995, 0.70140995, 0.68067678,
       0.68067678, 0.68067678, 0.68067678, 0.66062128, 0.66062128,
       0.66062128, 0.66062128, 0.64151926, 0.64151926, 0.64151926,
       0.64151926, 0.62319637, 0.62319637, 0.62319637, 0.62319637,
       0.60726225, 0.60726225, 0.60726225, 0.60726225, 0.59190903,
       0.59190903, 0.59190903, 0.59190903, 0.58148652, 0.58148652,
       0.58148652, 0.58148652, 0.57278527, 0.57278527, 0.57278527,
       0.57278527, 0.56769271, 0.56769271, 0.56769271, 0.56769271,
       0.56654927, 0.56654927, 0.56654927, 0.56654927, 0.56583728,
       0.56583728, 0.56583728, 0.56583728, 0.56616565, 0.56616565,
       0.56616565, 0.56616565, 0.56694844, 0.56694844, 0.56694844,
       0.56694844, 0.56774994, 0.56774994, 0.56774994, 0.56774994,
       0.56799881, 0.56799881, 0.56799881, 0.56799881, 0.56803723,
       0.56803723, 0.56803723, 0.56803723, 0.56811091, 0.56811091,
       0.56811091, 0.56811091, 0.56837366, 0.56837366, 0.56837366,
       0.56837366, 0.56883911, 0.56883911, 0.56883911, 0.56883911,
       0.56920333, 0.56920333, 0.56920333, 0.56920333, 0.56943051,
       0.56943051, 0.56943051, 0.56943051, 0.56964182, 0.56964182,
       0.56964182, 0.56964182, 0.56994366, 0.56994366, 0.56994366,
       0.56994366, 0.57080637, 0.57080637, 0.57080637, 0.57080637,
       0.57400236, 0.57400236, 0.57400236, 0.57400236, 0.58513972,
       0.58513972, 0.58513972, 0.58513972, 0.61910673, 0.61910673,
       0.61910673, 0.61910673, 0.70892127, 0.70892127, 0.70892127,
       0.70892127, 0.91548374, 0.91548374, 0.91548374, 0.91548374,
       1.33078894, 1.33078894, 1.33078894, 1.33078894, 2.06133491,
       2.06133491, 2.06133491, 2.06133491, 3.15181689, 3.15181689,
       3.15181689, 3.15181689, 4.02701618, 4.02701618, 4.02701618,
       4.02701618, 4.28308718, 4.28308718, 4.28308718, 4.28308718,
       3.81910697, 3.81910697, 3.81910697, 3.81910697, 1.98110507,
       1.98110507, 1.98110507, 1.98110507, 1.08418873, 1.08418873,
       1.08418873, 1.08418873, 1.00343534, 1.00343534, 1.00343534,
       1.00343534, 1.00000606, 1.00000606, 1.00000606, 1.00000606,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.25290090e-01, 3.25290090e-01, 3.25290090e-01, 3.25290090e-01,
       6.43847125e-01, 6.43847125e-01, 6.43847125e-01, 6.43847125e-01,
       9.75722154e-01, 9.75722154e-01, 9.75722154e-01, 9.75722154e-01,
       1.46557297e+00, 1.46557297e+00, 1.46557297e+00, 1.46557297e+00,
       2.06705518e+00, 2.06705518e+00, 2.06705518e+00, 2.06705518e+00,
       2.78907819e+00, 2.78907819e+00, 2.78907819e+00, 2.78907819e+00,
       3.60976834e+00, 3.60976834e+00, 3.60976834e+00, 3.60976834e+00,
       4.51162281e+00, 4.51162281e+00, 4.51162281e+00, 4.51162281e+00,
       5.47661724e+00, 5.47661724e+00, 5.47661724e+00, 5.47661724e+00,
       6.49264130e+00, 6.49264130e+00, 6.49264130e+00, 6.49264130e+00,
       7.53660887e+00, 7.53660887e+00, 7.53660887e+00, 7.53660887e+00,
       8.59198431e+00, 8.59198431e+00, 8.59198431e+00, 8.59198431e+00,
       9.64916487e+00, 9.64916487e+00, 9.64916487e+00, 9.64916487e+00,
       1.07051453e+01, 1.07051453e+01, 1.07051453e+01, 1.07051453e+01,
       1.17579310e+01, 1.17579310e+01, 1.17579310e+01, 1.17579310e+01,
       1.28067954e+01, 1.28067954e+01, 1.28067954e+01, 1.28067954e+01,
       1.38494448e+01, 1.38494448e+01, 1.38494448e+01, 1.38494448e+01,
       1.48812924e+01, 1.48812924e+01, 1.48812924e+01, 1.48812924e+01,
       1.58928454e+01, 1.58928454e+01, 1.58928454e+01, 1.58928454e+01,
       1.68680207e+01, 1.68680207e+01, 1.68680207e+01, 1.68680207e+01,
       1.77790951e+01, 1.77790951e+01, 1.77790951e+01, 1.77790951e+01,
       1.85881715e+01, 1.85881715e+01, 1.85881715e+01, 1.85881715e+01,
       1.92479302e+01, 1.92479302e+01, 1.92479302e+01, 1.92479302e+01,
       1.97200343e+01, 1.97200343e+01, 1.97200343e+01, 1.97200343e+01,
       1.99952626e+01, 1.99952626e+01, 1.99952626e+01, 1.99952626e+01,
       2.01098122e+01, 2.01098122e+01, 2.01098122e+01, 2.01098122e+01,
       2.01323555e+01, 2.01323555e+01, 2.01323555e+01, 2.01323555e+01,
       2.01039208e+01, 2.01039208e+01, 2.01039208e+01, 2.01039208e+01,
       2.00468661e+01, 2.00468661e+01, 2.00468661e+01, 2.00468661e+01,
       2.00198405e+01, 2.00198405e+01, 2.00198405e+01, 2.00198405e+01,
       2.00061051e+01, 2.00061051e+01, 2.00061051e+01, 2.00061051e+01,
       1.99950115e+01, 1.99950115e+01, 1.99950115e+01, 1.99950115e+01,
       1.99825634e+01, 1.99825634e+01, 1.99825634e+01, 1.99825634e+01,
       1.99636417e+01, 1.99636417e+01, 1.99636417e+01, 1.99636417e+01,
       1.99376749e+01, 1.99376749e+01, 1.99376749e+01, 1.99376749e+01,
       1.99131873e+01, 1.99131873e+01, 1.99131873e+01, 1.99131873e+01,
       1.98905974e+01, 1.98905974e+01, 1.98905974e+01, 1.98905974e+01,
       1.98692438e+01, 1.98692438e+01, 1.98692438e+01, 1.98692438e+01,
       1.98493625e+01, 1.98493625e+01, 1.98493625e+01, 1.98493625e+01,
       1.98317370e+01, 1.98317370e+01, 1.98317370e+01, 1.98317370e+01,
       1.98164911e+01, 1.98164911e+01, 1.98164911e+01, 1.98164911e+01,
       1.98024735e+01, 1.98024735e+01, 1.98024735e+01, 1.98024735e+01,
       1.97894710e+01, 1.97894710e+01, 1.97894710e+01, 1.97894710e+01,
       1.97780897e+01, 1.97780897e+01, 1.97780897e+01, 1.97780897e+01,
       1.97674568e+01, 1.97674568e+01, 1.97674568e+01, 1.97674568e+01,
       1.97612054e+01, 1.97612054e+01, 1.97612054e+01, 1.97612054e+01,
       1.97524408e+01, 1.97524408e+01, 1.97524408e+01, 1.97524408e+01,
       1.97136422e+01, 1.97136422e+01, 1.97136422e+01, 1.97136422e+01,
       1.95403967e+01, 1.95403967e+01, 1.95403967e+01, 1.95403967e+01,
       1.87695037e+01, 1.87695037e+01, 1.87695037e+01, 1.87695037e+01,
       1.57483105e+01, 1.57483105e+01, 1.57483105e+01, 1.57483105e+01,
       7.26747736e+00, 7.26747736e+00, 7.26747736e+00, 7.26747736e+00,
       4.38929043e-01, 4.38929043e-01, 4.38929043e-01, 4.38929043e-01,
       2.34025635e-03, 2.34025635e-03, 2.34025635e-03, 2.34025635e-03,
       7.25432818e-07, 7.25432818e-07, 7.25432818e-07, 7.25432818e-07,
       1.11193400e-10, 1.11193400e-10, 1.11193400e-10, 1.11193400e-10,
       1.76869480e-14, 1.76869480e-14, 1.76869480e-14, 1.76869480e-14,
       2.85535124e-18, 2.85535124e-18, 2.85535124e-18, 2.85535124e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87906280e+02, 9.87906280e+02, 9.87906280e+02, 9.87906280e+02,
       9.76174941e+02, 9.76174941e+02, 9.76174941e+02, 9.76174941e+02,
       9.64072771e+02, 9.64072771e+02, 9.64072771e+02, 9.64072771e+02,
       9.46471139e+02, 9.46471139e+02, 9.46471139e+02, 9.46471139e+02,
       9.25234369e+02, 9.25234369e+02, 9.25234369e+02, 9.25234369e+02,
       9.00287177e+02, 9.00287177e+02, 9.00287177e+02, 9.00287177e+02,
       8.72631649e+02, 8.72631649e+02, 8.72631649e+02, 8.72631649e+02,
       8.43081763e+02, 8.43081763e+02, 8.43081763e+02, 8.43081763e+02,
       8.12413334e+02, 8.12413334e+02, 8.12413334e+02, 8.12413334e+02,
       7.81158038e+02, 7.81158038e+02, 7.81158038e+02, 7.81158038e+02,
       7.49976361e+02, 7.49976361e+02, 7.49976361e+02, 7.49976361e+02,
       7.19607955e+02, 7.19607955e+02, 7.19607955e+02, 7.19607955e+02,
       6.90244348e+02, 6.90244348e+02, 6.90244348e+02, 6.90244348e+02,
       6.62006070e+02, 6.62006070e+02, 6.62006070e+02, 6.62006070e+02,
       6.34835316e+02, 6.34835316e+02, 6.34835316e+02, 6.34835316e+02,
       6.08723776e+02, 6.08723776e+02, 6.08723776e+02, 6.08723776e+02,
       5.83682527e+02, 5.83682527e+02, 5.83682527e+02, 5.83682527e+02,
       5.59779886e+02, 5.59779886e+02, 5.59779886e+02, 5.59779886e+02,
       5.37159931e+02, 5.37159931e+02, 5.37159931e+02, 5.37159931e+02,
       5.16112600e+02, 5.16112600e+02, 5.16112600e+02, 5.16112600e+02,
       4.97076250e+02, 4.97076250e+02, 4.97076250e+02, 4.97076250e+02,
       4.80695875e+02, 4.80695875e+02, 4.80695875e+02, 4.80695875e+02,
       4.67679348e+02, 4.67679348e+02, 4.67679348e+02, 4.67679348e+02,
       4.58546259e+02, 4.58546259e+02, 4.58546259e+02, 4.58546259e+02,
       4.53296009e+02, 4.53296009e+02, 4.53296009e+02, 4.53296009e+02,
       4.51129021e+02, 4.51129021e+02, 4.51129021e+02, 4.51129021e+02,
       4.50704444e+02, 4.50704444e+02, 4.50704444e+02, 4.50704444e+02,
       4.51242012e+02, 4.51242012e+02, 4.51242012e+02, 4.51242012e+02,
       4.52320289e+02, 4.52320289e+02, 4.52320289e+02, 4.52320289e+02,
       4.52832280e+02, 4.52832280e+02, 4.52832280e+02, 4.52832280e+02,
       4.53095183e+02, 4.53095183e+02, 4.53095183e+02, 4.53095183e+02,
       4.53305822e+02, 4.53305822e+02, 4.53305822e+02, 4.53305822e+02,
       4.53541196e+02, 4.53541196e+02, 4.53541196e+02, 4.53541196e+02,
       4.53899663e+02, 4.53899663e+02, 4.53899663e+02, 4.53899663e+02,
       4.54393535e+02, 4.54393535e+02, 4.54393535e+02, 4.54393535e+02,
       4.54864936e+02, 4.54864936e+02, 4.54864936e+02, 4.54864936e+02,
       4.55303481e+02, 4.55303481e+02, 4.55303481e+02, 4.55303481e+02,
       4.55707477e+02, 4.55707477e+02, 4.55707477e+02, 4.55707477e+02,
       4.56071530e+02, 4.56071530e+02, 4.56071530e+02, 4.56071530e+02,
       4.56406325e+02, 4.56406325e+02, 4.56406325e+02, 4.56406325e+02,
       4.56717719e+02, 4.56717719e+02, 4.56717719e+02, 4.56717719e+02,
       4.56992693e+02, 4.56992693e+02, 4.56992693e+02, 4.56992693e+02,
       4.57237821e+02, 4.57237821e+02, 4.57237821e+02, 4.57237821e+02,
       4.57481191e+02, 4.57481191e+02, 4.57481191e+02, 4.57481191e+02,
       4.57744387e+02, 4.57744387e+02, 4.57744387e+02, 4.57744387e+02,
       4.58159054e+02, 4.58159054e+02, 4.58159054e+02, 4.58159054e+02,
       4.58594305e+02, 4.58594305e+02, 4.58594305e+02, 4.58594305e+02,
       4.57858557e+02, 4.57858557e+02, 4.57858557e+02, 4.57858557e+02,
       4.50044024e+02, 4.50044024e+02, 4.50044024e+02, 4.50044024e+02,
       4.10501297e+02, 4.10501297e+02, 4.10501297e+02, 4.10501297e+02,
       2.72947363e+02, 2.72947363e+02, 2.72947363e+02, 2.72947363e+02,
       6.00463556e+01, 6.00463556e+01, 6.00463556e+01, 6.00463556e+01,
       1.21367312e+00, 1.21367312e+00, 1.21367312e+00, 1.21367312e+00,
       1.08313285e-02, 1.08313285e-02, 1.08313285e-02, 1.08313285e-02,
       1.00000857e-02, 1.00000857e-02, 1.00000857e-02, 1.00000857e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
minmod_hllc
{'none_hll': [{'rho': array([0.96262329, 0.96262329, 0.96262329, 0.96262329, 0.95292015,
       0.95292015, 0.95292015, 0.95292015, 0.94187655, 0.94187655,
       0.94187655, 0.94187655, 0.92958523, 0.92958523, 0.92958523,
       0.92958523, 0.91614889, 0.91614889, 0.91614889, 0.91614889,
       0.9016891 , 0.9016891 , 0.9016891 , 0.9016891 , 0.88633863,
       0.88633863, 0.88633863, 0.88633863, 0.87023469, 0.87023469,
       0.87023469, 0.87023469, 0.85351349, 0.85351349, 0.85351349,
       0.85351349, 0.8363065 , 0.8363065 , 0.8363065 , 0.8363065 ,
       0.81873804, 0.81873804, 0.81873804, 0.81873804, 0.80092415,
       0.80092415, 0.80092415, 0.80092415, 0.78297243, 0.78297243,
       0.78297243, 0.78297243, 0.76498267, 0.76498267, 0.76498267,
       0.76498267, 0.74704803, 0.74704803, 0.74704803, 0.74704803,
       0.72925675, 0.72925675, 0.72925675, 0.72925675, 0.71169435,
       0.71169435, 0.71169435, 0.71169435, 0.69444628, 0.69444628,
       0.69444628, 0.69444628, 0.6776013 , 0.6776013 , 0.6776013 ,
       0.6776013 , 0.66125559, 0.66125559, 0.66125559, 0.66125559,
       0.64551785, 0.64551785, 0.64551785, 0.64551785, 0.63051555,
       0.63051555, 0.63051555, 0.63051555, 0.61640212, 0.61640212,
       0.61640212, 0.61640212, 0.6033641 , 0.6033641 , 0.6033641 ,
       0.6033641 , 0.59162547, 0.59162547, 0.59162547, 0.59162547,
       0.58144321, 0.58144321, 0.58144321, 0.58144321, 0.57308387,
       0.57308387, 0.57308387, 0.57308387, 0.5667695 , 0.5667695 ,
       0.5667695 , 0.5667695 , 0.56259223, 0.56259223, 0.56259223,
       0.56259223, 0.5604295 , 0.5604295 , 0.5604295 , 0.5604295 ,
       0.55993197, 0.55993197, 0.55993197, 0.55993197, 0.56064241,
       0.56064241, 0.56064241, 0.56064241, 0.56220257, 0.56220257,
       0.56220257, 0.56220257, 0.56453573, 0.56453573, 0.56453573,
       0.56453573, 0.56792111, 0.56792111, 0.56792111, 0.56792111,
       0.57302161, 0.57302161, 0.57302161, 0.57302161, 0.58094766,
       0.58094766, 0.58094766, 0.58094766, 0.59338194, 0.59338194,
       0.59338194, 0.59338194, 0.61278127, 0.61278127, 0.61278127,
       0.61278127, 0.64267222, 0.64267222, 0.64267222, 0.64267222,
       0.68810064, 0.68810064, 0.68810064, 0.68810064, 0.75635209,
       0.75635209, 0.75635209, 0.75635209, 0.85813623, 0.85813623,
       0.85813623, 0.85813623, 1.00951022, 1.00951022, 1.00951022,
       1.00951022, 1.23478014, 1.23478014, 1.23478014, 1.23478014,
       1.57016034, 1.57016034, 1.57016034, 1.57016034, 2.02902941,
       2.02902941, 2.02902941, 2.02902941, 2.54214966, 2.54214966,
       2.54214966, 2.54214966, 3.0202242 , 3.0202242 , 3.0202242 ,
       3.0202242 , 3.31178259, 3.31178259, 3.31178259, 3.31178259,
       3.22437971, 3.22437971, 3.22437971, 3.22437971, 2.65275743,
       2.65275743, 2.65275743, 2.65275743, 1.80505429, 1.80505429,
       1.80505429, 1.80505429, 1.19452145, 1.19452145, 1.19452145,
       1.19452145, 1.01387818, 1.01387818, 1.01387818, 1.01387818,
       1.0001771 , 1.0001771 , 1.0001771 , 1.0001771 , 1.00000035,
       1.00000035, 1.00000035, 1.00000035, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.41419412e+00, 1.41419412e+00, 1.41419412e+00, 1.41419412e+00,
       1.78883739e+00, 1.78883739e+00, 1.78883739e+00, 1.78883739e+00,
       2.21825857e+00, 2.21825857e+00, 2.21825857e+00, 2.21825857e+00,
       2.70047651e+00, 2.70047651e+00, 2.70047651e+00, 2.70047651e+00,
       3.23311666e+00, 3.23311666e+00, 3.23311666e+00, 3.23311666e+00,
       3.81304395e+00, 3.81304395e+00, 3.81304395e+00, 3.81304395e+00,
       4.43661839e+00, 4.43661839e+00, 4.43661839e+00, 4.43661839e+00,
       5.09991584e+00, 5.09991584e+00, 5.09991584e+00, 5.09991584e+00,
       5.79890026e+00, 5.79890026e+00, 5.79890026e+00, 5.79890026e+00,
       6.52954505e+00, 6.52954505e+00, 6.52954505e+00, 6.52954505e+00,
       7.28790743e+00, 7.28790743e+00, 7.28790743e+00, 7.28790743e+00,
       8.07016183e+00, 8.07016183e+00, 8.07016183e+00, 8.07016183e+00,
       8.87259884e+00, 8.87259884e+00, 8.87259884e+00, 8.87259884e+00,
       9.69159468e+00, 9.69159468e+00, 9.69159468e+00, 9.69159468e+00,
       1.05235545e+01, 1.05235545e+01, 1.05235545e+01, 1.05235545e+01,
       1.13648293e+01, 1.13648293e+01, 1.13648293e+01, 1.13648293e+01,
       1.22116044e+01, 1.22116044e+01, 1.22116044e+01, 1.22116044e+01,
       1.30597527e+01, 1.30597527e+01, 1.30597527e+01, 1.30597527e+01,
       1.39046431e+01, 1.39046431e+01, 1.39046431e+01, 1.39046431e+01,
       1.47408898e+01, 1.47408898e+01, 1.47408898e+01, 1.47408898e+01,
       1.55620288e+01, 1.55620288e+01, 1.55620288e+01, 1.55620288e+01,
       1.63601078e+01, 1.63601078e+01, 1.63601078e+01, 1.63601078e+01,
       1.71251997e+01, 1.71251997e+01, 1.71251997e+01, 1.71251997e+01,
       1.78448993e+01, 1.78448993e+01, 1.78448993e+01, 1.78448993e+01,
       1.85039895e+01, 1.85039895e+01, 1.85039895e+01, 1.85039895e+01,
       1.90846801e+01, 1.90846801e+01, 1.90846801e+01, 1.90846801e+01,
       1.95681279e+01, 1.95681279e+01, 1.95681279e+01, 1.95681279e+01,
       1.99380647e+01, 1.99380647e+01, 1.99380647e+01, 1.99380647e+01,
       2.01866601e+01, 2.01866601e+01, 2.01866601e+01, 2.01866601e+01,
       2.03205654e+01, 2.03205654e+01, 2.03205654e+01, 2.03205654e+01,
       2.03625340e+01, 2.03625340e+01, 2.03625340e+01, 2.03625340e+01,
       2.03450671e+01, 2.03450671e+01, 2.03450671e+01, 2.03450671e+01,
       2.02991317e+01, 2.02991317e+01, 2.02991317e+01, 2.02991317e+01,
       2.02456046e+01, 2.02456046e+01, 2.02456046e+01, 2.02456046e+01,
       2.01946657e+01, 2.01946657e+01, 2.01946657e+01, 2.01946657e+01,
       2.01495851e+01, 2.01495851e+01, 2.01495851e+01, 2.01495851e+01,
       2.01104796e+01, 2.01104796e+01, 2.01104796e+01, 2.01104796e+01,
       2.00765652e+01, 2.00765652e+01, 2.00765652e+01, 2.00765652e+01,
       2.00469486e+01, 2.00469486e+01, 2.00469486e+01, 2.00469486e+01,
       2.00208526e+01, 2.00208526e+01, 2.00208526e+01, 2.00208526e+01,
       1.99976473e+01, 1.99976473e+01, 1.99976473e+01, 1.99976473e+01,
       1.99768232e+01, 1.99768232e+01, 1.99768232e+01, 1.99768232e+01,
       1.99579134e+01, 1.99579134e+01, 1.99579134e+01, 1.99579134e+01,
       1.99401110e+01, 1.99401110e+01, 1.99401110e+01, 1.99401110e+01,
       1.99203376e+01, 1.99203376e+01, 1.99203376e+01, 1.99203376e+01,
       1.98860888e+01, 1.98860888e+01, 1.98860888e+01, 1.98860888e+01,
       1.98001469e+01, 1.98001469e+01, 1.98001469e+01, 1.98001469e+01,
       1.95757462e+01, 1.95757462e+01, 1.95757462e+01, 1.95757462e+01,
       1.90484237e+01, 1.90484237e+01, 1.90484237e+01, 1.90484237e+01,
       1.79421767e+01, 1.79421767e+01, 1.79421767e+01, 1.79421767e+01,
       1.58163176e+01, 1.58163176e+01, 1.58163176e+01, 1.58163176e+01,
       1.20498338e+01, 1.20498338e+01, 1.20498338e+01, 1.20498338e+01,
       6.43761226e+00, 6.43761226e+00, 6.43761226e+00, 6.43761226e+00,
       1.39778927e+00, 1.39778927e+00, 1.39778927e+00, 1.39778927e+00,
       5.17644049e-02, 5.17644049e-02, 5.17644049e-02, 5.17644049e-02,
       1.82914635e-04, 1.82914635e-04, 1.82914635e-04, 1.82914635e-04,
       7.98774300e-08, 7.98774300e-08, 7.98774300e-08, 7.98774300e-08,
       2.66087619e-11, 2.66087619e-11, 2.66087619e-11, 2.66087619e-11,
       8.81761175e-15, 8.81761175e-15, 8.81761175e-15, 8.81761175e-15,
       2.88036046e-18, 2.88036046e-18, 2.88036046e-18, 2.88036046e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.48220610e+02, 9.48220610e+02, 9.48220610e+02, 9.48220610e+02,
       9.34902944e+02, 9.34902944e+02, 9.34902944e+02, 9.34902944e+02,
       9.19831060e+02, 9.19831060e+02, 9.19831060e+02, 9.19831060e+02,
       9.03151270e+02, 9.03151270e+02, 9.03151270e+02, 9.03151270e+02,
       8.85026662e+02, 8.85026662e+02, 8.85026662e+02, 8.85026662e+02,
       8.65646386e+02, 8.65646386e+02, 8.65646386e+02, 8.65646386e+02,
       8.45213155e+02, 8.45213155e+02, 8.45213155e+02, 8.45213155e+02,
       8.23932702e+02, 8.23932702e+02, 8.23932702e+02, 8.23932702e+02,
       8.02005750e+02, 8.02005750e+02, 8.02005750e+02, 8.02005750e+02,
       7.79622496e+02, 7.79622496e+02, 7.79622496e+02, 7.79622496e+02,
       7.56959321e+02, 7.56959321e+02, 7.56959321e+02, 7.56959321e+02,
       7.34177328e+02, 7.34177328e+02, 7.34177328e+02, 7.34177328e+02,
       7.11422289e+02, 7.11422289e+02, 7.11422289e+02, 7.11422289e+02,
       6.88825627e+02, 6.88825627e+02, 6.88825627e+02, 6.88825627e+02,
       6.66506181e+02, 6.66506181e+02, 6.66506181e+02, 6.66506181e+02,
       6.44572547e+02, 6.44572547e+02, 6.44572547e+02, 6.44572547e+02,
       6.23125941e+02, 6.23125941e+02, 6.23125941e+02, 6.23125941e+02,
       6.02263562e+02, 6.02263562e+02, 6.02263562e+02, 6.02263562e+02,
       5.82082578e+02, 5.82082578e+02, 5.82082578e+02, 5.82082578e+02,
       5.62684871e+02, 5.62684871e+02, 5.62684871e+02, 5.62684871e+02,
       5.44182753e+02, 5.44182753e+02, 5.44182753e+02, 5.44182753e+02,
       5.26705766e+02, 5.26705766e+02, 5.26705766e+02, 5.26705766e+02,
       5.10408370e+02, 5.10408370e+02, 5.10408370e+02, 5.10408370e+02,
       4.95477456e+02, 4.95477456e+02, 4.95477456e+02, 4.95477456e+02,
       4.82136707e+02, 4.82136707e+02, 4.82136707e+02, 4.82136707e+02,
       4.70641376e+02, 4.70641376e+02, 4.70641376e+02, 4.70641376e+02,
       4.61252431e+02, 4.61252431e+02, 4.61252431e+02, 4.61252431e+02,
       4.54177107e+02, 4.54177107e+02, 4.54177107e+02, 4.54177107e+02,
       4.49473996e+02, 4.49473996e+02, 4.49473996e+02, 4.49473996e+02,
       4.46955714e+02, 4.46955714e+02, 4.46955714e+02, 4.46955714e+02,
       4.46165009e+02, 4.46165009e+02, 4.46165009e+02, 4.46165009e+02,
       4.46485695e+02, 4.46485695e+02, 4.46485695e+02, 4.46485695e+02,
       4.47339548e+02, 4.47339548e+02, 4.47339548e+02, 4.47339548e+02,
       4.48337508e+02, 4.48337508e+02, 4.48337508e+02, 4.48337508e+02,
       4.49289395e+02, 4.49289395e+02, 4.49289395e+02, 4.49289395e+02,
       4.50134048e+02, 4.50134048e+02, 4.50134048e+02, 4.50134048e+02,
       4.50869836e+02, 4.50869836e+02, 4.50869836e+02, 4.50869836e+02,
       4.51512780e+02, 4.51512780e+02, 4.51512780e+02, 4.51512780e+02,
       4.52081898e+02, 4.52081898e+02, 4.52081898e+02, 4.52081898e+02,
       4.52595215e+02, 4.52595215e+02, 4.52595215e+02, 4.52595215e+02,
       4.53069511e+02, 4.53069511e+02, 4.53069511e+02, 4.53069511e+02,
       4.53521071e+02, 4.53521071e+02, 4.53521071e+02, 4.53521071e+02,
       4.53965340e+02, 4.53965340e+02, 4.53965340e+02, 4.53965340e+02,
       4.54407381e+02, 4.54407381e+02, 4.54407381e+02, 4.54407381e+02,
       4.54782427e+02, 4.54782427e+02, 4.54782427e+02, 4.54782427e+02,
       4.54679238e+02, 4.54679238e+02, 4.54679238e+02, 4.54679238e+02,
       4.52448893e+02, 4.52448893e+02, 4.52448893e+02, 4.52448893e+02,
       4.43824090e+02, 4.43824090e+02, 4.43824090e+02, 4.43824090e+02,
       4.20337686e+02, 4.20337686e+02, 4.20337686e+02, 4.20337686e+02,
       3.69484546e+02, 3.69484546e+02, 3.69484546e+02, 3.69484546e+02,
       2.80602938e+02, 2.80602938e+02, 2.80602938e+02, 2.80602938e+02,
       1.60681588e+02, 1.60681588e+02, 1.60681588e+02, 1.60681588e+02,
       5.29503080e+01, 5.29503080e+01, 5.29503080e+01, 5.29503080e+01,
       5.56597022e+00, 5.56597022e+00, 5.56597022e+00, 5.56597022e+00,
       7.81466416e-02, 7.81466416e-02, 7.81466416e-02, 7.81466416e-02,
       1.00355924e-02, 1.00355924e-02, 1.00355924e-02, 1.00355924e-02,
       1.00000095e-02, 1.00000095e-02, 1.00000095e-02, 1.00000095e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_rusanov': [{'rho': array([0.99009996, 0.99009996, 0.99009996, 0.99009996, 0.98079728,
       0.98079728, 0.98079728, 0.98079728, 0.97117513, 0.97117513,
       0.97117513, 0.97117513, 0.95762729, 0.95762729, 0.95762729,
       0.95762729, 0.94142953, 0.94142953, 0.94142953, 0.94142953,
       0.92272455, 0.92272455, 0.92272455, 0.92272455, 0.90213778,
       0.90213778, 0.90213778, 0.90213778, 0.88019506, 0.88019506,
       0.88019506, 0.88019506, 0.8573279 , 0.8573279 , 0.8573279 ,
       0.8573279 , 0.83388586, 0.83388586, 0.83388586, 0.83388586,
       0.8103593 , 0.8103593 , 0.8103593 , 0.8103593 , 0.78735681,
       0.78735681, 0.78735681, 0.78735681, 0.76511282, 0.76511282,
       0.76511282, 0.76511282, 0.74361635, 0.74361635, 0.74361635,
       0.74361635, 0.72287492, 0.72287492, 0.72287492, 0.72287492,
       0.70291453, 0.70291453, 0.70291453, 0.70291453, 0.68379431,
       0.68379431, 0.68379431, 0.68379431, 0.66561946, 0.66561946,
       0.66561946, 0.66561946, 0.64854061, 0.64854061, 0.64854061,
       0.64854061, 0.63273412, 0.63273412, 0.63273412, 0.63273412,
       0.61836564, 0.61836564, 0.61836564, 0.61836564, 0.60555414,
       0.60555414, 0.60555414, 0.60555414, 0.59436881, 0.59436881,
       0.59436881, 0.59436881, 0.58488492, 0.58488492, 0.58488492,
       0.58488492, 0.57726939, 0.57726939, 0.57726939, 0.57726939,
       0.57177743, 0.57177743, 0.57177743, 0.57177743, 0.56855526,
       0.56855526, 0.56855526, 0.56855526, 0.56733881, 0.56733881,
       0.56733881, 0.56733881, 0.56730464, 0.56730464, 0.56730464,
       0.56730464, 0.56754209, 0.56754209, 0.56754209, 0.56754209,
       0.5676676 , 0.5676676 , 0.5676676 , 0.5676676 , 0.56747076,
       0.56747076, 0.56747076, 0.56747076, 0.56700475, 0.56700475,
       0.56700475, 0.56700475, 0.56673193, 0.56673193, 0.56673193,
       0.56673193, 0.56658818, 0.56658818, 0.56658818, 0.56658818,
       0.56660117, 0.56660117, 0.56660117, 0.56660117, 0.56721514,
       0.56721514, 0.56721514, 0.56721514, 0.56947087, 0.56947087,
       0.56947087, 0.56947087, 0.57522826, 0.57522826, 0.57522826,
       0.57522826, 0.58788102, 0.58788102, 0.58788102, 0.58788102,
       0.61339093, 0.61339093, 0.61339093, 0.61339093, 0.66191566,
       0.66191566, 0.66191566, 0.66191566, 0.7503941 , 0.7503941 ,
       0.7503941 , 0.7503941 , 0.90622262, 0.90622262, 0.90622262,
       0.90622262, 1.17163176, 1.17163176, 1.17163176, 1.17163176,
       1.60647461, 1.60647461, 1.60647461, 1.60647461, 2.28018986,
       2.28018986, 2.28018986, 2.28018986, 3.12452995, 3.12452995,
       3.12452995, 3.12452995, 3.74154011, 3.74154011, 3.74154011,
       3.74154011, 3.94349823, 3.94349823, 3.94349823, 3.94349823,
       3.47975134, 3.47975134, 3.47975134, 3.47975134, 1.76601771,
       1.76601771, 1.76601771, 1.76601771, 1.04278667, 1.04278667,
       1.04278667, 1.04278667, 1.00063976, 1.00063976, 1.00063976,
       1.00063976, 1.000002  , 1.000002  , 1.000002  , 1.000002  ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.71214413e-01, 3.71214413e-01, 3.71214413e-01, 3.71214413e-01,
       7.24051149e-01, 7.24051149e-01, 7.24051149e-01, 7.24051149e-01,
       1.09070799e+00, 1.09070799e+00, 1.09070799e+00, 1.09070799e+00,
       1.61244052e+00, 1.61244052e+00, 1.61244052e+00, 1.61244052e+00,
       2.24398795e+00, 2.24398795e+00, 2.24398795e+00, 2.24398795e+00,
       2.98433948e+00, 2.98433948e+00, 2.98433948e+00, 2.98433948e+00,
       3.81323583e+00, 3.81323583e+00, 3.81323583e+00, 3.81323583e+00,
       4.71361364e+00, 4.71361364e+00, 4.71361364e+00, 4.71361364e+00,
       5.67171883e+00, 5.67171883e+00, 5.67171883e+00, 5.67171883e+00,
       6.67789199e+00, 6.67789199e+00, 6.67789199e+00, 6.67789199e+00,
       7.70441370e+00, 7.70441370e+00, 7.70441370e+00, 7.70441370e+00,
       8.73273268e+00, 8.73273268e+00, 8.73273268e+00, 8.73273268e+00,
       9.75221103e+00, 9.75221103e+00, 9.75221103e+00, 9.75221103e+00,
       1.07599049e+01, 1.07599049e+01, 1.07599049e+01, 1.07599049e+01,
       1.17540097e+01, 1.17540097e+01, 1.17540097e+01, 1.17540097e+01,
       1.27317276e+01, 1.27317276e+01, 1.27317276e+01, 1.27317276e+01,
       1.36888505e+01, 1.36888505e+01, 1.36888505e+01, 1.36888505e+01,
       1.46193231e+01, 1.46193231e+01, 1.46193231e+01, 1.46193231e+01,
       1.55146881e+01, 1.55146881e+01, 1.55146881e+01, 1.55146881e+01,
       1.63636987e+01, 1.63636987e+01, 1.63636987e+01, 1.63636987e+01,
       1.71524418e+01, 1.71524418e+01, 1.71524418e+01, 1.71524418e+01,
       1.78652593e+01, 1.78652593e+01, 1.78652593e+01, 1.78652593e+01,
       1.84866404e+01, 1.84866404e+01, 1.84866404e+01, 1.84866404e+01,
       1.90040865e+01, 1.90040865e+01, 1.90040865e+01, 1.90040865e+01,
       1.94113585e+01, 1.94113585e+01, 1.94113585e+01, 1.94113585e+01,
       1.97105480e+01, 1.97105480e+01, 1.97105480e+01, 1.97105480e+01,
       1.99120445e+01, 1.99120445e+01, 1.99120445e+01, 1.99120445e+01,
       2.00328035e+01, 2.00328035e+01, 2.00328035e+01, 2.00328035e+01,
       2.00939353e+01, 2.00939353e+01, 2.00939353e+01, 2.00939353e+01,
       2.01167707e+01, 2.01167707e+01, 2.01167707e+01, 2.01167707e+01,
       2.01197792e+01, 2.01197792e+01, 2.01197792e+01, 2.01197792e+01,
       2.01074074e+01, 2.01074074e+01, 2.01074074e+01, 2.01074074e+01,
       2.00728629e+01, 2.00728629e+01, 2.00728629e+01, 2.00728629e+01,
       2.00133514e+01, 2.00133514e+01, 2.00133514e+01, 2.00133514e+01,
       1.99495226e+01, 1.99495226e+01, 1.99495226e+01, 1.99495226e+01,
       1.98997208e+01, 1.98997208e+01, 1.98997208e+01, 1.98997208e+01,
       1.98634959e+01, 1.98634959e+01, 1.98634959e+01, 1.98634959e+01,
       1.98359993e+01, 1.98359993e+01, 1.98359993e+01, 1.98359993e+01,
       1.98148995e+01, 1.98148995e+01, 1.98148995e+01, 1.98148995e+01,
       1.97990188e+01, 1.97990188e+01, 1.97990188e+01, 1.97990188e+01,
       1.97864598e+01, 1.97864598e+01, 1.97864598e+01, 1.97864598e+01,
       1.97757303e+01, 1.97757303e+01, 1.97757303e+01, 1.97757303e+01,
       1.97670663e+01, 1.97670663e+01, 1.97670663e+01, 1.97670663e+01,
       1.97606562e+01, 1.97606562e+01, 1.97606562e+01, 1.97606562e+01,
       1.97563225e+01, 1.97563225e+01, 1.97563225e+01, 1.97563225e+01,
       1.97574019e+01, 1.97574019e+01, 1.97574019e+01, 1.97574019e+01,
       1.97535996e+01, 1.97535996e+01, 1.97535996e+01, 1.97535996e+01,
       1.97149405e+01, 1.97149405e+01, 1.97149405e+01, 1.97149405e+01,
       1.95165373e+01, 1.95165373e+01, 1.95165373e+01, 1.95165373e+01,
       1.86180277e+01, 1.86180277e+01, 1.86180277e+01, 1.86180277e+01,
       1.50712409e+01, 1.50712409e+01, 1.50712409e+01, 1.50712409e+01,
       6.44555578e+00, 6.44555578e+00, 6.44555578e+00, 6.44555578e+00,
       3.40134655e-01, 3.40134655e-01, 3.40134655e-01, 3.40134655e-01,
       1.99855938e-03, 1.99855938e-03, 1.99855938e-03, 1.99855938e-03,
       9.27909710e-07, 9.27909710e-07, 9.27909710e-07, 9.27909710e-07,
       1.31626259e-10, 1.31626259e-10, 1.31626259e-10, 1.31626259e-10,
       1.91069012e-14, 1.91069012e-14, 1.91069012e-14, 1.91069012e-14,
       2.79872002e-18, 2.79872002e-18, 2.79872002e-18, 2.79872002e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.86186200e+02, 9.86186200e+02, 9.86186200e+02, 9.86186200e+02,
       9.73240468e+02, 9.73240468e+02, 9.73240468e+02, 9.73240468e+02,
       9.59914409e+02, 9.59914409e+02, 9.59914409e+02, 9.59914409e+02,
       9.41247070e+02, 9.41247070e+02, 9.41247070e+02, 9.41247070e+02,
       9.19065173e+02, 9.19065173e+02, 9.19065173e+02, 9.19065173e+02,
       8.93636756e+02, 8.93636756e+02, 8.93636756e+02, 8.93636756e+02,
       8.65883271e+02, 8.65883271e+02, 8.65883271e+02, 8.65883271e+02,
       8.36573980e+02, 8.36573980e+02, 8.36573980e+02, 8.36573980e+02,
       8.06320572e+02, 8.06320572e+02, 8.06320572e+02, 8.06320572e+02,
       7.75553698e+02, 7.75553698e+02, 7.75553698e+02, 7.75553698e+02,
       7.45017133e+02, 7.45017133e+02, 7.45017133e+02, 7.45017133e+02,
       7.15593221e+02, 7.15593221e+02, 7.15593221e+02, 7.15593221e+02,
       6.87450247e+02, 6.87450247e+02, 6.87450247e+02, 6.87450247e+02,
       6.60567105e+02, 6.60567105e+02, 6.60567105e+02, 6.60567105e+02,
       6.34933561e+02, 6.34933561e+02, 6.34933561e+02, 6.34933561e+02,
       6.10559907e+02, 6.10559907e+02, 6.10559907e+02, 6.10559907e+02,
       5.87481408e+02, 5.87481408e+02, 5.87481408e+02, 5.87481408e+02,
       5.65766844e+02, 5.65766844e+02, 5.65766844e+02, 5.65766844e+02,
       5.45524542e+02, 5.45524542e+02, 5.45524542e+02, 5.45524542e+02,
       5.26905041e+02, 5.26905041e+02, 5.26905041e+02, 5.26905041e+02,
       5.10095754e+02, 5.10095754e+02, 5.10095754e+02, 5.10095754e+02,
       4.95301417e+02, 4.95301417e+02, 4.95301417e+02, 4.95301417e+02,
       4.82707232e+02, 4.82707232e+02, 4.82707232e+02, 4.82707232e+02,
       4.72431235e+02, 4.72431235e+02, 4.72431235e+02, 4.72431235e+02,
       4.64480159e+02, 4.64480159e+02, 4.64480159e+02, 4.64480159e+02,
       4.58720544e+02, 4.58720544e+02, 4.58720544e+02, 4.58720544e+02,
       4.54880415e+02, 4.54880415e+02, 4.54880415e+02, 4.54880415e+02,
       4.52586923e+02, 4.52586923e+02, 4.52586923e+02, 4.52586923e+02,
       4.51430708e+02, 4.51430708e+02, 4.51430708e+02, 4.51430708e+02,
       4.51009436e+02, 4.51009436e+02, 4.51009436e+02, 4.51009436e+02,
       4.50953318e+02, 4.50953318e+02, 4.50953318e+02, 4.50953318e+02,
       4.51185590e+02, 4.51185590e+02, 4.51185590e+02, 4.51185590e+02,
       4.51834808e+02, 4.51834808e+02, 4.51834808e+02, 4.51834808e+02,
       4.52955367e+02, 4.52955367e+02, 4.52955367e+02, 4.52955367e+02,
       4.54157312e+02, 4.54157312e+02, 4.54157312e+02, 4.54157312e+02,
       4.55095241e+02, 4.55095241e+02, 4.55095241e+02, 4.55095241e+02,
       4.55772371e+02, 4.55772371e+02, 4.55772371e+02, 4.55772371e+02,
       4.56264237e+02, 4.56264237e+02, 4.56264237e+02, 4.56264237e+02,
       4.56633348e+02, 4.56633348e+02, 4.56633348e+02, 4.56633348e+02,
       4.56929937e+02, 4.56929937e+02, 4.56929937e+02, 4.56929937e+02,
       4.57171489e+02, 4.57171489e+02, 4.57171489e+02, 4.57171489e+02,
       4.57363668e+02, 4.57363668e+02, 4.57363668e+02, 4.57363668e+02,
       4.57531378e+02, 4.57531378e+02, 4.57531378e+02, 4.57531378e+02,
       4.57709652e+02, 4.57709652e+02, 4.57709652e+02, 4.57709652e+02,
       4.57932536e+02, 4.57932536e+02, 4.57932536e+02, 4.57932536e+02,
       4.58295200e+02, 4.58295200e+02, 4.58295200e+02, 4.58295200e+02,
       4.58599054e+02, 4.58599054e+02, 4.58599054e+02, 4.58599054e+02,
       4.57718786e+02, 4.57718786e+02, 4.57718786e+02, 4.57718786e+02,
       4.48917912e+02, 4.48917912e+02, 4.48917912e+02, 4.48917912e+02,
       4.03800359e+02, 4.03800359e+02, 4.03800359e+02, 4.03800359e+02,
       2.58647864e+02, 2.58647864e+02, 2.58647864e+02, 2.58647864e+02,
       5.37325288e+01, 5.37325288e+01, 5.37325288e+01, 5.37325288e+01,
       1.31811609e+00, 1.31811609e+00, 1.31811609e+00, 1.31811609e+00,
       1.12593786e-02, 1.12593786e-02, 1.12593786e-02, 1.12593786e-02,
       1.00001109e-02, 1.00001109e-02, 1.00001109e-02, 1.00001109e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hll': [{'rho': array([0.99116492, 0.99116492, 0.99116492, 0.99116492, 0.98271154,
       0.98271154, 0.98271154, 0.98271154, 0.97383884, 0.97383884,
       0.97383884, 0.97383884, 0.96101554, 0.96101554, 0.96101554,
       0.96101554, 0.9454558 , 0.9454558 , 0.9454558 , 0.9454558 ,
       0.92712036, 0.92712036, 0.92712036, 0.92712036, 0.90667211,
       0.90667211, 0.90667211, 0.90667211, 0.88466881, 0.88466881,
       0.88466881, 0.88466881, 0.86164034, 0.86164034, 0.86164034,
       0.86164034, 0.83800032, 0.83800032, 0.83800032, 0.83800032,
       0.81424415, 0.81424415, 0.81424415, 0.81424415, 0.79085525,
       0.79085525, 0.79085525, 0.79085525, 0.76804363, 0.76804363,
       0.76804363, 0.76804363, 0.74583711, 0.74583711, 0.74583711,
       0.74583711, 0.72421952, 0.72421952, 0.72421952, 0.72421952,
       0.70319112, 0.70319112, 0.70319112, 0.70319112, 0.68277247,
       0.68277247, 0.68277247, 0.68277247, 0.66301832, 0.66301832,
       0.66301832, 0.66301832, 0.64404414, 0.64404414, 0.64404414,
       0.64404414, 0.62606083, 0.62606083, 0.62606083, 0.62606083,
       0.60941523, 0.60941523, 0.60941523, 0.60941523, 0.59461799,
       0.59461799, 0.59461799, 0.59461799, 0.5823152 , 0.5823152 ,
       0.5823152 , 0.5823152 , 0.57313802, 0.57313802, 0.57313802,
       0.57313802, 0.56738503, 0.56738503, 0.56738503, 0.56738503,
       0.56465216, 0.56465216, 0.56465216, 0.56465216, 0.56382693,
       0.56382693, 0.56382693, 0.56382693, 0.56387318, 0.56387318,
       0.56387318, 0.56387318, 0.5652006 , 0.5652006 , 0.5652006 ,
       0.5652006 , 0.56626977, 0.56626977, 0.56626977, 0.56626977,
       0.56702881, 0.56702881, 0.56702881, 0.56702881, 0.56788545,
       0.56788545, 0.56788545, 0.56788545, 0.56880776, 0.56880776,
       0.56880776, 0.56880776, 0.56941945, 0.56941945, 0.56941945,
       0.56941945, 0.56962086, 0.56962086, 0.56962086, 0.56962086,
       0.56956418, 0.56956418, 0.56956418, 0.56956418, 0.56936331,
       0.56936331, 0.56936331, 0.56936331, 0.56934572, 0.56934572,
       0.56934572, 0.56934572, 0.57000584, 0.57000584, 0.57000584,
       0.57000584, 0.5729765 , 0.5729765 , 0.5729765 , 0.5729765 ,
       0.58176493, 0.58176493, 0.58176493, 0.58176493, 0.60341244,
       0.60341244, 0.60341244, 0.60341244, 0.65159534, 0.65159534,
       0.65159534, 0.65159534, 0.75225793, 0.75225793, 0.75225793,
       0.75225793, 0.95396517, 0.95396517, 0.95396517, 0.95396517,
       1.34573563, 1.34573563, 1.34573563, 1.34573563, 2.05647412,
       2.05647412, 2.05647412, 2.05647412, 3.13720518, 3.13720518,
       3.13720518, 3.13720518, 4.01618199, 4.01618199, 4.01618199,
       4.01618199, 4.2713159 , 4.2713159 , 4.2713159 , 4.2713159 ,
       3.78406763, 3.78406763, 3.78406763, 3.78406763, 1.92016659,
       1.92016659, 1.92016659, 1.92016659, 1.058216  , 1.058216  ,
       1.058216  , 1.058216  , 1.00081398, 1.00081398, 1.00081398,
       1.00081398, 1.00000178, 1.00000178, 1.00000178, 1.00000178,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.31199970e-01, 3.31199970e-01, 3.31199970e-01, 3.31199970e-01,
       6.51382280e-01, 6.51382280e-01, 6.51382280e-01, 6.51382280e-01,
       9.88854278e-01, 9.88854278e-01, 9.88854278e-01, 9.88854278e-01,
       1.48150489e+00, 1.48150489e+00, 1.48150489e+00, 1.48150489e+00,
       2.08633147e+00, 2.08633147e+00, 2.08633147e+00, 2.08633147e+00,
       2.80957124e+00, 2.80957124e+00, 2.80957124e+00, 2.80957124e+00,
       3.62985549e+00, 3.62985549e+00, 3.62985549e+00, 3.62985549e+00,
       4.52930744e+00, 4.52930744e+00, 4.52930744e+00, 4.52930744e+00,
       5.49031544e+00, 5.49031544e+00, 5.49031544e+00, 5.49031544e+00,
       6.50069839e+00, 6.50069839e+00, 6.50069839e+00, 6.50069839e+00,
       7.53409154e+00, 7.53409154e+00, 7.53409154e+00, 7.53409154e+00,
       8.57574859e+00, 8.57574859e+00, 8.57574859e+00, 8.57574859e+00,
       9.61670434e+00, 9.61670434e+00, 9.61670434e+00, 9.61670434e+00,
       1.06548968e+01, 1.06548968e+01, 1.06548968e+01, 1.06548968e+01,
       1.16895560e+01, 1.16895560e+01, 1.16895560e+01, 1.16895560e+01,
       1.27199525e+01, 1.27199525e+01, 1.27199525e+01, 1.27199525e+01,
       1.37443488e+01, 1.37443488e+01, 1.37443488e+01, 1.37443488e+01,
       1.47589251e+01, 1.47589251e+01, 1.47589251e+01, 1.47589251e+01,
       1.57563221e+01, 1.57563221e+01, 1.57563221e+01, 1.57563221e+01,
       1.67233146e+01, 1.67233146e+01, 1.67233146e+01, 1.67233146e+01,
       1.76379476e+01, 1.76379476e+01, 1.76379476e+01, 1.76379476e+01,
       1.84673647e+01, 1.84673647e+01, 1.84673647e+01, 1.84673647e+01,
       1.91692758e+01, 1.91692758e+01, 1.91692758e+01, 1.91692758e+01,
       1.97016293e+01, 1.97016293e+01, 1.97016293e+01, 1.97016293e+01,
       2.00421597e+01, 2.00421597e+01, 2.00421597e+01, 2.00421597e+01,
       2.02074474e+01, 2.02074474e+01, 2.02074474e+01, 2.02074474e+01,
       2.02533362e+01, 2.02533362e+01, 2.02533362e+01, 2.02533362e+01,
       2.02422335e+01, 2.02422335e+01, 2.02422335e+01, 2.02422335e+01,
       2.01551609e+01, 2.01551609e+01, 2.01551609e+01, 2.01551609e+01,
       2.00814099e+01, 2.00814099e+01, 2.00814099e+01, 2.00814099e+01,
       2.00377810e+01, 2.00377810e+01, 2.00377810e+01, 2.00377810e+01,
       2.00059391e+01, 2.00059391e+01, 2.00059391e+01, 2.00059391e+01,
       1.99778740e+01, 1.99778740e+01, 1.99778740e+01, 1.99778740e+01,
       1.99509217e+01, 1.99509217e+01, 1.99509217e+01, 1.99509217e+01,
       1.99248183e+01, 1.99248183e+01, 1.99248183e+01, 1.99248183e+01,
       1.99001676e+01, 1.99001676e+01, 1.99001676e+01, 1.99001676e+01,
       1.98776007e+01, 1.98776007e+01, 1.98776007e+01, 1.98776007e+01,
       1.98572942e+01, 1.98572942e+01, 1.98572942e+01, 1.98572942e+01,
       1.98397324e+01, 1.98397324e+01, 1.98397324e+01, 1.98397324e+01,
       1.98254040e+01, 1.98254040e+01, 1.98254040e+01, 1.98254040e+01,
       1.98131310e+01, 1.98131310e+01, 1.98131310e+01, 1.98131310e+01,
       1.98012050e+01, 1.98012050e+01, 1.98012050e+01, 1.98012050e+01,
       1.97898387e+01, 1.97898387e+01, 1.97898387e+01, 1.97898387e+01,
       1.97795675e+01, 1.97795675e+01, 1.97795675e+01, 1.97795675e+01,
       1.97699816e+01, 1.97699816e+01, 1.97699816e+01, 1.97699816e+01,
       1.97635691e+01, 1.97635691e+01, 1.97635691e+01, 1.97635691e+01,
       1.97536393e+01, 1.97536393e+01, 1.97536393e+01, 1.97536393e+01,
       1.97149813e+01, 1.97149813e+01, 1.97149813e+01, 1.97149813e+01,
       1.95399511e+01, 1.95399511e+01, 1.95399511e+01, 1.95399511e+01,
       1.87505825e+01, 1.87505825e+01, 1.87505825e+01, 1.87505825e+01,
       1.56266522e+01, 1.56266522e+01, 1.56266522e+01, 1.56266522e+01,
       6.97439322e+00, 6.97439322e+00, 6.97439322e+00, 6.97439322e+00,
       3.92821064e-01, 3.92821064e-01, 3.92821064e-01, 3.92821064e-01,
       1.89489077e-03, 1.89489077e-03, 1.89489077e-03, 1.89489077e-03,
       6.66095396e-07, 6.66095396e-07, 6.66095396e-07, 6.66095396e-07,
       9.40368073e-11, 9.40368073e-11, 9.40368073e-11, 9.40368073e-11,
       1.38270964e-14, 1.38270964e-14, 1.38270964e-14, 1.38270964e-14,
       2.07028270e-18, 2.07028270e-18, 2.07028270e-18, 2.07028270e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87667905e+02, 9.87667905e+02, 9.87667905e+02, 9.87667905e+02,
       9.75896749e+02, 9.75896749e+02, 9.75896749e+02, 9.75896749e+02,
       9.63596793e+02, 9.63596793e+02, 9.63596793e+02, 9.63596793e+02,
       9.45903496e+02, 9.45903496e+02, 9.45903496e+02, 9.45903496e+02,
       9.24560147e+02, 9.24560147e+02, 9.24560147e+02, 9.24560147e+02,
       8.99586589e+02, 8.99586589e+02, 8.99586589e+02, 8.99586589e+02,
       8.71962692e+02, 8.71962692e+02, 8.71962692e+02, 8.71962692e+02,
       8.42509302e+02, 8.42509302e+02, 8.42509302e+02, 8.42509302e+02,
       8.11982832e+02, 8.11982832e+02, 8.11982832e+02, 8.11982832e+02,
       7.80909598e+02, 7.80909598e+02, 7.80909598e+02, 7.80909598e+02,
       7.50021347e+02, 7.50021347e+02, 7.50021347e+02, 7.50021347e+02,
       7.20044660e+02, 7.20044660e+02, 7.20044660e+02, 7.20044660e+02,
       6.91139600e+02, 6.91139600e+02, 6.91139600e+02, 6.91139600e+02,
       6.63330665e+02, 6.63330665e+02, 6.63330665e+02, 6.63330665e+02,
       6.36575468e+02, 6.36575468e+02, 6.36575468e+02, 6.36575468e+02,
       6.10854195e+02, 6.10854195e+02, 6.10854195e+02, 6.10854195e+02,
       5.86171830e+02, 5.86171830e+02, 5.86171830e+02, 5.86171830e+02,
       5.62573606e+02, 5.62573606e+02, 5.62573606e+02, 5.62573606e+02,
       5.40173609e+02, 5.40173609e+02, 5.40173609e+02, 5.40173609e+02,
       5.19191018e+02, 5.19191018e+02, 5.19191018e+02, 5.19191018e+02,
       4.99991749e+02, 4.99991749e+02, 4.99991749e+02, 4.99991749e+02,
       4.83112346e+02, 4.83112346e+02, 4.83112346e+02, 4.83112346e+02,
       4.69214163e+02, 4.69214163e+02, 4.69214163e+02, 4.69214163e+02,
       4.58903184e+02, 4.58903184e+02, 4.58903184e+02, 4.58903184e+02,
       4.52409336e+02, 4.52409336e+02, 4.52409336e+02, 4.52409336e+02,
       4.49287031e+02, 4.49287031e+02, 4.49287031e+02, 4.49287031e+02,
       4.48422944e+02, 4.48422944e+02, 4.48422944e+02, 4.48422944e+02,
       4.48631188e+02, 4.48631188e+02, 4.48631188e+02, 4.48631188e+02,
       4.50271228e+02, 4.50271228e+02, 4.50271228e+02, 4.50271228e+02,
       4.51662913e+02, 4.51662913e+02, 4.51662913e+02, 4.51662913e+02,
       4.52490638e+02, 4.52490638e+02, 4.52490638e+02, 4.52490638e+02,
       4.53096587e+02, 4.53096587e+02, 4.53096587e+02, 4.53096587e+02,
       4.53627004e+02, 4.53627004e+02, 4.53627004e+02, 4.53627004e+02,
       4.54138029e+02, 4.54138029e+02, 4.54138029e+02, 4.54138029e+02,
       4.54640997e+02, 4.54640997e+02, 4.54640997e+02, 4.54640997e+02,
       4.55121718e+02, 4.55121718e+02, 4.55121718e+02, 4.55121718e+02,
       4.55558744e+02, 4.55558744e+02, 4.55558744e+02, 4.55558744e+02,
       4.55935595e+02, 4.55935595e+02, 4.55935595e+02, 4.55935595e+02,
       4.56261121e+02, 4.56261121e+02, 4.56261121e+02, 4.56261121e+02,
       4.56558739e+02, 4.56558739e+02, 4.56558739e+02, 4.56558739e+02,
       4.56826197e+02, 4.56826197e+02, 4.56826197e+02, 4.56826197e+02,
       4.57052328e+02, 4.57052328e+02, 4.57052328e+02, 4.57052328e+02,
       4.57257152e+02, 4.57257152e+02, 4.57257152e+02, 4.57257152e+02,
       4.57467024e+02, 4.57467024e+02, 4.57467024e+02, 4.57467024e+02,
       4.57704540e+02, 4.57704540e+02, 4.57704540e+02, 4.57704540e+02,
       4.58066570e+02, 4.58066570e+02, 4.58066570e+02, 4.58066570e+02,
       4.58479576e+02, 4.58479576e+02, 4.58479576e+02, 4.58479576e+02,
       4.57718684e+02, 4.57718684e+02, 4.57718684e+02, 4.57718684e+02,
       4.49845047e+02, 4.49845047e+02, 4.49845047e+02, 4.49845047e+02,
       4.09389299e+02, 4.09389299e+02, 4.09389299e+02, 4.09389299e+02,
       2.68194998e+02, 2.68194998e+02, 2.68194998e+02, 2.68194998e+02,
       5.60520652e+01, 5.60520652e+01, 5.60520652e+01, 5.60520652e+01,
       1.14557313e+00, 1.14557313e+00, 1.14557313e+00, 1.14557313e+00,
       1.08687798e-02, 1.08687798e-02, 1.08687798e-02, 1.08687798e-02,
       1.00000791e-02, 1.00000791e-02, 1.00000791e-02, 1.00000791e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}], 'minmod_hllc': [{'rho': array([1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.,
       1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]), 'vx': array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,
       0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]), 'P': array([1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03, 1.e+03,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02,
       1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02, 1.e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99854666, 0.99854666, 0.99854666, 0.99854666,
       0.96845715, 0.96845715, 0.96845715, 0.96845715, 0.81981135,
       0.81981135, 0.81981135, 0.81981135, 1.13644411, 1.13644411,
       1.13644411, 1.13644411, 1.07459565, 1.07459565, 1.07459565,
       1.07459565, 1.00214509, 1.00214509, 1.00214509, 1.00214509,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.44580810e-02, 5.44580810e-02, 5.44580810e-02, 5.44580810e-02,
       1.19786475e+00, 1.19786475e+00, 1.19786475e+00, 1.19786475e+00,
       7.52224860e+00, 7.52224860e+00, 7.52224860e+00, 7.52224860e+00,
       9.36380750e+00, 9.36380750e+00, 9.36380750e+00, 9.36380750e+00,
       1.09132154e+00, 1.09132154e+00, 1.09132154e+00, 1.09132154e+00,
       4.34109741e-03, 4.34109741e-03, 4.34109741e-03, 4.34109741e-03,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.97973078e+02, 9.97973078e+02, 9.97973078e+02, 9.97973078e+02,
       9.57196315e+02, 9.57196315e+02, 9.57196315e+02, 9.57196315e+02,
       7.89728589e+02, 7.89728589e+02, 7.89728589e+02, 7.89728589e+02,
       2.18172604e+02, 2.18172604e+02, 2.18172604e+02, 2.18172604e+02,
       7.20466733e+00, 7.20466733e+00, 7.20466733e+00, 7.20466733e+00,
       1.36969674e-02, 1.36969674e-02, 1.36969674e-02, 1.36969674e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999529,
       0.99999529, 0.99999529, 0.99999529, 0.99981164, 0.99981164,
       0.99981164, 0.99981164, 0.99702376, 0.99702376, 0.99702376,
       0.99702376, 0.97590016, 0.97590016, 0.97590016, 0.97590016,
       0.88930972, 0.88930972, 0.88930972, 0.88930972, 0.71365932,
       0.71365932, 0.71365932, 0.71365932, 1.0710902 , 1.0710902 ,
       1.0710902 , 1.0710902 , 1.31137332, 1.31137332, 1.31137332,
       1.31137332, 1.04072233, 1.04072233, 1.04072233, 1.04072233,
       1.00111398, 1.00111398, 1.00111398, 1.00111398, 1.00000029,
       1.00000029, 1.00000029, 1.00000029, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.76253247e-04, 1.76253247e-04, 1.76253247e-04, 1.76253247e-04,
       7.04865623e-03, 7.04865623e-03, 7.04865623e-03, 7.04865623e-03,
       1.11518467e-01, 1.11518467e-01, 1.11518467e-01, 1.11518467e-01,
       9.09502205e-01, 9.09502205e-01, 9.09502205e-01, 9.09502205e-01,
       4.30216737e+00, 4.30216737e+00, 4.30216737e+00, 4.30216737e+00,
       1.18379965e+01, 1.18379965e+01, 1.18379965e+01, 1.18379965e+01,
       1.62384269e+01, 1.62384269e+01, 1.62384269e+01, 1.62384269e+01,
       5.70889156e+00, 5.70889156e+00, 5.70889156e+00, 5.70889156e+00,
       2.30200189e-01, 2.30200189e-01, 2.30200189e-01, 2.30200189e-01,
       4.83684047e-04, 4.83684047e-04, 4.83684047e-04, 4.83684047e-04,
       3.42098651e-08, 3.42098651e-08, 3.42098651e-08, 3.42098651e-08,
       1.01319811e-12, 1.01319811e-12, 1.01319811e-12, 1.01319811e-12,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99993405e+02, 9.99993405e+02, 9.99993405e+02, 9.99993405e+02,
       9.99736354e+02, 9.99736354e+02, 9.99736354e+02, 9.99736354e+02,
       9.95842977e+02, 9.95842977e+02, 9.95842977e+02, 9.95842977e+02,
       9.66708286e+02, 9.66708286e+02, 9.66708286e+02, 9.66708286e+02,
       8.52052998e+02, 8.52052998e+02, 8.52052998e+02, 8.52052998e+02,
       6.72236296e+02, 6.72236296e+02, 6.72236296e+02, 6.72236296e+02,
       3.62410250e+02, 3.62410250e+02, 3.62410250e+02, 3.62410250e+02,
       6.19189240e+01, 6.19189240e+01, 6.19189240e+01, 6.19189240e+01,
       6.26948951e-01, 6.26948951e-01, 6.26948951e-01, 6.26948951e-01,
       1.01072359e-02, 1.01072359e-02, 1.01072359e-02, 1.01072359e-02,
       1.00000040e-02, 1.00000040e-02, 1.00000040e-02, 1.00000040e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999888, 0.99999888, 0.99999888, 0.99999888,
       0.99997445, 0.99997445, 0.99997445, 0.99997445, 0.99964871,
       0.99964871, 0.99964871, 0.99964871, 0.99689733, 0.99689733,
       0.99689733, 0.99689733, 0.98193702, 0.98193702, 0.98193702,
       0.98193702, 0.9295722 , 0.9295722 , 0.9295722 , 0.9295722 ,
       0.81296623, 0.81296623, 0.81296623, 0.81296623, 0.63611418,
       0.63611418, 0.63611418, 0.63611418, 0.88414578, 0.88414578,
       0.88414578, 0.88414578, 1.57593929, 1.57593929, 1.57593929,
       1.57593929, 1.1715463 , 1.1715463 , 1.1715463 , 1.1715463 ,
       1.01116974, 1.01116974, 1.01116974, 1.01116974, 1.0000899 ,
       1.0000899 , 1.0000899 , 1.0000899 , 1.00000001, 1.00000001,
       1.00000001, 1.00000001, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       7.97153187e-09, 7.97153187e-09, 7.97153187e-09, 7.97153187e-09,
       9.70027498e-07, 9.70027498e-07, 9.70027498e-07, 9.70027498e-07,
       4.20269589e-05, 4.20269589e-05, 4.20269589e-05, 4.20269589e-05,
       9.55942471e-04, 9.55942471e-04, 9.55942471e-04, 9.55942471e-04,
       1.31460868e-02, 1.31460868e-02, 1.31460868e-02, 1.31460868e-02,
       1.16219529e-01, 1.16219529e-01, 1.16219529e-01, 1.16219529e-01,
       6.79969081e-01, 6.79969081e-01, 6.79969081e-01, 6.79969081e-01,
       2.70215530e+00, 2.70215530e+00, 2.70215530e+00, 2.70215530e+00,
       7.57490575e+00, 7.57490575e+00, 7.57490575e+00, 7.57490575e+00,
       1.47743231e+01, 1.47743231e+01, 1.47743231e+01, 1.47743231e+01,
       2.03840035e+01, 2.03840035e+01, 2.03840035e+01, 2.03840035e+01,
       1.19115601e+01, 1.19115601e+01, 1.19115601e+01, 1.19115601e+01,
       1.63710471e+00, 1.63710471e+00, 1.63710471e+00, 1.63710471e+00,
       2.10715183e-02, 2.10715183e-02, 2.10715183e-02, 2.10715183e-02,
       1.32818490e-05, 1.32818490e-05, 1.32818490e-05, 1.32818490e-05,
       1.21621831e-09, 1.21621831e-09, 1.21621831e-09, 1.21621831e-09,
       8.57861505e-14, 8.57861505e-14, 8.57861505e-14, 8.57861505e-14,
       4.41228789e-18, 4.41228789e-18, 4.41228789e-18, 4.41228789e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999964e+02, 9.99999964e+02, 9.99999964e+02, 9.99999964e+02,
       9.99998427e+02, 9.99998427e+02, 9.99998427e+02, 9.99998427e+02,
       9.99964233e+02, 9.99964233e+02, 9.99964233e+02, 9.99964233e+02,
       9.99508326e+02, 9.99508326e+02, 9.99508326e+02, 9.99508326e+02,
       9.95664278e+02, 9.95664278e+02, 9.95664278e+02, 9.95664278e+02,
       9.74918203e+02, 9.74918203e+02, 9.74918203e+02, 9.74918203e+02,
       9.03858041e+02, 9.03858041e+02, 9.03858041e+02, 9.03858041e+02,
       7.52615431e+02, 7.52615431e+02, 7.52615431e+02, 7.52615431e+02,
       5.88404204e+02, 5.88404204e+02, 5.88404204e+02, 5.88404204e+02,
       4.31076258e+02, 4.31076258e+02, 4.31076258e+02, 4.31076258e+02,
       1.87860435e+02, 1.87860435e+02, 1.87860435e+02, 1.87860435e+02,
       8.76910821e+00, 8.76910821e+00, 8.76910821e+00, 8.76910821e+00,
       2.98951467e-02, 2.98951467e-02, 2.98951467e-02, 2.98951467e-02,
       1.00015908e-02, 1.00015908e-02, 1.00015908e-02, 1.00015908e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999979, 0.99999979,
       0.99999979, 0.99999979, 0.9999963 , 0.9999963 , 0.9999963 ,
       0.9999963 , 0.99995364, 0.99995364, 0.99995364, 0.99995364,
       0.99957767, 0.99957767, 0.99957767, 0.99957767, 0.99718309,
       0.99718309, 0.99718309, 0.99718309, 0.98626394, 0.98626394,
       0.98626394, 0.98626394, 0.95106797, 0.95106797, 0.95106797,
       0.95106797, 0.87123171, 0.87123171, 0.87123171, 0.87123171,
       0.74547768, 0.74547768, 0.74547768, 0.74547768, 0.58374479,
       0.58374479, 0.58374479, 0.58374479, 0.73207392, 0.73207392,
       0.73207392, 0.73207392, 1.60503247, 1.60503247, 1.60503247,
       1.60503247, 1.47308433, 1.47308433, 1.47308433, 1.47308433,
       1.05348836, 1.05348836, 1.05348836, 1.05348836, 1.00182288,
       1.00182288, 1.00182288, 1.00182288, 1.00000147, 1.00000147,
       1.00000147, 1.00000147, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       6.26870362e-13, 6.26870362e-13, 6.26870362e-13, 6.26870362e-13,
       1.08486278e-10, 1.08486278e-10, 1.08486278e-10, 1.08486278e-10,
       7.72018265e-09, 7.72018265e-09, 7.72018265e-09, 7.72018265e-09,
       3.08421177e-07, 3.08421177e-07, 3.08421177e-07, 3.08421177e-07,
       7.88931508e-06, 7.88931508e-06, 7.88931508e-06, 7.88931508e-06,
       1.38505209e-04, 1.38505209e-04, 1.38505209e-04, 1.38505209e-04,
       1.73457409e-03, 1.73457409e-03, 1.73457409e-03, 1.73457409e-03,
       1.58044887e-02, 1.58044887e-02, 1.58044887e-02, 1.58044887e-02,
       1.05496410e-01, 1.05496410e-01, 1.05496410e-01, 1.05496410e-01,
       5.16306177e-01, 5.16306177e-01, 5.16306177e-01, 5.16306177e-01,
       1.86327287e+00, 1.86327287e+00, 1.86327287e+00, 1.86327287e+00,
       5.07718607e+00, 5.07718607e+00, 5.07718607e+00, 5.07718607e+00,
       1.06862908e+01, 1.06862908e+01, 1.06862908e+01, 1.06862908e+01,
       1.67930222e+01, 1.67930222e+01, 1.67930222e+01, 1.67930222e+01,
       2.18771845e+01, 2.18771845e+01, 2.18771845e+01, 2.18771845e+01,
       1.69221015e+01, 1.69221015e+01, 1.69221015e+01, 1.69221015e+01,
       5.93555418e+00, 5.93555418e+00, 5.93555418e+00, 5.93555418e+00,
       2.67386567e-01, 2.67386567e-01, 2.67386567e-01, 2.67386567e-01,
       9.03539515e-04, 9.03539515e-04, 9.03539515e-04, 9.03539515e-04,
       1.74483618e-07, 1.74483618e-07, 1.74483618e-07, 1.74483618e-07,
       2.04118254e-11, 2.04118254e-11, 2.04118254e-11, 2.04118254e-11,
       2.17016642e-15, 2.17016642e-15, 2.17016642e-15, 2.17016642e-15,
       1.97944057e-19, 1.97944057e-19, 1.97944057e-19, 1.97944057e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999705e+02, 9.99999705e+02, 9.99999705e+02, 9.99999705e+02,
       9.99994818e+02, 9.99994818e+02, 9.99994818e+02, 9.99994818e+02,
       9.99935102e+02, 9.99935102e+02, 9.99935102e+02, 9.99935102e+02,
       9.99408895e+02, 9.99408895e+02, 9.99408895e+02, 9.99408895e+02,
       9.96061988e+02, 9.96061988e+02, 9.96061988e+02, 9.96061988e+02,
       9.80877450e+02, 9.80877450e+02, 9.80877450e+02, 9.80877450e+02,
       9.32612348e+02, 9.32612348e+02, 9.32612348e+02, 9.32612348e+02,
       8.26315203e+02, 8.26315203e+02, 8.26315203e+02, 8.26315203e+02,
       6.66605385e+02, 6.66605385e+02, 6.66605385e+02, 6.66605385e+02,
       5.27625315e+02, 5.27625315e+02, 5.27625315e+02, 5.27625315e+02,
       4.48693030e+02, 4.48693030e+02, 4.48693030e+02, 4.48693030e+02,
       3.34282701e+02, 3.34282701e+02, 3.34282701e+02, 3.34282701e+02,
       5.93797144e+01, 5.93797144e+01, 5.93797144e+01, 5.93797144e+01,
       6.98066976e-01, 6.98066976e-01, 6.98066976e-01, 6.98066976e-01,
       1.02408618e-02, 1.02408618e-02, 1.02408618e-02, 1.02408618e-02,
       1.00000206e-02, 1.00000206e-02, 1.00000206e-02, 1.00000206e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.99999945,
       0.99999945, 0.99999945, 0.99999945, 0.99999352, 0.99999352,
       0.99999352, 0.99999352, 0.99994026, 0.99994026, 0.99994026,
       0.99994026, 0.99956877, 0.99956877, 0.99956877, 0.99956877,
       0.99757146, 0.99757146, 0.99757146, 0.99757146, 0.98940582,
       0.98940582, 0.98940582, 0.98940582, 0.96438863, 0.96438863,
       0.96438863, 0.96438863, 0.90735626, 0.90735626, 0.90735626,
       0.90735626, 0.80924072, 0.80924072, 0.80924072, 0.80924072,
       0.69259558, 0.69259558, 0.69259558, 0.69259558, 0.55553296,
       0.55553296, 0.55553296, 0.55553296, 0.63553693, 0.63553693,
       0.63553693, 0.63553693, 1.41397872, 1.41397872, 1.41397872,
       1.41397872, 1.81820124, 1.81820124, 1.81820124, 1.81820124,
       1.20387024, 1.20387024, 1.20387024, 1.20387024, 1.01269879,
       1.01269879, 1.01269879, 1.01269879, 1.00012068, 1.00012068,
       1.00012068, 1.00012068, 1.00000002, 1.00000002, 1.00000002,
       1.00000002, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.25264676e-14, 1.25264676e-14, 1.25264676e-14, 1.25264676e-14,
       1.20223771e-12, 1.20223771e-12, 1.20223771e-12, 1.20223771e-12,
       6.76403932e-11, 6.76403932e-11, 6.76403932e-11, 6.76403932e-11,
       2.53837542e-09, 2.53837542e-09, 2.53837542e-09, 2.53837542e-09,
       6.79851771e-08, 6.79851771e-08, 6.79851771e-08, 6.79851771e-08,
       1.35400957e-06, 1.35400957e-06, 1.35400957e-06, 1.35400957e-06,
       2.05807406e-05, 2.05807406e-05, 2.05807406e-05, 2.05807406e-05,
       2.42573789e-04, 2.42573789e-04, 2.42573789e-04, 2.42573789e-04,
       2.23546366e-03, 2.23546366e-03, 2.23546366e-03, 2.23546366e-03,
       1.61374184e-02, 1.61374184e-02, 1.61374184e-02, 1.61374184e-02,
       9.09392120e-02, 9.09392120e-02, 9.09392120e-02, 9.09392120e-02,
       3.97807519e-01, 3.97807519e-01, 3.97807519e-01, 3.97807519e-01,
       1.34962483e+00, 1.34962483e+00, 1.34962483e+00, 1.34962483e+00,
       3.59635188e+00, 3.59635188e+00, 3.59635188e+00, 3.59635188e+00,
       7.76598011e+00, 7.76598011e+00, 7.76598011e+00, 7.76598011e+00,
       1.32165654e+01, 1.32165654e+01, 1.32165654e+01, 1.32165654e+01,
       1.80416341e+01, 1.80416341e+01, 1.80416341e+01, 1.80416341e+01,
       2.21202361e+01, 2.21202361e+01, 2.21202361e+01, 2.21202361e+01,
       1.94936742e+01, 1.94936742e+01, 1.94936742e+01, 1.94936742e+01,
       1.19370184e+01, 1.19370184e+01, 1.19370184e+01, 1.19370184e+01,
       1.76105690e+00, 1.76105690e+00, 1.76105690e+00, 1.76105690e+00,
       2.41795528e-02, 2.41795528e-02, 2.41795528e-02, 2.41795528e-02,
       1.84851625e-05, 1.84851625e-05, 1.84851625e-05, 1.84851625e-05,
       2.29350661e-09, 2.29350661e-09, 2.29350661e-09, 2.29350661e-09,
       2.81251593e-13, 2.81251593e-13, 2.81251593e-13, 2.81251593e-13,
       3.33754952e-17, 3.33754952e-17, 3.33754952e-17, 3.33754952e-17,
       3.64817469e-21, 3.64817469e-21, 3.64817469e-21, 3.64817469e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
       9.99999949e+02, 9.99999949e+02, 9.99999949e+02, 9.99999949e+02,
       9.99999230e+02, 9.99999230e+02, 9.99999230e+02, 9.99999230e+02,
       9.99990924e+02, 9.99990924e+02, 9.99990924e+02, 9.99990924e+02,
       9.99916362e+02, 9.99916362e+02, 9.99916362e+02, 9.99916362e+02,
       9.99396422e+02, 9.99396422e+02, 9.99396422e+02, 9.99396422e+02,
       9.96603842e+02, 9.96603842e+02, 9.96603842e+02, 9.96603842e+02,
       9.85228286e+02, 9.85228286e+02, 9.85228286e+02, 9.85228286e+02,
       9.50716061e+02, 9.50716061e+02, 9.50716061e+02, 9.50716061e+02,
       8.73656108e+02, 8.73656108e+02, 8.73656108e+02, 8.73656108e+02,
       7.45930207e+02, 7.45930207e+02, 7.45930207e+02, 7.45930207e+02,
       5.98241504e+02, 5.98241504e+02, 5.98241504e+02, 5.98241504e+02,
       4.88987461e+02, 4.88987461e+02, 4.88987461e+02, 4.88987461e+02,
       4.47945739e+02, 4.47945739e+02, 4.47945739e+02, 4.47945739e+02,
       4.21683465e+02, 4.21683465e+02, 4.21683465e+02, 4.21683465e+02,
       1.87467920e+02, 1.87467920e+02, 1.87467920e+02, 1.87467920e+02,
       9.17847574e+00, 9.17847574e+00, 9.17847574e+00, 9.17847574e+00,
       3.36232559e-02, 3.36232559e-02, 3.36232559e-02, 3.36232559e-02,
       1.00022223e-02, 1.00022223e-02, 1.00022223e-02, 1.00022223e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999992, 0.99999992, 0.99999992, 0.99999992,
       0.99999906, 0.99999906, 0.99999906, 0.99999906, 0.9999913 ,
       0.9999913 , 0.9999913 , 0.9999913 , 0.99993411, 0.99993411,
       0.99993411, 0.99993411, 0.99959236, 0.99959236, 0.99959236,
       0.99959236, 0.99795381, 0.99795381, 0.99795381, 0.99795381,
       0.99173747, 0.99173747, 0.99173747, 0.99173747, 0.97334866,
       0.97334866, 0.97334866, 0.97334866, 0.93132225, 0.93132225,
       0.93132225, 0.93132225, 0.85670103, 0.85670103, 0.85670103,
       0.85670103, 0.75179519, 0.75179519, 0.75179519, 0.75179519,
       0.65703686, 0.65703686, 0.65703686, 0.65703686, 0.54101531,
       0.54101531, 0.54101531, 0.54101531, 0.58205108, 0.58205108,
       0.58205108, 0.58205108, 1.1130807 , 1.1130807 , 1.1130807 ,
       1.1130807 , 1.96862265, 1.96862265, 1.96862265, 1.96862265,
       1.57590593, 1.57590593, 1.57590593, 1.57590593, 1.05786987,
       1.05786987, 1.05786987, 1.05786987, 1.00204055, 1.00204055,
       1.00204055, 1.00204055, 1.0000019 , 1.0000019 , 1.0000019 ,
       1.0000019 , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.32029549e-14, 1.32029549e-14, 1.32029549e-14, 1.32029549e-14,
       6.26759693e-13, 6.26759693e-13, 6.26759693e-13, 6.26759693e-13,
       2.24647978e-11, 2.24647978e-11, 2.24647978e-11, 2.24647978e-11,
       6.13853404e-10, 6.13853404e-10, 6.13853404e-10, 6.13853404e-10,
       1.31518549e-08, 1.31518549e-08, 1.31518549e-08, 1.31518549e-08,
       2.25105226e-07, 2.25105226e-07, 2.25105226e-07, 2.25105226e-07,
       3.11704412e-06, 3.11704412e-06, 3.11704412e-06, 3.11704412e-06,
       3.51988240e-05, 3.51988240e-05, 3.51988240e-05, 3.51988240e-05,
       3.25473435e-04, 3.25473435e-04, 3.25473435e-04, 3.25473435e-04,
       2.46554838e-03, 2.46554838e-03, 2.46554838e-03, 2.46554838e-03,
       1.52545971e-02, 1.52545971e-02, 1.52545971e-02, 1.52545971e-02,
       7.66123068e-02, 7.66123068e-02, 7.66123068e-02, 7.66123068e-02,
       3.10021140e-01, 3.10021140e-01, 3.10021140e-01, 3.10021140e-01,
       1.00682526e+00, 1.00682526e+00, 1.00682526e+00, 1.00682526e+00,
       2.63965332e+00, 2.63965332e+00, 2.63965332e+00, 2.63965332e+00,
       5.70034900e+00, 5.70034900e+00, 5.70034900e+00, 5.70034900e+00,
       1.04061053e+01, 1.04061053e+01, 1.04061053e+01, 1.04061053e+01,
       1.52105883e+01, 1.52105883e+01, 1.52105883e+01, 1.52105883e+01,
       1.89069479e+01, 1.89069479e+01, 1.89069479e+01, 1.89069479e+01,
       2.15955068e+01, 2.15955068e+01, 2.15955068e+01, 2.15955068e+01,
       2.04770440e+01, 2.04770440e+01, 2.04770440e+01, 2.04770440e+01,
       1.67010242e+01, 1.67010242e+01, 1.67010242e+01, 1.67010242e+01,
       6.26776546e+00, 6.26776546e+00, 6.26776546e+00, 6.26776546e+00,
       2.93122578e-01, 2.93122578e-01, 2.93122578e-01, 2.93122578e-01,
       1.07322557e-03, 1.07322557e-03, 1.07322557e-03, 1.07322557e-03,
       2.25735626e-07, 2.25735626e-07, 2.25735626e-07, 2.25735626e-07,
       2.90996976e-11, 2.90996976e-11, 2.90996976e-11, 2.90996976e-11,
       3.74345106e-15, 3.74345106e-15, 3.74345106e-15, 3.74345106e-15,
       4.59216061e-19, 4.59216061e-19, 4.59216061e-19, 4.59216061e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999883e+02, 9.99999883e+02, 9.99999883e+02, 9.99999883e+02,
       9.99998683e+02, 9.99998683e+02, 9.99998683e+02, 9.99998683e+02,
       9.99987822e+02, 9.99987822e+02, 9.99987822e+02, 9.99987822e+02,
       9.99907753e+02, 9.99907753e+02, 9.99907753e+02, 9.99907753e+02,
       9.99429417e+02, 9.99429417e+02, 9.99429417e+02, 9.99429417e+02,
       9.97137849e+02, 9.97137849e+02, 9.97137849e+02, 9.97137849e+02,
       9.88467410e+02, 9.88467410e+02, 9.88467410e+02, 9.88467410e+02,
       9.63001130e+02, 9.63001130e+02, 9.63001130e+02, 9.63001130e+02,
       9.05679035e+02, 9.05679035e+02, 9.05679035e+02, 9.05679035e+02,
       8.06647957e+02, 8.06647957e+02, 8.06647957e+02, 8.06647957e+02,
       6.73299670e+02, 6.73299670e+02, 6.73299670e+02, 6.73299670e+02,
       5.52322864e+02, 5.52322864e+02, 5.52322864e+02, 5.52322864e+02,
       4.63896638e+02, 4.63896638e+02, 4.63896638e+02, 4.63896638e+02,
       4.40267965e+02, 4.40267965e+02, 4.40267965e+02, 4.40267965e+02,
       4.55404885e+02, 4.55404885e+02, 4.55404885e+02, 4.55404885e+02,
       3.30608875e+02, 3.30608875e+02, 3.30608875e+02, 3.30608875e+02,
       6.09057285e+01, 6.09057285e+01, 6.09057285e+01, 6.09057285e+01,
       7.84789333e-01, 7.84789333e-01, 7.84789333e-01, 7.84789333e-01,
       1.03005361e-02, 1.03005361e-02, 1.03005361e-02, 1.03005361e-02,
       1.00000267e-02, 1.00000267e-02, 1.00000267e-02, 1.00000267e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999871, 0.99999871, 0.99999871, 0.99999871,
       0.99998991, 0.99998991, 0.99998991, 0.99998991, 0.99993341,
       0.99993341, 0.99993341, 0.99993341, 0.9996311 , 0.9996311 ,
       0.9996311 , 0.9996311 , 0.99829672, 0.99829672, 0.99829672,
       0.99829672, 0.99350175, 0.99350175, 0.99350175, 0.99350175,
       0.97967166, 0.97967166, 0.97967166, 0.97967166, 0.94797565,
       0.94797565, 0.94797565, 0.94797565, 0.89016937, 0.89016937,
       0.89016937, 0.89016937, 0.80411713, 0.80411713, 0.80411713,
       0.80411713, 0.70435588, 0.70435588, 0.70435588, 0.70435588,
       0.63219176, 0.63219176, 0.63219176, 0.63219176, 0.53878399,
       0.53878399, 0.53878399, 0.53878399, 0.55643947, 0.55643947,
       0.55643947, 0.55643947, 0.8772511 , 0.8772511 , 0.8772511 ,
       0.8772511 , 1.82224154, 1.82224154, 1.82224154, 1.82224154,
       2.01854416, 2.01854416, 2.01854416, 2.01854416, 1.22314586,
       1.22314586, 1.22314586, 1.22314586, 1.01361896, 1.01361896,
       1.01361896, 1.01361896, 1.00014201, 1.00014201, 1.00014201,
       1.00014201, 1.00000002, 1.00000002, 1.00000002, 1.00000002,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.66827014e-15, 5.66827014e-15, 5.66827014e-15, 5.66827014e-15,
       2.06506951e-13, 2.06506951e-13, 2.06506951e-13, 2.06506951e-13,
       5.66830764e-12, 5.66830764e-12, 5.66830764e-12, 5.66830764e-12,
       1.27515789e-10, 1.27515789e-10, 1.27515789e-10, 1.27515789e-10,
       2.36717323e-09, 2.36717323e-09, 2.36717323e-09, 2.36717323e-09,
       3.66285384e-08, 3.66285384e-08, 3.66285384e-08, 3.66285384e-08,
       4.75793331e-07, 4.75793331e-07, 4.75793331e-07, 4.75793331e-07,
       5.21185121e-06, 5.21185121e-06, 5.21185121e-06, 5.21185121e-06,
       4.82519858e-05, 4.82519858e-05, 4.82519858e-05, 4.82519858e-05,
       3.77579977e-04, 3.77579977e-04, 3.77579977e-04, 3.77579977e-04,
       2.49179255e-03, 2.49179255e-03, 2.49179255e-03, 2.49179255e-03,
       1.38047063e-02, 1.38047063e-02, 1.38047063e-02, 1.38047063e-02,
       6.37665597e-02, 6.37665597e-02, 6.37665597e-02, 6.37665597e-02,
       2.43683102e-01, 2.43683102e-01, 2.43683102e-01, 2.43683102e-01,
       7.66223944e-01, 7.66223944e-01, 7.66223944e-01, 7.66223944e-01,
       1.98617391e+00, 1.98617391e+00, 1.98617391e+00, 1.98617391e+00,
       4.30205955e+00, 4.30205955e+00, 4.30205955e+00, 4.30205955e+00,
       8.00059653e+00, 8.00059653e+00, 8.00059653e+00, 8.00059653e+00,
       1.25346822e+01, 1.25346822e+01, 1.25346822e+01, 1.25346822e+01,
       1.68111435e+01, 1.68111435e+01, 1.68111435e+01, 1.68111435e+01,
       1.95788515e+01, 1.95788515e+01, 1.95788515e+01, 1.95788515e+01,
       2.10731533e+01, 2.10731533e+01, 2.10731533e+01, 2.10731533e+01,
       2.05578258e+01, 2.05578258e+01, 2.05578258e+01, 2.05578258e+01,
       1.90079024e+01, 1.90079024e+01, 1.90079024e+01, 1.90079024e+01,
       1.21008552e+01, 1.21008552e+01, 1.21008552e+01, 1.21008552e+01,
       1.89958249e+00, 1.89958249e+00, 1.89958249e+00, 1.89958249e+00,
       2.69248743e-02, 2.69248743e-02, 2.69248743e-02, 2.69248743e-02,
       2.23176477e-05, 2.23176477e-05, 2.23176477e-05, 2.23176477e-05,
       2.89290650e-09, 2.89290650e-09, 2.89290650e-09, 2.89290650e-09,
       3.71325919e-13, 3.71325919e-13, 3.71325919e-13, 3.71325919e-13,
       4.73822364e-17, 4.73822364e-17, 4.73822364e-17, 4.73822364e-17,
       4.48577786e-21, 4.48577786e-21, 4.48577786e-21, 4.48577786e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999982e+02, 9.99999982e+02, 9.99999982e+02, 9.99999982e+02,
       9.99999805e+02, 9.99999805e+02, 9.99999805e+02, 9.99999805e+02,
       9.99998195e+02, 9.99998195e+02, 9.99998195e+02, 9.99998195e+02,
       9.99985872e+02, 9.99985872e+02, 9.99985872e+02, 9.99985872e+02,
       9.99906771e+02, 9.99906771e+02, 9.99906771e+02, 9.99906771e+02,
       9.99483625e+02, 9.99483625e+02, 9.99483625e+02, 9.99483625e+02,
       9.97617059e+02, 9.97617059e+02, 9.97617059e+02, 9.97617059e+02,
       9.90923338e+02, 9.90923338e+02, 9.90923338e+02, 9.90923338e+02,
       9.71719329e+02, 9.71719329e+02, 9.71719329e+02, 9.71719329e+02,
       9.28208660e+02, 9.28208660e+02, 9.28208660e+02, 9.28208660e+02,
       8.50492018e+02, 8.50492018e+02, 8.50492018e+02, 8.50492018e+02,
       7.38645328e+02, 7.38645328e+02, 7.38645328e+02, 7.38645328e+02,
       6.14927640e+02, 6.14927640e+02, 6.14927640e+02, 6.14927640e+02,
       5.21794916e+02, 5.21794916e+02, 5.21794916e+02, 5.21794916e+02,
       4.51902595e+02, 4.51902595e+02, 4.51902595e+02, 4.51902595e+02,
       4.36518666e+02, 4.36518666e+02, 4.36518666e+02, 4.36518666e+02,
       4.58585341e+02, 4.58585341e+02, 4.58585341e+02, 4.58585341e+02,
       4.14979500e+02, 4.14979500e+02, 4.14979500e+02, 4.14979500e+02,
       1.85583423e+02, 1.85583423e+02, 1.85583423e+02, 1.85583423e+02,
       9.86901789e+00, 9.86901789e+00, 9.86901789e+00, 9.86901789e+00,
       3.72214496e-02, 3.72214496e-02, 3.72214496e-02, 3.72214496e-02,
       1.00026945e-02, 1.00026945e-02, 1.00026945e-02, 1.00026945e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999998,
       0.99999998, 0.99999998, 0.99999998, 0.99999981, 0.99999981,
       0.99999981, 0.99999981, 0.99999845, 0.99999845, 0.99999845,
       0.99999845, 0.99998928, 0.99998928, 0.99998928, 0.99998928,
       0.9999362 , 0.9999362 , 0.9999362 , 0.9999362 , 0.99967491,
       0.99967491, 0.99967491, 0.99967491, 0.99859164, 0.99859164,
       0.99859164, 0.99859164, 0.99485567, 0.99485567, 0.99485567,
       0.99485567, 0.98427987, 0.98427987, 0.98427987, 0.98427987,
       0.95996373, 0.95996373, 0.95996373, 0.95996373, 0.91464439,
       0.91464439, 0.91464439, 0.91464439, 0.8452093 , 0.8452093 ,
       0.8452093 , 0.8452093 , 0.75573999, 0.75573999, 0.75573999,
       0.75573999, 0.66831355, 0.66831355, 0.66831355, 0.66831355,
       0.61265528, 0.61265528, 0.61265528, 0.61265528, 0.54245435,
       0.54245435, 0.54245435, 0.54245435, 0.54720556, 0.54720556,
       0.54720556, 0.54720556, 0.73287   , 0.73287   , 0.73287   ,
       0.73287   , 1.49708567, 1.49708567, 1.49708567, 1.49708567,
       2.23159213, 2.23159213, 2.23159213, 2.23159213, 1.65090941,
       1.65090941, 1.65090941, 1.65090941, 1.06180375, 1.06180375,
       1.06180375, 1.06180375, 1.00222479, 1.00222479, 1.00222479,
       1.00222479, 1.00000228, 1.00000228, 1.00000228, 1.00000228,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.18160649e-15, 1.18160649e-15, 1.18160649e-15, 1.18160649e-15,
       5.46295183e-14, 5.46295183e-14, 5.46295183e-14, 5.46295183e-14,
       1.23457577e-12, 1.23457577e-12, 1.23457577e-12, 1.23457577e-12,
       2.43162832e-11, 2.43162832e-11, 2.43162832e-11, 2.43162832e-11,
       4.08347672e-10, 4.08347672e-10, 4.08347672e-10, 4.08347672e-10,
       5.88078054e-09, 5.88078054e-09, 5.88078054e-09, 5.88078054e-09,
       7.29422461e-08, 7.29422461e-08, 7.29422461e-08, 7.29422461e-08,
       7.81392346e-07, 7.81392346e-07, 7.81392346e-07, 7.81392346e-07,
       7.23903884e-06, 7.23903884e-06, 7.23903884e-06, 7.23903884e-06,
       5.79920652e-05, 5.79920652e-05, 5.79920652e-05, 5.79920652e-05,
       4.01085979e-04, 4.01085979e-04, 4.01085979e-04, 4.01085979e-04,
       2.38716000e-03, 2.38716000e-03, 2.38716000e-03, 2.38716000e-03,
       1.21649982e-02, 1.21649982e-02, 1.21649982e-02, 1.21649982e-02,
       5.27208845e-02, 5.27208845e-02, 5.27208845e-02, 5.27208845e-02,
       1.92824879e-01, 1.92824879e-01, 1.92824879e-01, 1.92824879e-01,
       5.91551803e-01, 5.91551803e-01, 5.91551803e-01, 5.91551803e-01,
       1.52124836e+00, 1.52124836e+00, 1.52124836e+00, 1.52124836e+00,
       3.30736543e+00, 3.30736543e+00, 3.30736543e+00, 3.30736543e+00,
       6.19589413e+00, 6.19589413e+00, 6.19589413e+00, 6.19589413e+00,
       1.02215292e+01, 1.02215292e+01, 1.02215292e+01, 1.02215292e+01,
       1.42224996e+01, 1.42224996e+01, 1.42224996e+01, 1.42224996e+01,
       1.79365451e+01, 1.79365451e+01, 1.79365451e+01, 1.79365451e+01,
       2.00798991e+01, 2.00798991e+01, 2.00798991e+01, 2.00798991e+01,
       2.07710129e+01, 2.07710129e+01, 2.07710129e+01, 2.07710129e+01,
       2.03738724e+01, 2.03738724e+01, 2.03738724e+01, 2.03738724e+01,
       1.98546337e+01, 1.98546337e+01, 1.98546337e+01, 1.98546337e+01,
       1.64879617e+01, 1.64879617e+01, 1.64879617e+01, 1.64879617e+01,
       6.52271251e+00, 6.52271251e+00, 6.52271251e+00, 6.52271251e+00,
       3.18021766e-01, 3.18021766e-01, 3.18021766e-01, 3.18021766e-01,
       1.23367760e-03, 1.23367760e-03, 1.23367760e-03, 1.23367760e-03,
       2.70934864e-07, 2.70934864e-07, 2.70934864e-07, 2.70934864e-07,
       3.52019501e-11, 3.52019501e-11, 3.52019501e-11, 3.52019501e-11,
       4.64992921e-15, 4.64992921e-15, 4.64992921e-15, 4.64992921e-15,
       6.02331549e-19, 6.02331549e-19, 6.02331549e-19, 6.02331549e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999997e+02, 9.99999997e+02, 9.99999997e+02, 9.99999997e+02,
       9.99999971e+02, 9.99999971e+02, 9.99999971e+02, 9.99999971e+02,
       9.99999729e+02, 9.99999729e+02, 9.99999729e+02, 9.99999729e+02,
       9.99997830e+02, 9.99997830e+02, 9.99997830e+02, 9.99997830e+02,
       9.99984993e+02, 9.99984993e+02, 9.99984993e+02, 9.99984993e+02,
       9.99910685e+02, 9.99910685e+02, 9.99910685e+02, 9.99910685e+02,
       9.99544941e+02, 9.99544941e+02, 9.99544941e+02, 9.99544941e+02,
       9.98029370e+02, 9.98029370e+02, 9.98029370e+02, 9.98029370e+02,
       9.92810695e+02, 9.92810695e+02, 9.92810695e+02, 9.92810695e+02,
       9.78097477e+02, 9.78097477e+02, 9.78097477e+02, 9.78097477e+02,
       9.44564417e+02, 9.44564417e+02, 9.44564417e+02, 9.44564417e+02,
       8.83069293e+02, 8.83069293e+02, 8.83069293e+02, 8.83069293e+02,
       7.91287043e+02, 7.91287043e+02, 7.91287043e+02, 7.91287043e+02,
       6.77341634e+02, 6.77341634e+02, 6.77341634e+02, 6.77341634e+02,
       5.71866254e+02, 5.71866254e+02, 5.71866254e+02, 5.71866254e+02,
       4.98838482e+02, 4.98838482e+02, 4.98838482e+02, 4.98838482e+02,
       4.47748470e+02, 4.47748470e+02, 4.47748470e+02, 4.47748470e+02,
       4.36925122e+02, 4.36925122e+02, 4.36925122e+02, 4.36925122e+02,
       4.54783175e+02, 4.54783175e+02, 4.54783175e+02, 4.54783175e+02,
       4.45896460e+02, 4.45896460e+02, 4.45896460e+02, 4.45896460e+02,
       3.20411762e+02, 3.20411762e+02, 3.20411762e+02, 3.20411762e+02,
       6.15900758e+01, 6.15900758e+01, 6.15900758e+01, 6.15900758e+01,
       8.63421907e-01, 8.63421907e-01, 8.63421907e-01, 8.63421907e-01,
       1.03623773e-02, 1.03623773e-02, 1.03623773e-02, 1.03623773e-02,
       1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999997, 0.99999997, 0.99999997, 0.99999997, 0.99999976,
       0.99999976, 0.99999976, 0.99999976, 0.99999829, 0.99999829,
       0.99999829, 0.99999829, 0.99998925, 0.99998925, 0.99998925,
       0.99998925, 0.99994097, 0.99994097, 0.99994097, 0.99994097,
       0.99971837, 0.99971837, 0.99971837, 0.99971837, 0.99883983,
       0.99883983, 0.99883983, 0.99883983, 0.99590578, 0.99590578,
       0.99590578, 0.99590578, 0.98771715, 0.98771715, 0.98771715,
       0.98771715, 0.9688216 , 0.9688216 , 0.9688216 , 0.9688216 ,
       0.93291927, 0.93291927, 0.93291927, 0.93291927, 0.87626891,
       0.87626891, 0.87626891, 0.87626891, 0.79977768, 0.79977768,
       0.79977768, 0.79977768, 0.71616692, 0.71616692, 0.71616692,
       0.71616692, 0.6411649 , 0.6411649 , 0.6411649 , 0.6411649 ,
       0.59775517, 0.59775517, 0.59775517, 0.59775517, 0.54673392,
       0.54673392, 0.54673392, 0.54673392, 0.54631056, 0.54631056,
       0.54631056, 0.54631056, 0.65073939, 0.65073939, 0.65073939,
       0.65073939, 1.1624501 , 1.1624501 , 1.1624501 , 1.1624501 ,
       2.15930703, 2.15930703, 2.15930703, 2.15930703, 2.16998   ,
       2.16998   , 2.16998   , 2.16998   , 1.23507778, 1.23507778,
       1.23507778, 1.23507778, 1.0142605 , 1.0142605 , 1.0142605 ,
       1.0142605 , 1.00015687, 1.00015687, 1.00015687, 1.00015687,
       1.00000003, 1.00000003, 1.00000003, 1.00000003, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.27454384e-14, 1.27454384e-14, 1.27454384e-14, 1.27454384e-14,
       2.47272091e-13, 2.47272091e-13, 2.47272091e-13, 2.47272091e-13,
       4.40240671e-12, 4.40240671e-12, 4.40240671e-12, 4.40240671e-12,
       6.86645339e-11, 6.86645339e-11, 6.86645339e-11, 6.86645339e-11,
       9.37022264e-10, 9.37022264e-10, 9.37022264e-10, 9.37022264e-10,
       1.12236099e-08, 1.12236099e-08, 1.12236099e-08, 1.12236099e-08,
       1.18207072e-07, 1.18207072e-07, 1.18207072e-07, 1.18207072e-07,
       1.09557226e-06, 1.09557226e-06, 1.09557226e-06, 1.09557226e-06,
       8.93418660e-06, 8.93418660e-06, 8.93418660e-06, 8.93418660e-06,
       6.40278059e-05, 6.40278059e-05, 6.40278059e-05, 6.40278059e-05,
       4.02322799e-04, 4.02322799e-04, 4.02322799e-04, 4.02322799e-04,
       2.20855552e-03, 2.20855552e-03, 2.20855552e-03, 2.20855552e-03,
       1.05384211e-02, 1.05384211e-02, 1.05384211e-02, 1.05384211e-02,
       4.34263931e-02, 4.34263931e-02, 4.34263931e-02, 4.34263931e-02,
       1.53409739e-01, 1.53409739e-01, 1.53409739e-01, 1.53409739e-01,
       4.61635401e-01, 4.61635401e-01, 4.61635401e-01, 4.61635401e-01,
       1.18057615e+00, 1.18057615e+00, 1.18057615e+00, 1.18057615e+00,
       2.57891597e+00, 2.57891597e+00, 2.57891597e+00, 2.57891597e+00,
       4.88068740e+00, 4.88068740e+00, 4.88068740e+00, 4.88068740e+00,
       8.19631338e+00, 8.19631338e+00, 8.19631338e+00, 8.19631338e+00,
       1.20755557e+01, 1.20755557e+01, 1.20755557e+01, 1.20755557e+01,
       1.56119331e+01, 1.56119331e+01, 1.56119331e+01, 1.56119331e+01,
       1.86987153e+01, 1.86987153e+01, 1.86987153e+01, 1.86987153e+01,
       2.03804546e+01, 2.03804546e+01, 2.03804546e+01, 2.03804546e+01,
       2.06321628e+01, 2.06321628e+01, 2.06321628e+01, 2.06321628e+01,
       2.02171402e+01, 2.02171402e+01, 2.02171402e+01, 2.02171402e+01,
       2.00646475e+01, 2.00646475e+01, 2.00646475e+01, 2.00646475e+01,
       1.86620483e+01, 1.86620483e+01, 1.86620483e+01, 1.86620483e+01,
       1.20985558e+01, 1.20985558e+01, 1.20985558e+01, 1.20985558e+01,
       1.97692771e+00, 1.97692771e+00, 1.97692771e+00, 1.97692771e+00,
       2.87213238e-02, 2.87213238e-02, 2.87213238e-02, 2.87213238e-02,
       2.50770351e-05, 2.50770351e-05, 2.50770351e-05, 2.50770351e-05,
       3.37123734e-09, 3.37123734e-09, 3.37123734e-09, 3.37123734e-09,
       4.42163288e-13, 4.42163288e-13, 4.42163288e-13, 4.42163288e-13,
       5.71495239e-17, 5.71495239e-17, 5.71495239e-17, 5.71495239e-17,
       4.50269287e-21, 4.50269287e-21, 4.50269287e-21, 4.50269287e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999996e+02, 9.99999996e+02, 9.99999996e+02, 9.99999996e+02,
       9.99999959e+02, 9.99999959e+02, 9.99999959e+02, 9.99999959e+02,
       9.99999666e+02, 9.99999666e+02, 9.99999666e+02, 9.99999666e+02,
       9.99997604e+02, 9.99997604e+02, 9.99997604e+02, 9.99997604e+02,
       9.99984947e+02, 9.99984947e+02, 9.99984947e+02, 9.99984947e+02,
       9.99917367e+02, 9.99917367e+02, 9.99917367e+02, 9.99917367e+02,
       9.99605771e+02, 9.99605771e+02, 9.99605771e+02, 9.99605771e+02,
       9.98376476e+02, 9.98376476e+02, 9.98376476e+02, 9.98376476e+02,
       9.94276002e+02, 9.94276002e+02, 9.94276002e+02, 9.94276002e+02,
       9.82867864e+02, 9.82867864e+02, 9.82867864e+02, 9.82867864e+02,
       9.56722442e+02, 9.56722442e+02, 9.56722442e+02, 9.56722442e+02,
       9.07673554e+02, 9.07673554e+02, 9.07673554e+02, 9.07673554e+02,
       8.31875435e+02, 8.31875435e+02, 8.31875435e+02, 8.31875435e+02,
       7.32668167e+02, 7.32668167e+02, 7.32668167e+02, 7.32668167e+02,
       6.27675900e+02, 6.27675900e+02, 6.27675900e+02, 6.27675900e+02,
       5.40641296e+02, 5.40641296e+02, 5.40641296e+02, 5.40641296e+02,
       4.81411714e+02, 4.81411714e+02, 4.81411714e+02, 4.81411714e+02,
       4.46388141e+02, 4.46388141e+02, 4.46388141e+02, 4.46388141e+02,
       4.39501351e+02, 4.39501351e+02, 4.39501351e+02, 4.39501351e+02,
       4.52157297e+02, 4.52157297e+02, 4.52157297e+02, 4.52157297e+02,
       4.52775903e+02, 4.52775903e+02, 4.52775903e+02, 4.52775903e+02,
       4.01828833e+02, 4.01828833e+02, 4.01828833e+02, 4.01828833e+02,
       1.79447659e+02, 1.79447659e+02, 1.79447659e+02, 1.79447659e+02,
       1.01968433e+01, 1.01968433e+01, 1.01968433e+01, 1.01968433e+01,
       3.95481482e-02, 3.95481482e-02, 3.95481482e-02, 3.95481482e-02,
       1.00030400e-02, 1.00030400e-02, 1.00030400e-02, 1.00030400e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999973, 0.99999973, 0.99999973, 0.99999973, 0.99999822,
       0.99999822, 0.99999822, 0.99999822, 0.99998963, 0.99998963,
       0.99998963, 0.99998963, 0.99994668, 0.99994668, 0.99994668,
       0.99994668, 0.99975882, 0.99975882, 0.99975882, 0.99975882,
       0.99904627, 0.99904627, 0.99904627, 0.99904627, 0.99672714,
       0.99672714, 0.99672714, 0.99672714, 0.99032541, 0.99032541,
       0.99032541, 0.99032541, 0.97549498, 0.97549498, 0.97549498,
       0.97549498, 0.94682189, 0.94682189, 0.94682189, 0.94682189,
       0.90035943, 0.90035943, 0.90035943, 0.90035943, 0.83595399,
       0.83595399, 0.83595399, 0.83595399, 0.75816608, 0.75816608,
       0.75816608, 0.75816608, 0.68548506, 0.68548506, 0.68548506,
       0.68548506, 0.6201578 , 0.6201578 , 0.6201578 , 0.6201578 ,
       0.58688385, 0.58688385, 0.58688385, 0.58688385, 0.55035053,
       0.55035053, 0.55035053, 0.55035053, 0.54815759, 0.54815759,
       0.54815759, 0.54815759, 0.6060835 , 0.6060835 , 0.6060835 ,
       0.6060835 , 0.93361729, 0.93361729, 0.93361729, 0.93361729,
       1.87007459, 1.87007459, 1.87007459, 1.87007459, 2.43252002,
       2.43252002, 2.43252002, 2.43252002, 1.69813853, 1.69813853,
       1.69813853, 1.69813853, 1.06363124, 1.06363124, 1.06363124,
       1.06363124, 1.00230929, 1.00230929, 1.00230929, 1.00230929,
       1.00000249, 1.00000249, 1.00000249, 1.00000249, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       1.17918877e-15, 1.17918877e-15, 1.17918877e-15, 1.17918877e-15,
       4.63192568e-14, 4.63192568e-14, 4.63192568e-14, 4.63192568e-14,
       7.72269119e-13, 7.72269119e-13, 7.72269119e-13, 7.72269119e-13,
       1.13606117e-11, 1.13606117e-11, 1.13606117e-11, 1.13606117e-11,
       1.48668973e-10, 1.48668973e-10, 1.48668973e-10, 1.48668973e-10,
       1.73273478e-09, 1.73273478e-09, 1.73273478e-09, 1.73273478e-09,
       1.80065644e-08, 1.80065644e-08, 1.80065644e-08, 1.80065644e-08,
       1.66938246e-07, 1.66938246e-07, 1.66938246e-07, 1.66938246e-07,
       1.38047343e-06, 1.38047343e-06, 1.38047343e-06, 1.38047343e-06,
       1.01730358e-05, 1.01730358e-05, 1.01730358e-05, 1.01730358e-05,
       6.66926861e-05, 6.66926861e-05, 6.66926861e-05, 6.66926861e-05,
       3.87946266e-04, 3.87946266e-04, 3.87946266e-04, 3.87946266e-04,
       1.99495582e-03, 1.99495582e-03, 1.99495582e-03, 1.99495582e-03,
       9.02485988e-03, 9.02485988e-03, 9.02485988e-03, 9.02485988e-03,
       3.56969786e-02, 3.56969786e-02, 3.56969786e-02, 3.56969786e-02,
       1.22599309e-01, 1.22599309e-01, 1.22599309e-01, 1.22599309e-01,
       3.63265196e-01, 3.63265196e-01, 3.63265196e-01, 3.63265196e-01,
       9.25486637e-01, 9.25486637e-01, 9.25486637e-01, 9.25486637e-01,
       2.03251679e+00, 2.03251679e+00, 2.03251679e+00, 2.03251679e+00,
       3.88754026e+00, 3.88754026e+00, 3.88754026e+00, 3.88754026e+00,
       6.59692847e+00, 6.59692847e+00, 6.59692847e+00, 6.59692847e+00,
       1.00916624e+01, 1.00916624e+01, 1.00916624e+01, 1.00916624e+01,
       1.36128329e+01, 1.36128329e+01, 1.36128329e+01, 1.36128329e+01,
       1.67200615e+01, 1.67200615e+01, 1.67200615e+01, 1.67200615e+01,
       1.92196842e+01, 1.92196842e+01, 1.92196842e+01, 1.92196842e+01,
       2.05019813e+01, 2.05019813e+01, 2.05019813e+01, 2.05019813e+01,
       2.05553746e+01, 2.05553746e+01, 2.05553746e+01, 2.05553746e+01,
       2.01200849e+01, 2.01200849e+01, 2.01200849e+01, 2.01200849e+01,
       2.00852609e+01, 2.00852609e+01, 2.00852609e+01, 2.00852609e+01,
       1.95505845e+01, 1.95505845e+01, 1.95505845e+01, 1.95505845e+01,
       1.62261910e+01, 1.62261910e+01, 1.62261910e+01, 1.62261910e+01,
       6.54866545e+00, 6.54866545e+00, 6.54866545e+00, 6.54866545e+00,
       3.24170699e-01, 3.24170699e-01, 3.24170699e-01, 3.24170699e-01,
       1.29707680e-03, 1.29707680e-03, 1.29707680e-03, 1.29707680e-03,
       2.95706974e-07, 2.95706974e-07, 2.95706974e-07, 2.95706974e-07,
       3.91707739e-11, 3.91707739e-11, 3.91707739e-11, 3.91707739e-11,
       5.29501501e-15, 5.29501501e-15, 5.29501501e-15, 5.29501501e-15,
       6.89647830e-19, 6.89647830e-19, 6.89647830e-19, 6.89647830e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999994e+02, 9.99999994e+02, 9.99999994e+02, 9.99999994e+02,
       9.99999948e+02, 9.99999948e+02, 9.99999948e+02, 9.99999948e+02,
       9.99999619e+02, 9.99999619e+02, 9.99999619e+02, 9.99999619e+02,
       9.99997505e+02, 9.99997505e+02, 9.99997505e+02, 9.99997505e+02,
       9.99985485e+02, 9.99985485e+02, 9.99985485e+02, 9.99985485e+02,
       9.99925359e+02, 9.99925359e+02, 9.99925359e+02, 9.99925359e+02,
       9.99662381e+02, 9.99662381e+02, 9.99662381e+02, 9.99662381e+02,
       9.98665240e+02, 9.98665240e+02, 9.98665240e+02, 9.98665240e+02,
       9.95422968e+02, 9.95422968e+02, 9.95422968e+02, 9.95422968e+02,
       9.86494880e+02, 9.86494880e+02, 9.86494880e+02, 9.86494880e+02,
       9.65922616e+02, 9.65922616e+02, 9.65922616e+02, 9.65922616e+02,
       9.26549448e+02, 9.26549448e+02, 9.26549448e+02, 9.26549448e+02,
       8.63811003e+02, 8.63811003e+02, 8.63811003e+02, 8.63811003e+02,
       7.79005137e+02, 7.79005137e+02, 7.79005137e+02, 7.79005137e+02,
       6.79897934e+02, 6.79897934e+02, 6.79897934e+02, 6.79897934e+02,
       5.89818941e+02, 5.89818941e+02, 5.89818941e+02, 5.89818941e+02,
       5.17012382e+02, 5.17012382e+02, 5.17012382e+02, 5.17012382e+02,
       4.68673522e+02, 4.68673522e+02, 4.68673522e+02, 4.68673522e+02,
       4.45586337e+02, 4.45586337e+02, 4.45586337e+02, 4.45586337e+02,
       4.42497030e+02, 4.42497030e+02, 4.42497030e+02, 4.42497030e+02,
       4.51096789e+02, 4.51096789e+02, 4.51096789e+02, 4.51096789e+02,
       4.53476996e+02, 4.53476996e+02, 4.53476996e+02, 4.53476996e+02,
       4.36824668e+02, 4.36824668e+02, 4.36824668e+02, 4.36824668e+02,
       3.07120077e+02, 3.07120077e+02, 3.07120077e+02, 3.07120077e+02,
       5.92749963e+01, 5.92749963e+01, 5.92749963e+01, 5.92749963e+01,
       8.68726123e-01, 8.68726123e-01, 8.68726123e-01, 8.68726123e-01,
       1.03848280e-02, 1.03848280e-02, 1.03848280e-02, 1.03848280e-02,
       1.00000350e-02, 1.00000350e-02, 1.00000350e-02, 1.00000350e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999996, 0.99999996, 0.99999996,
       0.99999996, 0.99999971, 0.99999971, 0.99999971, 0.99999971,
       0.99999822, 0.99999822, 0.99999822, 0.99999822, 0.99999028,
       0.99999028, 0.99999028, 0.99999028, 0.99995266, 0.99995266,
       0.99995266, 0.99995266, 0.99979512, 0.99979512, 0.99979512,
       0.99979512, 0.99921684, 0.99921684, 0.99921684, 0.99921684,
       0.99737403, 0.99737403, 0.99737403, 0.99737403, 0.9923308 ,
       0.9923308 , 0.9923308 , 0.9923308 , 0.98059926, 0.98059926,
       0.98059926, 0.98059926, 0.95755427, 0.95755427, 0.95755427,
       0.95755427, 0.91927574, 0.91927574, 0.91927574, 0.91927574,
       0.86476987, 0.86476987, 0.86476987, 0.86476987, 0.79618357,
       0.79618357, 0.79618357, 0.79618357, 0.72306218, 0.72306218,
       0.72306218, 0.72306218, 0.66150523, 0.66150523, 0.66150523,
       0.66150523, 0.60422085, 0.60422085, 0.60422085, 0.60422085,
       0.57924424, 0.57924424, 0.57924424, 0.57924424, 0.55336757,
       0.55336757, 0.55336757, 0.55336757, 0.55041993, 0.55041993,
       0.55041993, 0.55041993, 0.58277776, 0.58277776, 0.58277776,
       0.58277776, 0.78662431, 0.78662431, 0.78662431, 0.78662431,
       1.48769623, 1.48769623, 1.48769623, 1.48769623, 2.43758196,
       2.43758196, 2.43758196, 2.43758196, 2.27678193, 2.27678193,
       2.27678193, 2.27678193, 1.23532054, 1.23532054, 1.23532054,
       1.23532054, 1.0142013 , 1.0142013 , 1.0142013 , 1.0142013 ,
       1.00015564, 1.00015564, 1.00015564, 1.00015564, 1.00000003,
       1.00000003, 1.00000003, 1.00000003, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       7.84780571e-15, 7.84780571e-15, 7.84780571e-15, 7.84780571e-15,
       1.31247225e-13, 1.31247225e-13, 1.31247225e-13, 1.31247225e-13,
       1.86099744e-12, 1.86099744e-12, 1.86099744e-12, 1.86099744e-12,
       2.35229555e-11, 2.35229555e-11, 2.35229555e-11, 2.35229555e-11,
       2.68230159e-10, 2.68230159e-10, 2.68230159e-10, 2.68230159e-10,
       2.75761076e-09, 2.75761076e-09, 2.75761076e-09, 2.75761076e-09,
       2.55719231e-08, 2.55719231e-08, 2.55719231e-08, 2.55719231e-08,
       2.13858422e-07, 2.13858422e-07, 2.13858422e-07, 2.13858422e-07,
       1.61179086e-06, 1.61179086e-06, 1.61179086e-06, 1.61179086e-06,
       1.09330523e-05, 1.09330523e-05, 1.09330523e-05, 1.09330523e-05,
       6.66147485e-05, 6.66147485e-05, 6.66147485e-05, 6.66147485e-05,
       3.63590132e-04, 3.63590132e-04, 3.63590132e-04, 3.63590132e-04,
       1.77131328e-03, 1.77131328e-03, 1.77131328e-03, 1.77131328e-03,
       7.66654068e-03, 7.66654068e-03, 7.66654068e-03, 7.66654068e-03,
       2.93110700e-02, 2.93110700e-02, 2.93110700e-02, 2.93110700e-02,
       9.83453389e-02, 9.83453389e-02, 9.83453389e-02, 9.83453389e-02,
       2.87757346e-01, 2.87757346e-01, 2.87757346e-01, 2.87757346e-01,
       7.31271666e-01, 7.31271666e-01, 7.31271666e-01, 7.31271666e-01,
       1.61513497e+00, 1.61513497e+00, 1.61513497e+00, 1.61513497e+00,
       3.12319769e+00, 3.12319769e+00, 3.12319769e+00, 3.12319769e+00,
       5.36427327e+00, 5.36427327e+00, 5.36427327e+00, 5.36427327e+00,
       8.35732099e+00, 8.35732099e+00, 8.35732099e+00, 8.35732099e+00,
       1.16892047e+01, 1.16892047e+01, 1.16892047e+01, 1.16892047e+01,
       1.49052400e+01, 1.49052400e+01, 1.49052400e+01, 1.49052400e+01,
       1.76214127e+01, 1.76214127e+01, 1.76214127e+01, 1.76214127e+01,
       1.95882774e+01, 1.95882774e+01, 1.95882774e+01, 1.95882774e+01,
       2.05031852e+01, 2.05031852e+01, 2.05031852e+01, 2.05031852e+01,
       2.04829872e+01, 2.04829872e+01, 2.04829872e+01, 2.04829872e+01,
       2.00863226e+01, 2.00863226e+01, 2.00863226e+01, 2.00863226e+01,
       2.00679880e+01, 2.00679880e+01, 2.00679880e+01, 2.00679880e+01,
       1.98869708e+01, 1.98869708e+01, 1.98869708e+01, 1.98869708e+01,
       1.83990451e+01, 1.83990451e+01, 1.83990451e+01, 1.83990451e+01,
       1.18973605e+01, 1.18973605e+01, 1.18973605e+01, 1.18973605e+01,
       1.92593412e+00, 1.92593412e+00, 1.92593412e+00, 1.92593412e+00,
       2.78926539e-02, 2.78926539e-02, 2.78926539e-02, 2.78926539e-02,
       2.46303900e-05, 2.46303900e-05, 2.46303900e-05, 2.46303900e-05,
       3.45965769e-09, 3.45965769e-09, 3.45965769e-09, 3.45965769e-09,
       4.70814125e-13, 4.70814125e-13, 4.70814125e-13, 4.70814125e-13,
       6.25944971e-17, 6.25944971e-17, 6.25944971e-17, 6.25944971e-17,
       1.40917331e-20, 1.40917331e-20, 1.40917331e-20, 1.40917331e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999940e+02, 9.99999940e+02, 9.99999940e+02, 9.99999940e+02,
       9.99999591e+02, 9.99999591e+02, 9.99999591e+02, 9.99999591e+02,
       9.99997508e+02, 9.99997508e+02, 9.99997508e+02, 9.99997508e+02,
       9.99986396e+02, 9.99986396e+02, 9.99986396e+02, 9.99986396e+02,
       9.99933726e+02, 9.99933726e+02, 9.99933726e+02, 9.99933726e+02,
       9.99713187e+02, 9.99713187e+02, 9.99713187e+02, 9.99713187e+02,
       9.98903881e+02, 9.98903881e+02, 9.98903881e+02, 9.98903881e+02,
       9.96326802e+02, 9.96326802e+02, 9.96326802e+02, 9.96326802e+02,
       9.89287663e+02, 9.89287663e+02, 9.89287663e+02, 9.89287663e+02,
       9.72982839e+02, 9.72982839e+02, 9.72982839e+02, 9.72982839e+02,
       9.41213875e+02, 9.41213875e+02, 9.41213875e+02, 9.41213875e+02,
       8.89161214e+02, 8.89161214e+02, 8.89161214e+02, 8.89161214e+02,
       8.16557244e+02, 8.16557244e+02, 8.16557244e+02, 8.16557244e+02,
       7.27792873e+02, 7.27792873e+02, 7.27792873e+02, 7.27792873e+02,
       6.36091679e+02, 6.36091679e+02, 6.36091679e+02, 6.36091679e+02,
       5.60608656e+02, 5.60608656e+02, 5.60608656e+02, 5.60608656e+02,
       4.99456928e+02, 4.99456928e+02, 4.99456928e+02, 4.99456928e+02,
       4.59916263e+02, 4.59916263e+02, 4.59916263e+02, 4.59916263e+02,
       4.44832936e+02, 4.44832936e+02, 4.44832936e+02, 4.44832936e+02,
       4.44855833e+02, 4.44855833e+02, 4.44855833e+02, 4.44855833e+02,
       4.51329612e+02, 4.51329612e+02, 4.51329612e+02, 4.51329612e+02,
       4.53075538e+02, 4.53075538e+02, 4.53075538e+02, 4.53075538e+02,
       4.48914983e+02, 4.48914983e+02, 4.48914983e+02, 4.48914983e+02,
       3.89344412e+02, 3.89344412e+02, 3.89344412e+02, 3.89344412e+02,
       1.69288930e+02, 1.69288930e+02, 1.69288930e+02, 1.69288930e+02,
       9.65027996e+00, 9.65027996e+00, 9.65027996e+00, 9.65027996e+00,
       3.79449184e-02, 3.79449184e-02, 3.79449184e-02, 3.79449184e-02,
       1.00029784e-02, 1.00029784e-02, 1.00029784e-02, 1.00029784e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.9999997 , 0.9999997 , 0.9999997 ,
       0.9999997 , 0.99999828, 0.99999828, 0.99999828, 0.99999828,
       0.99999108, 0.99999108, 0.99999108, 0.99999108, 0.9999585 ,
       0.9999585 , 0.9999585 , 0.9999585 , 0.99982697, 0.99982697,
       0.99982697, 0.99982697, 0.99935725, 0.99935725, 0.99935725,
       0.99935725, 0.99788644, 0.99788644, 0.99788644, 0.99788644,
       0.99388871, 0.99388871, 0.99388871, 0.99388871, 0.98455003,
       0.98455003, 0.98455003, 0.98455003, 0.96593499, 0.96593499,
       0.96593499, 0.96593499, 0.9342993 , 0.9342993 , 0.9342993 ,
       0.9342993 , 0.88804292, 0.88804292, 0.88804292, 0.88804292,
       0.82849089, 0.82849089, 0.82849089, 0.82849089, 0.75995557,
       0.75995557, 0.75995557, 0.75995557, 0.6948101 , 0.6948101 ,
       0.6948101 , 0.6948101 , 0.64178791, 0.64178791, 0.64178791,
       0.64178791, 0.59207003, 0.59207003, 0.59207003, 0.59207003,
       0.57419756, 0.57419756, 0.57419756, 0.57419756, 0.55596457,
       0.55596457, 0.55596457, 0.55596457, 0.5528484 , 0.5528484 ,
       0.5528484 , 0.5528484 , 0.57066328, 0.57066328, 0.57066328,
       0.57066328, 0.69535413, 0.69535413, 0.69535413, 0.69535413,
       1.17867884, 1.17867884, 1.17867884, 1.17867884, 2.21167836,
       2.21167836, 2.21167836, 2.21167836, 2.60264521, 2.60264521,
       2.60264521, 2.60264521, 1.7128863 , 1.7128863 , 1.7128863 ,
       1.7128863 , 1.06202573, 1.06202573, 1.06202573, 1.06202573,
       1.00220672, 1.00220672, 1.00220672, 1.00220672, 1.00000228,
       1.00000228, 1.00000228, 1.00000228, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.82667535e-16, 5.82667535e-16, 5.82667535e-16, 5.82667535e-16,
       2.37807029e-14, 2.37807029e-14, 2.37807029e-14, 2.37807029e-14,
       3.03202404e-13, 3.03202404e-13, 3.03202404e-13, 3.03202404e-13,
       3.71371250e-12, 3.71371250e-12, 3.71371250e-12, 3.71371250e-12,
       4.16077225e-11, 4.16077225e-11, 4.16077225e-11, 4.16077225e-11,
       4.24016982e-10, 4.24016982e-10, 4.24016982e-10, 4.24016982e-10,
       3.93302512e-09, 3.93302512e-09, 3.93302512e-09, 3.93302512e-09,
       3.32002473e-08, 3.32002473e-08, 3.32002473e-08, 3.32002473e-08,
       2.54903725e-07, 2.54903725e-07, 2.54903725e-07, 2.54903725e-07,
       1.77822075e-06, 1.77822075e-06, 1.77822075e-06, 1.77822075e-06,
       1.12541158e-05, 1.12541158e-05, 1.12541158e-05, 1.12541158e-05,
       6.44841773e-05, 6.44841773e-05, 6.44841773e-05, 6.44841773e-05,
       3.33602038e-04, 3.33602038e-04, 3.33602038e-04, 3.33602038e-04,
       1.55281901e-03, 1.55281901e-03, 1.55281901e-03, 1.55281901e-03,
       6.47471971e-03, 6.47471971e-03, 6.47471971e-03, 6.47471971e-03,
       2.40547896e-02, 2.40547896e-02, 2.40547896e-02, 2.40547896e-02,
       7.91410207e-02, 7.91410207e-02, 7.91410207e-02, 7.91410207e-02,
       2.29173025e-01, 2.29173025e-01, 2.29173025e-01, 2.29173025e-01,
       5.81473724e-01, 5.81473724e-01, 5.81473724e-01, 5.81473724e-01,
       1.29181150e+00, 1.29181150e+00, 1.29181150e+00, 1.29181150e+00,
       2.52541673e+00, 2.52541673e+00, 2.52541673e+00, 2.52541673e+00,
       4.39364483e+00, 4.39364483e+00, 4.39364483e+00, 4.39364483e+00,
       6.92177553e+00, 6.92177553e+00, 6.92177553e+00, 6.92177553e+00,
       1.00062705e+01, 1.00062705e+01, 1.00062705e+01, 1.00062705e+01,
       1.30551463e+01, 1.30551463e+01, 1.30551463e+01, 1.30551463e+01,
       1.59467542e+01, 1.59467542e+01, 1.59467542e+01, 1.59467542e+01,
       1.83397628e+01, 1.83397628e+01, 1.83397628e+01, 1.83397628e+01,
       1.98657446e+01, 1.98657446e+01, 1.98657446e+01, 1.98657446e+01,
       2.04639329e+01, 2.04639329e+01, 2.04639329e+01, 2.04639329e+01,
       2.03869143e+01, 2.03869143e+01, 2.03869143e+01, 2.03869143e+01,
       2.00832064e+01, 2.00832064e+01, 2.00832064e+01, 2.00832064e+01,
       2.00558910e+01, 2.00558910e+01, 2.00558910e+01, 2.00558910e+01,
       1.99917512e+01, 1.99917512e+01, 1.99917512e+01, 1.99917512e+01,
       1.93663021e+01, 1.93663021e+01, 1.93663021e+01, 1.93663021e+01,
       1.59156770e+01, 1.59156770e+01, 1.59156770e+01, 1.59156770e+01,
       6.34602264e+00, 6.34602264e+00, 6.34602264e+00, 6.34602264e+00,
       3.03838005e-01, 3.03838005e-01, 3.03838005e-01, 3.03838005e-01,
       1.18263967e-03, 1.18263967e-03, 1.18263967e-03, 1.18263967e-03,
       2.70515192e-07, 2.70515192e-07, 2.70515192e-07, 2.70515192e-07,
       3.73495771e-11, 3.73495771e-11, 3.73495771e-11, 3.73495771e-11,
       5.26225555e-15, 5.26225555e-15, 5.26225555e-15, 5.26225555e-15,
       7.33233058e-19, 7.33233058e-19, 7.33233058e-19, 7.33233058e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999999e+02, 9.99999999e+02, 9.99999999e+02, 9.99999999e+02,
       9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
       9.99999933e+02, 9.99999933e+02, 9.99999933e+02, 9.99999933e+02,
       9.99999579e+02, 9.99999579e+02, 9.99999579e+02, 9.99999579e+02,
       9.99997587e+02, 9.99997587e+02, 9.99997587e+02, 9.99997587e+02,
       9.99987518e+02, 9.99987518e+02, 9.99987518e+02, 9.99987518e+02,
       9.99941901e+02, 9.99941901e+02, 9.99941901e+02, 9.99941901e+02,
       9.99757768e+02, 9.99757768e+02, 9.99757768e+02, 9.99757768e+02,
       9.99100354e+02, 9.99100354e+02, 9.99100354e+02, 9.99100354e+02,
       9.97043041e+02, 9.97043041e+02, 9.97043041e+02, 9.97043041e+02,
       9.91459711e+02, 9.91459711e+02, 9.91459711e+02, 9.91459711e+02,
       9.78461298e+02, 9.78461298e+02, 9.78461298e+02, 9.78461298e+02,
       9.52721066e+02, 9.52721066e+02, 9.52721066e+02, 9.52721066e+02,
       9.09464048e+02, 9.09464048e+02, 9.09464048e+02, 9.09464048e+02,
       8.47290240e+02, 8.47290240e+02, 8.47290240e+02, 8.47290240e+02,
       7.69147303e+02, 7.69147303e+02, 7.69147303e+02, 7.69147303e+02,
       6.81824841e+02, 6.81824841e+02, 6.81824841e+02, 6.81824841e+02,
       6.01613262e+02, 6.01613262e+02, 6.01613262e+02, 6.01613262e+02,
       5.36678519e+02, 5.36678519e+02, 5.36678519e+02, 5.36678519e+02,
       4.86252372e+02, 4.86252372e+02, 4.86252372e+02, 4.86252372e+02,
       4.54602117e+02, 4.54602117e+02, 4.54602117e+02, 4.54602117e+02,
       4.44345600e+02, 4.44345600e+02, 4.44345600e+02, 4.44345600e+02,
       4.46359684e+02, 4.46359684e+02, 4.46359684e+02, 4.46359684e+02,
       4.51901635e+02, 4.51901635e+02, 4.51901635e+02, 4.51901635e+02,
       4.52889504e+02, 4.52889504e+02, 4.52889504e+02, 4.52889504e+02,
       4.52265646e+02, 4.52265646e+02, 4.52265646e+02, 4.52265646e+02,
       4.29084128e+02, 4.29084128e+02, 4.29084128e+02, 4.29084128e+02,
       2.92805528e+02, 2.92805528e+02, 2.92805528e+02, 2.92805528e+02,
       5.43708093e+01, 5.43708093e+01, 5.43708093e+01, 5.43708093e+01,
       7.81644380e-01, 7.81644380e-01, 7.81644380e-01, 7.81644380e-01,
       1.03355903e-02, 1.03355903e-02, 1.03355903e-02, 1.03355903e-02,
       1.00000320e-02, 1.00000320e-02, 1.00000320e-02, 1.00000320e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999995,
       0.99999995, 0.99999995, 0.99999995, 0.9999997 , 0.9999997 ,
       0.9999997 , 0.9999997 , 0.99999837, 0.99999837, 0.99999837,
       0.99999837, 0.99999195, 0.99999195, 0.99999195, 0.99999195,
       0.99996397, 0.99996397, 0.99996397, 0.99996397, 0.9998545 ,
       0.9998545 , 0.9998545 , 0.9998545 , 0.9994726 , 0.9994726 ,
       0.9994726 , 0.9994726 , 0.9982943 , 0.9982943 , 0.9982943 ,
       0.9982943 , 0.99510915, 0.99510915, 0.99510915, 0.99510915,
       0.98763719, 0.98763719, 0.98763719, 0.98763719, 0.97253998,
       0.97253998, 0.97253998, 0.97253998, 0.94633146, 0.94633146,
       0.94633146, 0.94633146, 0.90701242, 0.90701242, 0.90701242,
       0.90701242, 0.85516088, 0.85516088, 0.85516088, 0.85516088,
       0.79324114, 0.79324114, 0.79324114, 0.79324114, 0.72928116,
       0.72928116, 0.72928116, 0.72928116, 0.67174921, 0.67174921,
       0.67174921, 0.67174921, 0.62584268, 0.62584268, 0.62584268,
       0.62584268, 0.58259287, 0.58259287, 0.58259287, 0.58259287,
       0.57068029, 0.57068029, 0.57068029, 0.57068029, 0.55836177,
       0.55836177, 0.55836177, 0.55836177, 0.55573867, 0.55573867,
       0.55573867, 0.55573867, 0.56443057, 0.56443057, 0.56443057,
       0.56443057, 0.6395892 , 0.6395892 , 0.6395892 , 0.6395892 ,
       0.96358615, 0.96358615, 0.96358615, 0.96358615, 1.83549949,
       1.83549949, 1.83549949, 1.83549949, 2.66715283, 2.66715283,
       2.66715283, 2.66715283, 2.3438958 , 2.3438958 , 2.3438958 ,
       2.3438958 , 1.22354901, 1.22354901, 1.22354901, 1.22354901,
       1.01330763, 1.01330763, 1.01330763, 1.01330763, 1.00013509,
       1.00013509, 1.00013509, 1.00013509, 1.00000003, 1.00000003,
       1.00000003, 1.00000003, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       3.27252719e-15, 3.27252719e-15, 3.27252719e-15, 3.27252719e-15,
       5.02048681e-14, 5.02048681e-14, 5.02048681e-14, 5.02048681e-14,
       5.87307060e-13, 5.87307060e-13, 5.87307060e-13, 5.87307060e-13,
       6.46241559e-12, 6.46241559e-12, 6.46241559e-12, 6.46241559e-12,
       6.53785309e-11, 6.53785309e-11, 6.53785309e-11, 6.53785309e-11,
       6.06614778e-10, 6.06614778e-10, 6.06614778e-10, 6.06614778e-10,
       5.16153797e-09, 5.16153797e-09, 5.16153797e-09, 5.16153797e-09,
       4.02536022e-08, 4.02536022e-08, 4.02536022e-08, 4.02536022e-08,
       2.87499828e-07, 2.87499828e-07, 2.87499828e-07, 2.87499828e-07,
       1.87827130e-06, 1.87827130e-06, 1.87827130e-06, 1.87827130e-06,
       1.12063726e-05, 1.12063726e-05, 1.12063726e-05, 1.12063726e-05,
       6.09321654e-05, 6.09321654e-05, 6.09321654e-05, 6.09321654e-05,
       3.01124184e-04, 3.01124184e-04, 3.01124184e-04, 3.01124184e-04,
       1.34806658e-03, 1.34806658e-03, 1.34806658e-03, 1.34806658e-03,
       5.44437268e-03, 5.44437268e-03, 5.44437268e-03, 5.44437268e-03,
       1.97371145e-02, 1.97371145e-02, 1.97371145e-02, 1.97371145e-02,
       6.38597905e-02, 6.38597905e-02, 6.38597905e-02, 6.38597905e-02,
       1.83325531e-01, 1.83325531e-01, 1.83325531e-01, 1.83325531e-01,
       4.64737704e-01, 4.64737704e-01, 4.64737704e-01, 4.64737704e-01,
       1.03856729e+00, 1.03856729e+00, 1.03856729e+00, 1.03856729e+00,
       2.05236016e+00, 2.05236016e+00, 2.05236016e+00, 2.05236016e+00,
       3.61812720e+00, 3.61812720e+00, 3.61812720e+00, 3.61812720e+00,
       5.77166819e+00, 5.77166819e+00, 5.77166819e+00, 5.77166819e+00,
       8.48843316e+00, 8.48843316e+00, 8.48843316e+00, 8.48843316e+00,
       1.14236988e+01, 1.14236988e+01, 1.14236988e+01, 1.14236988e+01,
       1.42358355e+01, 1.42358355e+01, 1.42358355e+01, 1.42358355e+01,
       1.68025698e+01, 1.68025698e+01, 1.68025698e+01, 1.68025698e+01,
       1.88802206e+01, 1.88802206e+01, 1.88802206e+01, 1.88802206e+01,
       2.00711843e+01, 2.00711843e+01, 2.00711843e+01, 2.00711843e+01,
       2.04384777e+01, 2.04384777e+01, 2.04384777e+01, 2.04384777e+01,
       2.02877280e+01, 2.02877280e+01, 2.02877280e+01, 2.02877280e+01,
       2.00672694e+01, 2.00672694e+01, 2.00672694e+01, 2.00672694e+01,
       2.00505256e+01, 2.00505256e+01, 2.00505256e+01, 2.00505256e+01,
       2.00195354e+01, 2.00195354e+01, 2.00195354e+01, 2.00195354e+01,
       1.97774623e+01, 1.97774623e+01, 1.97774623e+01, 1.97774623e+01,
       1.81444582e+01, 1.81444582e+01, 1.81444582e+01, 1.81444582e+01,
       1.15550729e+01, 1.15550729e+01, 1.15550729e+01, 1.15550729e+01,
       1.77081733e+00, 1.77081733e+00, 1.77081733e+00, 1.77081733e+00,
       2.44888120e-02, 2.44888120e-02, 2.44888120e-02, 2.44888120e-02,
       2.06002983e-05, 2.06002983e-05, 2.06002983e-05, 2.06002983e-05,
       2.98049908e-09, 2.98049908e-09, 2.98049908e-09, 2.98049908e-09,
       4.19450571e-13, 4.19450571e-13, 4.19450571e-13, 4.19450571e-13,
       5.78774071e-17, 5.78774071e-17, 5.78774071e-17, 5.78774071e-17,
       4.37610151e-21, 4.37610151e-21, 4.37610151e-21, 4.37610151e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999930e+02, 9.99999930e+02, 9.99999930e+02, 9.99999930e+02,
       9.99999581e+02, 9.99999581e+02, 9.99999581e+02, 9.99999581e+02,
       9.99997720e+02, 9.99997720e+02, 9.99997720e+02, 9.99997720e+02,
       9.99988733e+02, 9.99988733e+02, 9.99988733e+02, 9.99988733e+02,
       9.99949561e+02, 9.99949561e+02, 9.99949561e+02, 9.99949561e+02,
       9.99796311e+02, 9.99796311e+02, 9.99796311e+02, 9.99796311e+02,
       9.99261774e+02, 9.99261774e+02, 9.99261774e+02, 9.99261774e+02,
       9.97613331e+02, 9.97613331e+02, 9.97613331e+02, 9.97613331e+02,
       9.93162704e+02, 9.93162704e+02, 9.93162704e+02, 9.93162704e+02,
       9.82750522e+02, 9.82750522e+02, 9.82750522e+02, 9.82750522e+02,
       9.61824610e+02, 9.61824610e+02, 9.61824610e+02, 9.61824610e+02,
       9.25831706e+02, 9.25831706e+02, 9.25831706e+02, 9.25831706e+02,
       8.72601859e+02, 8.72601859e+02, 8.72601859e+02, 8.72601859e+02,
       8.03814503e+02, 8.03814503e+02, 8.03814503e+02, 8.03814503e+02,
       7.23838409e+02, 7.23838409e+02, 7.23838409e+02, 7.23838409e+02,
       6.43384851e+02, 6.43384851e+02, 6.43384851e+02, 6.43384851e+02,
       5.74112241e+02, 5.74112241e+02, 5.74112241e+02, 5.74112241e+02,
       5.17349942e+02, 5.17349942e+02, 5.17349942e+02, 5.17349942e+02,
       4.75919956e+02, 4.75919956e+02, 4.75919956e+02, 4.75919956e+02,
       4.51607155e+02, 4.51607155e+02, 4.51607155e+02, 4.51607155e+02,
       4.44470585e+02, 4.44470585e+02, 4.44470585e+02, 4.44470585e+02,
       4.47515366e+02, 4.47515366e+02, 4.47515366e+02, 4.47515366e+02,
       4.52054920e+02, 4.52054920e+02, 4.52054920e+02, 4.52054920e+02,
       4.52910758e+02, 4.52910758e+02, 4.52910758e+02, 4.52910758e+02,
       4.53087888e+02, 4.53087888e+02, 4.53087888e+02, 4.53087888e+02,
       4.45232329e+02, 4.45232329e+02, 4.45232329e+02, 4.45232329e+02,
       3.77819444e+02, 3.77819444e+02, 3.77819444e+02, 3.77819444e+02,
       1.56913286e+02, 1.56913286e+02, 1.56913286e+02, 1.56913286e+02,
       8.48730097e+00, 8.48730097e+00, 8.48730097e+00, 8.48730097e+00,
       3.29887631e-02, 3.29887631e-02, 3.29887631e-02, 3.29887631e-02,
       1.00024710e-02, 1.00024710e-02, 1.00024710e-02, 1.00024710e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999995, 0.99999995, 0.99999995, 0.99999995, 0.99999971,
       0.99999971, 0.99999971, 0.99999971, 0.99999849, 0.99999849,
       0.99999849, 0.99999849, 0.99999283, 0.99999283, 0.99999283,
       0.99999283, 0.99996896, 0.99996896, 0.99996896, 0.99996896,
       0.99987805, 0.99987805, 0.99987805, 0.99987805, 0.99956724,
       0.99956724, 0.99956724, 0.99956724, 0.99862027, 0.99862027,
       0.99862027, 0.99862027, 0.99607172, 0.99607172, 0.99607172,
       0.99607172, 0.99006817, 0.99006817, 0.99006817, 0.99006817,
       0.97778423, 0.97778423, 0.97778423, 0.97778423, 0.95603297,
       0.95603297, 0.95603297, 0.95603297, 0.92259283, 0.92259283,
       0.92259283, 0.92259283, 0.87738557, 0.87738557, 0.87738557,
       0.87738557, 0.82228577, 0.82228577, 0.82228577, 0.82228577,
       0.76124912, 0.76124912, 0.76124912, 0.76124912, 0.7039925 ,
       0.7039925 , 0.7039925 , 0.7039925 , 0.65236277, 0.65236277,
       0.65236277, 0.65236277, 0.6131337 , 0.6131337 , 0.6131337 ,
       0.6131337 , 0.57531994, 0.57531994, 0.57531994, 0.57531994,
       0.56785759, 0.56785759, 0.56785759, 0.56785759, 0.56038513,
       0.56038513, 0.56038513, 0.56038513, 0.55900443, 0.55900443,
       0.55900443, 0.55900443, 0.56184189, 0.56184189, 0.56184189,
       0.56184189, 0.60586371, 0.60586371, 0.60586371, 0.60586371,
       0.81871248, 0.81871248, 0.81871248, 0.81871248, 1.4581625 ,
       1.4581625 , 1.4581625 , 1.4581625 , 2.52120104, 2.52120104,
       2.52120104, 2.52120104, 2.74380791, 2.74380791, 2.74380791,
       2.74380791, 1.69735103, 1.69735103, 1.69735103, 1.69735103,
       1.0575523 , 1.0575523 , 1.0575523 , 1.0575523 , 1.00195343,
       1.00195343, 1.00195343, 1.00195343, 1.00000178, 1.00000178,
       1.00000178, 1.00000178, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       5.91889946e-15, 5.91889946e-15, 5.91889946e-15, 5.91889946e-15,
       9.30184492e-14, 9.30184492e-14, 9.30184492e-14, 9.30184492e-14,
       1.00936002e-12, 1.00936002e-12, 1.00936002e-12, 1.00936002e-12,
       1.01033815e-11, 1.01033815e-11, 1.01033815e-11, 1.01033815e-11,
       9.37627227e-11, 9.37627227e-11, 9.37627227e-11, 9.37627227e-11,
       8.03306517e-10, 8.03306517e-10, 8.03306517e-10, 8.03306517e-10,
       6.34932257e-09, 6.34932257e-09, 6.34932257e-09, 6.34932257e-09,
       4.62683708e-08, 4.62683708e-08, 4.62683708e-08, 4.62683708e-08,
       3.10550365e-07, 3.10550365e-07, 3.10550365e-07, 3.10550365e-07,
       1.91739687e-06, 1.91739687e-06, 1.91739687e-06, 1.91739687e-06,
       1.08719093e-05, 1.08719093e-05, 1.08719093e-05, 1.08719093e-05,
       5.64951242e-05, 5.64951242e-05, 5.64951242e-05, 5.64951242e-05,
       2.68353586e-04, 2.68353586e-04, 2.68353586e-04, 2.68353586e-04,
       1.16148888e-03, 1.16148888e-03, 1.16148888e-03, 1.16148888e-03,
       4.56296110e-03, 4.56296110e-03, 4.56296110e-03, 4.56296110e-03,
       1.61948234e-02, 1.61948234e-02, 1.61948234e-02, 1.61948234e-02,
       5.16501942e-02, 5.16501942e-02, 5.16501942e-02, 5.16501942e-02,
       1.47193741e-01, 1.47193741e-01, 1.47193741e-01, 1.47193741e-01,
       3.73008312e-01, 3.73008312e-01, 3.73008312e-01, 3.73008312e-01,
       8.38464798e-01, 8.38464798e-01, 8.38464798e-01, 8.38464798e-01,
       1.67451578e+00, 1.67451578e+00, 1.67451578e+00, 1.67451578e+00,
       2.99122036e+00, 2.99122036e+00, 2.99122036e+00, 2.99122036e+00,
       4.83584276e+00, 4.83584276e+00, 4.83584276e+00, 4.83584276e+00,
       7.19273469e+00, 7.19273469e+00, 7.19273469e+00, 7.19273469e+00,
       9.93587440e+00, 9.93587440e+00, 9.93587440e+00, 9.93587440e+00,
       1.26632029e+01, 1.26632029e+01, 1.26632029e+01, 1.26632029e+01,
       1.52391788e+01, 1.52391788e+01, 1.52391788e+01, 1.52391788e+01,
       1.75131368e+01, 1.75131368e+01, 1.75131368e+01, 1.75131368e+01,
       1.92750068e+01, 1.92750068e+01, 1.92750068e+01, 1.92750068e+01,
       2.02071764e+01, 2.02071764e+01, 2.02071764e+01, 2.02071764e+01,
       2.04224324e+01, 2.04224324e+01, 2.04224324e+01, 2.04224324e+01,
       2.02143397e+01, 2.02143397e+01, 2.02143397e+01, 2.02143397e+01,
       2.00448842e+01, 2.00448842e+01, 2.00448842e+01, 2.00448842e+01,
       2.00355481e+01, 2.00355481e+01, 2.00355481e+01, 2.00355481e+01,
       2.00263366e+01, 2.00263366e+01, 2.00263366e+01, 2.00263366e+01,
       1.99415493e+01, 1.99415493e+01, 1.99415493e+01, 1.99415493e+01,
       1.92029402e+01, 1.92029402e+01, 1.92029402e+01, 1.92029402e+01,
       1.55549094e+01, 1.55549094e+01, 1.55549094e+01, 1.55549094e+01,
       5.98150672e+00, 5.98150672e+00, 5.98150672e+00, 5.98150672e+00,
       2.65685194e-01, 2.65685194e-01, 2.65685194e-01, 2.65685194e-01,
       9.54732742e-04, 9.54732742e-04, 9.54732742e-04, 9.54732742e-04,
       2.10803427e-07, 2.10803427e-07, 2.10803427e-07, 2.10803427e-07,
       3.02033655e-11, 3.02033655e-11, 3.02033655e-11, 3.02033655e-11,
       4.41057656e-15, 4.41057656e-15, 4.41057656e-15, 4.41057656e-15,
       6.12854624e-19, 6.12854624e-19, 6.12854624e-19, 6.12854624e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999928e+02, 9.99999928e+02, 9.99999928e+02, 9.99999928e+02,
       9.99999593e+02, 9.99999593e+02, 9.99999593e+02, 9.99999593e+02,
       9.99997886e+02, 9.99997886e+02, 9.99997886e+02, 9.99997886e+02,
       9.99989959e+02, 9.99989959e+02, 9.99989959e+02, 9.99989959e+02,
       9.99956542e+02, 9.99956542e+02, 9.99956542e+02, 9.99956542e+02,
       9.99829284e+02, 9.99829284e+02, 9.99829284e+02, 9.99829284e+02,
       9.99394226e+02, 9.99394226e+02, 9.99394226e+02, 9.99394226e+02,
       9.98069219e+02, 9.98069219e+02, 9.98069219e+02, 9.98069219e+02,
       9.94506766e+02, 9.94506766e+02, 9.94506766e+02, 9.94506766e+02,
       9.86133189e+02, 9.86133189e+02, 9.86133189e+02, 9.86133189e+02,
       9.69074355e+02, 9.69074355e+02, 9.69074355e+02, 9.69074355e+02,
       9.39098214e+02, 9.39098214e+02, 9.39098214e+02, 9.39098214e+02,
       8.93564448e+02, 8.93564448e+02, 8.93564448e+02, 8.93564448e+02,
       8.33059937e+02, 8.33059937e+02, 8.33059937e+02, 8.33059937e+02,
       7.60987238e+02, 7.60987238e+02, 7.60987238e+02, 7.60987238e+02,
       6.83226607e+02, 6.83226607e+02, 6.83226607e+02, 6.83226607e+02,
       6.12243005e+02, 6.12243005e+02, 6.12243005e+02, 6.12243005e+02,
       5.51401650e+02, 5.51401650e+02, 5.51401650e+02, 5.51401650e+02,
       5.01944900e+02, 5.01944900e+02, 5.01944900e+02, 5.01944900e+02,
       4.67782716e+02, 4.67782716e+02, 4.67782716e+02, 4.67782716e+02,
       4.49784516e+02, 4.49784516e+02, 4.49784516e+02, 4.49784516e+02,
       4.45064233e+02, 4.45064233e+02, 4.45064233e+02, 4.45064233e+02,
       4.48787029e+02, 4.48787029e+02, 4.48787029e+02, 4.48787029e+02,
       4.51978695e+02, 4.51978695e+02, 4.51978695e+02, 4.51978695e+02,
       4.52793680e+02, 4.52793680e+02, 4.52793680e+02, 4.52793680e+02,
       4.53282403e+02, 4.53282403e+02, 4.53282403e+02, 4.53282403e+02,
       4.50955061e+02, 4.50955061e+02, 4.50955061e+02, 4.50955061e+02,
       4.22213148e+02, 4.22213148e+02, 4.22213148e+02, 4.22213148e+02,
       2.77875953e+02, 2.77875953e+02, 2.77875953e+02, 2.77875953e+02,
       4.81022077e+01, 4.81022077e+01, 4.81022077e+01, 4.81022077e+01,
       6.43549685e-01, 6.43549685e-01, 6.43549685e-01, 6.43549685e-01,
       1.02488911e-02, 1.02488911e-02, 1.02488911e-02, 1.02488911e-02,
       1.00000249e-02, 1.00000249e-02, 1.00000249e-02, 1.00000249e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999995, 0.99999995, 0.99999995, 0.99999995,
       0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999862,
       0.99999862, 0.99999862, 0.99999862, 0.99999367, 0.99999367,
       0.99999367, 0.99999367, 0.99997341, 0.99997341, 0.99997341,
       0.99997341, 0.99989805, 0.99989805, 0.99989805, 0.99989805,
       0.99964482, 0.99964482, 0.99964482, 0.99964482, 0.99888164,
       0.99888164, 0.99888164, 0.99888164, 0.99683513, 0.99683513,
       0.99683513, 0.99683513, 0.99199451, 0.99199451, 0.99199451,
       0.99199451, 0.9819733 , 0.9819733 , 0.9819733 , 0.9819733 ,
       0.96389763, 0.96389763, 0.96389763, 0.96389763, 0.93545495,
       0.93545495, 0.93545495, 0.93545495, 0.89604286, 0.89604286,
       0.89604286, 0.89604286, 0.84702851, 0.84702851, 0.84702851,
       0.84702851, 0.79079924, 0.79079924, 0.79079924, 0.79079924,
       0.73376007, 0.73376007, 0.73376007, 0.73376007, 0.68273638,
       0.68273638, 0.68273638, 0.68273638, 0.63612561, 0.63612561,
       0.63612561, 0.63612561, 0.60307654, 0.60307654, 0.60307654,
       0.60307654, 0.57002222, 0.57002222, 0.57002222, 0.57002222,
       0.56543931, 0.56543931, 0.56543931, 0.56543931, 0.56183756,
       0.56183756, 0.56183756, 0.56183756, 0.56199531, 0.56199531,
       0.56199531, 0.56199531, 0.56171758, 0.56171758, 0.56171758,
       0.56171758, 0.58609083, 0.58609083, 0.58609083, 0.58609083,
       0.72311334, 0.72311334, 0.72311334, 0.72311334, 1.17609219,
       1.17609219, 1.17609219, 1.17609219, 2.18113668, 2.18113668,
       2.18113668, 2.18113668, 2.86626909, 2.86626909, 2.86626909,
       2.86626909, 2.37228972, 2.37228972, 2.37228972, 2.37228972,
       1.2039004 , 1.2039004 , 1.2039004 , 1.2039004 , 1.01187606,
       1.01187606, 1.01187606, 1.01187606, 1.00010508, 1.00010508,
       1.00010508, 1.00010508, 1.00000002, 1.00000002, 1.00000002,
       1.00000002, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.33539348e-14, 1.33539348e-14, 1.33539348e-14, 1.33539348e-14,
       1.55607325e-13, 1.55607325e-13, 1.55607325e-13, 1.55607325e-13,
       1.56402128e-12, 1.56402128e-12, 1.56402128e-12, 1.56402128e-12,
       1.45324292e-11, 1.45324292e-11, 1.45324292e-11, 1.45324292e-11,
       1.25185482e-10, 1.25185482e-10, 1.25185482e-10, 1.25185482e-10,
       1.00094143e-09, 1.00094143e-09, 1.00094143e-09, 1.00094143e-09,
       7.42144171e-09, 7.42144171e-09, 7.42144171e-09, 7.42144171e-09,
       5.09825802e-08, 5.09825802e-08, 5.09825802e-08, 5.09825802e-08,
       3.24157733e-07, 3.24157733e-07, 3.24157733e-07, 3.24157733e-07,
       1.90508651e-06, 1.90508651e-06, 1.90508651e-06, 1.90508651e-06,
       1.03318499e-05, 1.03318499e-05, 1.03318499e-05, 1.03318499e-05,
       5.16016816e-05, 5.16016816e-05, 5.16016816e-05, 5.16016816e-05,
       2.36752814e-04, 2.36752814e-04, 2.36752814e-04, 2.36752814e-04,
       9.94861791e-04, 9.94861791e-04, 9.94861791e-04, 9.94861791e-04,
       3.81489106e-03, 3.81489106e-03, 3.81489106e-03, 3.81489106e-03,
       1.32911013e-02, 1.32911013e-02, 1.32911013e-02, 1.32911013e-02,
       4.18617207e-02, 4.18617207e-02, 4.18617207e-02, 4.18617207e-02,
       1.18555604e-01, 1.18555604e-01, 1.18555604e-01, 1.18555604e-01,
       3.00441076e-01, 3.00441076e-01, 3.00441076e-01, 3.00441076e-01,
       6.79231840e-01, 6.79231840e-01, 6.79231840e-01, 6.79231840e-01,
       1.37049927e+00, 1.37049927e+00, 1.37049927e+00, 1.37049927e+00,
       2.48027947e+00, 2.48027947e+00, 2.48027947e+00, 2.48027947e+00,
       4.06534852e+00, 4.06534852e+00, 4.06534852e+00, 4.06534852e+00,
       6.11874426e+00, 6.11874426e+00, 6.11874426e+00, 6.11874426e+00,
       8.59698769e+00, 8.59698769e+00, 8.59698769e+00, 8.59698769e+00,
       1.11984851e+01, 1.11984851e+01, 1.11984851e+01, 1.11984851e+01,
       1.37435738e+01, 1.37435738e+01, 1.37435738e+01, 1.37435738e+01,
       1.61020009e+01, 1.61020009e+01, 1.61020009e+01, 1.61020009e+01,
       1.81047370e+01, 1.81047370e+01, 1.81047370e+01, 1.81047370e+01,
       1.95637081e+01, 1.95637081e+01, 1.95637081e+01, 1.95637081e+01,
       2.02802090e+01, 2.02802090e+01, 2.02802090e+01, 2.02802090e+01,
       2.03974866e+01, 2.03974866e+01, 2.03974866e+01, 2.03974866e+01,
       2.01688547e+01, 2.01688547e+01, 2.01688547e+01, 2.01688547e+01,
       2.00346701e+01, 2.00346701e+01, 2.00346701e+01, 2.00346701e+01,
       2.00176538e+01, 2.00176538e+01, 2.00176538e+01, 2.00176538e+01,
       2.00209769e+01, 2.00209769e+01, 2.00209769e+01, 2.00209769e+01,
       1.99976377e+01, 1.99976377e+01, 1.99976377e+01, 1.99976377e+01,
       1.96779963e+01, 1.96779963e+01, 1.96779963e+01, 1.96779963e+01,
       1.78764303e+01, 1.78764303e+01, 1.78764303e+01, 1.78764303e+01,
       1.11193485e+01, 1.11193485e+01, 1.11193485e+01, 1.11193485e+01,
       1.55576781e+00, 1.55576781e+00, 1.55576781e+00, 1.55576781e+00,
       1.98900933e-02, 1.98900933e-02, 1.98900933e-02, 1.98900933e-02,
       1.52255734e-05, 1.52255734e-05, 1.52255734e-05, 1.52255734e-05,
       2.23363364e-09, 2.23363364e-09, 2.23363364e-09, 2.23363364e-09,
       3.21107467e-13, 3.21107467e-13, 3.21107467e-13, 3.21107467e-13,
       4.55567759e-17, 4.55567759e-17, 4.55567759e-17, 4.55567759e-17,
       4.26370518e-21, 4.26370518e-21, 4.26370518e-21, 4.26370518e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999929e+02, 9.99999929e+02, 9.99999929e+02, 9.99999929e+02,
       9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
       9.99998069e+02, 9.99998069e+02, 9.99998069e+02, 9.99998069e+02,
       9.99991142e+02, 9.99991142e+02, 9.99991142e+02, 9.99991142e+02,
       9.99962776e+02, 9.99962776e+02, 9.99962776e+02, 9.99962776e+02,
       9.99857270e+02, 9.99857270e+02, 9.99857270e+02, 9.99857270e+02,
       9.99502814e+02, 9.99502814e+02, 9.99502814e+02, 9.99502814e+02,
       9.98434853e+02, 9.98434853e+02, 9.98434853e+02, 9.98434853e+02,
       9.95573298e+02, 9.95573298e+02, 9.95573298e+02, 9.95573298e+02,
       9.88816876e+02, 9.88816876e+02, 9.88816876e+02, 9.88816876e+02,
       9.74879194e+02, 9.74879194e+02, 9.74879194e+02, 9.74879194e+02,
       9.49898234e+02, 9.49898234e+02, 9.49898234e+02, 9.49898234e+02,
       9.10986409e+02, 9.10986409e+02, 9.10986409e+02, 9.10986409e+02,
       8.57855860e+02, 8.57855860e+02, 8.57855860e+02, 8.57855860e+02,
       7.93072862e+02, 7.93072862e+02, 7.93072862e+02, 7.93072862e+02,
       7.20578542e+02, 7.20578542e+02, 7.20578542e+02, 7.20578542e+02,
       6.48800650e+02, 6.48800650e+02, 6.48800650e+02, 6.48800650e+02,
       5.86389112e+02, 5.86389112e+02, 5.86389112e+02, 5.86389112e+02,
       5.32725608e+02, 5.32725608e+02, 5.32725608e+02, 5.32725608e+02,
       4.89778956e+02, 4.89778956e+02, 4.89778956e+02, 4.89778956e+02,
       4.61519534e+02, 4.61519534e+02, 4.61519534e+02, 4.61519534e+02,
       4.48525367e+02, 4.48525367e+02, 4.48525367e+02, 4.48525367e+02,
       4.45928711e+02, 4.45928711e+02, 4.45928711e+02, 4.45928711e+02,
       4.49956676e+02, 4.49956676e+02, 4.49956676e+02, 4.49956676e+02,
       4.52076499e+02, 4.52076499e+02, 4.52076499e+02, 4.52076499e+02,
       4.52643316e+02, 4.52643316e+02, 4.52643316e+02, 4.52643316e+02,
       4.53164778e+02, 4.53164778e+02, 4.53164778e+02, 4.53164778e+02,
       4.52705085e+02, 4.52705085e+02, 4.52705085e+02, 4.52705085e+02,
       4.42106466e+02, 4.42106466e+02, 4.42106466e+02, 4.42106466e+02,
       3.66606419e+02, 3.66606419e+02, 3.66606419e+02, 3.66606419e+02,
       1.43278417e+02, 1.43278417e+02, 1.43278417e+02, 1.43278417e+02,
       7.05131525e+00, 7.05131525e+00, 7.05131525e+00, 7.05131525e+00,
       2.69964841e-02, 2.69964841e-02, 2.69964841e-02, 2.69964841e-02,
       1.00018104e-02, 1.00018104e-02, 1.00018104e-02, 1.00018104e-02,
       1.00000003e-02, 1.00000003e-02, 1.00000003e-02, 1.00000003e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999995, 0.99999995, 0.99999995,
       0.99999995, 0.99999974, 0.99999974, 0.99999974, 0.99999974,
       0.99999876, 0.99999876, 0.99999876, 0.99999876, 0.99999446,
       0.99999446, 0.99999446, 0.99999446, 0.99997733, 0.99997733,
       0.99997733, 0.99997733, 0.99991492, 0.99991492, 0.99991492,
       0.99991492, 0.99970841, 0.99970841, 0.99970841, 0.99970841,
       0.99909185, 0.99909185, 0.99909185, 0.99909185, 0.99744342,
       0.99744342, 0.99744342, 0.99744342, 0.99352897, 0.99352897,
       0.99352897, 0.99352897, 0.98533607, 0.98533607, 0.98533607,
       0.98533607, 0.9703007 , 0.9703007 , 0.9703007 , 0.9703007 ,
       0.94611525, 0.94611525, 0.94611525, 0.94611525, 0.91178545,
       0.91178545, 0.91178545, 0.91178545, 0.8681275 , 0.8681275 ,
       0.8681275 , 0.8681275 , 0.81711896, 0.81711896, 0.81711896,
       0.81711896, 0.76228815, 0.76228815, 0.76228815, 0.76228815,
       0.71063528, 0.71063528, 0.71063528, 0.71063528, 0.66449658,
       0.66449658, 0.66449658, 0.66449658, 0.62236199, 0.62236199,
       0.62236199, 0.62236199, 0.59504764, 0.59504764, 0.59504764,
       0.59504764, 0.56660492, 0.56660492, 0.56660492, 0.56660492,
       0.56344579, 0.56344579, 0.56344579, 0.56344579, 0.56277418,
       0.56277418, 0.56277418, 0.56277418, 0.56425748, 0.56425748,
       0.56425748, 0.56425748, 0.56271208, 0.56271208, 0.56271208,
       0.56271208, 0.57532902, 0.57532902, 0.57532902, 0.57532902,
       0.66138282, 0.66138282, 0.66138282, 0.66138282, 0.97477241,
       0.97477241, 0.97477241, 0.97477241, 1.76866995, 1.76866995,
       1.76866995, 1.76866995, 2.79140624, 2.79140624, 2.79140624,
       2.79140624, 2.85504716, 2.85504716, 2.85504716, 2.85504716,
       1.6572704 , 1.6572704 , 1.6572704 , 1.6572704 , 1.05142481,
       1.05142481, 1.05142481, 1.05142481, 1.00163012, 1.00163012,
       1.00163012, 1.00163012, 1.00000124, 1.00000124, 1.00000124,
       1.00000124, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.24969420e-13, 2.24969420e-13, 2.24969420e-13, 2.24969420e-13,
       2.25206716e-12, 2.25206716e-12, 2.25206716e-12, 2.25206716e-12,
       1.95360740e-11, 1.95360740e-11, 1.95360740e-11, 1.95360740e-11,
       1.57777129e-10, 1.57777129e-10, 1.57777129e-10, 1.57777129e-10,
       1.18752511e-09, 1.18752511e-09, 1.18752511e-09, 1.18752511e-09,
       8.32407101e-09, 8.32407101e-09, 8.32407101e-09, 8.32407101e-09,
       5.42910740e-08, 5.42910740e-08, 5.42910740e-08, 5.42910740e-08,
       3.29113213e-07, 3.29113213e-07, 3.29113213e-07, 3.29113213e-07,
       1.85184067e-06, 1.85184067e-06, 1.85184067e-06, 1.85184067e-06,
       9.65592764e-06, 9.65592764e-06, 9.65592764e-06, 9.65592764e-06,
       4.65650184e-05, 4.65650184e-05, 4.65650184e-05, 4.65650184e-05,
       2.07190385e-04, 2.07190385e-04, 2.07190385e-04, 2.07190385e-04,
       8.48170242e-04, 8.48170242e-04, 8.48170242e-04, 8.48170242e-04,
       3.18354794e-03, 3.18354794e-03, 3.18354794e-03, 3.18354794e-03,
       1.09115255e-02, 1.09115255e-02, 1.09115255e-02, 1.09115255e-02,
       3.39908368e-02, 3.39908368e-02, 3.39908368e-02, 3.39908368e-02,
       9.57478717e-02, 9.57478717e-02, 9.57478717e-02, 9.57478717e-02,
       2.42712876e-01, 2.42712876e-01, 2.42712876e-01, 2.42712876e-01,
       5.51793377e-01, 5.51793377e-01, 5.51793377e-01, 5.51793377e-01,
       1.12446443e+00, 1.12446443e+00, 1.12446443e+00, 1.12446443e+00,
       2.06118893e+00, 2.06118893e+00, 2.06118893e+00, 2.06118893e+00,
       3.42552666e+00, 3.42552666e+00, 3.42552666e+00, 3.42552666e+00,
       5.22314600e+00, 5.22314600e+00, 5.22314600e+00, 5.22314600e+00,
       7.41906287e+00, 7.41906287e+00, 7.41906287e+00, 7.41906287e+00,
       9.88411479e+00, 9.88411479e+00, 9.88411479e+00, 9.88411479e+00,
       1.23254490e+01, 1.23254490e+01, 1.23254490e+01, 1.23254490e+01,
       1.46753619e+01, 1.46753619e+01, 1.46753619e+01, 1.46753619e+01,
       1.68362063e+01, 1.68362063e+01, 1.68362063e+01, 1.68362063e+01,
       1.85972036e+01, 1.85972036e+01, 1.85972036e+01, 1.85972036e+01,
       1.97810316e+01, 1.97810316e+01, 1.97810316e+01, 1.97810316e+01,
       2.03056736e+01, 2.03056736e+01, 2.03056736e+01, 2.03056736e+01,
       2.03583742e+01, 2.03583742e+01, 2.03583742e+01, 2.03583742e+01,
       2.01400339e+01, 2.01400339e+01, 2.01400339e+01, 2.01400339e+01,
       2.00353247e+01, 2.00353247e+01, 2.00353247e+01, 2.00353247e+01,
       2.00086210e+01, 2.00086210e+01, 2.00086210e+01, 2.00086210e+01,
       2.00116248e+01, 2.00116248e+01, 2.00116248e+01, 2.00116248e+01,
       2.00091285e+01, 2.00091285e+01, 2.00091285e+01, 2.00091285e+01,
       1.98825700e+01, 1.98825700e+01, 1.98825700e+01, 1.98825700e+01,
       1.90344265e+01, 1.90344265e+01, 1.90344265e+01, 1.90344265e+01,
       1.51585367e+01, 1.51585367e+01, 1.51585367e+01, 1.51585367e+01,
       5.49808022e+00, 5.49808022e+00, 5.49808022e+00, 5.49808022e+00,
       2.20110268e-01, 2.20110268e-01, 2.20110268e-01, 2.20110268e-01,
       7.04288698e-04, 7.04288698e-04, 7.04288698e-04, 7.04288698e-04,
       1.46929013e-07, 1.46929013e-07, 1.46929013e-07, 1.46929013e-07,
       2.17393213e-11, 2.17393213e-11, 2.17393213e-11, 2.17393213e-11,
       3.25874024e-15, 3.25874024e-15, 3.25874024e-15, 3.25874024e-15,
       4.93883641e-19, 4.93883641e-19, 4.93883641e-19, 4.93883641e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999931e+02, 9.99999931e+02, 9.99999931e+02, 9.99999931e+02,
       9.99999639e+02, 9.99999639e+02, 9.99999639e+02, 9.99999639e+02,
       9.99998258e+02, 9.99998258e+02, 9.99998258e+02, 9.99998258e+02,
       9.99992248e+02, 9.99992248e+02, 9.99992248e+02, 9.99992248e+02,
       9.99968265e+02, 9.99968265e+02, 9.99968265e+02, 9.99968265e+02,
       9.99880890e+02, 9.99880890e+02, 9.99880890e+02, 9.99880890e+02,
       9.99591810e+02, 9.99591810e+02, 9.99591810e+02, 9.99591810e+02,
       9.98728953e+02, 9.98728953e+02, 9.98728953e+02, 9.98728953e+02,
       9.96423469e+02, 9.96423469e+02, 9.96423469e+02, 9.96423469e+02,
       9.90956621e+02, 9.90956621e+02, 9.90956621e+02, 9.90956621e+02,
       9.79547910e+02, 9.79547910e+02, 9.79547910e+02, 9.79547910e+02,
       9.58721154e+02, 9.58721154e+02, 9.58721154e+02, 9.58721154e+02,
       9.25505523e+02, 9.25505523e+02, 9.25505523e+02, 9.25505523e+02,
       8.78949351e+02, 8.78949351e+02, 8.78949351e+02, 8.78949351e+02,
       8.20748601e+02, 8.20748601e+02, 8.20748601e+02, 8.20748601e+02,
       7.54214683e+02, 7.54214683e+02, 7.54214683e+02, 7.54214683e+02,
       6.84375067e+02, 6.84375067e+02, 6.84375067e+02, 6.84375067e+02,
       6.20368568e+02, 6.20368568e+02, 6.20368568e+02, 6.20368568e+02,
       5.64370431e+02, 5.64370431e+02, 5.64370431e+02, 5.64370431e+02,
       5.17160227e+02, 5.17160227e+02, 5.17160227e+02, 5.17160227e+02,
       4.80250812e+02, 4.80250812e+02, 4.80250812e+02, 4.80250812e+02,
       4.56943598e+02, 4.56943598e+02, 4.56943598e+02, 4.56943598e+02,
       4.47678145e+02, 4.47678145e+02, 4.47678145e+02, 4.47678145e+02,
       4.46796826e+02, 4.46796826e+02, 4.46796826e+02, 4.46796826e+02,
       4.50880096e+02, 4.50880096e+02, 4.50880096e+02, 4.50880096e+02,
       4.52357569e+02, 4.52357569e+02, 4.52357569e+02, 4.52357569e+02,
       4.52616932e+02, 4.52616932e+02, 4.52616932e+02, 4.52616932e+02,
       4.52970783e+02, 4.52970783e+02, 4.52970783e+02, 4.52970783e+02,
       4.53046444e+02, 4.53046444e+02, 4.53046444e+02, 4.53046444e+02,
       4.49923083e+02, 4.49923083e+02, 4.49923083e+02, 4.49923083e+02,
       4.15828843e+02, 4.15828843e+02, 4.15828843e+02, 4.15828843e+02,
       2.62221323e+02, 2.62221323e+02, 2.62221323e+02, 2.62221323e+02,
       4.12019102e+01, 4.12019102e+01, 4.12019102e+01, 4.12019102e+01,
       4.94445574e-01, 4.94445574e-01, 4.94445574e-01, 4.94445574e-01,
       1.01642073e-02, 1.01642073e-02, 1.01642073e-02, 1.01642073e-02,
       1.00000174e-02, 1.00000174e-02, 1.00000174e-02, 1.00000174e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999995, 0.99999995,
       0.99999995, 0.99999995, 0.99999976, 0.99999976, 0.99999976,
       0.99999976, 0.99999889, 0.99999889, 0.99999889, 0.99999889,
       0.99999519, 0.99999519, 0.99999519, 0.99999519, 0.99998075,
       0.99998075, 0.99998075, 0.99998075, 0.9999291 , 0.9999291 ,
       0.9999291 , 0.9999291 , 0.99976052, 0.99976052, 0.99976052,
       0.99976052, 0.99926135, 0.99926135, 0.99926135, 0.99926135,
       0.99793005, 0.99793005, 0.99793005, 0.99793005, 0.99475663,
       0.99475663, 0.99475663, 0.99475663, 0.98804657, 0.98804657,
       0.98804657, 0.98804657, 0.97553184, 0.97553184, 0.97553184,
       0.97553184, 0.95497685, 0.95497685, 0.95497685, 0.95497685,
       0.92511099, 0.92511099, 0.92511099, 0.92511099, 0.88625836,
       0.88625836, 0.88625836, 0.88625836, 0.84008392, 0.84008392,
       0.84008392, 0.84008392, 0.78876117, 0.78876117, 0.78876117,
       0.78876117, 0.73758834, 0.73758834, 0.73758834, 0.73758834,
       0.69072274, 0.69072274, 0.69072274, 0.69072274, 0.64901095,
       0.64901095, 0.64901095, 0.64901095, 0.61063333, 0.61063333,
       0.61063333, 0.61063333, 0.58838435, 0.58838435, 0.58838435,
       0.58838435, 0.56482776, 0.56482776, 0.56482776, 0.56482776,
       0.56211874, 0.56211874, 0.56211874, 0.56211874, 0.56323644,
       0.56323644, 0.56323644, 0.56323644, 0.56573502, 0.56573502,
       0.56573502, 0.56573502, 0.56392989, 0.56392989, 0.56392989,
       0.56392989, 0.56998742, 0.56998742, 0.56998742, 0.56998742,
       0.62261429, 0.62261429, 0.62261429, 0.62261429, 0.83494329,
       0.83494329, 0.83494329, 0.83494329, 1.42257004, 1.42257004,
       1.42257004, 1.42257004, 2.51165741, 2.51165741, 2.51165741,
       2.51165741, 3.03556687, 3.03556687, 3.03556687, 3.03556687,
       2.3649753 , 2.3649753 , 2.3649753 , 2.3649753 , 1.18082651,
       1.18082651, 1.18082651, 1.18082651, 1.01021472, 1.01021472,
       1.01021472, 1.01021472, 1.0000747 , 1.0000747 , 1.0000747 ,
       1.0000747 , 1.00000001, 1.00000001, 1.00000001, 1.00000001,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.83938532e-12, 2.83938532e-12, 2.83938532e-12, 2.83938532e-12,
       2.48780551e-11, 2.48780551e-11, 2.48780551e-11, 2.48780551e-11,
       1.89659153e-10, 1.89659153e-10, 1.89659153e-10, 1.89659153e-10,
       1.35318050e-09, 1.35318050e-09, 1.35318050e-09, 1.35318050e-09,
       9.02461193e-09, 9.02461193e-09, 9.02461193e-09, 9.02461193e-09,
       5.62089401e-08, 5.62089401e-08, 5.62089401e-08, 5.62089401e-08,
       3.26589983e-07, 3.26589983e-07, 3.26589983e-07, 3.26589983e-07,
       1.76783166e-06, 1.76783166e-06, 1.76783166e-06, 1.76783166e-06,
       8.90072519e-06, 8.90072519e-06, 8.90072519e-06, 8.90072519e-06,
       4.16033994e-05, 4.16033994e-05, 4.16033994e-05, 4.16033994e-05,
       1.80121521e-04, 1.80121521e-04, 1.80121521e-04, 1.80121521e-04,
       7.20378916e-04, 7.20378916e-04, 7.20378916e-04, 7.20378916e-04,
       2.65286556e-03, 2.65286556e-03, 2.65286556e-03, 2.65286556e-03,
       8.96132297e-03, 8.96132297e-03, 8.96132297e-03, 8.96132297e-03,
       2.76450137e-02, 2.76450137e-02, 2.76450137e-02, 2.76450137e-02,
       7.75091590e-02, 7.75091590e-02, 7.75091590e-02, 7.75091590e-02,
       1.96575287e-01, 1.96575287e-01, 1.96575287e-01, 1.96575287e-01,
       4.49321350e-01, 4.49321350e-01, 4.49321350e-01, 4.49321350e-01,
       9.24431499e-01, 9.24431499e-01, 9.24431499e-01, 9.24431499e-01,
       1.71576116e+00, 1.71576116e+00, 1.71576116e+00, 1.71576116e+00,
       2.89106042e+00, 2.89106042e+00, 2.89106042e+00, 2.89106042e+00,
       4.46780650e+00, 4.46780650e+00, 4.46780650e+00, 4.46780650e+00,
       6.41677343e+00, 6.41677343e+00, 6.41677343e+00, 6.41677343e+00,
       8.68601329e+00, 8.68601329e+00, 8.68601329e+00, 8.68601329e+00,
       1.10249054e+01, 1.10249054e+01, 1.10249054e+01, 1.10249054e+01,
       1.33220447e+01, 1.33220447e+01, 1.33220447e+01, 1.33220447e+01,
       1.54925996e+01, 1.54925996e+01, 1.54925996e+01, 1.54925996e+01,
       1.74546801e+01, 1.74546801e+01, 1.74546801e+01, 1.74546801e+01,
       1.89986134e+01, 1.89986134e+01, 1.89986134e+01, 1.89986134e+01,
       1.99480450e+01, 1.99480450e+01, 1.99480450e+01, 1.99480450e+01,
       2.03051988e+01, 2.03051988e+01, 2.03051988e+01, 2.03051988e+01,
       2.03097963e+01, 2.03097963e+01, 2.03097963e+01, 2.03097963e+01,
       2.01135364e+01, 2.01135364e+01, 2.01135364e+01, 2.01135364e+01,
       2.00395134e+01, 2.00395134e+01, 2.00395134e+01, 2.00395134e+01,
       2.00112282e+01, 2.00112282e+01, 2.00112282e+01, 2.00112282e+01,
       2.00045207e+01, 2.00045207e+01, 2.00045207e+01, 2.00045207e+01,
       2.00069683e+01, 2.00069683e+01, 2.00069683e+01, 2.00069683e+01,
       1.99578722e+01, 1.99578722e+01, 1.99578722e+01, 1.99578722e+01,
       1.95688870e+01, 1.95688870e+01, 1.95688870e+01, 1.95688870e+01,
       1.75969855e+01, 1.75969855e+01, 1.75969855e+01, 1.75969855e+01,
       1.06108424e+01, 1.06108424e+01, 1.06108424e+01, 1.06108424e+01,
       1.32398591e+00, 1.32398591e+00, 1.32398591e+00, 1.32398591e+00,
       1.52470806e-02, 1.52470806e-02, 1.52470806e-02, 1.52470806e-02,
       1.02514744e-05, 1.02514744e-05, 1.02514744e-05, 1.02514744e-05,
       1.51595044e-09, 1.51595044e-09, 1.51595044e-09, 1.51595044e-09,
       2.21449669e-13, 2.21449669e-13, 2.21449669e-13, 2.21449669e-13,
       3.21821680e-17, 3.21821680e-17, 3.21821680e-17, 3.21821680e-17,
       4.22583135e-21, 4.22583135e-21, 4.22583135e-21, 4.22583135e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999934e+02, 9.99999934e+02, 9.99999934e+02, 9.99999934e+02,
       9.99999667e+02, 9.99999667e+02, 9.99999667e+02, 9.99999667e+02,
       9.99998443e+02, 9.99998443e+02, 9.99998443e+02, 9.99998443e+02,
       9.99993260e+02, 9.99993260e+02, 9.99993260e+02, 9.99993260e+02,
       9.99973046e+02, 9.99973046e+02, 9.99973046e+02, 9.99973046e+02,
       9.99900744e+02, 9.99900744e+02, 9.99900744e+02, 9.99900744e+02,
       9.99664753e+02, 9.99664753e+02, 9.99664753e+02, 9.99664753e+02,
       9.98966129e+02, 9.98966129e+02, 9.98966129e+02, 9.98966129e+02,
       9.97103821e+02, 9.97103821e+02, 9.97103821e+02, 9.97103821e+02,
       9.92669836e+02, 9.92669836e+02, 9.92669836e+02, 9.92669836e+02,
       9.83316822e+02, 9.83316822e+02, 9.83316822e+02, 9.83316822e+02,
       9.65949266e+02, 9.65949266e+02, 9.65949266e+02, 9.65949266e+02,
       9.37629572e+02, 9.37629572e+02, 9.37629572e+02, 9.37629572e+02,
       8.96925524e+02, 8.96925524e+02, 8.96925524e+02, 8.96925524e+02,
       8.44757270e+02, 8.44757270e+02, 8.44757270e+02, 8.44757270e+02,
       7.83932229e+02, 7.83932229e+02, 7.83932229e+02, 7.83932229e+02,
       7.17860197e+02, 7.17860197e+02, 7.17860197e+02, 7.17860197e+02,
       6.53411534e+02, 6.53411534e+02, 6.53411534e+02, 6.53411534e+02,
       5.96226302e+02, 5.96226302e+02, 5.96226302e+02, 5.96226302e+02,
       5.45775399e+02, 5.45775399e+02, 5.45775399e+02, 5.45775399e+02,
       5.04059456e+02, 5.04059456e+02, 5.04059456e+02, 5.04059456e+02,
       4.72707776e+02, 4.72707776e+02, 4.72707776e+02, 4.72707776e+02,
       4.53820542e+02, 4.53820542e+02, 4.53820542e+02, 4.53820542e+02,
       4.47282842e+02, 4.47282842e+02, 4.47282842e+02, 4.47282842e+02,
       4.47539085e+02, 4.47539085e+02, 4.47539085e+02, 4.47539085e+02,
       4.51468618e+02, 4.51468618e+02, 4.51468618e+02, 4.51468618e+02,
       4.52679279e+02, 4.52679279e+02, 4.52679279e+02, 4.52679279e+02,
       4.52744959e+02, 4.52744959e+02, 4.52744959e+02, 4.52744959e+02,
       4.52862141e+02, 4.52862141e+02, 4.52862141e+02, 4.52862141e+02,
       4.53025731e+02, 4.53025731e+02, 4.53025731e+02, 4.53025731e+02,
       4.52509333e+02, 4.52509333e+02, 4.52509333e+02, 4.52509333e+02,
       4.39197326e+02, 4.39197326e+02, 4.39197326e+02, 4.39197326e+02,
       3.55061144e+02, 3.55061144e+02, 3.55061144e+02, 3.55061144e+02,
       1.28955744e+02, 1.28955744e+02, 1.28955744e+02, 1.28955744e+02,
       5.63751354e+00, 5.63751354e+00, 5.63751354e+00, 5.63751354e+00,
       2.16308297e-02, 2.16308297e-02, 2.16308297e-02, 2.16308297e-02,
       1.00012116e-02, 1.00012116e-02, 1.00012116e-02, 1.00012116e-02,
       1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999996,
       0.99999996, 0.99999996, 0.99999996, 0.99999978, 0.99999978,
       0.99999978, 0.99999978, 0.99999901, 0.99999901, 0.99999901,
       0.99999901, 0.99999584, 0.99999584, 0.99999584, 0.99999584,
       0.9999837 , 0.9999837 , 0.9999837 , 0.9999837 , 0.99994098,
       0.99994098, 0.99994098, 0.99994098, 0.99980323, 0.99980323,
       0.99980323, 0.99980323, 0.99939833, 0.99939833, 0.99939833,
       0.99939833, 0.99832066, 0.99832066, 0.99832066, 0.99832066,
       0.99574245, 0.99574245, 0.99574245, 0.99574245, 0.99023874,
       0.99023874, 0.99023874, 0.99023874, 0.97981742, 0.97981742,
       0.97981742, 0.97981742, 0.96235966, 0.96235966, 0.96235966,
       0.96235966, 0.93641648, 0.93641648, 0.93641648, 0.93641648,
       0.90189237, 0.90189237, 0.90189237, 0.90189237, 0.86005507,
       0.86005507, 0.86005507, 0.86005507, 0.81274868, 0.81274868,
       0.81274868, 0.81274868, 0.76311269, 0.76311269, 0.76311269,
       0.76311269, 0.71642   , 0.71642   , 0.71642   , 0.71642   ,
       0.67333822, 0.67333822, 0.67333822, 0.67333822, 0.63583393,
       0.63583393, 0.63583393, 0.63583393, 0.6007504 , 0.6007504 ,
       0.6007504 , 0.6007504 , 0.58279291, 0.58279291, 0.58279291,
       0.58279291, 0.56410322, 0.56410322, 0.56410322, 0.56410322,
       0.56160416, 0.56160416, 0.56160416, 0.56160416, 0.56332121,
       0.56332121, 0.56332121, 0.56332121, 0.56656977, 0.56656977,
       0.56656977, 0.56656977, 0.56500324, 0.56500324, 0.56500324,
       0.56500324, 0.56762   , 0.56762   , 0.56762   , 0.56762   ,
       0.59894803, 0.59894803, 0.59894803, 0.59894803, 0.74001262,
       0.74001262, 0.74001262, 0.74001262, 1.16399112, 1.16399112,
       1.16399112, 1.16399112, 2.10522387, 2.10522387, 2.10522387,
       2.10522387, 3.01416422, 3.01416422, 3.01416422, 3.01416422,
       2.93378532, 2.93378532, 2.93378532, 2.93378532, 1.60066424,
       1.60066424, 1.60066424, 1.60066424, 1.0447292 , 1.0447292 ,
       1.0447292 , 1.0447292 , 1.00129844, 1.00129844, 1.00129844,
       1.00129844, 1.0000008 , 1.0000008 , 1.0000008 , 1.0000008 ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.79929625e-11, 2.79929625e-11, 2.79929625e-11, 2.79929625e-11,
       2.19420258e-10, 2.19420258e-10, 2.19420258e-10, 2.19420258e-10,
       1.49116083e-09, 1.49116083e-09, 1.49116083e-09, 1.49116083e-09,
       9.51188129e-09, 9.51188129e-09, 9.51188129e-09, 9.51188129e-09,
       5.68485475e-08, 5.68485475e-08, 5.68485475e-08, 5.68485475e-08,
       3.17985043e-07, 3.17985043e-07, 3.17985043e-07, 3.17985043e-07,
       1.66248056e-06, 1.66248056e-06, 1.66248056e-06, 1.66248056e-06,
       8.11135729e-06, 8.11135729e-06, 8.11135729e-06, 8.11135729e-06,
       3.68655451e-05, 3.68655451e-05, 3.68655451e-05, 3.68655451e-05,
       1.55738945e-04, 1.55738945e-04, 1.55738945e-04, 1.55738945e-04,
       6.09972860e-04, 6.09972860e-04, 6.09972860e-04, 6.09972860e-04,
       2.20822367e-03, 2.20822367e-03, 2.20822367e-03, 2.20822367e-03,
       7.36278800e-03, 7.36278800e-03, 7.36278800e-03, 7.36278800e-03,
       2.25170918e-02, 2.25170918e-02, 2.25170918e-02, 2.25170918e-02,
       6.28736376e-02, 6.28736376e-02, 6.28736376e-02, 6.28736376e-02,
       1.59557051e-01, 1.59557051e-01, 1.59557051e-01, 1.59557051e-01,
       3.66605239e-01, 3.66605239e-01, 3.66605239e-01, 3.66605239e-01,
       7.61197294e-01, 7.61197294e-01, 7.61197294e-01, 7.61197294e-01,
       1.42997959e+00, 1.42997959e+00, 1.42997959e+00, 1.42997959e+00,
       2.44258800e+00, 2.44258800e+00, 2.44258800e+00, 2.44258800e+00,
       3.82666940e+00, 3.82666940e+00, 3.82666940e+00, 3.82666940e+00,
       5.56323490e+00, 5.56323490e+00, 5.56323490e+00, 5.56323490e+00,
       7.61102512e+00, 7.61102512e+00, 7.61102512e+00, 7.61102512e+00,
       9.84104209e+00, 9.84104209e+00, 9.84104209e+00, 9.84104209e+00,
       1.20553642e+01, 1.20553642e+01, 1.20553642e+01, 1.20553642e+01,
       1.42019457e+01, 1.42019457e+01, 1.42019457e+01, 1.42019457e+01,
       1.62097468e+01, 1.62097468e+01, 1.62097468e+01, 1.62097468e+01,
       1.79765031e+01, 1.79765031e+01, 1.79765031e+01, 1.79765031e+01,
       1.93158941e+01, 1.93158941e+01, 1.93158941e+01, 1.93158941e+01,
       2.00703083e+01, 2.00703083e+01, 2.00703083e+01, 2.00703083e+01,
       2.03013658e+01, 2.03013658e+01, 2.03013658e+01, 2.03013658e+01,
       2.02568791e+01, 2.02568791e+01, 2.02568791e+01, 2.02568791e+01,
       2.00856952e+01, 2.00856952e+01, 2.00856952e+01, 2.00856952e+01,
       2.00397257e+01, 2.00397257e+01, 2.00397257e+01, 2.00397257e+01,
       2.00181798e+01, 2.00181798e+01, 2.00181798e+01, 2.00181798e+01,
       2.00054208e+01, 2.00054208e+01, 2.00054208e+01, 2.00054208e+01,
       2.00025663e+01, 2.00025663e+01, 2.00025663e+01, 2.00025663e+01,
       1.99793630e+01, 1.99793630e+01, 1.99793630e+01, 1.99793630e+01,
       1.98071108e+01, 1.98071108e+01, 1.98071108e+01, 1.98071108e+01,
       1.88547396e+01, 1.88547396e+01, 1.88547396e+01, 1.88547396e+01,
       1.47204337e+01, 1.47204337e+01, 1.47204337e+01, 1.47204337e+01,
       4.95781616e+00, 4.95781616e+00, 4.95781616e+00, 4.95781616e+00,
       1.75493310e-01, 1.75493310e-01, 1.75493310e-01, 1.75493310e-01,
       4.85757486e-04, 4.85757486e-04, 4.85757486e-04, 4.85757486e-04,
       9.51110561e-08, 9.51110561e-08, 9.51110561e-08, 9.51110561e-08,
       1.44293431e-11, 1.44293431e-11, 1.44293431e-11, 1.44293431e-11,
       2.19762024e-15, 2.19762024e-15, 2.19762024e-15, 2.19762024e-15,
       3.19887277e-19, 3.19887277e-19, 3.19887277e-19, 3.19887277e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999988e+02, 9.99999988e+02, 9.99999988e+02, 9.99999988e+02,
       9.99999938e+02, 9.99999938e+02, 9.99999938e+02, 9.99999938e+02,
       9.99999697e+02, 9.99999697e+02, 9.99999697e+02, 9.99999697e+02,
       9.99998621e+02, 9.99998621e+02, 9.99998621e+02, 9.99998621e+02,
       9.99994173e+02, 9.99994173e+02, 9.99994173e+02, 9.99994173e+02,
       9.99977177e+02, 9.99977177e+02, 9.99977177e+02, 9.99977177e+02,
       9.99917379e+02, 9.99917379e+02, 9.99917379e+02, 9.99917379e+02,
       9.99724547e+02, 9.99724547e+02, 9.99724547e+02, 9.99724547e+02,
       9.99157826e+02, 9.99157826e+02, 9.99157826e+02, 9.99157826e+02,
       9.97650081e+02, 9.97650081e+02, 9.97650081e+02, 9.97650081e+02,
       9.94046407e+02, 9.94046407e+02, 9.94046407e+02, 9.94046407e+02,
       9.86368788e+02, 9.86368788e+02, 9.86368788e+02, 9.86368788e+02,
       9.71884304e+02, 9.71884304e+02, 9.71884304e+02, 9.71884304e+02,
       9.47768311e+02, 9.47768311e+02, 9.47768311e+02, 9.47768311e+02,
       9.12263212e+02, 9.12263212e+02, 9.12263212e+02, 9.12263212e+02,
       8.65625167e+02, 8.65625167e+02, 8.65625167e+02, 8.65625167e+02,
       8.10053427e+02, 8.10053427e+02, 8.10053427e+02, 8.10053427e+02,
       7.48503051e+02, 7.48503051e+02, 7.48503051e+02, 7.48503051e+02,
       6.85291622e+02, 6.85291622e+02, 6.85291622e+02, 6.85291622e+02,
       6.27294016e+02, 6.27294016e+02, 6.27294016e+02, 6.27294016e+02,
       5.75413147e+02, 5.75413147e+02, 5.75413147e+02, 5.75413147e+02,
       5.30001905e+02, 5.30001905e+02, 5.30001905e+02, 5.30001905e+02,
       4.93087463e+02, 4.93087463e+02, 4.93087463e+02, 4.93087463e+02,
       4.66655572e+02, 4.66655572e+02, 4.66655572e+02, 4.66655572e+02,
       4.51807159e+02, 4.51807159e+02, 4.51807159e+02, 4.51807159e+02,
       4.47311434e+02, 4.47311434e+02, 4.47311434e+02, 4.47311434e+02,
       4.48215613e+02, 4.48215613e+02, 4.48215613e+02, 4.48215613e+02,
       4.51762807e+02, 4.51762807e+02, 4.51762807e+02, 4.51762807e+02,
       4.52868403e+02, 4.52868403e+02, 4.52868403e+02, 4.52868403e+02,
       4.52955491e+02, 4.52955491e+02, 4.52955491e+02, 4.52955491e+02,
       4.52909327e+02, 4.52909327e+02, 4.52909327e+02, 4.52909327e+02,
       4.52981643e+02, 4.52981643e+02, 4.52981643e+02, 4.52981643e+02,
       4.53214804e+02, 4.53214804e+02, 4.53214804e+02, 4.53214804e+02,
       4.48990326e+02, 4.48990326e+02, 4.48990326e+02, 4.48990326e+02,
       4.09131640e+02, 4.09131640e+02, 4.09131640e+02, 4.09131640e+02,
       2.45517697e+02, 2.45517697e+02, 2.45517697e+02, 2.45517697e+02,
       3.47160317e+01, 3.47160317e+01, 3.47160317e+01, 3.47160317e+01,
       3.62894316e-01, 3.62894316e-01, 3.62894316e-01, 3.62894316e-01,
       1.00998011e-02, 1.00998011e-02, 1.00998011e-02, 1.00998011e-02,
       1.00000113e-02, 1.00000113e-02, 1.00000113e-02, 1.00000113e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 0.99999999, 0.99999999, 0.99999999, 0.99999999,
       0.99999996, 0.99999996, 0.99999996, 0.99999996, 0.9999998 ,
       0.9999998 , 0.9999998 , 0.9999998 , 0.99999913, 0.99999913,
       0.99999913, 0.99999913, 0.99999642, 0.99999642, 0.99999642,
       0.99999642, 0.99998623, 0.99998623, 0.99998623, 0.99998623,
       0.99995092, 0.99995092, 0.99995092, 0.99995092, 0.99983826,
       0.99983826, 0.99983826, 0.99983826, 0.99950927, 0.99950927,
       0.99950927, 0.99950927, 0.99863513, 0.99863513, 0.99863513,
       0.99863513, 0.9965366 , 0.9965366 , 0.9965366 , 0.9965366 ,
       0.99201676, 0.99201676, 0.99201676, 0.99201676, 0.9833362 ,
       0.9833362 , 0.9833362 , 0.9833362 , 0.9685206 , 0.9685206 ,
       0.9685206 , 0.9685206 , 0.94602219, 0.94602219, 0.94602219,
       0.94602219, 0.91540395, 0.91540395, 0.91540395, 0.91540395,
       0.87753992, 0.87753992, 0.87753992, 0.87753992, 0.83410395,
       0.83410395, 0.83410395, 0.83410395, 0.78704832, 0.78704832,
       0.78704832, 0.78704832, 0.74068485, 0.74068485, 0.74068485,
       0.74068485, 0.69785748, 0.69785748, 0.69785748, 0.69785748,
       0.65816589, 0.65816589, 0.65816589, 0.65816589, 0.62460018,
       0.62460018, 0.62460018, 0.62460018, 0.59255793, 0.59255793,
       0.59255793, 0.59255793, 0.57817326, 0.57817326, 0.57817326,
       0.57817326, 0.56387564, 0.56387564, 0.56387564, 0.56387564,
       0.56157127, 0.56157127, 0.56157127, 0.56157127, 0.56360366,
       0.56360366, 0.56360366, 0.56360366, 0.56687447, 0.56687447,
       0.56687447, 0.56687447, 0.56576392, 0.56576392, 0.56576392,
       0.56576392, 0.56670663, 0.56670663, 0.56670663, 0.56670663,
       0.58490731, 0.58490731, 0.58490731, 0.58490731, 0.67692226,
       0.67692226, 0.67692226, 0.67692226, 0.97656008, 0.97656008,
       0.97656008, 0.97656008, 1.70128216, 1.70128216, 1.70128216,
       1.70128216, 2.81354886, 2.81354886, 2.81354886, 2.81354886,
       3.17648847, 3.17648847, 3.17648847, 3.17648847, 2.32407513,
       2.32407513, 2.32407513, 2.32407513, 1.15871544, 1.15871544,
       1.15871544, 1.15871544, 1.00857175, 1.00857175, 1.00857175,
       1.00857175, 1.0000498 , 1.0000498 , 1.0000498 , 1.0000498 ,
       1.00000001, 1.00000001, 1.00000001, 1.00000001, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.25428777e-10, 2.25428777e-10, 2.25428777e-10, 2.25428777e-10,
       1.59940645e-09, 1.59940645e-09, 1.59940645e-09, 1.59940645e-09,
       9.78961596e-09, 9.78961596e-09, 9.78961596e-09, 9.78961596e-09,
       5.63719016e-08, 5.63719016e-08, 5.63719016e-08, 5.63719016e-08,
       3.04684391e-07, 3.04684391e-07, 3.04684391e-07, 3.04684391e-07,
       1.54374637e-06, 1.54374637e-06, 1.54374637e-06, 1.54374637e-06,
       7.32124407e-06, 7.32124407e-06, 7.32124407e-06, 7.32124407e-06,
       3.24422534e-05, 3.24422534e-05, 3.24422534e-05, 3.24422534e-05,
       1.34046928e-04, 1.34046928e-04, 1.34046928e-04, 1.34046928e-04,
       5.15190666e-04, 5.15190666e-04, 5.15190666e-04, 5.15190666e-04,
       1.83655079e-03, 1.83655079e-03, 1.83655079e-03, 1.83655079e-03,
       6.05207452e-03, 6.05207452e-03, 6.05207452e-03, 6.05207452e-03,
       1.83647896e-02, 1.83647896e-02, 1.83647896e-02, 1.83647896e-02,
       5.10941202e-02, 5.10941202e-02, 5.10941202e-02, 5.10941202e-02,
       1.29756782e-01, 1.29756782e-01, 1.29756782e-01, 1.29756782e-01,
       2.99620921e-01, 2.99620921e-01, 2.99620921e-01, 2.99620921e-01,
       6.27596355e-01, 6.27596355e-01, 6.27596355e-01, 6.27596355e-01,
       1.19286361e+00, 1.19286361e+00, 1.19286361e+00, 1.19286361e+00,
       2.06504248e+00, 2.06504248e+00, 2.06504248e+00, 2.06504248e+00,
       3.27992371e+00, 3.27992371e+00, 3.27992371e+00, 3.27992371e+00,
       4.82922171e+00, 4.82922171e+00, 4.82922171e+00, 4.82922171e+00,
       6.67464424e+00, 6.67464424e+00, 6.67464424e+00, 6.67464424e+00,
       8.75964265e+00, 8.75964265e+00, 8.75964265e+00, 8.75964265e+00,
       1.08803472e+01, 1.08803472e+01, 1.08803472e+01, 1.08803472e+01,
       1.29739884e+01, 1.29739884e+01, 1.29739884e+01, 1.29739884e+01,
       1.49859636e+01, 1.49859636e+01, 1.49859636e+01, 1.49859636e+01,
       1.68387724e+01, 1.68387724e+01, 1.68387724e+01, 1.68387724e+01,
       1.84176517e+01, 1.84176517e+01, 1.84176517e+01, 1.84176517e+01,
       1.95597613e+01, 1.95597613e+01, 1.95597613e+01, 1.95597613e+01,
       2.01515305e+01, 2.01515305e+01, 2.01515305e+01, 2.01515305e+01,
       2.02967332e+01, 2.02967332e+01, 2.02967332e+01, 2.02967332e+01,
       2.02120023e+01, 2.02120023e+01, 2.02120023e+01, 2.02120023e+01,
       2.00605248e+01, 2.00605248e+01, 2.00605248e+01, 2.00605248e+01,
       2.00318688e+01, 2.00318688e+01, 2.00318688e+01, 2.00318688e+01,
       2.00221885e+01, 2.00221885e+01, 2.00221885e+01, 2.00221885e+01,
       2.00111763e+01, 2.00111763e+01, 2.00111763e+01, 2.00111763e+01,
       2.00014053e+01, 2.00014053e+01, 2.00014053e+01, 2.00014053e+01,
       1.99837206e+01, 1.99837206e+01, 1.99837206e+01, 1.99837206e+01,
       1.99044089e+01, 1.99044089e+01, 1.99044089e+01, 1.99044089e+01,
       1.94532334e+01, 1.94532334e+01, 1.94532334e+01, 1.94532334e+01,
       1.72959877e+01, 1.72959877e+01, 1.72959877e+01, 1.72959877e+01,
       1.00492404e+01, 1.00492404e+01, 1.00492404e+01, 1.00492404e+01,
       1.10583216e+00, 1.10583216e+00, 1.10583216e+00, 1.10583216e+00,
       1.12632792e-02, 1.12632792e-02, 1.12632792e-02, 1.12632792e-02,
       6.51995106e-06, 6.51995106e-06, 6.51995106e-06, 6.51995106e-06,
       9.65569412e-10, 9.65569412e-10, 9.65569412e-10, 9.65569412e-10,
       1.42316510e-13, 1.42316510e-13, 1.42316510e-13, 1.42316510e-13,
       2.10270857e-17, 2.10270857e-17, 2.10270857e-17, 2.10270857e-17,
       4.23110662e-21, 4.23110662e-21, 4.23110662e-21, 4.23110662e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999942e+02, 9.99999942e+02, 9.99999942e+02, 9.99999942e+02,
       9.99999726e+02, 9.99999726e+02, 9.99999726e+02, 9.99999726e+02,
       9.99998786e+02, 9.99998786e+02, 9.99998786e+02, 9.99998786e+02,
       9.99994984e+02, 9.99994984e+02, 9.99994984e+02, 9.99994984e+02,
       9.99980724e+02, 9.99980724e+02, 9.99980724e+02, 9.99980724e+02,
       9.99931285e+02, 9.99931285e+02, 9.99931285e+02, 9.99931285e+02,
       9.99773577e+02, 9.99773577e+02, 9.99773577e+02, 9.99773577e+02,
       9.99313077e+02, 9.99313077e+02, 9.99313077e+02, 9.99313077e+02,
       9.98089948e+02, 9.98089948e+02, 9.98089948e+02, 9.98089948e+02,
       9.95155853e+02, 9.95155853e+02, 9.95155853e+02, 9.95155853e+02,
       9.88846648e+02, 9.88846648e+02, 9.88846648e+02, 9.88846648e+02,
       9.76766510e+02, 9.76766510e+02, 9.76766510e+02, 9.76766510e+02,
       9.56255473e+02, 9.56255473e+02, 9.56255473e+02, 9.56255473e+02,
       9.25357054e+02, 9.25357054e+02, 9.25357054e+02, 9.25357054e+02,
       8.83782170e+02, 8.83782170e+02, 8.83782170e+02, 8.83782170e+02,
       8.33130130e+02, 8.33130130e+02, 8.33130130e+02, 8.33130130e+02,
       7.76085650e+02, 7.76085650e+02, 7.76085650e+02, 7.76085650e+02,
       7.15578042e+02, 7.15578042e+02, 7.15578042e+02, 7.15578042e+02,
       6.57188937e+02, 6.57188937e+02, 6.57188937e+02, 6.57188937e+02,
       6.04619926e+02, 6.04619926e+02, 6.04619926e+02, 6.04619926e+02,
       5.57478206e+02, 5.57478206e+02, 5.57478206e+02, 5.57478206e+02,
       5.16581813e+02, 5.16581813e+02, 5.16581813e+02, 5.16581813e+02,
       4.83986410e+02, 4.83986410e+02, 4.83986410e+02, 4.83986410e+02,
       4.61832276e+02, 4.61832276e+02, 4.61832276e+02, 4.61832276e+02,
       4.50505747e+02, 4.50505747e+02, 4.50505747e+02, 4.50505747e+02,
       4.47530062e+02, 4.47530062e+02, 4.47530062e+02, 4.47530062e+02,
       4.49051988e+02, 4.49051988e+02, 4.49051988e+02, 4.49051988e+02,
       4.51904449e+02, 4.51904449e+02, 4.51904449e+02, 4.51904449e+02,
       4.52866779e+02, 4.52866779e+02, 4.52866779e+02, 4.52866779e+02,
       4.53094164e+02, 4.53094164e+02, 4.53094164e+02, 4.53094164e+02,
       4.53054312e+02, 4.53054312e+02, 4.53054312e+02, 4.53054312e+02,
       4.53063775e+02, 4.53063775e+02, 4.53063775e+02, 4.53063775e+02,
       4.53395324e+02, 4.53395324e+02, 4.53395324e+02, 4.53395324e+02,
       4.52569474e+02, 4.52569474e+02, 4.52569474e+02, 4.52569474e+02,
       4.35977197e+02, 4.35977197e+02, 4.35977197e+02, 4.35977197e+02,
       3.42570389e+02, 3.42570389e+02, 3.42570389e+02, 3.42570389e+02,
       1.14587893e+02, 1.14587893e+02, 1.14587893e+02, 1.14587893e+02,
       4.38695457e+00, 4.38695457e+00, 4.38695457e+00, 4.38695457e+00,
       1.75831808e-02, 1.75831808e-02, 1.75831808e-02, 1.75831808e-02,
       1.00007686e-02, 1.00007686e-02, 1.00007686e-02, 1.00007686e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 0.99999999, 0.99999999, 0.99999999,
       0.99999999, 0.99999996, 0.99999996, 0.99999996, 0.99999996,
       0.99999982, 0.99999982, 0.99999982, 0.99999982, 0.99999924,
       0.99999924, 0.99999924, 0.99999924, 0.99999693, 0.99999693,
       0.99999693, 0.99999693, 0.99998839, 0.99998839, 0.99998839,
       0.99998839, 0.99995921, 0.99995921, 0.99995921, 0.99995921,
       0.99986699, 0.99986699, 0.99986699, 0.99986699, 0.99959927,
       0.99959927, 0.99959927, 0.99959927, 0.99888896, 0.99888896,
       0.99888896, 0.99888896, 0.99717807, 0.99717807, 0.99717807,
       0.99717807, 0.99346233, 0.99346233, 0.99346233, 0.99346233,
       0.98623061, 0.98623061, 0.98623061, 0.98623061, 0.97366804,
       0.97366804, 0.97366804, 0.97366804, 0.954191  , 0.954191  ,
       0.954191  , 0.954191  , 0.92709612, 0.92709612, 0.92709612,
       0.92709612, 0.89288639, 0.89288639, 0.89288639, 0.89288639,
       0.85299165, 0.85299165, 0.85299165, 0.85299165, 0.80903108,
       0.80903108, 0.80903108, 0.80903108, 0.7637975 , 0.7637975 ,
       0.7637975 , 0.7637975 , 0.72115406, 0.72115406, 0.72115406,
       0.72115406, 0.68149355, 0.68149355, 0.68149355, 0.68149355,
       0.64480222, 0.64480222, 0.64480222, 0.64480222, 0.61500168,
       0.61500168, 0.61500168, 0.61500168, 0.58590592, 0.58590592,
       0.58590592, 0.58590592, 0.57439796, 0.57439796, 0.57439796,
       0.57439796, 0.56387515, 0.56387515, 0.56387515, 0.56387515,
       0.56183788, 0.56183788, 0.56183788, 0.56183788, 0.56406492,
       0.56406492, 0.56406492, 0.56406492, 0.56696563, 0.56696563,
       0.56696563, 0.56696563, 0.5662629 , 0.5662629 , 0.5662629 ,
       0.5662629 , 0.56641131, 0.56641131, 0.56641131, 0.56641131,
       0.576761  , 0.576761  , 0.576761  , 0.576761  , 0.63578575,
       0.63578575, 0.63578575, 0.63578575, 0.84379069, 0.84379069,
       0.84379069, 0.84379069, 1.38572903, 1.38572903, 1.38572903,
       1.38572903, 2.44002612, 2.44002612, 2.44002612, 2.44002612,
       3.20653483, 3.20653483, 3.20653483, 3.20653483, 2.97456245,
       2.97456245, 2.97456245, 2.97456245, 1.53663558, 1.53663558,
       1.53663558, 1.53663558, 1.0381715 , 1.0381715 , 1.0381715 ,
       1.0381715 , 1.00099782, 1.00099782, 1.00099782, 1.00099782,
       1.0000005 , 1.0000005 , 1.0000005 , 1.0000005 , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.52640217e-09, 1.52640217e-09, 1.52640217e-09, 1.52640217e-09,
       9.88802864e-09, 9.88802864e-09, 9.88802864e-09, 9.88802864e-09,
       5.49631705e-08, 5.49631705e-08, 5.49631705e-08, 5.49631705e-08,
       2.87970269e-07, 2.87970269e-07, 2.87970269e-07, 2.87970269e-07,
       1.41808509e-06, 1.41808509e-06, 1.41808509e-06, 1.41808509e-06,
       6.55412036e-06, 6.55412036e-06, 6.55412036e-06, 6.55412036e-06,
       2.83823463e-05, 2.83823463e-05, 2.83823463e-05, 2.83823463e-05,
       1.14933820e-04, 1.14933820e-04, 1.14933820e-04, 1.14933820e-04,
       4.34223292e-04, 4.34223292e-04, 4.34223292e-04, 4.34223292e-04,
       1.52641599e-03, 1.52641599e-03, 1.52641599e-03, 1.52641599e-03,
       4.97687894e-03, 4.97687894e-03, 4.97687894e-03, 4.97687894e-03,
       1.49961991e-02, 1.49961991e-02, 1.49961991e-02, 1.49961991e-02,
       4.15882459e-02, 4.15882459e-02, 4.15882459e-02, 4.15882459e-02,
       1.05698320e-01, 1.05698320e-01, 1.05698320e-01, 1.05698320e-01,
       2.45229407e-01, 2.45229407e-01, 2.45229407e-01, 2.45229407e-01,
       5.17987106e-01, 5.17987106e-01, 5.17987106e-01, 5.17987106e-01,
       9.95694132e-01, 9.95694132e-01, 9.95694132e-01, 9.95694132e-01,
       1.74644988e+00, 1.74644988e+00, 1.74644988e+00, 1.74644988e+00,
       2.81214874e+00, 2.81214874e+00, 2.81214874e+00, 2.81214874e+00,
       4.19480869e+00, 4.19480869e+00, 4.19480869e+00, 4.19480869e+00,
       5.86264757e+00, 5.86264757e+00, 5.86264757e+00, 5.86264757e+00,
       7.77472797e+00, 7.77472797e+00, 7.77472797e+00, 7.77472797e+00,
       9.80655654e+00, 9.80655654e+00, 9.80655654e+00, 9.80655654e+00,
       1.18277382e+01, 1.18277382e+01, 1.18277382e+01, 1.18277382e+01,
       1.37971680e+01, 1.37971680e+01, 1.37971680e+01, 1.37971680e+01,
       1.56822647e+01, 1.56822647e+01, 1.56822647e+01, 1.56822647e+01,
       1.73889246e+01, 1.73889246e+01, 1.73889246e+01, 1.73889246e+01,
       1.87901005e+01, 1.87901005e+01, 1.87901005e+01, 1.87901005e+01,
       1.97450558e+01, 1.97450558e+01, 1.97450558e+01, 1.97450558e+01,
       2.01997684e+01, 2.01997684e+01, 2.01997684e+01, 2.01997684e+01,
       2.02877405e+01, 2.02877405e+01, 2.02877405e+01, 2.02877405e+01,
       2.01725864e+01, 2.01725864e+01, 2.01725864e+01, 2.01725864e+01,
       2.00462536e+01, 2.00462536e+01, 2.00462536e+01, 2.00462536e+01,
       2.00208235e+01, 2.00208235e+01, 2.00208235e+01, 2.00208235e+01,
       2.00194733e+01, 2.00194733e+01, 2.00194733e+01, 2.00194733e+01,
       2.00147202e+01, 2.00147202e+01, 2.00147202e+01, 2.00147202e+01,
       2.00035230e+01, 2.00035230e+01, 2.00035230e+01, 2.00035230e+01,
       1.99845714e+01, 1.99845714e+01, 1.99845714e+01, 1.99845714e+01,
       1.99388525e+01, 1.99388525e+01, 1.99388525e+01, 1.99388525e+01,
       1.97268563e+01, 1.97268563e+01, 1.97268563e+01, 1.97268563e+01,
       1.86628873e+01, 1.86628873e+01, 1.86628873e+01, 1.86628873e+01,
       1.42510014e+01, 1.42510014e+01, 1.42510014e+01, 1.42510014e+01,
       4.38724950e+00, 4.38724950e+00, 4.38724950e+00, 4.38724950e+00,
       1.35671717e-01, 1.35671717e-01, 1.35671717e-01, 1.35671717e-01,
       3.19338310e-04, 3.19338310e-04, 3.19338310e-04, 3.19338310e-04,
       5.91067532e-08, 5.91067532e-08, 5.91067532e-08, 5.91067532e-08,
       9.14545156e-12, 9.14545156e-12, 9.14545156e-12, 9.14545156e-12,
       1.40083653e-15, 1.40083653e-15, 1.40083653e-15, 1.40083653e-15,
       2.06948752e-19, 2.06948752e-19, 2.06948752e-19, 2.06948752e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999989e+02, 9.99999989e+02, 9.99999989e+02, 9.99999989e+02,
       9.99999947e+02, 9.99999947e+02, 9.99999947e+02, 9.99999947e+02,
       9.99999755e+02, 9.99999755e+02, 9.99999755e+02, 9.99999755e+02,
       9.99998938e+02, 9.99998938e+02, 9.99998938e+02, 9.99998938e+02,
       9.99995700e+02, 9.99995700e+02, 9.99995700e+02, 9.99995700e+02,
       9.99983753e+02, 9.99983753e+02, 9.99983753e+02, 9.99983753e+02,
       9.99942888e+02, 9.99942888e+02, 9.99942888e+02, 9.99942888e+02,
       9.99813799e+02, 9.99813799e+02, 9.99813799e+02, 9.99813799e+02,
       9.99439043e+02, 9.99439043e+02, 9.99439043e+02, 9.99439043e+02,
       9.98445046e+02, 9.98445046e+02, 9.98445046e+02, 9.98445046e+02,
       9.96052372e+02, 9.96052372e+02, 9.96052372e+02, 9.96052372e+02,
       9.90862868e+02, 9.90862868e+02, 9.90862868e+02, 9.90862868e+02,
       9.80788585e+02, 9.80788585e+02, 9.80788585e+02, 9.80788585e+02,
       9.63364916e+02, 9.63364916e+02, 9.63364916e+02, 9.63364916e+02,
       9.36537037e+02, 9.36537037e+02, 9.36537037e+02, 9.36537037e+02,
       8.99584844e+02, 8.99584844e+02, 8.99584844e+02, 8.99584844e+02,
       8.53541949e+02, 8.53541949e+02, 8.53541949e+02, 8.53541949e+02,
       8.00725978e+02, 8.00725978e+02, 8.00725978e+02, 8.00725978e+02,
       7.43656312e+02, 7.43656312e+02, 7.43656312e+02, 7.43656312e+02,
       6.86069806e+02, 6.86069806e+02, 6.86069806e+02, 6.86069806e+02,
       6.33063024e+02, 6.33063024e+02, 6.33063024e+02, 6.33063024e+02,
       5.84804742e+02, 5.84804742e+02, 5.84804742e+02, 5.84804742e+02,
       5.41876353e+02, 5.41876353e+02, 5.41876353e+02, 5.41876353e+02,
       5.05141177e+02, 5.05141177e+02, 5.05141177e+02, 5.05141177e+02,
       4.76536346e+02, 4.76536346e+02, 4.76536346e+02, 4.76536346e+02,
       4.58081353e+02, 4.58081353e+02, 4.58081353e+02, 4.58081353e+02,
       4.49630363e+02, 4.49630363e+02, 4.49630363e+02, 4.49630363e+02,
       4.47839670e+02, 4.47839670e+02, 4.47839670e+02, 4.47839670e+02,
       4.49917497e+02, 4.49917497e+02, 4.49917497e+02, 4.49917497e+02,
       4.52105100e+02, 4.52105100e+02, 4.52105100e+02, 4.52105100e+02,
       4.52784421e+02, 4.52784421e+02, 4.52784421e+02, 4.52784421e+02,
       4.53082540e+02, 4.53082540e+02, 4.53082540e+02, 4.53082540e+02,
       4.53173248e+02, 4.53173248e+02, 4.53173248e+02, 4.53173248e+02,
       4.53232634e+02, 4.53232634e+02, 4.53232634e+02, 4.53232634e+02,
       4.53513027e+02, 4.53513027e+02, 4.53513027e+02, 4.53513027e+02,
       4.53743580e+02, 4.53743580e+02, 4.53743580e+02, 4.53743580e+02,
       4.47885607e+02, 4.47885607e+02, 4.47885607e+02, 4.47885607e+02,
       4.01687163e+02, 4.01687163e+02, 4.01687163e+02, 4.01687163e+02,
       2.28101815e+02, 2.28101815e+02, 2.28101815e+02, 2.28101815e+02,
       2.86587243e+01, 2.86587243e+01, 2.86587243e+01, 2.86587243e+01,
       2.56567373e-01, 2.56567373e-01, 2.56567373e-01, 2.56567373e-01,
       1.00575986e-02, 1.00575986e-02, 1.00575986e-02, 1.00575986e-02,
       1.00000070e-02, 1.00000070e-02, 1.00000070e-02, 1.00000070e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 0.99999999, 0.99999999,
       0.99999999, 0.99999999, 0.99999997, 0.99999997, 0.99999997,
       0.99999997, 0.99999984, 0.99999984, 0.99999984, 0.99999984,
       0.99999934, 0.99999934, 0.99999934, 0.99999934, 0.99999737,
       0.99999737, 0.99999737, 0.99999737, 0.99999024, 0.99999024,
       0.99999024, 0.99999024, 0.99996611, 0.99996611, 0.99996611,
       0.99996611, 0.99989058, 0.99989058, 0.99989058, 0.99989058,
       0.99967241, 0.99967241, 0.99967241, 0.99967241, 0.9990943 ,
       0.9990943 , 0.9990943 , 0.9990943 , 0.99769746, 0.99769746,
       0.99769746, 0.99769746, 0.99464004, 0.99464004, 0.99464004,
       0.99464004, 0.98861492, 0.98861492, 0.98861492, 0.98861492,
       0.97797231, 0.97797231, 0.97797231, 0.97797231, 0.96114094,
       0.96114094, 0.96114094, 0.96114094, 0.93721972, 0.93721972,
       0.93721972, 0.93721972, 0.9063806 , 0.9063806 , 0.9063806 ,
       0.9063806 , 0.86977129, 0.86977129, 0.86977129, 0.86977129,
       0.8289238 , 0.8289238 , 0.8289238 , 0.8289238 , 0.78560018,
       0.78560018, 0.78560018, 0.78560018, 0.74329928, 0.74329928,
       0.74329928, 0.74329928, 0.70377185, 0.70377185, 0.70377185,
       0.70377185, 0.66708371, 0.66708371, 0.66708371, 0.66708371,
       0.6330064 , 0.6330064 , 0.6330064 , 0.6330064 , 0.60675478,
       0.60675478, 0.60675478, 0.60675478, 0.58061389, 0.58061389,
       0.58061389, 0.58061389, 0.57133748, 0.57133748, 0.57133748,
       0.57133748, 0.56401096, 0.56401096, 0.56401096, 0.56401096,
       0.56229948, 0.56229948, 0.56229948, 0.56229948, 0.56457284,
       0.56457284, 0.56457284, 0.56457284, 0.56699615, 0.56699615,
       0.56699615, 0.56699615, 0.56661875, 0.56661875, 0.56661875,
       0.56661875, 0.56639427, 0.56639427, 0.56639427, 0.56639427,
       0.57210261, 0.57210261, 0.57210261, 0.57210261, 0.60938253,
       0.60938253, 0.60938253, 0.60938253, 0.75154823, 0.75154823,
       0.75154823, 0.75154823, 1.14834311, 1.14834311, 1.14834311,
       1.14834311, 2.00753778, 2.00753778, 2.00753778, 2.00753778,
       3.07707073, 3.07707073, 3.07707073, 3.07707073, 3.28851254,
       3.28851254, 3.28851254, 3.28851254, 2.25822824, 2.25822824,
       2.25822824, 2.25822824, 1.136885  , 1.136885  , 1.136885  ,
       1.136885  , 1.00702667, 1.00702667, 1.00702667, 1.00702667,
       1.00003133, 1.00003133, 1.00003133, 1.00003133, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.88472523e-09, 8.88472523e-09, 8.88472523e-09, 8.88472523e-09,
       5.29210904e-08, 5.29210904e-08, 5.29210904e-08, 5.29210904e-08,
       2.68968990e-07, 2.68968990e-07, 2.68968990e-07, 2.68968990e-07,
       1.29058596e-06, 1.29058596e-06, 1.29058596e-06, 1.29058596e-06,
       5.82613011e-06, 5.82613011e-06, 5.82613011e-06, 5.82613011e-06,
       2.47055828e-05, 2.47055828e-05, 2.47055828e-05, 2.47055828e-05,
       9.82232922e-05, 9.82232922e-05, 9.82232922e-05, 9.82232922e-05,
       3.65333376e-04, 3.65333376e-04, 3.65333376e-04, 3.65333376e-04,
       1.26798274e-03, 1.26798274e-03, 1.26798274e-03, 1.26798274e-03,
       4.09445985e-03, 4.09445985e-03, 4.09445985e-03, 4.09445985e-03,
       1.22588183e-02, 1.22588183e-02, 1.22588183e-02, 1.22588183e-02,
       3.38993827e-02, 3.38993827e-02, 3.38993827e-02, 3.38993827e-02,
       8.62271626e-02, 8.62271626e-02, 8.62271626e-02, 8.62271626e-02,
       2.00962075e-01, 2.00962075e-01, 2.00962075e-01, 2.00962075e-01,
       4.27886788e-01, 4.27886788e-01, 4.27886788e-01, 4.27886788e-01,
       8.31469810e-01, 8.31469810e-01, 8.31469810e-01, 8.31469810e-01,
       1.47715354e+00, 1.47715354e+00, 1.47715354e+00, 1.47715354e+00,
       2.41104027e+00, 2.41104027e+00, 2.41104027e+00, 2.41104027e+00,
       3.64432706e+00, 3.64432706e+00, 3.64432706e+00, 3.64432706e+00,
       5.15349521e+00, 5.15349521e+00, 5.15349521e+00, 5.15349521e+00,
       6.89898043e+00, 6.89898043e+00, 6.89898043e+00, 6.89898043e+00,
       8.82107363e+00, 8.82107363e+00, 8.82107363e+00, 8.82107363e+00,
       1.07606034e+01, 1.07606034e+01, 1.07606034e+01, 1.07606034e+01,
       1.26809719e+01, 1.26809719e+01, 1.26809719e+01, 1.26809719e+01,
       1.45408992e+01, 1.45408992e+01, 1.45408992e+01, 1.45408992e+01,
       1.63011956e+01, 1.63011956e+01, 1.63011956e+01, 1.63011956e+01,
       1.78659797e+01, 1.78659797e+01, 1.78659797e+01, 1.78659797e+01,
       1.91016597e+01, 1.91016597e+01, 1.91016597e+01, 1.91016597e+01,
       1.98864085e+01, 1.98864085e+01, 1.98864085e+01, 1.98864085e+01,
       2.02241697e+01, 2.02241697e+01, 2.02241697e+01, 2.02241697e+01,
       2.02710826e+01, 2.02710826e+01, 2.02710826e+01, 2.02710826e+01,
       2.01384385e+01, 2.01384385e+01, 2.01384385e+01, 2.01384385e+01,
       2.00398023e+01, 2.00398023e+01, 2.00398023e+01, 2.00398023e+01,
       2.00141317e+01, 2.00141317e+01, 2.00141317e+01, 2.00141317e+01,
       2.00125047e+01, 2.00125047e+01, 2.00125047e+01, 2.00125047e+01,
       2.00117339e+01, 2.00117339e+01, 2.00117339e+01, 2.00117339e+01,
       2.00041797e+01, 2.00041797e+01, 2.00041797e+01, 2.00041797e+01,
       1.99838495e+01, 1.99838495e+01, 1.99838495e+01, 1.99838495e+01,
       1.99519757e+01, 1.99519757e+01, 1.99519757e+01, 1.99519757e+01,
       1.98474175e+01, 1.98474175e+01, 1.98474175e+01, 1.98474175e+01,
       1.93323898e+01, 1.93323898e+01, 1.93323898e+01, 1.93323898e+01,
       1.69770632e+01, 1.69770632e+01, 1.69770632e+01, 1.69770632e+01,
       9.43267908e+00, 9.43267908e+00, 9.43267908e+00, 9.43267908e+00,
       8.98850413e-01, 8.98850413e-01, 8.98850413e-01, 8.98850413e-01,
       7.99452553e-03, 7.99452553e-03, 7.99452553e-03, 7.99452553e-03,
       3.95277914e-06, 3.95277914e-06, 3.95277914e-06, 3.95277914e-06,
       5.87204713e-10, 5.87204713e-10, 5.87204713e-10, 5.87204713e-10,
       8.74454638e-14, 8.74454638e-14, 8.74454638e-14, 8.74454638e-14,
       1.31382467e-17, 1.31382467e-17, 1.31382467e-17, 1.31382467e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([1.00000000e+03, 1.00000000e+03, 1.00000000e+03, 1.00000000e+03,
       9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999990e+02, 9.99999990e+02, 9.99999990e+02, 9.99999990e+02,
       9.99999952e+02, 9.99999952e+02, 9.99999952e+02, 9.99999952e+02,
       9.99999782e+02, 9.99999782e+02, 9.99999782e+02, 9.99999782e+02,
       9.99999076e+02, 9.99999076e+02, 9.99999076e+02, 9.99999076e+02,
       9.99996325e+02, 9.99996325e+02, 9.99996325e+02, 9.99996325e+02,
       9.99986331e+02, 9.99986331e+02, 9.99986331e+02, 9.99986331e+02,
       9.99952558e+02, 9.99952558e+02, 9.99952558e+02, 9.99952558e+02,
       9.99846811e+02, 9.99846811e+02, 9.99846811e+02, 9.99846811e+02,
       9.99541417e+02, 9.99541417e+02, 9.99541417e+02, 9.99541417e+02,
       9.98732356e+02, 9.98732356e+02, 9.98732356e+02, 9.98732356e+02,
       9.96778496e+02, 9.96778496e+02, 9.96778496e+02, 9.96778496e+02,
       9.92506573e+02, 9.92506573e+02, 9.92506573e+02, 9.92506573e+02,
       9.84106027e+02, 9.84106027e+02, 9.84106027e+02, 9.84106027e+02,
       9.69322749e+02, 9.69322749e+02, 9.69322749e+02, 9.69322749e+02,
       9.46081288e+02, 9.46081288e+02, 9.46081288e+02, 9.46081288e+02,
       9.13335017e+02, 9.13335017e+02, 9.13335017e+02, 9.13335017e+02,
       8.71610214e+02, 8.71610214e+02, 8.71610214e+02, 8.71610214e+02,
       8.22805647e+02, 8.22805647e+02, 8.22805647e+02, 8.22805647e+02,
       7.69307087e+02, 7.69307087e+02, 7.69307087e+02, 7.69307087e+02,
       7.13651394e+02, 7.13651394e+02, 7.13651394e+02, 7.13651394e+02,
       6.60389331e+02, 6.60389331e+02, 6.60389331e+02, 6.60389331e+02,
       6.11811082e+02, 6.11811082e+02, 6.11811082e+02, 6.11811082e+02,
       5.67482808e+02, 5.67482808e+02, 5.67482808e+02, 5.67482808e+02,
       5.28269968e+02, 5.28269968e+02, 5.28269968e+02, 5.28269968e+02,
       4.95352222e+02, 4.95352222e+02, 4.95352222e+02, 4.95352222e+02,
       4.70492622e+02, 4.70492622e+02, 4.70492622e+02, 4.70492622e+02,
       4.55270406e+02, 4.55270406e+02, 4.55270406e+02, 4.55270406e+02,
       4.49060619e+02, 4.49060619e+02, 4.49060619e+02, 4.49060619e+02,
       4.48201927e+02, 4.48201927e+02, 4.48201927e+02, 4.48201927e+02,
       4.50695933e+02, 4.50695933e+02, 4.50695933e+02, 4.50695933e+02,
       4.52345569e+02, 4.52345569e+02, 4.52345569e+02, 4.52345569e+02,
       4.52754082e+02, 4.52754082e+02, 4.52754082e+02, 4.52754082e+02,
       4.52997015e+02, 4.52997015e+02, 4.52997015e+02, 4.52997015e+02,
       4.53174880e+02, 4.53174880e+02, 4.53174880e+02, 4.53174880e+02,
       4.53361382e+02, 4.53361382e+02, 4.53361382e+02, 4.53361382e+02,
       4.53679663e+02, 4.53679663e+02, 4.53679663e+02, 4.53679663e+02,
       4.54190653e+02, 4.54190653e+02, 4.54190653e+02, 4.54190653e+02,
       4.52637868e+02, 4.52637868e+02, 4.52637868e+02, 4.52637868e+02,
       4.32258483e+02, 4.32258483e+02, 4.32258483e+02, 4.32258483e+02,
       3.29015504e+02, 3.29015504e+02, 3.29015504e+02, 3.29015504e+02,
       1.00405385e+02, 1.00405385e+02, 1.00405385e+02, 1.00405385e+02,
       3.29045820e+00, 3.29045820e+00, 3.29045820e+00, 3.29045820e+00,
       1.46741752e-02, 1.46741752e-02, 1.46741752e-02, 1.46741752e-02,
       1.00004659e-02, 1.00004659e-02, 1.00004659e-02, 1.00004659e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([1.        , 1.        , 1.        , 1.        , 0.99999999,
       0.99999999, 0.99999999, 0.99999999, 0.99999997, 0.99999997,
       0.99999997, 0.99999997, 0.99999986, 0.99999986, 0.99999986,
       0.99999986, 0.99999943, 0.99999943, 0.99999943, 0.99999943,
       0.99999776, 0.99999776, 0.99999776, 0.99999776, 0.9999918 ,
       0.9999918 , 0.9999918 , 0.9999918 , 0.99997186, 0.99997186,
       0.99997186, 0.99997186, 0.99990994, 0.99990994, 0.99990994,
       0.99990994, 0.99973194, 0.99973194, 0.99973194, 0.99973194,
       0.99926076, 0.99926076, 0.99926076, 0.99926076, 0.99811888,
       0.99811888, 0.99811888, 0.99811888, 0.9956012 , 0.9956012 ,
       0.9956012 , 0.9956012 , 0.99058136, 0.99058136, 0.99058136,
       0.99058136, 0.98157355, 0.98157355, 0.98157355, 0.98157355,
       0.96705453, 0.96705453, 0.96705453, 0.96705453, 0.94598589,
       0.94598589, 0.94598589, 0.94598589, 0.91825438, 0.91825438,
       0.91825438, 0.91825438, 0.88471667, 0.88471667, 0.88471667,
       0.88471667, 0.84678775, 0.84678775, 0.84678775, 0.84678775,
       0.8058432 , 0.8058432 , 0.8058432 , 0.8058432 , 0.76438015,
       0.76438015, 0.76438015, 0.76438015, 0.72517919, 0.72517919,
       0.72517919, 0.72517919, 0.68826098, 0.68826098, 0.68826098,
       0.68826098, 0.65432311, 0.65432311, 0.65432311, 0.65432311,
       0.62261428, 0.62261428, 0.62261428, 0.62261428, 0.59964198,
       0.59964198, 0.59964198, 0.59964198, 0.57647962, 0.57647962,
       0.57647962, 0.57647962, 0.56891377, 0.56891377, 0.56891377,
       0.56891377, 0.5642295 , 0.5642295 , 0.5642295 , 0.5642295 ,
       0.56291649, 0.56291649, 0.56291649, 0.56291649, 0.56496715,
       0.56496715, 0.56496715, 0.56496715, 0.5670335 , 0.5670335 ,
       0.5670335 , 0.5670335 , 0.56691285, 0.56691285, 0.56691285,
       0.56691285, 0.56649394, 0.56649394, 0.56649394, 0.56649394,
       0.56954649, 0.56954649, 0.56954649, 0.56954649, 0.59269675,
       0.59269675, 0.59269675, 0.59269675, 0.68846425, 0.68846425,
       0.68846425, 0.68846425, 0.97389537, 0.97389537, 0.97389537,
       0.97389537, 1.63730131, 1.63730131, 1.63730131, 1.63730131,
       2.75902555, 2.75902555, 2.75902555, 2.75902555, 3.37028342,
       3.37028342, 3.37028342, 3.37028342, 2.98215238, 2.98215238,
       2.98215238, 2.98215238, 1.46829751, 1.46829751, 1.46829751,
       1.46829751, 1.03187752, 1.03187752, 1.03187752, 1.03187752,
       1.00073195, 1.00073195, 1.00073195, 1.00073195, 1.0000003 ,
       1.0000003 , 1.0000003 , 1.0000003 , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([4.52514197e-08, 4.52514197e-08, 4.52514197e-08, 4.52514197e-08,
       2.49281931e-07, 2.49281931e-07, 2.49281931e-07, 2.49281931e-07,
       1.16502486e-06, 1.16502486e-06, 1.16502486e-06, 1.16502486e-06,
       5.14742918e-06, 5.14742918e-06, 5.14742918e-06, 5.14742918e-06,
       2.14115184e-05, 2.14115184e-05, 2.14115184e-05, 2.14115184e-05,
       8.37057786e-05, 8.37057786e-05, 8.37057786e-05, 8.37057786e-05,
       3.06910769e-04, 3.06910769e-04, 3.06910769e-04, 3.06910769e-04,
       1.05286130e-03, 1.05286130e-03, 1.05286130e-03, 1.05286130e-03,
       3.36989687e-03, 3.36989687e-03, 3.36989687e-03, 3.36989687e-03,
       1.00310100e-02, 1.00310100e-02, 1.00310100e-02, 1.00310100e-02,
       2.76674775e-02, 2.76674775e-02, 2.76674775e-02, 2.76674775e-02,
       7.04345400e-02, 7.04345400e-02, 7.04345400e-02, 7.04345400e-02,
       1.64864079e-01, 1.64864079e-01, 1.64864079e-01, 1.64864079e-01,
       3.53706435e-01, 3.53706435e-01, 3.53706435e-01, 3.53706435e-01,
       6.94517417e-01, 6.94517417e-01, 6.94517417e-01, 6.94517417e-01,
       1.24926788e+00, 1.24926788e+00, 1.24926788e+00, 1.24926788e+00,
       2.06658717e+00, 2.06658717e+00, 2.06658717e+00, 2.06658717e+00,
       3.16549040e+00, 3.16549040e+00, 3.16549040e+00, 3.16549040e+00,
       4.53121338e+00, 4.53121338e+00, 4.53121338e+00, 4.53121338e+00,
       6.12705253e+00, 6.12705253e+00, 6.12705253e+00, 6.12705253e+00,
       7.91542783e+00, 7.91542783e+00, 7.91542783e+00, 7.91542783e+00,
       9.77789566e+00, 9.77789566e+00, 9.77789566e+00, 9.77789566e+00,
       1.16347704e+01, 1.16347704e+01, 1.16347704e+01, 1.16347704e+01,
       1.34551790e+01, 1.34551790e+01, 1.34551790e+01, 1.34551790e+01,
       1.52122136e+01, 1.52122136e+01, 1.52122136e+01, 1.52122136e+01,
       1.68521553e+01, 1.68521553e+01, 1.68521553e+01, 1.68521553e+01,
       1.82765818e+01, 1.82765818e+01, 1.82765818e+01, 1.82765818e+01,
       1.93576979e+01, 1.93576979e+01, 1.93576979e+01, 1.93576979e+01,
       1.99942621e+01, 1.99942621e+01, 1.99942621e+01, 1.99942621e+01,
       2.02328594e+01, 2.02328594e+01, 2.02328594e+01, 2.02328594e+01,
       2.02456712e+01, 2.02456712e+01, 2.02456712e+01, 2.02456712e+01,
       2.01101923e+01, 2.01101923e+01, 2.01101923e+01, 2.01101923e+01,
       2.00369389e+01, 2.00369389e+01, 2.00369389e+01, 2.00369389e+01,
       2.00131267e+01, 2.00131267e+01, 2.00131267e+01, 2.00131267e+01,
       2.00070966e+01, 2.00070966e+01, 2.00070966e+01, 2.00070966e+01,
       2.00052693e+01, 2.00052693e+01, 2.00052693e+01, 2.00052693e+01,
       1.99989897e+01, 1.99989897e+01, 1.99989897e+01, 1.99989897e+01,
       1.99805077e+01, 1.99805077e+01, 1.99805077e+01, 1.99805077e+01,
       1.99568809e+01, 1.99568809e+01, 1.99568809e+01, 1.99568809e+01,
       1.98969783e+01, 1.98969783e+01, 1.98969783e+01, 1.98969783e+01,
       1.96461093e+01, 1.96461093e+01, 1.96461093e+01, 1.96461093e+01,
       1.84628990e+01, 1.84628990e+01, 1.84628990e+01, 1.84628990e+01,
       1.37419915e+01, 1.37419915e+01, 1.37419915e+01, 1.37419915e+01,
       3.80245394e+00, 3.80245394e+00, 3.80245394e+00, 3.80245394e+00,
       1.00964393e-01, 1.00964393e-01, 1.00964393e-01, 1.00964393e-01,
       1.97893986e-04, 1.97893986e-04, 1.97893986e-04, 1.97893986e-04,
       3.50167417e-08, 3.50167417e-08, 3.50167417e-08, 3.50167417e-08,
       5.53183762e-12, 5.53183762e-12, 5.53183762e-12, 5.53183762e-12,
       8.51924516e-16, 8.51924516e-16, 8.51924516e-16, 8.51924516e-16,
       1.36608685e-19, 1.36608685e-19, 1.36608685e-19, 1.36608685e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999998e+02, 9.99999998e+02, 9.99999998e+02, 9.99999998e+02,
       9.99999991e+02, 9.99999991e+02, 9.99999991e+02, 9.99999991e+02,
       9.99999956e+02, 9.99999956e+02, 9.99999956e+02, 9.99999956e+02,
       9.99999807e+02, 9.99999807e+02, 9.99999807e+02, 9.99999807e+02,
       9.99999199e+02, 9.99999199e+02, 9.99999199e+02, 9.99999199e+02,
       9.99996868e+02, 9.99996868e+02, 9.99996868e+02, 9.99996868e+02,
       9.99988517e+02, 9.99988517e+02, 9.99988517e+02, 9.99988517e+02,
       9.99960606e+02, 9.99960606e+02, 9.99960606e+02, 9.99960606e+02,
       9.99873918e+02, 9.99873918e+02, 9.99873918e+02, 9.99873918e+02,
       9.99624741e+02, 9.99624741e+02, 9.99624741e+02, 9.99624741e+02,
       9.98965280e+02, 9.98965280e+02, 9.98965280e+02, 9.98965280e+02,
       9.97367799e+02, 9.97367799e+02, 9.97367799e+02, 9.97367799e+02,
       9.93848786e+02, 9.93848786e+02, 9.93848786e+02, 9.93848786e+02,
       9.86844939e+02, 9.86844939e+02, 9.86844939e+02, 9.86844939e+02,
       9.74316549e+02, 9.74316549e+02, 9.74316549e+02, 9.74316549e+02,
       9.54225804e+02, 9.54225804e+02, 9.54225804e+02, 9.54225804e+02,
       9.25291883e+02, 9.25291883e+02, 9.25291883e+02, 9.25291883e+02,
       8.87600888e+02, 8.87600888e+02, 8.87600888e+02, 8.87600888e+02,
       8.42619539e+02, 8.42619539e+02, 8.42619539e+02, 8.42619539e+02,
       7.92557878e+02, 7.92557878e+02, 7.92557878e+02, 7.92557878e+02,
       7.39509078e+02, 7.39509078e+02, 7.39509078e+02, 7.39509078e+02,
       6.86734806e+02, 6.86734806e+02, 6.86734806e+02, 6.86734806e+02,
       6.37955173e+02, 6.37955173e+02, 6.37955173e+02, 6.37955173e+02,
       5.93035458e+02, 5.93035458e+02, 5.93035458e+02, 5.93035458e+02,
       5.52230567e+02, 5.52230567e+02, 5.52230567e+02, 5.52230567e+02,
       5.16416992e+02, 5.16416992e+02, 5.16416992e+02, 5.16416992e+02,
       4.86984397e+02, 4.86984397e+02, 4.86984397e+02, 4.86984397e+02,
       4.65596969e+02, 4.65596969e+02, 4.65596969e+02, 4.65596969e+02,
       4.53240066e+02, 4.53240066e+02, 4.53240066e+02, 4.53240066e+02,
       4.48778450e+02, 4.48778450e+02, 4.48778450e+02, 4.48778450e+02,
       4.48639462e+02, 4.48639462e+02, 4.48639462e+02, 4.48639462e+02,
       4.51263622e+02, 4.51263622e+02, 4.51263622e+02, 4.51263622e+02,
       4.52567685e+02, 4.52567685e+02, 4.52567685e+02, 4.52567685e+02,
       4.52811496e+02, 4.52811496e+02, 4.52811496e+02, 4.52811496e+02,
       4.52945111e+02, 4.52945111e+02, 4.52945111e+02, 4.52945111e+02,
       4.53123466e+02, 4.53123466e+02, 4.53123466e+02, 4.53123466e+02,
       4.53394325e+02, 4.53394325e+02, 4.53394325e+02, 4.53394325e+02,
       4.53835168e+02, 4.53835168e+02, 4.53835168e+02, 4.53835168e+02,
       4.54404144e+02, 4.54404144e+02, 4.54404144e+02, 4.54404144e+02,
       4.54398815e+02, 4.54398815e+02, 4.54398815e+02, 4.54398815e+02,
       4.46505808e+02, 4.46505808e+02, 4.46505808e+02, 4.46505808e+02,
       3.93317262e+02, 3.93317262e+02, 3.93317262e+02, 3.93317262e+02,
       2.10080070e+02, 2.10080070e+02, 2.10080070e+02, 2.10080070e+02,
       2.32249751e+01, 2.32249751e+01, 2.32249751e+01, 2.32249751e+01,
       1.73430791e-01, 1.73430791e-01, 1.73430791e-01, 1.73430791e-01,
       1.00314003e-02, 1.00314003e-02, 1.00314003e-02, 1.00314003e-02,
       1.00000041e-02, 1.00000041e-02, 1.00000041e-02, 1.00000041e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999999, 0.99999999, 0.99999999, 0.99999999, 0.99999997,
       0.99999997, 0.99999997, 0.99999997, 0.99999988, 0.99999988,
       0.99999988, 0.99999988, 0.99999951, 0.99999951, 0.99999951,
       0.99999951, 0.9999981 , 0.9999981 , 0.9999981 , 0.9999981 ,
       0.99999312, 0.99999312, 0.99999312, 0.99999312, 0.99997664,
       0.99997664, 0.99997664, 0.99997664, 0.99992585, 0.99992585,
       0.99992585, 0.99992585, 0.99978045, 0.99978045, 0.99978045,
       0.99978045, 0.99939593, 0.99939593, 0.99939593, 0.99939593,
       0.99846143, 0.99846143, 0.99846143, 0.99846143, 0.99638683,
       0.99638683, 0.99638683, 0.99638683, 0.99220475, 0.99220475,
       0.99220475, 0.99220475, 0.98458761, 0.98458761, 0.98458761,
       0.98458761, 0.9720855 , 0.9720855 , 0.9720855 , 0.9720855 ,
       0.95357426, 0.95357426, 0.95357426, 0.95357426, 0.92870343,
       0.92870343, 0.92870343, 0.92870343, 0.89804865, 0.89804865,
       0.89804865, 0.89804865, 0.86284217, 0.86284217, 0.86284217,
       0.86284217, 0.82441149, 0.82441149, 0.82441149, 0.82441149,
       0.78436898, 0.78436898, 0.78436898, 0.78436898, 0.74552409,
       0.74552409, 0.74552409, 0.74552409, 0.70888758, 0.70888758,
       0.70888758, 0.70888758, 0.67437483, 0.67437483, 0.67437483,
       0.67437483, 0.6430066 , 0.6430066 , 0.6430066 , 0.6430066 ,
       0.61348618, 0.61348618, 0.61348618, 0.61348618, 0.59349049,
       0.59349049, 0.59349049, 0.59349049, 0.57331869, 0.57331869,
       0.57331869, 0.57331869, 0.56704679, 0.56704679, 0.56704679,
       0.56704679, 0.56447692, 0.56447692, 0.56447692, 0.56447692,
       0.56362867, 0.56362867, 0.56362867, 0.56362867, 0.56531162,
       0.56531162, 0.56531162, 0.56531162, 0.567019  , 0.567019  ,
       0.567019  , 0.567019  , 0.56709383, 0.56709383, 0.56709383,
       0.56709383, 0.5667092 , 0.5667092 , 0.5667092 , 0.5667092 ,
       0.56824252, 0.56824252, 0.56824252, 0.56824252, 0.58236395,
       0.58236395, 0.58236395, 0.58236395, 0.6459472 , 0.6459472 ,
       0.6459472 , 0.6459472 , 0.84807929, 0.84807929, 0.84807929,
       0.84807929, 1.34919174, 1.34919174, 1.34919174, 1.34919174,
       2.33541132, 2.33541132, 2.33541132, 2.33541132, 3.2926407 ,
       3.2926407 , 3.2926407 , 3.2926407 , 3.37752881, 3.37752881,
       3.37752881, 3.37752881, 2.16954992, 2.16954992, 2.16954992,
       2.16954992, 1.1172986 , 1.1172986 , 1.1172986 , 1.1172986 ,
       1.00560841, 1.00560841, 1.00560841, 1.00560841, 1.00001853,
       1.00001853, 1.00001853, 1.00001853, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.04607737e-07, 2.04607737e-07, 2.04607737e-07, 2.04607737e-07,
       1.04753503e-06, 1.04753503e-06, 1.04753503e-06, 1.04753503e-06,
       4.52318125e-06, 4.52318125e-06, 4.52318125e-06, 4.52318125e-06,
       1.84864298e-05, 1.84864298e-05, 1.84864298e-05, 1.84864298e-05,
       7.11599517e-05, 7.11599517e-05, 7.11599517e-05, 7.11599517e-05,
       2.57499723e-04, 2.57499723e-04, 2.57499723e-04, 2.57499723e-04,
       8.73945333e-04, 8.73945333e-04, 8.73945333e-04, 8.73945333e-04,
       2.77466387e-03, 2.77466387e-03, 2.77466387e-03, 2.77466387e-03,
       8.21545316e-03, 8.21545316e-03, 8.21545316e-03, 8.21545316e-03,
       2.26072838e-02, 2.26072838e-02, 2.26072838e-02, 2.26072838e-02,
       5.76012133e-02, 5.76012133e-02, 5.76012133e-02, 5.76012133e-02,
       1.35378501e-01, 1.35378501e-01, 1.35378501e-01, 1.35378501e-01,
       2.92554805e-01, 2.92554805e-01, 2.92554805e-01, 2.92554805e-01,
       5.80205845e-01, 5.80205845e-01, 5.80205845e-01, 5.80205845e-01,
       1.05628947e+00, 1.05628947e+00, 1.05628947e+00, 1.05628947e+00,
       1.77052666e+00, 1.77052666e+00, 1.77052666e+00, 1.77052666e+00,
       2.74829898e+00, 2.74829898e+00, 2.74829898e+00, 2.74829898e+00,
       3.98331961e+00, 3.98331961e+00, 3.98331961e+00, 3.98331961e+00,
       5.44451310e+00, 5.44451310e+00, 5.44451310e+00, 5.44451310e+00,
       7.09514684e+00, 7.09514684e+00, 7.09514684e+00, 7.09514684e+00,
       8.87295070e+00, 8.87295070e+00, 8.87295070e+00, 8.87295070e+00,
       1.06594721e+01, 1.06594721e+01, 1.06594721e+01, 1.06594721e+01,
       1.24293602e+01, 1.24293602e+01, 1.24293602e+01, 1.24293602e+01,
       1.41607204e+01, 1.41607204e+01, 1.41607204e+01, 1.41607204e+01,
       1.58187383e+01, 1.58187383e+01, 1.58187383e+01, 1.58187383e+01,
       1.73419873e+01, 1.73419873e+01, 1.73419873e+01, 1.73419873e+01,
       1.86283641e+01, 1.86283641e+01, 1.86283641e+01, 1.86283641e+01,
       1.95639138e+01, 1.95639138e+01, 1.95639138e+01, 1.95639138e+01,
       2.00736039e+01, 2.00736039e+01, 2.00736039e+01, 2.00736039e+01,
       2.02330193e+01, 2.02330193e+01, 2.02330193e+01, 2.02330193e+01,
       2.02158212e+01, 2.02158212e+01, 2.02158212e+01, 2.02158212e+01,
       2.00862699e+01, 2.00862699e+01, 2.00862699e+01, 2.00862699e+01,
       2.00336687e+01, 2.00336687e+01, 2.00336687e+01, 2.00336687e+01,
       2.00150798e+01, 2.00150798e+01, 2.00150798e+01, 2.00150798e+01,
       2.00060876e+01, 2.00060876e+01, 2.00060876e+01, 2.00060876e+01,
       1.99998383e+01, 1.99998383e+01, 1.99998383e+01, 1.99998383e+01,
       1.99906385e+01, 1.99906385e+01, 1.99906385e+01, 1.99906385e+01,
       1.99726435e+01, 1.99726435e+01, 1.99726435e+01, 1.99726435e+01,
       1.99540496e+01, 1.99540496e+01, 1.99540496e+01, 1.99540496e+01,
       1.99172472e+01, 1.99172472e+01, 1.99172472e+01, 1.99172472e+01,
       1.97905611e+01, 1.97905611e+01, 1.97905611e+01, 1.97905611e+01,
       1.92093064e+01, 1.92093064e+01, 1.92093064e+01, 1.92093064e+01,
       1.66360985e+01, 1.66360985e+01, 1.66360985e+01, 1.66360985e+01,
       8.75489385e+00, 8.75489385e+00, 8.75489385e+00, 8.75489385e+00,
       7.20452697e-01, 7.20452697e-01, 7.20452697e-01, 7.20452697e-01,
       5.43172134e-03, 5.43172134e-03, 5.43172134e-03, 5.43172134e-03,
       2.27604406e-06, 2.27604406e-06, 2.27604406e-06, 2.27604406e-06,
       3.38472840e-10, 3.38472840e-10, 3.38472840e-10, 3.38472840e-10,
       5.10071735e-14, 5.10071735e-14, 5.10071735e-14, 5.10071735e-14,
       7.83554591e-18, 7.83554591e-18, 7.83554591e-18, 7.83554591e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999992e+02, 9.99999992e+02, 9.99999992e+02, 9.99999992e+02,
       9.99999961e+02, 9.99999961e+02, 9.99999961e+02, 9.99999961e+02,
       9.99999831e+02, 9.99999831e+02, 9.99999831e+02, 9.99999831e+02,
       9.99999308e+02, 9.99999308e+02, 9.99999308e+02, 9.99999308e+02,
       9.99997337e+02, 9.99997337e+02, 9.99997337e+02, 9.99997337e+02,
       9.99990365e+02, 9.99990365e+02, 9.99990365e+02, 9.99990365e+02,
       9.99967300e+02, 9.99967300e+02, 9.99967300e+02, 9.99967300e+02,
       9.99896187e+02, 9.99896187e+02, 9.99896187e+02, 9.99896187e+02,
       9.99692651e+02, 9.99692651e+02, 9.99692651e+02, 9.99692651e+02,
       9.99154448e+02, 9.99154448e+02, 9.99154448e+02, 9.99154448e+02,
       9.97846913e+02, 9.97846913e+02, 9.97846913e+02, 9.97846913e+02,
       9.94946365e+02, 9.94946365e+02, 9.94946365e+02, 9.94946365e+02,
       9.89107997e+02, 9.89107997e+02, 9.89107997e+02, 9.89107997e+02,
       9.78502508e+02, 9.78502508e+02, 9.78502508e+02, 9.78502508e+02,
       9.61171766e+02, 9.61171766e+02, 9.61171766e+02, 9.61171766e+02,
       9.35679962e+02, 9.35679962e+02, 9.35679962e+02, 9.35679962e+02,
       9.01743661e+02, 9.01743661e+02, 9.01743661e+02, 9.01743661e+02,
       8.60410587e+02, 8.60410587e+02, 8.60410587e+02, 8.60410587e+02,
       8.13626053e+02, 8.13626053e+02, 8.13626053e+02, 8.13626053e+02,
       7.63416647e+02, 7.63416647e+02, 7.63416647e+02, 7.63416647e+02,
       7.12019797e+02, 7.12019797e+02, 7.12019797e+02, 7.12019797e+02,
       6.63120871e+02, 6.63120871e+02, 6.63120871e+02, 6.63120871e+02,
       6.17966596e+02, 6.17966596e+02, 6.17966596e+02, 6.17966596e+02,
       5.76387663e+02, 5.76387663e+02, 5.76387663e+02, 5.76387663e+02,
       5.38762205e+02, 5.38762205e+02, 5.38762205e+02, 5.38762205e+02,
       5.06102905e+02, 5.06102905e+02, 5.06102905e+02, 5.06102905e+02,
       4.79873679e+02, 4.79873679e+02, 4.79873679e+02, 4.79873679e+02,
       4.61632451e+02, 4.61632451e+02, 4.61632451e+02, 4.61632451e+02,
       4.51822663e+02, 4.51822663e+02, 4.51822663e+02, 4.51822663e+02,
       4.48755045e+02, 4.48755045e+02, 4.48755045e+02, 4.48755045e+02,
       4.49111914e+02, 4.49111914e+02, 4.49111914e+02, 4.49111914e+02,
       4.51654090e+02, 4.51654090e+02, 4.51654090e+02, 4.51654090e+02,
       4.52718346e+02, 4.52718346e+02, 4.52718346e+02, 4.52718346e+02,
       4.52919431e+02, 4.52919431e+02, 4.52919431e+02, 4.52919431e+02,
       4.52976550e+02, 4.52976550e+02, 4.52976550e+02, 4.52976550e+02,
       4.53103923e+02, 4.53103923e+02, 4.53103923e+02, 4.53103923e+02,
       4.53388509e+02, 4.53388509e+02, 4.53388509e+02, 4.53388509e+02,
       4.53898765e+02, 4.53898765e+02, 4.53898765e+02, 4.53898765e+02,
       4.54482141e+02, 4.54482141e+02, 4.54482141e+02, 4.54482141e+02,
       4.55085093e+02, 4.55085093e+02, 4.55085093e+02, 4.55085093e+02,
       4.52596174e+02, 4.52596174e+02, 4.52596174e+02, 4.52596174e+02,
       4.27900465e+02, 4.27900465e+02, 4.27900465e+02, 4.27900465e+02,
       3.14451641e+02, 3.14451641e+02, 3.14451641e+02, 3.14451641e+02,
       8.65631679e+01, 8.65631679e+01, 8.65631679e+01, 8.65631679e+01,
       2.41830497e+00, 2.41830497e+00, 2.41830497e+00, 2.41830497e+00,
       1.27132333e-02, 1.27132333e-02, 1.27132333e-02, 1.27132333e-02,
       1.00002685e-02, 1.00002685e-02, 1.00002685e-02, 1.00002685e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999998, 0.99999998, 0.99999998, 0.99999998, 0.99999989,
       0.99999989, 0.99999989, 0.99999989, 0.99999957, 0.99999957,
       0.99999957, 0.99999957, 0.99999839, 0.99999839, 0.99999839,
       0.99999839, 0.99999423, 0.99999423, 0.99999423, 0.99999423,
       0.99998062, 0.99998062, 0.99998062, 0.99998062, 0.99993892,
       0.99993892, 0.99993892, 0.99993892, 0.99982004, 0.99982004,
       0.99982004, 0.99982004, 0.99950587, 0.99950587, 0.99950587,
       0.99950587, 0.99874031, 0.99874031, 0.99874031, 0.99874031,
       0.99702982, 0.99702982, 0.99702982, 0.99702982, 0.99354599,
       0.99354599, 0.99354599, 0.99354599, 0.98711067, 0.98711067,
       0.98711067, 0.98711067, 0.97636406, 0.97636406, 0.97636406,
       0.97636406, 0.96013913, 0.96013913, 0.96013913, 0.96013913,
       0.93789515, 0.93789515, 0.93789515, 0.93789515, 0.90994657,
       0.90994657, 0.90994657, 0.90994657, 0.8773198 , 0.8773198 ,
       0.8773198 , 0.8773198 , 0.84131053, 0.84131053, 0.84131053,
       0.84131053, 0.80309318, 0.80309318, 0.80309318, 0.80309318,
       0.76488582, 0.76488582, 0.76488582, 0.76488582, 0.72862882,
       0.72862882, 0.72862882, 0.72862882, 0.69424027, 0.69424027,
       0.69424027, 0.69424027, 0.66187235, 0.66187235, 0.66187235,
       0.66187235, 0.63295763, 0.63295763, 0.63295763, 0.63295763,
       0.60550311, 0.60550311, 0.60550311, 0.60550311, 0.58821214,
       0.58821214, 0.58821214, 0.58821214, 0.57094445, 0.57094445,
       0.57094445, 0.57094445, 0.56567273, 0.56567273, 0.56567273,
       0.56567273, 0.56457433, 0.56457433, 0.56457433, 0.56457433,
       0.56452234, 0.56452234, 0.56452234, 0.56452234, 0.56563963,
       0.56563963, 0.56563963, 0.56563963, 0.56692819, 0.56692819,
       0.56692819, 0.56692819, 0.56718804, 0.56718804, 0.56718804,
       0.56718804, 0.56693567, 0.56693567, 0.56693567, 0.56693567,
       0.56767338, 0.56767338, 0.56767338, 0.56767338, 0.57613836,
       0.57613836, 0.57613836, 0.57613836, 0.61774062, 0.61774062,
       0.61774062, 0.61774062, 0.75887044, 0.75887044, 0.75887044,
       0.75887044, 1.13039106, 1.13039106, 1.13039106, 1.13039106,
       1.91581709, 1.91581709, 1.91581709, 1.91581709, 3.05001354,
       3.05001354, 3.05001354, 3.05001354, 3.50876949, 3.50876949,
       3.50876949, 3.50876949, 2.9569208 , 2.9569208 , 2.9569208 ,
       2.9569208 , 1.40056125, 1.40056125, 1.40056125, 1.40056125,
       1.02615253, 1.02615253, 1.02615253, 1.02615253, 1.00051302,
       1.00051302, 1.00051302, 1.00051302, 1.00000017, 1.00000017,
       1.00000017, 1.00000017, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.31212456e-07, 8.31212456e-07, 8.31212456e-07, 8.31212456e-07,
       3.97120544e-06, 3.97120544e-06, 3.97120544e-06, 3.97120544e-06,
       1.59059987e-05, 1.59059987e-05, 1.59059987e-05, 1.59059987e-05,
       6.03664366e-05, 6.03664366e-05, 6.03664366e-05, 6.03664366e-05,
       2.15805643e-04, 2.15805643e-04, 2.15805643e-04, 2.15805643e-04,
       7.25243296e-04, 7.25243296e-04, 7.25243296e-04, 7.25243296e-04,
       2.28544773e-03, 2.28544773e-03, 2.28544773e-03, 2.28544773e-03,
       6.73404888e-03, 6.73404888e-03, 6.73404888e-03, 6.73404888e-03,
       1.84918575e-02, 1.84918575e-02, 1.84918575e-02, 1.84918575e-02,
       4.71552363e-02, 4.71552363e-02, 4.71552363e-02, 4.71552363e-02,
       1.11259276e-01, 1.11259276e-01, 1.11259276e-01, 1.11259276e-01,
       2.42090826e-01, 2.42090826e-01, 2.42090826e-01, 2.42090826e-01,
       4.84732171e-01, 4.84732171e-01, 4.84732171e-01, 4.84732171e-01,
       8.92811756e-01, 8.92811756e-01, 8.92811756e-01, 8.92811756e-01,
       1.51595482e+00, 1.51595482e+00, 1.51595482e+00, 1.51595482e+00,
       2.38448316e+00, 2.38448316e+00, 2.38448316e+00, 2.38448316e+00,
       3.49994899e+00, 3.49994899e+00, 3.49994899e+00, 3.49994899e+00,
       4.83781455e+00, 4.83781455e+00, 4.83781455e+00, 4.83781455e+00,
       6.36160827e+00, 6.36160827e+00, 6.36160827e+00, 6.36160827e+00,
       8.03629840e+00, 8.03629840e+00, 8.03629840e+00, 8.03629840e+00,
       9.75414415e+00, 9.75414415e+00, 9.75414415e+00, 9.75414415e+00,
       1.14703604e+01, 1.14703604e+01, 1.14703604e+01, 1.14703604e+01,
       1.31577649e+01, 1.31577649e+01, 1.31577649e+01, 1.31577649e+01,
       1.48036949e+01, 1.48036949e+01, 1.48036949e+01, 1.48036949e+01,
       1.63662284e+01, 1.63662284e+01, 1.63662284e+01, 1.63662284e+01,
       1.77761853e+01, 1.77761853e+01, 1.77761853e+01, 1.77761853e+01,
       1.89288293e+01, 1.89288293e+01, 1.89288293e+01, 1.89288293e+01,
       1.97266212e+01, 1.97266212e+01, 1.97266212e+01, 1.97266212e+01,
       2.01268304e+01, 2.01268304e+01, 2.01268304e+01, 2.01268304e+01,
       2.02304156e+01, 2.02304156e+01, 2.02304156e+01, 2.02304156e+01,
       2.01855356e+01, 2.01855356e+01, 2.01855356e+01, 2.01855356e+01,
       2.00664233e+01, 2.00664233e+01, 2.00664233e+01, 2.00664233e+01,
       2.00284165e+01, 2.00284165e+01, 2.00284165e+01, 2.00284165e+01,
       2.00164011e+01, 2.00164011e+01, 2.00164011e+01, 2.00164011e+01,
       2.00075438e+01, 2.00075438e+01, 2.00075438e+01, 2.00075438e+01,
       1.99976330e+01, 1.99976330e+01, 1.99976330e+01, 1.99976330e+01,
       1.99833671e+01, 1.99833671e+01, 1.99833671e+01, 1.99833671e+01,
       1.99631313e+01, 1.99631313e+01, 1.99631313e+01, 1.99631313e+01,
       1.99444762e+01, 1.99444762e+01, 1.99444762e+01, 1.99444762e+01,
       1.99229151e+01, 1.99229151e+01, 1.99229151e+01, 1.99229151e+01,
       1.98546912e+01, 1.98546912e+01, 1.98546912e+01, 1.98546912e+01,
       1.95683651e+01, 1.95683651e+01, 1.95683651e+01, 1.95683651e+01,
       1.82512117e+01, 1.82512117e+01, 1.82512117e+01, 1.82512117e+01,
       1.31946812e+01, 1.31946812e+01, 1.31946812e+01, 1.31946812e+01,
       3.22197950e+00, 3.22197950e+00, 3.22197950e+00, 3.22197950e+00,
       7.26448767e-02, 7.26448767e-02, 7.26448767e-02, 7.26448767e-02,
       1.16941338e-04, 1.16941338e-04, 1.16941338e-04, 1.16941338e-04,
       2.00485498e-08, 2.00485498e-08, 2.00485498e-08, 2.00485498e-08,
       3.19846760e-12, 3.19846760e-12, 3.19846760e-12, 3.19846760e-12,
       4.91826059e-16, 4.91826059e-16, 4.91826059e-16, 4.91826059e-16,
       6.67643390e-20, 6.67643390e-20, 6.67643390e-20, 6.67643390e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999969e+02, 9.99999969e+02, 9.99999969e+02, 9.99999969e+02,
       9.99999851e+02, 9.99999851e+02, 9.99999851e+02, 9.99999851e+02,
       9.99999405e+02, 9.99999405e+02, 9.99999405e+02, 9.99999405e+02,
       9.99997741e+02, 9.99997741e+02, 9.99997741e+02, 9.99997741e+02,
       9.99991925e+02, 9.99991925e+02, 9.99991925e+02, 9.99991925e+02,
       9.99972864e+02, 9.99972864e+02, 9.99972864e+02, 9.99972864e+02,
       9.99914490e+02, 9.99914490e+02, 9.99914490e+02, 9.99914490e+02,
       9.99748065e+02, 9.99748065e+02, 9.99748065e+02, 9.99748065e+02,
       9.99308322e+02, 9.99308322e+02, 9.99308322e+02, 9.99308322e+02,
       9.98237056e+02, 9.98237056e+02, 9.98237056e+02, 9.98237056e+02,
       9.95845011e+02, 9.95845011e+02, 9.95845011e+02, 9.95845011e+02,
       9.90979078e+02, 9.90979078e+02, 9.90979078e+02, 9.90979078e+02,
       9.82011051e+02, 9.82011051e+02, 9.82011051e+02, 9.82011051e+02,
       9.67091266e+02, 9.67091266e+02, 9.67091266e+02, 9.67091266e+02,
       9.44695117e+02, 9.44695117e+02, 9.44695117e+02, 9.44695117e+02,
       9.14239174e+02, 9.14239174e+02, 9.14239174e+02, 9.14239174e+02,
       8.76379529e+02, 8.76379529e+02, 8.76379529e+02, 8.76379529e+02,
       8.32762793e+02, 8.32762793e+02, 8.32762793e+02, 8.32762793e+02,
       7.85366006e+02, 7.85366006e+02, 7.85366006e+02, 7.85366006e+02,
       7.35932360e+02, 7.35932360e+02, 7.35932360e+02, 7.35932360e+02,
       6.87323424e+02, 6.87323424e+02, 6.87323424e+02, 6.87323424e+02,
       6.42175077e+02, 6.42175077e+02, 6.42175077e+02, 6.42175077e+02,
       6.00145773e+02, 6.00145773e+02, 6.00145773e+02, 6.00145773e+02,
       5.61538265e+02, 5.61538265e+02, 5.61538265e+02, 5.61538265e+02,
       5.26840609e+02, 5.26840609e+02, 5.26840609e+02, 5.26840609e+02,
       4.97140791e+02, 4.97140791e+02, 4.97140791e+02, 4.97140791e+02,
       4.73884379e+02, 4.73884379e+02, 4.73884379e+02, 4.73884379e+02,
       4.58462049e+02, 4.58462049e+02, 4.58462049e+02, 4.58462049e+02,
       4.50871407e+02, 4.50871407e+02, 4.50871407e+02, 4.50871407e+02,
       4.48847969e+02, 4.48847969e+02, 4.48847969e+02, 4.48847969e+02,
       4.49672702e+02, 4.49672702e+02, 4.49672702e+02, 4.49672702e+02,
       4.51922948e+02, 4.51922948e+02, 4.51922948e+02, 4.51922948e+02,
       4.52785224e+02, 4.52785224e+02, 4.52785224e+02, 4.52785224e+02,
       4.53005867e+02, 4.53005867e+02, 4.53005867e+02, 4.53005867e+02,
       4.53063737e+02, 4.53063737e+02, 4.53063737e+02, 4.53063737e+02,
       4.53160041e+02, 4.53160041e+02, 4.53160041e+02, 4.53160041e+02,
       4.53422261e+02, 4.53422261e+02, 4.53422261e+02, 4.53422261e+02,
       4.53914136e+02, 4.53914136e+02, 4.53914136e+02, 4.53914136e+02,
       4.54500339e+02, 4.54500339e+02, 4.54500339e+02, 4.54500339e+02,
       4.55295261e+02, 4.55295261e+02, 4.55295261e+02, 4.55295261e+02,
       4.55007290e+02, 4.55007290e+02, 4.55007290e+02, 4.55007290e+02,
       4.44699313e+02, 4.44699313e+02, 4.44699313e+02, 4.44699313e+02,
       3.84060326e+02, 3.84060326e+02, 3.84060326e+02, 3.84060326e+02,
       1.91713252e+02, 1.91713252e+02, 1.91713252e+02, 1.91713252e+02,
       1.83826676e+01, 1.83826676e+01, 1.83826676e+01, 1.83826676e+01,
       1.13135376e-01, 1.13135376e-01, 1.13135376e-01, 1.13135376e-01,
       1.00165770e-02, 1.00165770e-02, 1.00165770e-02, 1.00165770e-02,
       1.00000024e-02, 1.00000024e-02, 1.00000024e-02, 1.00000024e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999992, 0.99999992, 0.99999992, 0.99999992, 0.99999963,
       0.99999963, 0.99999963, 0.99999963, 0.99999863, 0.99999863,
       0.99999863, 0.99999863, 0.99999517, 0.99999517, 0.99999517,
       0.99999517, 0.99998392, 0.99998392, 0.99998392, 0.99998392,
       0.99994967, 0.99994967, 0.99994967, 0.99994967, 0.99985237,
       0.99985237, 0.99985237, 0.99985237, 0.99959542, 0.99959542,
       0.99959542, 0.99959542, 0.9989677 , 0.9989677 , 0.9989677 ,
       0.9989677 , 0.99755668, 0.99755668, 0.99755668, 0.99755668,
       0.99465483, 0.99465483, 0.99465483, 0.99465483, 0.98922278,
       0.98922278, 0.98922278, 0.98922278, 0.98000087, 0.98000087,
       0.98000087, 0.98000087, 0.96581386, 0.96581386, 0.96581386,
       0.96581386, 0.94597479, 0.94597479, 0.94597479, 0.94597479,
       0.92056352, 0.92056352, 0.92056352, 0.92056352, 0.89039   ,
       0.89039   , 0.89039   , 0.89039   , 0.85665144, 0.85665144,
       0.85665144, 0.85665144, 0.82046164, 0.82046164, 0.82046164,
       0.82046164, 0.78331999, 0.78331999, 0.78331999, 0.78331999,
       0.74742401, 0.74742401, 0.74742401, 0.74742401, 0.71331198,
       0.71331198, 0.71331198, 0.71331198, 0.68102127, 0.68102127,
       0.68102127, 0.68102127, 0.65059716, 0.65059716, 0.65059716,
       0.65059716, 0.6240258 , 0.6240258 , 0.6240258 , 0.6240258 ,
       0.59855044, 0.59855044, 0.59855044, 0.59855044, 0.58370503,
       0.58370503, 0.58370503, 0.58370503, 0.56923565, 0.56923565,
       0.56923565, 0.56923565, 0.5647148 , 0.5647148 , 0.5647148 ,
       0.5647148 , 0.5645406 , 0.5645406 , 0.5645406 , 0.5645406 ,
       0.56538346, 0.56538346, 0.56538346, 0.56538346, 0.56608138,
       0.56608138, 0.56608138, 0.56608138, 0.56681268, 0.56681268,
       0.56681268, 0.56681268, 0.56720477, 0.56720477, 0.56720477,
       0.56720477, 0.56710473, 0.56710473, 0.56710473, 0.56710473,
       0.56748519, 0.56748519, 0.56748519, 0.56748519, 0.5725192 ,
       0.5725192 , 0.5725192 , 0.5725192 , 0.59936974, 0.59936974,
       0.59936974, 0.59936974, 0.69655554, 0.69655554, 0.69655554,
       0.69655554, 0.9676065 , 0.9676065 , 0.9676065 , 0.9676065 ,
       1.57749515, 1.57749515, 1.57749515, 1.57749515, 2.65892925,
       2.65892925, 2.65892925, 2.65892925, 3.47677245, 3.47677245,
       3.47677245, 3.47677245, 3.4415978 , 3.4415978 , 3.4415978 ,
       3.4415978 , 2.06542454, 2.06542454, 2.06542454, 2.06542454,
       1.09918894, 1.09918894, 1.09918894, 1.09918894, 1.00437867,
       1.00437867, 1.00437867, 1.00437867, 1.00001045, 1.00001045,
       1.00001045, 1.00001045, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.06442751e-06, 3.06442751e-06, 3.06442751e-06, 3.06442751e-06,
       1.37096058e-05, 1.37096058e-05, 1.37096058e-05, 1.37096058e-05,
       5.11071441e-05, 5.11071441e-05, 5.11071441e-05, 5.11071441e-05,
       1.80696441e-04, 1.80696441e-04, 1.80696441e-04, 1.80696441e-04,
       6.01731053e-04, 6.01731053e-04, 6.01731053e-04, 6.01731053e-04,
       1.88320977e-03, 1.88320977e-03, 1.88320977e-03, 1.88320977e-03,
       5.52400997e-03, 5.52400997e-03, 5.52400997e-03, 5.52400997e-03,
       1.51400717e-02, 1.51400717e-02, 1.51400717e-02, 1.51400717e-02,
       3.86400960e-02, 3.86400960e-02, 3.86400960e-02, 3.86400960e-02,
       9.15052429e-02, 9.15052429e-02, 9.15052429e-02, 9.15052429e-02,
       2.00411209e-01, 2.00411209e-01, 2.00411209e-01, 2.00411209e-01,
       4.04958870e-01, 4.04958870e-01, 4.04958870e-01, 4.04958870e-01,
       7.54311496e-01, 7.54311496e-01, 7.54311496e-01, 7.54311496e-01,
       1.29704807e+00, 1.29704807e+00, 1.29704807e+00, 1.29704807e+00,
       2.06709372e+00, 2.06709372e+00, 2.06709372e+00, 2.06709372e+00,
       3.07296603e+00, 3.07296603e+00, 3.07296603e+00, 3.07296603e+00,
       4.29705387e+00, 4.29705387e+00, 4.29705387e+00, 4.29705387e+00,
       5.70596036e+00, 5.70596036e+00, 5.70596036e+00, 5.70596036e+00,
       7.26745760e+00, 7.26745760e+00, 7.26745760e+00, 7.26745760e+00,
       8.91729908e+00, 8.91729908e+00, 8.91729908e+00, 8.91729908e+00,
       1.05722640e+01, 1.05722640e+01, 1.05722640e+01, 1.05722640e+01,
       1.22139882e+01, 1.22139882e+01, 1.22139882e+01, 1.22139882e+01,
       1.38271695e+01, 1.38271695e+01, 1.38271695e+01, 1.38271695e+01,
       1.53909420e+01, 1.53909420e+01, 1.53909420e+01, 1.53909420e+01,
       1.68595079e+01, 1.68595079e+01, 1.68595079e+01, 1.68595079e+01,
       1.81589814e+01, 1.81589814e+01, 1.81589814e+01, 1.81589814e+01,
       1.91837824e+01, 1.91837824e+01, 1.91837824e+01, 1.91837824e+01,
       1.98529322e+01, 1.98529322e+01, 1.98529322e+01, 1.98529322e+01,
       2.01599348e+01, 2.01599348e+01, 2.01599348e+01, 2.01599348e+01,
       2.02242115e+01, 2.02242115e+01, 2.02242115e+01, 2.02242115e+01,
       2.01558715e+01, 2.01558715e+01, 2.01558715e+01, 2.01558715e+01,
       2.00527078e+01, 2.00527078e+01, 2.00527078e+01, 2.00527078e+01,
       2.00224238e+01, 2.00224238e+01, 2.00224238e+01, 2.00224238e+01,
       2.00150070e+01, 2.00150070e+01, 2.00150070e+01, 2.00150070e+01,
       2.00079684e+01, 2.00079684e+01, 2.00079684e+01, 2.00079684e+01,
       1.99973046e+01, 1.99973046e+01, 1.99973046e+01, 1.99973046e+01,
       1.99790344e+01, 1.99790344e+01, 1.99790344e+01, 1.99790344e+01,
       1.99548828e+01, 1.99548828e+01, 1.99548828e+01, 1.99548828e+01,
       1.99337003e+01, 1.99337003e+01, 1.99337003e+01, 1.99337003e+01,
       1.99182352e+01, 1.99182352e+01, 1.99182352e+01, 1.99182352e+01,
       1.98796077e+01, 1.98796077e+01, 1.98796077e+01, 1.98796077e+01,
       1.97369800e+01, 1.97369800e+01, 1.97369800e+01, 1.97369800e+01,
       1.90826196e+01, 1.90826196e+01, 1.90826196e+01, 1.90826196e+01,
       1.62655591e+01, 1.62655591e+01, 1.62655591e+01, 1.62655591e+01,
       8.02647381e+00, 8.02647381e+00, 8.02647381e+00, 8.02647381e+00,
       5.66390276e-01, 5.66390276e-01, 5.66390276e-01, 5.66390276e-01,
       3.57075007e-03, 3.57075007e-03, 3.57075007e-03, 3.57075007e-03,
       1.26227765e-06, 1.26227765e-06, 1.26227765e-06, 1.26227765e-06,
       1.87417390e-10, 1.87417390e-10, 1.87417390e-10, 1.87417390e-10,
       2.86649447e-14, 2.86649447e-14, 2.86649447e-14, 2.86649447e-14,
       4.45854151e-18, 4.45854151e-18, 4.45854151e-18, 4.45854151e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999885e+02, 9.99999885e+02, 9.99999885e+02, 9.99999885e+02,
       9.99999487e+02, 9.99999487e+02, 9.99999487e+02, 9.99999487e+02,
       9.99998088e+02, 9.99998088e+02, 9.99998088e+02, 9.99998088e+02,
       9.99993239e+02, 9.99993239e+02, 9.99993239e+02, 9.99993239e+02,
       9.99977486e+02, 9.99977486e+02, 9.99977486e+02, 9.99977486e+02,
       9.99929539e+02, 9.99929539e+02, 9.99929539e+02, 9.99929539e+02,
       9.99793331e+02, 9.99793331e+02, 9.99793331e+02, 9.99793331e+02,
       9.99433661e+02, 9.99433661e+02, 9.99433661e+02, 9.99433661e+02,
       9.98555189e+02, 9.98555189e+02, 9.98555189e+02, 9.98555189e+02,
       9.96581570e+02, 9.96581570e+02, 9.96581570e+02, 9.96581570e+02,
       9.92526877e+02, 9.92526877e+02, 9.92526877e+02, 9.92526877e+02,
       9.84951309e+02, 9.84951309e+02, 9.84951309e+02, 9.84951309e+02,
       9.72131850e+02, 9.72131850e+02, 9.72131850e+02, 9.72131850e+02,
       9.52508972e+02, 9.52508972e+02, 9.52508972e+02, 9.52508972e+02,
       9.25264888e+02, 9.25264888e+02, 9.25264888e+02, 9.25264888e+02,
       8.90701571e+02, 8.90701571e+02, 8.90701571e+02, 8.90701571e+02,
       8.50150128e+02, 8.50150128e+02, 8.50150128e+02, 8.50150128e+02,
       8.05448379e+02, 8.05448379e+02, 8.05448379e+02, 8.05448379e+02,
       7.58271461e+02, 7.58271461e+02, 7.58271461e+02, 7.58271461e+02,
       7.10634261e+02, 7.10634261e+02, 7.10634261e+02, 7.10634261e+02,
       6.65455423e+02, 6.65455423e+02, 6.65455423e+02, 6.65455423e+02,
       6.23352527e+02, 6.23352527e+02, 6.23352527e+02, 6.23352527e+02,
       5.84182279e+02, 5.84182279e+02, 5.84182279e+02, 5.84182279e+02,
       5.48269428e+02, 5.48269428e+02, 5.48269428e+02, 5.48269428e+02,
       5.16272042e+02, 5.16272042e+02, 5.16272042e+02, 5.16272042e+02,
       4.89358572e+02, 4.89358572e+02, 4.89358572e+02, 4.89358572e+02,
       4.68892875e+02, 4.68892875e+02, 4.68892875e+02, 4.68892875e+02,
       4.55991188e+02, 4.55991188e+02, 4.55991188e+02, 4.55991188e+02,
       4.50239990e+02, 4.50239990e+02, 4.50239990e+02, 4.50239990e+02,
       4.49001549e+02, 4.49001549e+02, 4.49001549e+02, 4.49001549e+02,
       4.50267586e+02, 4.50267586e+02, 4.50267586e+02, 4.50267586e+02,
       4.52156184e+02, 4.52156184e+02, 4.52156184e+02, 4.52156184e+02,
       4.52802596e+02, 4.52802596e+02, 4.52802596e+02, 4.52802596e+02,
       4.53038480e+02, 4.53038480e+02, 4.53038480e+02, 4.53038480e+02,
       4.53140657e+02, 4.53140657e+02, 4.53140657e+02, 4.53140657e+02,
       4.53267209e+02, 4.53267209e+02, 4.53267209e+02, 4.53267209e+02,
       4.53531394e+02, 4.53531394e+02, 4.53531394e+02, 4.53531394e+02,
       4.53971062e+02, 4.53971062e+02, 4.53971062e+02, 4.53971062e+02,
       4.54514025e+02, 4.54514025e+02, 4.54514025e+02, 4.54514025e+02,
       4.55259395e+02, 4.55259395e+02, 4.55259395e+02, 4.55259395e+02,
       4.55867897e+02, 4.55867897e+02, 4.55867897e+02, 4.55867897e+02,
       4.52235462e+02, 4.52235462e+02, 4.52235462e+02, 4.52235462e+02,
       4.22918025e+02, 4.22918025e+02, 4.22918025e+02, 4.22918025e+02,
       2.98696478e+02, 2.98696478e+02, 2.98696478e+02, 2.98696478e+02,
       7.35671819e+01, 7.35671819e+01, 7.35671819e+01, 7.35671819e+01,
       1.73816088e+00, 1.73816088e+00, 1.73816088e+00, 1.73816088e+00,
       1.15098232e-02, 1.15098232e-02, 1.15098232e-02, 1.15098232e-02,
       1.00001491e-02, 1.00001491e-02, 1.00001491e-02, 1.00001491e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999972, 0.99999972, 0.99999972, 0.99999972, 0.99999884,
       0.99999884, 0.99999884, 0.99999884, 0.99999596, 0.99999596,
       0.99999596, 0.99999596, 0.99998666, 0.99998666, 0.99998666,
       0.99998666, 0.99995851, 0.99995851, 0.99995851, 0.99995851,
       0.99987881, 0.99987881, 0.99987881, 0.99987881, 0.99966846,
       0.99966846, 0.99966846, 0.99966846, 0.99915332, 0.99915332,
       0.99915332, 0.99915332, 0.99798882, 0.99798882, 0.99798882,
       0.99798882, 0.99557202, 0.99557202, 0.99557202, 0.99557202,
       0.99099076, 0.99099076, 0.99099076, 0.99099076, 0.98309025,
       0.98309025, 0.98309025, 0.98309025, 0.97071425, 0.97071425,
       0.97071425, 0.97071425, 0.95306962, 0.95306962, 0.95306962,
       0.95306962, 0.93003166, 0.93003166, 0.93003166, 0.93003166,
       0.90219494, 0.90219494, 0.90219494, 0.90219494, 0.8706268 ,
       0.8706268 , 0.8706268 , 0.8706268 , 0.83644936, 0.83644936,
       0.83644936, 0.83644936, 0.80070998, 0.80070998, 0.80070998,
       0.80070998, 0.76534052, 0.76534052, 0.76534052, 0.76534052,
       0.73160157, 0.73160157, 0.73160157, 0.73160157, 0.69941663,
       0.69941663, 0.69941663, 0.69941663, 0.66904404, 0.66904404,
       0.66904404, 0.66904404, 0.640412  , 0.640412  , 0.640412  ,
       0.640412  , 0.61609193, 0.61609193, 0.61609193, 0.61609193,
       0.59253553, 0.59253553, 0.59253553, 0.59253553, 0.57985082,
       0.57985082, 0.57985082, 0.57985082, 0.56807488, 0.56807488,
       0.56807488, 0.56807488, 0.56414175, 0.56414175, 0.56414175,
       0.56414175, 0.56447501, 0.56447501, 0.56447501, 0.56447501,
       0.56608222, 0.56608222, 0.56608222, 0.56608222, 0.5665232 ,
       0.5665232 , 0.5665232 , 0.5665232 , 0.56679339, 0.56679339,
       0.56679339, 0.56679339, 0.56717873, 0.56717873, 0.56717873,
       0.56717873, 0.5672011 , 0.5672011 , 0.5672011 , 0.5672011 ,
       0.56745182, 0.56745182, 0.56745182, 0.56745182, 0.57048317,
       0.57048317, 0.57048317, 0.57048317, 0.58763359, 0.58763359,
       0.58763359, 0.58763359, 0.65365865, 0.65365865, 0.65365865,
       0.65365865, 0.84867448, 0.84867448, 0.84867448, 0.84867448,
       1.31307086, 1.31307086, 1.31307086, 1.31307086, 2.21646901,
       2.21646901, 2.21646901, 2.21646901, 3.30517749, 3.30517749,
       3.30517749, 3.30517749, 3.62340282, 3.62340282, 3.62340282,
       3.62340282, 2.90056638, 2.90056638, 2.90056638, 2.90056638,
       1.33694683, 1.33694683, 1.33694683, 1.33694683, 1.0212743 ,
       1.0212743 , 1.0212743 , 1.0212743 , 1.00034859, 1.00034859,
       1.00034859, 1.00034859, 1.0000001 , 1.0000001 , 1.0000001 ,
       1.0000001 , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.03392125e-05, 1.03392125e-05, 1.03392125e-05, 1.03392125e-05,
       4.34400060e-05, 4.34400060e-05, 4.34400060e-05, 4.34400060e-05,
       1.51141917e-04, 1.51141917e-04, 1.51141917e-04, 1.51141917e-04,
       4.99195131e-04, 4.99195131e-04, 4.99195131e-04, 4.99195131e-04,
       1.55234811e-03, 1.55234811e-03, 1.55234811e-03, 1.55234811e-03,
       4.53464427e-03, 4.53464427e-03, 4.53464427e-03, 4.53464427e-03,
       1.24067118e-02, 1.24067118e-02, 1.24067118e-02, 1.24067118e-02,
       3.16898153e-02, 3.16898153e-02, 3.16898153e-02, 3.16898153e-02,
       7.53087747e-02, 7.53087747e-02, 7.53087747e-02, 7.53087747e-02,
       1.65962861e-01, 1.65962861e-01, 1.65962861e-01, 1.65962861e-01,
       3.38287464e-01, 3.38287464e-01, 3.38287464e-01, 3.38287464e-01,
       6.36985732e-01, 6.36985732e-01, 6.36985732e-01, 6.36985732e-01,
       1.10885693e+00, 1.10885693e+00, 1.10885693e+00, 1.10885693e+00,
       1.79021928e+00, 1.79021928e+00, 1.79021928e+00, 1.79021928e+00,
       2.69557108e+00, 2.69557108e+00, 2.69557108e+00, 2.69557108e+00,
       3.81416950e+00, 3.81416950e+00, 3.81416950e+00, 3.81416950e+00,
       5.11690819e+00, 5.11690819e+00, 5.11690819e+00, 5.11690819e+00,
       6.57068197e+00, 6.57068197e+00, 6.57068197e+00, 6.57068197e+00,
       8.14009276e+00, 8.14009276e+00, 8.14009276e+00, 8.14009276e+00,
       9.73476120e+00, 9.73476120e+00, 9.73476120e+00, 9.73476120e+00,
       1.13275023e+01, 1.13275023e+01, 1.13275023e+01, 1.13275023e+01,
       1.29006498e+01, 1.29006498e+01, 1.29006498e+01, 1.29006498e+01,
       1.44427973e+01, 1.44427973e+01, 1.44427973e+01, 1.44427973e+01,
       1.59276078e+01, 1.59276078e+01, 1.59276078e+01, 1.59276078e+01,
       1.73033647e+01, 1.73033647e+01, 1.73033647e+01, 1.73033647e+01,
       1.84940290e+01, 1.84940290e+01, 1.84940290e+01, 1.84940290e+01,
       1.93974938e+01, 1.93974938e+01, 1.93974938e+01, 1.93974938e+01,
       1.99500228e+01, 1.99500228e+01, 1.99500228e+01, 1.99500228e+01,
       2.01786156e+01, 2.01786156e+01, 2.01786156e+01, 2.01786156e+01,
       2.02141830e+01, 2.02141830e+01, 2.02141830e+01, 2.02141830e+01,
       2.01270312e+01, 2.01270312e+01, 2.01270312e+01, 2.01270312e+01,
       2.00438391e+01, 2.00438391e+01, 2.00438391e+01, 2.00438391e+01,
       2.00180478e+01, 2.00180478e+01, 2.00180478e+01, 2.00180478e+01,
       2.00116554e+01, 2.00116554e+01, 2.00116554e+01, 2.00116554e+01,
       2.00060169e+01, 2.00060169e+01, 2.00060169e+01, 2.00060169e+01,
       1.99957578e+01, 1.99957578e+01, 1.99957578e+01, 1.99957578e+01,
       1.99760299e+01, 1.99760299e+01, 1.99760299e+01, 1.99760299e+01,
       1.99495430e+01, 1.99495430e+01, 1.99495430e+01, 1.99495430e+01,
       1.99258351e+01, 1.99258351e+01, 1.99258351e+01, 1.99258351e+01,
       1.99068524e+01, 1.99068524e+01, 1.99068524e+01, 1.99068524e+01,
       1.98862615e+01, 1.98862615e+01, 1.98862615e+01, 1.98862615e+01,
       1.98134680e+01, 1.98134680e+01, 1.98134680e+01, 1.98134680e+01,
       1.94905556e+01, 1.94905556e+01, 1.94905556e+01, 1.94905556e+01,
       1.80230680e+01, 1.80230680e+01, 1.80230680e+01, 1.80230680e+01,
       1.26076173e+01, 1.26076173e+01, 1.26076173e+01, 1.26076173e+01,
       2.67311141e+00, 2.67311141e+00, 2.67311141e+00, 2.67311141e+00,
       5.14361403e-02, 5.14361403e-02, 5.14361403e-02, 5.14361403e-02,
       6.80950934e-05, 6.80950934e-05, 6.80950934e-05, 6.80950934e-05,
       1.13412667e-08, 1.13412667e-08, 1.13412667e-08, 1.13412667e-08,
       1.79486084e-12, 1.79486084e-12, 1.79486084e-12, 1.79486084e-12,
       2.73952290e-16, 2.73952290e-16, 2.73952290e-16, 2.73952290e-16,
       5.00064164e-20, 5.00064164e-20, 5.00064164e-20, 5.00064164e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99999613e+02, 9.99999613e+02, 9.99999613e+02, 9.99999613e+02,
       9.99998375e+02, 9.99998375e+02, 9.99998375e+02, 9.99998375e+02,
       9.99994345e+02, 9.99994345e+02, 9.99994345e+02, 9.99994345e+02,
       9.99981322e+02, 9.99981322e+02, 9.99981322e+02, 9.99981322e+02,
       9.99941918e+02, 9.99941918e+02, 9.99941918e+02, 9.99941918e+02,
       9.99830343e+02, 9.99830343e+02, 9.99830343e+02, 9.99830343e+02,
       9.99535884e+02, 9.99535884e+02, 9.99535884e+02, 9.99535884e+02,
       9.98814928e+02, 9.98814928e+02, 9.98814928e+02, 9.98814928e+02,
       9.97185851e+02, 9.97185851e+02, 9.97185851e+02, 9.97185851e+02,
       9.93807795e+02, 9.93807795e+02, 9.93807795e+02, 9.93807795e+02,
       9.87414745e+02, 9.87414745e+02, 9.87414745e+02, 9.87414745e+02,
       9.76420200e+02, 9.76420200e+02, 9.76420200e+02, 9.76420200e+02,
       9.59272359e+02, 9.59272359e+02, 9.59272359e+02, 9.59272359e+02,
       9.34979017e+02, 9.34979017e+02, 9.34979017e+02, 9.34979017e+02,
       9.03531113e+02, 9.03531113e+02, 9.03531113e+02, 9.03531113e+02,
       8.65943868e+02, 8.65943868e+02, 8.65943868e+02, 8.65943868e+02,
       8.23870991e+02, 8.23870991e+02, 8.23870991e+02, 8.23870991e+02,
       7.78998721e+02, 7.78998721e+02, 7.78998721e+02, 7.78998721e+02,
       7.32829097e+02, 7.32829097e+02, 7.32829097e+02, 7.32829097e+02,
       6.87867667e+02, 6.87867667e+02, 6.87867667e+02, 6.87867667e+02,
       6.45811417e+02, 6.45811417e+02, 6.45811417e+02, 6.45811417e+02,
       6.06420020e+02, 6.06420020e+02, 6.06420020e+02, 6.06420020e+02,
       5.69812260e+02, 5.69812260e+02, 5.69812260e+02, 5.69812260e+02,
       5.36391612e+02, 5.36391612e+02, 5.36391612e+02, 5.36391612e+02,
       5.06909342e+02, 5.06909342e+02, 5.06909342e+02, 5.06909342e+02,
       4.82613586e+02, 4.82613586e+02, 4.82613586e+02, 4.82613586e+02,
       4.64771665e+02, 4.64771665e+02, 4.64771665e+02, 4.64771665e+02,
       4.54120136e+02, 4.54120136e+02, 4.54120136e+02, 4.54120136e+02,
       4.49846503e+02, 4.49846503e+02, 4.49846503e+02, 4.49846503e+02,
       4.49195989e+02, 4.49195989e+02, 4.49195989e+02, 4.49195989e+02,
       4.50838120e+02, 4.50838120e+02, 4.50838120e+02, 4.50838120e+02,
       4.52365430e+02, 4.52365430e+02, 4.52365430e+02, 4.52365430e+02,
       4.52826151e+02, 4.52826151e+02, 4.52826151e+02, 4.52826151e+02,
       4.53036969e+02, 4.53036969e+02, 4.53036969e+02, 4.53036969e+02,
       4.53180502e+02, 4.53180502e+02, 4.53180502e+02, 4.53180502e+02,
       4.53367904e+02, 4.53367904e+02, 4.53367904e+02, 4.53367904e+02,
       4.53682043e+02, 4.53682043e+02, 4.53682043e+02, 4.53682043e+02,
       4.54101255e+02, 4.54101255e+02, 4.54101255e+02, 4.54101255e+02,
       4.54550055e+02, 4.54550055e+02, 4.54550055e+02, 4.54550055e+02,
       4.55181873e+02, 4.55181873e+02, 4.55181873e+02, 4.55181873e+02,
       4.56088869e+02, 4.56088869e+02, 4.56088869e+02, 4.56088869e+02,
       4.55314517e+02, 4.55314517e+02, 4.55314517e+02, 4.55314517e+02,
       4.42432305e+02, 4.42432305e+02, 4.42432305e+02, 4.42432305e+02,
       3.73791360e+02, 3.73791360e+02, 3.73791360e+02, 3.73791360e+02,
       1.73331140e+02, 1.73331140e+02, 1.73331140e+02, 1.73331140e+02,
       1.42286314e+01, 1.42286314e+01, 1.42286314e+01, 1.42286314e+01,
       7.35026594e-02, 7.35026594e-02, 7.35026594e-02, 7.35026594e-02,
       1.00088839e-02, 1.00088839e-02, 1.00088839e-02, 1.00088839e-02,
       1.00000013e-02, 1.00000013e-02, 1.00000013e-02, 1.00000013e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999914, 0.99999914, 0.99999914, 0.99999914, 0.9999966 ,
       0.9999966 , 0.9999966 , 0.9999966 , 0.99998894, 0.99998894,
       0.99998894, 0.99998894, 0.99996579, 0.99996579, 0.99996579,
       0.99996579, 0.99990045, 0.99990045, 0.99990045, 0.99990045,
       0.99972809, 0.99972809, 0.99972809, 0.99972809, 0.99930503,
       0.99930503, 0.99930503, 0.99930503, 0.99834358, 0.99834358,
       0.99834358, 0.99834358, 0.99633101, 0.99633101, 0.99633101,
       0.99633101, 0.99247048, 0.99247048, 0.99247048, 0.99247048,
       0.98571275, 0.98571275, 0.98571275, 0.98571275, 0.97494122,
       0.97494122, 0.97494122, 0.97494122, 0.95929193, 0.95929193,
       0.95929193, 0.95929193, 0.93846719, 0.93846719, 0.93846719,
       0.93846719, 0.91285499, 0.91285499, 0.91285499, 0.91285499,
       0.88337065, 0.88337065, 0.88337065, 0.88337065, 0.85110869,
       0.85110869, 0.85110869, 0.85110869, 0.81698796, 0.81698796,
       0.81698796, 0.81698796, 0.78242051, 0.78242051, 0.78242051,
       0.78242051, 0.74907398, 0.74907398, 0.74907398, 0.74907398,
       0.7171757 , 0.7171757 , 0.7171757 , 0.7171757 , 0.68675454,
       0.68675454, 0.68675454, 0.68675454, 0.65817399, 0.65817399,
       0.65817399, 0.65817399, 0.63120015, 0.63120015, 0.63120015,
       0.63120015, 0.60905285, 0.60905285, 0.60905285, 0.60905285,
       0.58738819, 0.58738819, 0.58738819, 0.58738819, 0.57655812,
       0.57655812, 0.57655812, 0.57655812, 0.56731141, 0.56731141,
       0.56731141, 0.56731141, 0.5639553 , 0.5639553 , 0.5639553 ,
       0.5639553 , 0.56439893, 0.56439893, 0.56439893, 0.56439893,
       0.5666221 , 0.5666221 , 0.5666221 , 0.5666221 , 0.56689879,
       0.56689879, 0.56689879, 0.56689879, 0.56688439, 0.56688439,
       0.56688439, 0.56688439, 0.56712646, 0.56712646, 0.56712646,
       0.56712646, 0.56724753, 0.56724753, 0.56724753, 0.56724753,
       0.56747625, 0.56747625, 0.56747625, 0.56747625, 0.56936103,
       0.56936103, 0.56936103, 0.56936103, 0.58025147, 0.58025147,
       0.58025147, 0.58025147, 0.62459777, 0.62459777, 0.62459777,
       0.62459777, 0.76306356, 0.76306356, 0.76306356, 0.76306356,
       1.11089581, 1.11089581, 1.11089581, 1.11089581, 1.83047175,
       1.83047175, 1.83047175, 1.83047175, 2.96543117, 2.96543117,
       2.96543117, 2.96543117, 3.63638824, 3.63638824, 3.63638824,
       3.63638824, 3.47481596, 3.47481596, 3.47481596, 3.47481596,
       1.95403945, 1.95403945, 1.95403945, 1.95403945, 1.08283494,
       1.08283494, 1.08283494, 1.08283494, 1.00335988, 1.00335988,
       1.00335988, 1.00335988, 1.00000576, 1.00000576, 1.00000576,
       1.00000576, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.21524399e-05, 3.21524399e-05, 3.21524399e-05, 3.21524399e-05,
       1.27174228e-04, 1.27174228e-04, 1.27174228e-04, 1.27174228e-04,
       4.13952526e-04, 4.13952526e-04, 4.13952526e-04, 4.13952526e-04,
       1.28010235e-03, 1.28010235e-03, 1.28010235e-03, 1.28010235e-03,
       3.72494678e-03, 3.72494678e-03, 3.72494678e-03, 3.72494678e-03,
       1.01750372e-02, 1.01750372e-02, 1.01750372e-02, 1.01750372e-02,
       2.60100958e-02, 2.60100958e-02, 2.60100958e-02, 2.60100958e-02,
       6.20163885e-02, 6.20163885e-02, 6.20163885e-02, 6.20163885e-02,
       1.37474769e-01, 1.37474769e-01, 1.37474769e-01, 1.37474769e-01,
       2.82559370e-01, 2.82559370e-01, 2.82559370e-01, 2.82559370e-01,
       5.37624629e-01, 5.37624629e-01, 5.37624629e-01, 5.37624629e-01,
       9.47149548e-01, 9.47149548e-01, 9.47149548e-01, 9.47149548e-01,
       1.54878183e+00, 1.54878183e+00, 1.54878183e+00, 1.54878183e+00,
       2.36197526e+00, 2.36197526e+00, 2.36197526e+00, 2.36197526e+00,
       3.38252055e+00, 3.38252055e+00, 3.38252055e+00, 3.38252055e+00,
       4.58640867e+00, 4.58640867e+00, 4.58640867e+00, 4.58640867e+00,
       5.94121401e+00, 5.94121401e+00, 5.94121401e+00, 5.94121401e+00,
       7.41947260e+00, 7.41947260e+00, 7.41947260e+00, 7.41947260e+00,
       8.95560830e+00, 8.95560830e+00, 8.95560830e+00, 8.95560830e+00,
       1.04968275e+01, 1.04968275e+01, 1.04968275e+01, 1.04968275e+01,
       1.20259513e+01, 1.20259513e+01, 1.20259513e+01, 1.20259513e+01,
       1.35357208e+01, 1.35357208e+01, 1.35357208e+01, 1.35357208e+01,
       1.50098538e+01, 1.50098538e+01, 1.50098538e+01, 1.50098538e+01,
       1.64177832e+01, 1.64177832e+01, 1.64177832e+01, 1.64177832e+01,
       1.77019691e+01, 1.77019691e+01, 1.77019691e+01, 1.77019691e+01,
       1.87851353e+01, 1.87851353e+01, 1.87851353e+01, 1.87851353e+01,
       1.95738145e+01, 1.95738145e+01, 1.95738145e+01, 1.95738145e+01,
       2.00235953e+01, 2.00235953e+01, 2.00235953e+01, 2.00235953e+01,
       2.01873321e+01, 2.01873321e+01, 2.01873321e+01, 2.01873321e+01,
       2.01992370e+01, 2.01992370e+01, 2.01992370e+01, 2.01992370e+01,
       2.01017551e+01, 2.01017551e+01, 2.01017551e+01, 2.01017551e+01,
       2.00372744e+01, 2.00372744e+01, 2.00372744e+01, 2.00372744e+01,
       2.00157926e+01, 2.00157926e+01, 2.00157926e+01, 2.00157926e+01,
       2.00082959e+01, 2.00082959e+01, 2.00082959e+01, 2.00082959e+01,
       2.00024907e+01, 2.00024907e+01, 2.00024907e+01, 2.00024907e+01,
       1.99918498e+01, 1.99918498e+01, 1.99918498e+01, 1.99918498e+01,
       1.99718075e+01, 1.99718075e+01, 1.99718075e+01, 1.99718075e+01,
       1.99458177e+01, 1.99458177e+01, 1.99458177e+01, 1.99458177e+01,
       1.99210292e+01, 1.99210292e+01, 1.99210292e+01, 1.99210292e+01,
       1.98969554e+01, 1.98969554e+01, 1.98969554e+01, 1.98969554e+01,
       1.98826323e+01, 1.98826323e+01, 1.98826323e+01, 1.98826323e+01,
       1.98432269e+01, 1.98432269e+01, 1.98432269e+01, 1.98432269e+01,
       1.96844946e+01, 1.96844946e+01, 1.96844946e+01, 1.96844946e+01,
       1.89485092e+01, 1.89485092e+01, 1.89485092e+01, 1.89485092e+01,
       1.58676586e+01, 1.58676586e+01, 1.58676586e+01, 1.58676586e+01,
       7.25693697e+00, 7.25693697e+00, 7.25693697e+00, 7.25693697e+00,
       4.34921777e-01, 4.34921777e-01, 4.34921777e-01, 4.34921777e-01,
       2.27948590e-03, 2.27948590e-03, 2.27948590e-03, 2.27948590e-03,
       6.88627382e-07, 6.88627382e-07, 6.88627382e-07, 6.88627382e-07,
       1.03089844e-10, 1.03089844e-10, 1.03089844e-10, 1.03089844e-10,
       1.60056279e-14, 1.60056279e-14, 1.60056279e-14, 1.60056279e-14,
       2.53568291e-18, 2.53568291e-18, 2.53568291e-18, 2.53568291e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99998797e+02, 9.99998797e+02, 9.99998797e+02, 9.99998797e+02,
       9.99995242e+02, 9.99995242e+02, 9.99995242e+02, 9.99995242e+02,
       9.99984511e+02, 9.99984511e+02, 9.99984511e+02, 9.99984511e+02,
       9.99952104e+02, 9.99952104e+02, 9.99952104e+02, 9.99952104e+02,
       9.99860634e+02, 9.99860634e+02, 9.99860634e+02, 9.99860634e+02,
       9.99619353e+02, 9.99619353e+02, 9.99619353e+02, 9.99619353e+02,
       9.99027231e+02, 9.99027231e+02, 9.99027231e+02, 9.99027231e+02,
       9.97682034e+02, 9.97682034e+02, 9.97682034e+02, 9.97682034e+02,
       9.94868221e+02, 9.94868221e+02, 9.94868221e+02, 9.94868221e+02,
       9.89478098e+02, 9.89478098e+02, 9.89478098e+02, 9.89478098e+02,
       9.80065169e+02, 9.80065169e+02, 9.80065169e+02, 9.80065169e+02,
       9.65118065e+02, 9.65118065e+02, 9.65118065e+02, 9.65118065e+02,
       9.43523368e+02, 9.43523368e+02, 9.43523368e+02, 9.43523368e+02,
       9.15006674e+02, 9.15006674e+02, 9.15006674e+02, 9.15006674e+02,
       8.80278342e+02, 8.80278342e+02, 8.80278342e+02, 8.80278342e+02,
       8.40775285e+02, 8.40775285e+02, 8.40775285e+02, 8.40775285e+02,
       7.98145941e+02, 7.98145941e+02, 7.98145941e+02, 7.98145941e+02,
       7.53755098e+02, 7.53755098e+02, 7.53755098e+02, 7.53755098e+02,
       7.09452587e+02, 7.09452587e+02, 7.09452587e+02, 7.09452587e+02,
       6.67485676e+02, 6.67485676e+02, 6.67485676e+02, 6.67485676e+02,
       6.28046689e+02, 6.28046689e+02, 6.28046689e+02, 6.28046689e+02,
       5.91112375e+02, 5.91112375e+02, 5.91112375e+02, 5.91112375e+02,
       5.56843157e+02, 5.56843157e+02, 5.56843157e+02, 5.56843157e+02,
       5.25742971e+02, 5.25742971e+02, 5.25742971e+02, 5.25742971e+02,
       4.98632093e+02, 4.98632093e+02, 4.98632093e+02, 4.98632093e+02,
       4.76795490e+02, 4.76795490e+02, 4.76795490e+02, 4.76795490e+02,
       4.61393393e+02, 4.61393393e+02, 4.61393393e+02, 4.61393393e+02,
       4.52740843e+02, 4.52740843e+02, 4.52740843e+02, 4.52740843e+02,
       4.49648853e+02, 4.49648853e+02, 4.49648853e+02, 4.49648853e+02,
       4.49459232e+02, 4.49459232e+02, 4.49459232e+02, 4.49459232e+02,
       4.51321023e+02, 4.51321023e+02, 4.51321023e+02, 4.51321023e+02,
       4.52531111e+02, 4.52531111e+02, 4.52531111e+02, 4.52531111e+02,
       4.52874067e+02, 4.52874067e+02, 4.52874067e+02, 4.52874067e+02,
       4.53039653e+02, 4.53039653e+02, 4.53039653e+02, 4.53039653e+02,
       4.53200233e+02, 4.53200233e+02, 4.53200233e+02, 4.53200233e+02,
       4.53441075e+02, 4.53441075e+02, 4.53441075e+02, 4.53441075e+02,
       4.53821299e+02, 4.53821299e+02, 4.53821299e+02, 4.53821299e+02,
       4.54260100e+02, 4.54260100e+02, 4.54260100e+02, 4.54260100e+02,
       4.54669989e+02, 4.54669989e+02, 4.54669989e+02, 4.54669989e+02,
       4.55190229e+02, 4.55190229e+02, 4.55190229e+02, 4.55190229e+02,
       4.56011617e+02, 4.56011617e+02, 4.56011617e+02, 4.56011617e+02,
       4.56384643e+02, 4.56384643e+02, 4.56384643e+02, 4.56384643e+02,
       4.51490886e+02, 4.51490886e+02, 4.51490886e+02, 4.51490886e+02,
       4.17208973e+02, 4.17208973e+02, 4.17208973e+02, 4.17208973e+02,
       2.82109903e+02, 2.82109903e+02, 2.82109903e+02, 2.82109903e+02,
       6.13627160e+01, 6.13627160e+01, 6.13627160e+01, 6.13627160e+01,
       1.21031418e+00, 1.21031418e+00, 1.21031418e+00, 1.21031418e+00,
       1.08068264e-02, 1.08068264e-02, 1.08068264e-02, 1.08068264e-02,
       1.00000814e-02, 1.00000814e-02, 1.00000814e-02, 1.00000814e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999752, 0.99999752, 0.99999752, 0.99999752, 0.99999075,
       0.99999075, 0.99999075, 0.99999075, 0.99997179, 0.99997179,
       0.99997179, 0.99997179, 0.99991817, 0.99991817, 0.99991817,
       0.99991817, 0.99977683, 0.99977683, 0.99977683, 0.99977683,
       0.99942915, 0.99942915, 0.99942915, 0.99942915, 0.99863505,
       0.99863505, 0.99863505, 0.99863505, 0.99695933, 0.99695933,
       0.99695933, 0.99695933, 0.9937087 , 0.9937087 , 0.9937087 ,
       0.9937087 , 0.98793721, 0.98793721, 0.98793721, 0.98793721,
       0.9785829 , 0.9785829 , 0.9785829 , 0.9785829 , 0.96474136,
       0.96474136, 0.96474136, 0.96474136, 0.94597339, 0.94597339,
       0.94597339, 0.94597339, 0.92247486, 0.92247486, 0.92247486,
       0.92247486, 0.89499831, 0.89499831, 0.89499831, 0.89499831,
       0.86456812, 0.86456812, 0.86456812, 0.86456812, 0.83212124,
       0.83212124, 0.83212124, 0.83212124, 0.79863526, 0.79863526,
       0.79863526, 0.79863526, 0.76573988, 0.76573988, 0.76573988,
       0.76573988, 0.73420588, 0.73420588, 0.73420588, 0.73420588,
       0.703996  , 0.703996  , 0.703996  , 0.703996  , 0.67517948,
       0.67517948, 0.67517948, 0.67517948, 0.64829444, 0.64829444,
       0.64829444, 0.64829444, 0.62286674, 0.62286674, 0.62286674,
       0.62286674, 0.60281401, 0.60281401, 0.60281401, 0.60281401,
       0.58304717, 0.58304717, 0.58304717, 0.58304717, 0.5737585 ,
       0.5737585 , 0.5737585 , 0.5737585 , 0.56680383, 0.56680383,
       0.56680383, 0.56680383, 0.56406554, 0.56406554, 0.56406554,
       0.56406554, 0.56445674, 0.56445674, 0.56445674, 0.56445674,
       0.56689479, 0.56689479, 0.56689479, 0.56689479, 0.56721005,
       0.56721005, 0.56721005, 0.56721005, 0.56705228, 0.56705228,
       0.56705228, 0.56705228, 0.56711649, 0.56711649, 0.56711649,
       0.56711649, 0.5672706 , 0.5672706 , 0.5672706 , 0.5672706 ,
       0.56752476, 0.56752476, 0.56752476, 0.56752476, 0.5687617 ,
       0.5687617 , 0.5687617 , 0.5687617 , 0.5756626 , 0.5756626 ,
       0.5756626 , 0.5756626 , 0.60517122, 0.60517122, 0.60517122,
       0.60517122, 0.70225684, 0.70225684, 0.70225684, 0.70225684,
       0.95916964, 0.95916964, 0.95916964, 0.95916964, 1.52074205,
       1.52074205, 1.52074205, 1.52074205, 2.53366254, 2.53366254,
       2.53366254, 2.53366254, 3.51709808, 3.51709808, 3.51709808,
       3.51709808, 3.71733154, 3.71733154, 3.71733154, 3.71733154,
       2.81684948, 2.81684948, 2.81684948, 2.81684948, 1.27928976,
       1.27928976, 1.27928976, 1.27928976, 1.01706333, 1.01706333,
       1.01706333, 1.01706333, 1.00022545, 1.00022545, 1.00022545,
       1.00022545, 1.00000005, 1.00000005, 1.00000005, 1.00000005,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([9.27169916e-05, 9.27169916e-05, 9.27169916e-05, 9.27169916e-05,
       3.45942523e-04, 3.45942523e-04, 3.45942523e-04, 3.45942523e-04,
       1.05548283e-03, 1.05548283e-03, 1.05548283e-03, 1.05548283e-03,
       3.06180591e-03, 3.06180591e-03, 3.06180591e-03, 3.06180591e-03,
       8.35099130e-03, 8.35099130e-03, 8.35099130e-03, 8.35099130e-03,
       2.13637129e-02, 2.13637129e-02, 2.13637129e-02, 2.13637129e-02,
       5.10980585e-02, 5.10980585e-02, 5.10980585e-02, 5.10980585e-02,
       1.13904438e-01, 1.13904438e-01, 1.13904438e-01, 1.13904438e-01,
       2.35977350e-01, 2.35977350e-01, 2.35977350e-01, 2.35977350e-01,
       4.53511059e-01, 4.53511059e-01, 4.53511059e-01, 4.53511059e-01,
       8.08290869e-01, 8.08290869e-01, 8.08290869e-01, 8.08290869e-01,
       1.33838461e+00, 1.33838461e+00, 1.33838461e+00, 1.33838461e+00,
       2.06718875e+00, 2.06718875e+00, 2.06718875e+00, 2.06718875e+00,
       2.99650453e+00, 2.99650453e+00, 2.99650453e+00, 2.99650453e+00,
       4.10776410e+00, 4.10776410e+00, 4.10776410e+00, 4.10776410e+00,
       5.37093252e+00, 5.37093252e+00, 5.37093252e+00, 5.37093252e+00,
       6.75756651e+00, 6.75756651e+00, 6.75756651e+00, 6.75756651e+00,
       8.23003026e+00, 8.23003026e+00, 8.23003026e+00, 8.23003026e+00,
       9.71810036e+00, 9.71810036e+00, 9.71810036e+00, 9.71810036e+00,
       1.12035998e+01, 1.12035998e+01, 1.12035998e+01, 1.12035998e+01,
       1.26747396e+01, 1.26747396e+01, 1.26747396e+01, 1.26747396e+01,
       1.41241052e+01, 1.41241052e+01, 1.41241052e+01, 1.41241052e+01,
       1.55324405e+01, 1.55324405e+01, 1.55324405e+01, 1.55324405e+01,
       1.68648788e+01, 1.68648788e+01, 1.68648788e+01, 1.68648788e+01,
       1.80587444e+01, 1.80587444e+01, 1.80587444e+01, 1.80587444e+01,
       1.90363513e+01, 1.90363513e+01, 1.90363513e+01, 1.90363513e+01,
       1.97169663e+01, 1.97169663e+01, 1.97169663e+01, 1.97169663e+01,
       2.00776225e+01, 2.00776225e+01, 2.00776225e+01, 2.00776225e+01,
       2.01888597e+01, 2.01888597e+01, 2.01888597e+01, 2.01888597e+01,
       2.01801125e+01, 2.01801125e+01, 2.01801125e+01, 2.01801125e+01,
       2.00812778e+01, 2.00812778e+01, 2.00812778e+01, 2.00812778e+01,
       2.00318261e+01, 2.00318261e+01, 2.00318261e+01, 2.00318261e+01,
       2.00146648e+01, 2.00146648e+01, 2.00146648e+01, 2.00146648e+01,
       2.00061042e+01, 2.00061042e+01, 2.00061042e+01, 2.00061042e+01,
       1.99986959e+01, 1.99986959e+01, 1.99986959e+01, 1.99986959e+01,
       1.99863432e+01, 1.99863432e+01, 1.99863432e+01, 1.99863432e+01,
       1.99656179e+01, 1.99656179e+01, 1.99656179e+01, 1.99656179e+01,
       1.99415041e+01, 1.99415041e+01, 1.99415041e+01, 1.99415041e+01,
       1.99167435e+01, 1.99167435e+01, 1.99167435e+01, 1.99167435e+01,
       1.98912290e+01, 1.98912290e+01, 1.98912290e+01, 1.98912290e+01,
       1.98732047e+01, 1.98732047e+01, 1.98732047e+01, 1.98732047e+01,
       1.98526648e+01, 1.98526648e+01, 1.98526648e+01, 1.98526648e+01,
       1.97731261e+01, 1.97731261e+01, 1.97731261e+01, 1.97731261e+01,
       1.94093352e+01, 1.94093352e+01, 1.94093352e+01, 1.94093352e+01,
       1.77776801e+01, 1.77776801e+01, 1.77776801e+01, 1.77776801e+01,
       1.19820754e+01, 1.19820754e+01, 1.19820754e+01, 1.19820754e+01,
       2.16019726e+00, 2.16019726e+00, 2.16019726e+00, 2.16019726e+00,
       3.53014742e-02, 3.53014742e-02, 3.53014742e-02, 3.53014742e-02,
       3.82045712e-05, 3.82045712e-05, 3.82045712e-05, 3.82045712e-05,
       6.27267874e-09, 6.27267874e-09, 6.27267874e-09, 6.27267874e-09,
       9.86981788e-13, 9.86981788e-13, 9.86981788e-13, 9.86981788e-13,
       1.50628633e-16, 1.50628633e-16, 1.50628633e-16, 1.50628633e-16,
       1.80645712e-20, 1.80645712e-20, 1.80645712e-20, 1.80645712e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99996531e+02, 9.99996531e+02, 9.99996531e+02, 9.99996531e+02,
       9.99987056e+02, 9.99987056e+02, 9.99987056e+02, 9.99987056e+02,
       9.99960508e+02, 9.99960508e+02, 9.99960508e+02, 9.99960508e+02,
       9.99885444e+02, 9.99885444e+02, 9.99885444e+02, 9.99885444e+02,
       9.99687580e+02, 9.99687580e+02, 9.99687580e+02, 9.99687580e+02,
       9.99200940e+02, 9.99200940e+02, 9.99200940e+02, 9.99200940e+02,
       9.98089767e+02, 9.98089767e+02, 9.98089767e+02, 9.98089767e+02,
       9.95746369e+02, 9.95746369e+02, 9.95746369e+02, 9.95746369e+02,
       9.91205796e+02, 9.91205796e+02, 9.91205796e+02, 9.91205796e+02,
       9.83160321e+02, 9.83160321e+02, 9.83160321e+02, 9.83160321e+02,
       9.70163089e+02, 9.70163089e+02, 9.70163089e+02, 9.70163089e+02,
       9.51025501e+02, 9.51025501e+02, 9.51025501e+02, 9.51025501e+02,
       9.25253700e+02, 9.25253700e+02, 9.25253700e+02, 9.25253700e+02,
       8.93272718e+02, 8.93272718e+02, 8.93272718e+02, 8.93272718e+02,
       8.56285555e+02, 8.56285555e+02, 8.56285555e+02, 8.56285555e+02,
       8.15844374e+02, 8.15844374e+02, 8.15844374e+02, 8.15844374e+02,
       7.73342136e+02, 7.73342136e+02, 7.73342136e+02, 7.73342136e+02,
       7.30129913e+02, 7.30129913e+02, 7.30129913e+02, 7.30129913e+02,
       6.88352942e+02, 6.88352942e+02, 6.88352942e+02, 6.88352942e+02,
       6.49007221e+02, 6.49007221e+02, 6.49007221e+02, 6.49007221e+02,
       6.11939746e+02, 6.11939746e+02, 6.11939746e+02, 6.11939746e+02,
       5.77224777e+02, 5.77224777e+02, 5.77224777e+02, 5.77224777e+02,
       5.45110602e+02, 5.45110602e+02, 5.45110602e+02, 5.45110602e+02,
       5.16188887e+02, 5.16188887e+02, 5.16188887e+02, 5.16188887e+02,
       4.91335604e+02, 4.91335604e+02, 4.91335604e+02, 4.91335604e+02,
       4.71814716e+02, 4.71814716e+02, 4.71814716e+02, 4.71814716e+02,
       4.58644756e+02, 4.58644756e+02, 4.58644756e+02, 4.58644756e+02,
       4.51748779e+02, 4.51748779e+02, 4.51748779e+02, 4.51748779e+02,
       4.49620320e+02, 4.49620320e+02, 4.49620320e+02, 4.49620320e+02,
       4.49793173e+02, 4.49793173e+02, 4.49793173e+02, 4.49793173e+02,
       4.51686270e+02, 4.51686270e+02, 4.51686270e+02, 4.51686270e+02,
       4.52653139e+02, 4.52653139e+02, 4.52653139e+02, 4.52653139e+02,
       4.52934776e+02, 4.52934776e+02, 4.52934776e+02, 4.52934776e+02,
       4.53069098e+02, 4.53069098e+02, 4.53069098e+02, 4.53069098e+02,
       4.53226281e+02, 4.53226281e+02, 4.53226281e+02, 4.53226281e+02,
       4.53501144e+02, 4.53501144e+02, 4.53501144e+02, 4.53501144e+02,
       4.53932351e+02, 4.53932351e+02, 4.53932351e+02, 4.53932351e+02,
       4.54403842e+02, 4.54403842e+02, 4.54403842e+02, 4.54403842e+02,
       4.54828470e+02, 4.54828470e+02, 4.54828470e+02, 4.54828470e+02,
       4.55256571e+02, 4.55256571e+02, 4.55256571e+02, 4.55256571e+02,
       4.55891222e+02, 4.55891222e+02, 4.55891222e+02, 4.55891222e+02,
       4.56695880e+02, 4.56695880e+02, 4.56695880e+02, 4.56695880e+02,
       4.55303353e+02, 4.55303353e+02, 4.55303353e+02, 4.55303353e+02,
       4.39632542e+02, 4.39632542e+02, 4.39632542e+02, 4.39632542e+02,
       3.62585344e+02, 3.62585344e+02, 3.62585344e+02, 3.62585344e+02,
       1.55123980e+02, 1.55123980e+02, 1.55123980e+02, 1.55123980e+02,
       1.06526829e+01, 1.06526829e+01, 1.06526829e+01, 1.06526829e+01,
       4.72581949e-02, 4.72581949e-02, 4.72581949e-02, 4.72581949e-02,
       1.00047111e-02, 1.00047111e-02, 1.00047111e-02, 1.00047111e-02,
       1.00000007e-02, 1.00000007e-02, 1.00000007e-02, 1.00000007e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99999334, 0.99999334, 0.99999334, 0.99999334, 0.99997652,
       0.99997652, 0.99997652, 0.99997652, 0.99993274, 0.99993274,
       0.99993274, 0.99993274, 0.9998167 , 0.9998167 , 0.9998167 ,
       0.9998167 , 0.9995308 , 0.9995308 , 0.9995308 , 0.9995308 ,
       0.9988747 , 0.9988747 , 0.9988747 , 0.9988747 , 0.99747962,
       0.99747962, 0.99747962, 0.99747962, 0.99474458, 0.99474458,
       0.99474458, 0.99474458, 0.98982255, 0.98982255, 0.98982255,
       0.98982255, 0.98171633, 0.98171633, 0.98171633, 0.98171633,
       0.96950664, 0.96950664, 0.96950664, 0.96950664, 0.95264288,
       0.95264288, 0.95264288, 0.95264288, 0.93114717, 0.93114717,
       0.93114717, 0.93114717, 0.90560556, 0.90560556, 0.90560556,
       0.90560556, 0.8769476 , 0.8769476 , 0.8769476 , 0.8769476 ,
       0.8461295 , 0.8461295 , 0.8461295 , 0.8461295 , 0.81392176,
       0.81392176, 0.81392176, 0.81392176, 0.78165473, 0.78165473,
       0.78165473, 0.78165473, 0.75050172, 0.75050172, 0.75050172,
       0.75050172, 0.72057659, 0.72057659, 0.72057659, 0.72057659,
       0.69190945, 0.69190945, 0.69190945, 0.69190945, 0.66457344,
       0.66457344, 0.66457344, 0.66457344, 0.63931001, 0.63931001,
       0.63931001, 0.63931001, 0.61533571, 0.61533571, 0.61533571,
       0.61533571, 0.59728585, 0.59728585, 0.59728585, 0.59728585,
       0.57944602, 0.57944602, 0.57944602, 0.57944602, 0.57141549,
       0.57141549, 0.57141549, 0.57141549, 0.56646332, 0.56646332,
       0.56646332, 0.56646332, 0.56429638, 0.56429638, 0.56429638,
       0.56429638, 0.56474556, 0.56474556, 0.56474556, 0.56474556,
       0.56696375, 0.56696375, 0.56696375, 0.56696375, 0.56741743,
       0.56741743, 0.56741743, 0.56741743, 0.5672394 , 0.5672394 ,
       0.5672394 , 0.5672394 , 0.56719598, 0.56719598, 0.56719598,
       0.56719598, 0.56730067, 0.56730067, 0.56730067, 0.56730067,
       0.56757971, 0.56757971, 0.56757971, 0.56757971, 0.5684633 ,
       0.5684633 , 0.5684633 , 0.5684633 , 0.57284684, 0.57284684,
       0.57284684, 0.57284684, 0.59231821, 0.59231821, 0.59231821,
       0.59231821, 0.6596568 , 0.6596568 , 0.6596568 , 0.6596568 ,
       0.84699717, 0.84699717, 0.84699717, 0.84699717, 1.27785893,
       1.27785893, 1.27785893, 1.27785893, 2.10551451, 2.10551451,
       2.10551451, 2.10551451, 3.24550952, 3.24550952, 3.24550952,
       3.24550952, 3.77306813, 3.77306813, 3.77306813, 3.77306813,
       3.47838258, 3.47838258, 3.47838258, 3.47838258, 1.83959453,
       1.83959453, 1.83959453, 1.83959453, 1.0682824 , 1.0682824 ,
       1.0682824 , 1.0682824 , 1.00250794, 1.00250794, 1.00250794,
       1.00250794, 1.00000304, 1.00000304, 1.00000304, 1.00000304,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.49214926e-04, 2.49214926e-04, 2.49214926e-04, 2.49214926e-04,
       8.78604657e-04, 8.78604657e-04, 8.78604657e-04, 8.78604657e-04,
       2.51662102e-03, 2.51662102e-03, 2.51662102e-03, 2.51662102e-03,
       6.85892762e-03, 6.85892762e-03, 6.85892762e-03, 6.85892762e-03,
       1.75588961e-02, 1.75588961e-02, 1.75588961e-02, 1.75588961e-02,
       4.21228901e-02, 4.21228901e-02, 4.21228901e-02, 4.21228901e-02,
       9.43950927e-02, 9.43950927e-02, 9.43950927e-02, 9.43950927e-02,
       1.97042335e-01, 1.97042335e-01, 1.97042335e-01, 1.97042335e-01,
       3.82340085e-01, 3.82340085e-01, 3.82340085e-01, 3.82340085e-01,
       6.89147758e-01, 6.89147758e-01, 6.89147758e-01, 6.89147758e-01,
       1.15519736e+00, 1.15519736e+00, 1.15519736e+00, 1.15519736e+00,
       1.80686376e+00, 1.80686376e+00, 1.80686376e+00, 1.80686376e+00,
       2.65131500e+00, 2.65131500e+00, 2.65131500e+00, 2.65131500e+00,
       3.67550739e+00, 3.67550739e+00, 3.67550739e+00, 3.67550739e+00,
       4.85271275e+00, 4.85271275e+00, 4.85271275e+00, 4.85271275e+00,
       6.15350432e+00, 6.15350432e+00, 6.15350432e+00, 6.15350432e+00,
       7.55357680e+00, 7.55357680e+00, 7.55357680e+00, 7.55357680e+00,
       8.98941000e+00, 8.98941000e+00, 8.98941000e+00, 8.98941000e+00,
       1.04303820e+01, 1.04303820e+01, 1.04303820e+01, 1.04303820e+01,
       1.18617350e+01, 1.18617350e+01, 1.18617350e+01, 1.18617350e+01,
       1.32783330e+01, 1.32783330e+01, 1.32783330e+01, 1.32783330e+01,
       1.46700989e+01, 1.46700989e+01, 1.46700989e+01, 1.46700989e+01,
       1.60141500e+01, 1.60141500e+01, 1.60141500e+01, 1.60141500e+01,
       1.72717577e+01, 1.72717577e+01, 1.72717577e+01, 1.72717577e+01,
       1.83764937e+01, 1.83764937e+01, 1.83764937e+01, 1.83764937e+01,
       1.92517132e+01, 1.92517132e+01, 1.92517132e+01, 1.92517132e+01,
       1.98312363e+01, 1.98312363e+01, 1.98312363e+01, 1.98312363e+01,
       2.01141790e+01, 2.01141790e+01, 2.01141790e+01, 2.01141790e+01,
       2.01871661e+01, 2.01871661e+01, 2.01871661e+01, 2.01871661e+01,
       2.01587304e+01, 2.01587304e+01, 2.01587304e+01, 2.01587304e+01,
       2.00649247e+01, 2.00649247e+01, 2.00649247e+01, 2.00649247e+01,
       2.00267116e+01, 2.00267116e+01, 2.00267116e+01, 2.00267116e+01,
       2.00134137e+01, 2.00134137e+01, 2.00134137e+01, 2.00134137e+01,
       2.00048366e+01, 2.00048366e+01, 2.00048366e+01, 2.00048366e+01,
       1.99955344e+01, 1.99955344e+01, 1.99955344e+01, 1.99955344e+01,
       1.99804744e+01, 1.99804744e+01, 1.99804744e+01, 1.99804744e+01,
       1.99582608e+01, 1.99582608e+01, 1.99582608e+01, 1.99582608e+01,
       1.99352201e+01, 1.99352201e+01, 1.99352201e+01, 1.99352201e+01,
       1.99120283e+01, 1.99120283e+01, 1.99120283e+01, 1.99120283e+01,
       1.98878907e+01, 1.98878907e+01, 1.98878907e+01, 1.98878907e+01,
       1.98653154e+01, 1.98653154e+01, 1.98653154e+01, 1.98653154e+01,
       1.98516094e+01, 1.98516094e+01, 1.98516094e+01, 1.98516094e+01,
       1.98100006e+01, 1.98100006e+01, 1.98100006e+01, 1.98100006e+01,
       1.96316470e+01, 1.96316470e+01, 1.96316470e+01, 1.96316470e+01,
       1.88041286e+01, 1.88041286e+01, 1.88041286e+01, 1.88041286e+01,
       1.54317797e+01, 1.54317797e+01, 1.54317797e+01, 1.54317797e+01,
       6.46630891e+00, 6.46630891e+00, 6.46630891e+00, 6.46630891e+00,
       3.26471041e-01, 3.26471041e-01, 3.26471041e-01, 3.26471041e-01,
       1.39752195e-03, 1.39752195e-03, 1.39752195e-03, 1.39752195e-03,
       3.61410681e-07, 3.61410681e-07, 3.61410681e-07, 3.61410681e-07,
       5.50928989e-11, 5.50928989e-11, 5.50928989e-11, 5.50928989e-11,
       8.73446544e-15, 8.73446544e-15, 8.73446544e-15, 8.73446544e-15,
       1.37689406e-18, 1.37689406e-18, 1.37689406e-18, 1.37689406e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99990675e+02, 9.99990675e+02, 9.99990675e+02, 9.99990675e+02,
       9.99967126e+02, 9.99967126e+02, 9.99967126e+02, 9.99967126e+02,
       9.99905841e+02, 9.99905841e+02, 9.99905841e+02, 9.99905841e+02,
       9.99743393e+02, 9.99743393e+02, 9.99743393e+02, 9.99743393e+02,
       9.99343207e+02, 9.99343207e+02, 9.99343207e+02, 9.99343207e+02,
       9.98425049e+02, 9.98425049e+02, 9.98425049e+02, 9.98425049e+02,
       9.96473752e+02, 9.96473752e+02, 9.96473752e+02, 9.96473752e+02,
       9.92651960e+02, 9.92651960e+02, 9.92651960e+02, 9.92651960e+02,
       9.85786061e+02, 9.85786061e+02, 9.85786061e+02, 9.85786061e+02,
       9.74510522e+02, 9.74510522e+02, 9.74510522e+02, 9.74510522e+02,
       9.57600381e+02, 9.57600381e+02, 9.57600381e+02, 9.57600381e+02,
       9.34386650e+02, 9.34386650e+02, 9.34386650e+02, 9.34386650e+02,
       9.05034576e+02, 9.05034576e+02, 9.05034576e+02, 9.05034576e+02,
       8.70506126e+02, 8.70506126e+02, 8.70506126e+02, 8.70506126e+02,
       8.32221605e+02, 8.32221605e+02, 8.32221605e+02, 8.32221605e+02,
       7.91601867e+02, 7.91601867e+02, 7.91601867e+02, 7.91601867e+02,
       7.49771930e+02, 7.49771930e+02, 7.49771930e+02, 7.49771930e+02,
       7.08448789e+02, 7.08448789e+02, 7.08448789e+02, 7.08448789e+02,
       6.69249654e+02, 6.69249654e+02, 6.69249654e+02, 6.69249654e+02,
       6.32199855e+02, 6.32199855e+02, 6.32199855e+02, 6.32199855e+02,
       5.97271856e+02, 5.97271856e+02, 5.97271856e+02, 5.97271856e+02,
       5.64593117e+02, 5.64593117e+02, 5.64593117e+02, 5.64593117e+02,
       5.34481735e+02, 5.34481735e+02, 5.34481735e+02, 5.34481735e+02,
       5.07617179e+02, 5.07617179e+02, 5.07617179e+02, 5.07617179e+02,
       4.84923891e+02, 4.84923891e+02, 4.84923891e+02, 4.84923891e+02,
       4.67588272e+02, 4.67588272e+02, 4.67588272e+02, 4.67588272e+02,
       4.56440880e+02, 4.56440880e+02, 4.56440880e+02, 4.56440880e+02,
       4.51073579e+02, 4.51073579e+02, 4.51073579e+02, 4.51073579e+02,
       4.49670476e+02, 4.49670476e+02, 4.49670476e+02, 4.49670476e+02,
       4.50197414e+02, 4.50197414e+02, 4.50197414e+02, 4.50197414e+02,
       4.51964568e+02, 4.51964568e+02, 4.51964568e+02, 4.51964568e+02,
       4.52734660e+02, 4.52734660e+02, 4.52734660e+02, 4.52734660e+02,
       4.52988476e+02, 4.52988476e+02, 4.52988476e+02, 4.52988476e+02,
       4.53122020e+02, 4.53122020e+02, 4.53122020e+02, 4.53122020e+02,
       4.53277355e+02, 4.53277355e+02, 4.53277355e+02, 4.53277355e+02,
       4.53570948e+02, 4.53570948e+02, 4.53570948e+02, 4.53570948e+02,
       4.54027799e+02, 4.54027799e+02, 4.54027799e+02, 4.54027799e+02,
       4.54514822e+02, 4.54514822e+02, 4.54514822e+02, 4.54514822e+02,
       4.54967633e+02, 4.54967633e+02, 4.54967633e+02, 4.54967633e+02,
       4.55383145e+02, 4.55383145e+02, 4.55383145e+02, 4.55383145e+02,
       4.55885058e+02, 4.55885058e+02, 4.55885058e+02, 4.55885058e+02,
       4.56660485e+02, 4.56660485e+02, 4.56660485e+02, 4.56660485e+02,
       4.56707224e+02, 4.56707224e+02, 4.56707224e+02, 4.56707224e+02,
       4.50332485e+02, 4.50332485e+02, 4.50332485e+02, 4.50332485e+02,
       4.10745038e+02, 4.10745038e+02, 4.10745038e+02, 4.10745038e+02,
       2.64438188e+02, 2.64438188e+02, 2.64438188e+02, 2.64438188e+02,
       5.04920492e+01, 5.04920492e+01, 5.04920492e+01, 5.04920492e+01,
       8.21200453e-01, 8.21200453e-01, 8.21200453e-01, 8.21200453e-01,
       1.04110586e-02, 1.04110586e-02, 1.04110586e-02, 1.04110586e-02,
       1.00000427e-02, 1.00000427e-02, 1.00000427e-02, 1.00000427e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99998324, 0.99998324, 0.99998324, 0.99998324, 0.99994409,
       0.99994409, 0.99994409, 0.99994409, 0.99984947, 0.99984947,
       0.99984947, 0.99984947, 0.99961409, 0.99961409, 0.99961409,
       0.99961409, 0.99907186, 0.99907186, 0.99907186, 0.99907186,
       0.99791058, 0.99791058, 0.99791058, 0.99791058, 0.99561098,
       0.99561098, 0.99561098, 0.99561098, 0.99141916, 0.99141916,
       0.99141916, 0.99141916, 0.98440893, 0.98440893, 0.98440893,
       0.98440893, 0.97366694, 0.97366694, 0.97366694, 0.97366694,
       0.95855926, 0.95855926, 0.95855926, 0.95855926, 0.93895505,
       0.93895505, 0.93895505, 0.93895505, 0.91527616, 0.91527616,
       0.91527616, 0.91527616, 0.88833959, 0.88833959, 0.88833959,
       0.88833959, 0.85907786, 0.85907786, 0.85907786, 0.85907786,
       0.82825782, 0.82825782, 0.82825782, 0.82825782, 0.79682367,
       0.79682367, 0.79682367, 0.79682367, 0.7660904 , 0.7660904 ,
       0.7660904 , 0.7660904 , 0.73649342, 0.73649342, 0.73649342,
       0.73649342, 0.7080382 , 0.7080382 , 0.7080382 , 0.7080382 ,
       0.68079751, 0.68079751, 0.68079751, 0.68079751, 0.65483468,
       0.65483468, 0.65483468, 0.65483468, 0.63114051, 0.63114051,
       0.63114051, 0.63114051, 0.60854849, 0.60854849, 0.60854849,
       0.60854849, 0.59238504, 0.59238504, 0.59238504, 0.59238504,
       0.57651033, 0.57651033, 0.57651033, 0.57651033, 0.56951125,
       0.56951125, 0.56951125, 0.56951125, 0.5662106 , 0.5662106 ,
       0.5662106 , 0.5662106 , 0.56457441, 0.56457441, 0.56457441,
       0.56457441, 0.56518521, 0.56518521, 0.56518521, 0.56518521,
       0.5669638 , 0.5669638 , 0.5669638 , 0.5669638 , 0.56753478,
       0.56753478, 0.56753478, 0.56753478, 0.56741507, 0.56741507,
       0.56741507, 0.56741507, 0.56730543, 0.56730543, 0.56730543,
       0.56730543, 0.56737641, 0.56737641, 0.56737641, 0.56737641,
       0.56765193, 0.56765193, 0.56765193, 0.56765193, 0.56833782,
       0.56833782, 0.56833782, 0.56833782, 0.57115323, 0.57115323,
       0.57115323, 0.57115323, 0.58390602, 0.58390602, 0.58390602,
       0.58390602, 0.63015878, 0.63015878, 0.63015878, 0.63015878,
       0.76511277, 0.76511277, 0.76511277, 0.76511277, 1.09098504,
       1.09098504, 1.09098504, 1.09098504, 1.75190783, 1.75190783,
       1.75190783, 1.75190783, 2.84524356, 2.84524356, 2.84524356,
       2.84524356, 3.69818791, 3.69818791, 3.69818791, 3.69818791,
       3.79299239, 3.79299239, 3.79299239, 3.79299239, 2.70622572,
       2.70622572, 2.70622572, 2.70622572, 1.23074962, 1.23074962,
       1.23074962, 1.23074962, 1.01357481, 1.01357481, 1.01357481,
       1.01357481, 1.00013936, 1.00013936, 1.00013936, 1.00013936,
       1.00000003, 1.00000003, 1.00000003, 1.00000003, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([6.27176089e-04, 6.27176089e-04, 6.27176089e-04, 6.27176089e-04,
       2.09197510e-03, 2.09197510e-03, 2.09197510e-03, 2.09197510e-03,
       5.63246589e-03, 5.63246589e-03, 5.63246589e-03, 5.63246589e-03,
       1.44413910e-02, 1.44413910e-02, 1.44413910e-02, 1.44413910e-02,
       3.47398084e-02, 3.47398084e-02, 3.47398084e-02, 3.47398084e-02,
       7.82416435e-02, 7.82416435e-02, 7.82416435e-02, 7.82416435e-02,
       1.64502448e-01, 1.64502448e-01, 1.64502448e-01, 1.64502448e-01,
       3.22153674e-01, 3.22153674e-01, 3.22153674e-01, 3.22153674e-01,
       5.87013093e-01, 5.87013093e-01, 5.87013093e-01, 5.87013093e-01,
       9.95867432e-01, 9.95867432e-01, 9.95867432e-01, 9.95867432e-01,
       1.57717960e+00, 1.57717960e+00, 1.57717960e+00, 1.57717960e+00,
       2.34277075e+00, 2.34277075e+00, 2.34277075e+00, 2.34277075e+00,
       3.28498965e+00, 3.28498965e+00, 3.28498965e+00, 3.28498965e+00,
       4.38103253e+00, 4.38103253e+00, 4.38103253e+00, 4.38103253e+00,
       5.60227400e+00, 5.60227400e+00, 5.60227400e+00, 5.60227400e+00,
       6.92499000e+00, 6.92499000e+00, 6.92499000e+00, 6.92499000e+00,
       8.30862980e+00, 8.30862980e+00, 8.30862980e+00, 8.30862980e+00,
       9.70342488e+00, 9.70342488e+00, 9.70342488e+00, 9.70342488e+00,
       1.10947376e+01, 1.10947376e+01, 1.10947376e+01, 1.10947376e+01,
       1.24759421e+01, 1.24759421e+01, 1.24759421e+01, 1.24759421e+01,
       1.38409096e+01, 1.38409096e+01, 1.38409096e+01, 1.38409096e+01,
       1.51771753e+01, 1.51771753e+01, 1.51771753e+01, 1.51771753e+01,
       1.64580614e+01, 1.64580614e+01, 1.64580614e+01, 1.64580614e+01,
       1.76410460e+01, 1.76410460e+01, 1.76410460e+01, 1.76410460e+01,
       1.86577470e+01, 1.86577470e+01, 1.86577470e+01, 1.86577470e+01,
       1.94346504e+01, 1.94346504e+01, 1.94346504e+01, 1.94346504e+01,
       1.99206783e+01, 1.99206783e+01, 1.99206783e+01, 1.99206783e+01,
       2.01373825e+01, 2.01373825e+01, 2.01373825e+01, 2.01373825e+01,
       2.01827557e+01, 2.01827557e+01, 2.01827557e+01, 2.01827557e+01,
       2.01362430e+01, 2.01362430e+01, 2.01362430e+01, 2.01362430e+01,
       2.00527163e+01, 2.00527163e+01, 2.00527163e+01, 2.00527163e+01,
       2.00220889e+01, 2.00220889e+01, 2.00220889e+01, 2.00220889e+01,
       2.00113415e+01, 2.00113415e+01, 2.00113415e+01, 2.00113415e+01,
       2.00032017e+01, 2.00032017e+01, 2.00032017e+01, 2.00032017e+01,
       1.99928716e+01, 1.99928716e+01, 1.99928716e+01, 1.99928716e+01,
       1.99752195e+01, 1.99752195e+01, 1.99752195e+01, 1.99752195e+01,
       1.99510048e+01, 1.99510048e+01, 1.99510048e+01, 1.99510048e+01,
       1.99278369e+01, 1.99278369e+01, 1.99278369e+01, 1.99278369e+01,
       1.99060511e+01, 1.99060511e+01, 1.99060511e+01, 1.99060511e+01,
       1.98834898e+01, 1.98834898e+01, 1.98834898e+01, 1.98834898e+01,
       1.98602307e+01, 1.98602307e+01, 1.98602307e+01, 1.98602307e+01,
       1.98460230e+01, 1.98460230e+01, 1.98460230e+01, 1.98460230e+01,
       1.98231060e+01, 1.98231060e+01, 1.98231060e+01, 1.98231060e+01,
       1.97344284e+01, 1.97344284e+01, 1.97344284e+01, 1.97344284e+01,
       1.93234157e+01, 1.93234157e+01, 1.93234157e+01, 1.93234157e+01,
       1.75098690e+01, 1.75098690e+01, 1.75098690e+01, 1.75098690e+01,
       1.13120733e+01, 1.13120733e+01, 1.13120733e+01, 1.13120733e+01,
       1.72019020e+00, 1.72019020e+00, 1.72019020e+00, 1.72019020e+00,
       2.39627567e-02, 2.39627567e-02, 2.39627567e-02, 2.39627567e-02,
       2.10492230e-05, 2.10492230e-05, 2.10492230e-05, 2.10492230e-05,
       3.37580296e-09, 3.37580296e-09, 3.37580296e-09, 3.37580296e-09,
       5.24794943e-13, 5.24794943e-13, 5.24794943e-13, 5.24794943e-13,
       8.00869120e-17, 8.00869120e-17, 8.00869120e-17, 8.00869120e-17,
       1.80543624e-20, 1.80543624e-20, 1.80543624e-20, 1.80543624e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99976534e+02, 9.99976534e+02, 9.99976534e+02, 9.99976534e+02,
       9.99921728e+02, 9.99921728e+02, 9.99921728e+02, 9.99921728e+02,
       9.99789273e+02, 9.99789273e+02, 9.99789273e+02, 9.99789273e+02,
       9.99459788e+02, 9.99459788e+02, 9.99459788e+02, 9.99459788e+02,
       9.98700933e+02, 9.98700933e+02, 9.98700933e+02, 9.98700933e+02,
       9.97076380e+02, 9.97076380e+02, 9.97076380e+02, 9.97076380e+02,
       9.93862050e+02, 9.93862050e+02, 9.93862050e+02, 9.93862050e+02,
       9.88011449e+02, 9.88011449e+02, 9.88011449e+02, 9.88011449e+02,
       9.78251147e+02, 9.78251147e+02, 9.78251147e+02, 9.78251147e+02,
       9.63351703e+02, 9.63351703e+02, 9.63351703e+02, 9.63351703e+02,
       9.42510461e+02, 9.42510461e+02, 9.42510461e+02, 9.42510461e+02,
       9.15662316e+02, 9.15662316e+02, 9.15662316e+02, 9.15662316e+02,
       8.83529955e+02, 8.83529955e+02, 8.83529955e+02, 8.83529955e+02,
       8.47375347e+02, 8.47375347e+02, 8.47375347e+02, 8.47375347e+02,
       8.08589521e+02, 8.08589521e+02, 8.08589521e+02, 8.08589521e+02,
       7.68302840e+02, 7.68302840e+02, 7.68302840e+02, 7.68302840e+02,
       7.27777466e+02, 7.27777466e+02, 7.27777466e+02, 7.27777466e+02,
       6.88776134e+02, 6.88776134e+02, 6.88776134e+02, 6.88776134e+02,
       6.51822493e+02, 6.51822493e+02, 6.51822493e+02, 6.51822493e+02,
       6.16850793e+02, 6.16850793e+02, 6.16850793e+02, 6.16850793e+02,
       5.83873049e+02, 5.83873049e+02, 5.83873049e+02, 5.83873049e+02,
       5.53077621e+02, 5.53077621e+02, 5.53077621e+02, 5.53077621e+02,
       5.24847307e+02, 5.24847307e+02, 5.24847307e+02, 5.24847307e+02,
       4.99936052e+02, 4.99936052e+02, 4.99936052e+02, 4.99936052e+02,
       4.79307983e+02, 4.79307983e+02, 4.79307983e+02, 4.79307983e+02,
       4.64037017e+02, 4.64037017e+02, 4.64037017e+02, 4.64037017e+02,
       4.54717049e+02, 4.54717049e+02, 4.54717049e+02, 4.54717049e+02,
       4.50630729e+02, 4.50630729e+02, 4.50630729e+02, 4.50630729e+02,
       4.49766128e+02, 4.49766128e+02, 4.49766128e+02, 4.49766128e+02,
       4.50635760e+02, 4.50635760e+02, 4.50635760e+02, 4.50635760e+02,
       4.52192339e+02, 4.52192339e+02, 4.52192339e+02, 4.52192339e+02,
       4.52791836e+02, 4.52791836e+02, 4.52791836e+02, 4.52791836e+02,
       4.53026052e+02, 4.53026052e+02, 4.53026052e+02, 4.53026052e+02,
       4.53174609e+02, 4.53174609e+02, 4.53174609e+02, 4.53174609e+02,
       4.53352116e+02, 4.53352116e+02, 4.53352116e+02, 4.53352116e+02,
       4.53668407e+02, 4.53668407e+02, 4.53668407e+02, 4.53668407e+02,
       4.54129426e+02, 4.54129426e+02, 4.54129426e+02, 4.54129426e+02,
       4.54606825e+02, 4.54606825e+02, 4.54606825e+02, 4.54606825e+02,
       4.55071542e+02, 4.55071542e+02, 4.55071542e+02, 4.55071542e+02,
       4.55519242e+02, 4.55519242e+02, 4.55519242e+02, 4.55519242e+02,
       4.55942322e+02, 4.55942322e+02, 4.55942322e+02, 4.55942322e+02,
       4.56555572e+02, 4.56555572e+02, 4.56555572e+02, 4.56555572e+02,
       4.57153744e+02, 4.57153744e+02, 4.57153744e+02, 4.57153744e+02,
       4.55012364e+02, 4.55012364e+02, 4.55012364e+02, 4.55012364e+02,
       4.36291749e+02, 4.36291749e+02, 4.36291749e+02, 4.36291749e+02,
       3.50253071e+02, 3.50253071e+02, 3.50253071e+02, 3.50253071e+02,
       1.37331684e+02, 1.37331684e+02, 1.37331684e+02, 1.37331684e+02,
       7.81961782e+00, 7.81961782e+00, 7.81961782e+00, 7.81961782e+00,
       3.15710255e-02, 3.15710255e-02, 3.15710255e-02, 3.15710255e-02,
       1.00025204e-02, 1.00025204e-02, 1.00025204e-02, 1.00025204e-02,
       1.00000004e-02, 1.00000004e-02, 1.00000004e-02, 1.00000004e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99996035, 0.99996035, 0.99996035, 0.99996035, 0.99987476,
       0.99987476, 0.99987476, 0.99987476, 0.99968276, 0.99968276,
       0.99968276, 0.99968276, 0.99923411, 0.99923411, 0.99923411,
       0.99923411, 0.99826762, 0.99826762, 0.99826762, 0.99826762,
       0.99633541, 0.99633541, 0.99633541, 0.99633541, 0.99277013,
       0.99277013, 0.99277013, 0.99277013, 0.98671964, 0.98671964,
       0.98671964, 0.98671964, 0.977293  , 0.977293  , 0.977293  ,
       0.977293  , 0.96379833, 0.96379833, 0.96379833, 0.96379833,
       0.94597383, 0.94597383, 0.94597383, 0.94597383, 0.9240842 ,
       0.9240842 , 0.9240842 , 0.9240842 , 0.89882269, 0.89882269,
       0.89882269, 0.89882269, 0.87107325, 0.87107325, 0.87107325,
       0.87107325, 0.84163799, 0.84163799, 0.84163799, 0.84163799,
       0.81121158, 0.81121158, 0.81121158, 0.81121158, 0.7809964 ,
       0.7809964 , 0.7809964 , 0.7809964 , 0.75175867, 0.75175867,
       0.75175867, 0.75175867, 0.72358262, 0.72358262, 0.72358262,
       0.72358262, 0.69646996, 0.69646996, 0.69646996, 0.69646996,
       0.67055951, 0.67055951, 0.67055951, 0.67055951, 0.64587767,
       0.64587767, 0.64587767, 0.64587767, 0.62371507, 0.62371507,
       0.62371507, 0.62371507, 0.60245905, 0.60245905, 0.60245905,
       0.60245905, 0.58804181, 0.58804181, 0.58804181, 0.58804181,
       0.57415787, 0.57415787, 0.57415787, 0.57415787, 0.56801698,
       0.56801698, 0.56801698, 0.56801698, 0.56600286, 0.56600286,
       0.56600286, 0.56600286, 0.56486913, 0.56486913, 0.56486913,
       0.56486913, 0.56568532, 0.56568532, 0.56568532, 0.56568532,
       0.56697037, 0.56697037, 0.56697037, 0.56697037, 0.567595  ,
       0.567595  , 0.567595  , 0.567595  , 0.56755691, 0.56755691,
       0.56755691, 0.56755691, 0.56742984, 0.56742984, 0.56742984,
       0.56742984, 0.56748199, 0.56748199, 0.56748199, 0.56748199,
       0.56775104, 0.56775104, 0.56775104, 0.56775104, 0.56831532,
       0.56831532, 0.56831532, 0.56831532, 0.57016477, 0.57016477,
       0.57016477, 0.57016477, 0.57848067, 0.57848067, 0.57848067,
       0.57848067, 0.60993862, 0.60993862, 0.60993862, 0.60993862,
       0.70608446, 0.70608446, 0.70608446, 0.70608446, 0.94942581,
       0.94942581, 0.94942581, 0.94942581, 1.46794713, 1.46794713,
       1.46794713, 1.46794713, 2.399093  , 2.399093  , 2.399093  ,
       2.399093  , 3.49161502, 3.49161502, 3.49161502, 3.49161502,
       3.88909392, 3.88909392, 3.88909392, 3.88909392, 3.45166183,
       3.45166183, 3.45166183, 3.45166183, 1.72693552, 1.72693552,
       1.72693552, 1.72693552, 1.05571813, 1.05571813, 1.05571813,
       1.05571813, 1.00183475, 1.00183475, 1.00183475, 1.00183475,
       1.00000159, 1.00000159, 1.00000159, 1.00000159, 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.48343235e-03, 1.48343235e-03, 1.48343235e-03, 1.48343235e-03,
       4.68625754e-03, 4.68625754e-03, 4.68625754e-03, 4.68625754e-03,
       1.18714812e-02, 1.18714812e-02, 1.18714812e-02, 1.18714812e-02,
       2.86653854e-02, 2.86653854e-02, 2.86653854e-02, 2.86653854e-02,
       6.48624680e-02, 6.48624680e-02, 6.48624680e-02, 6.48624680e-02,
       1.37311383e-01, 1.37311383e-01, 1.37311383e-01, 1.37311383e-01,
       2.71286993e-01, 2.71286993e-01, 2.71286993e-01, 2.71286993e-01,
       4.99544165e-01, 4.99544165e-01, 4.99544165e-01, 4.99544165e-01,
       8.57450278e-01, 8.57450278e-01, 8.57450278e-01, 8.57450278e-01,
       1.37475596e+00, 1.37475596e+00, 1.37475596e+00, 1.37475596e+00,
       2.06719154e+00, 2.06719154e+00, 2.06719154e+00, 2.06719154e+00,
       2.93221227e+00, 2.93221227e+00, 2.93221227e+00, 2.93221227e+00,
       3.95128996e+00, 3.95128996e+00, 3.95128996e+00, 3.95128996e+00,
       5.09756199e+00, 5.09756199e+00, 5.09756199e+00, 5.09756199e+00,
       6.34579257e+00, 6.34579257e+00, 6.34579257e+00, 6.34579257e+00,
       7.67146094e+00, 7.67146094e+00, 7.67146094e+00, 7.67146094e+00,
       9.01982632e+00, 9.01982632e+00, 9.01982632e+00, 9.01982632e+00,
       1.03717565e+01, 1.03717565e+01, 1.03717565e+01, 1.03717565e+01,
       1.17165199e+01, 1.17165199e+01, 1.17165199e+01, 1.17165199e+01,
       1.30503359e+01, 1.30503359e+01, 1.30503359e+01, 1.30503359e+01,
       1.43659229e+01, 1.43659229e+01, 1.43659229e+01, 1.43659229e+01,
       1.56482456e+01, 1.56482456e+01, 1.56482456e+01, 1.56482456e+01,
       1.68667491e+01, 1.68667491e+01, 1.68667491e+01, 1.68667491e+01,
       1.79752388e+01, 1.79752388e+01, 1.79752388e+01, 1.79752388e+01,
       1.89049267e+01, 1.89049267e+01, 1.89049267e+01, 1.89049267e+01,
       1.95880409e+01, 1.95880409e+01, 1.95880409e+01, 1.95880409e+01,
       1.99895045e+01, 1.99895045e+01, 1.99895045e+01, 1.99895045e+01,
       2.01509131e+01, 2.01509131e+01, 2.01509131e+01, 2.01509131e+01,
       2.01756935e+01, 2.01756935e+01, 2.01756935e+01, 2.01756935e+01,
       2.01136639e+01, 2.01136639e+01, 2.01136639e+01, 2.01136639e+01,
       2.00436849e+01, 2.00436849e+01, 2.00436849e+01, 2.00436849e+01,
       2.00184695e+01, 2.00184695e+01, 2.00184695e+01, 2.00184695e+01,
       2.00087073e+01, 2.00087073e+01, 2.00087073e+01, 2.00087073e+01,
       2.00007501e+01, 2.00007501e+01, 2.00007501e+01, 2.00007501e+01,
       1.99896154e+01, 1.99896154e+01, 1.99896154e+01, 1.99896154e+01,
       1.99701656e+01, 1.99701656e+01, 1.99701656e+01, 1.99701656e+01,
       1.99446240e+01, 1.99446240e+01, 1.99446240e+01, 1.99446240e+01,
       1.99208683e+01, 1.99208683e+01, 1.99208683e+01, 1.99208683e+01,
       1.98989526e+01, 1.98989526e+01, 1.98989526e+01, 1.98989526e+01,
       1.98779645e+01, 1.98779645e+01, 1.98779645e+01, 1.98779645e+01,
       1.98568827e+01, 1.98568827e+01, 1.98568827e+01, 1.98568827e+01,
       1.98394425e+01, 1.98394425e+01, 1.98394425e+01, 1.98394425e+01,
       1.98253039e+01, 1.98253039e+01, 1.98253039e+01, 1.98253039e+01,
       1.97798791e+01, 1.97798791e+01, 1.97798791e+01, 1.97798791e+01,
       1.95773152e+01, 1.95773152e+01, 1.95773152e+01, 1.95773152e+01,
       1.86462995e+01, 1.86462995e+01, 1.86462995e+01, 1.86462995e+01,
       1.49605093e+01, 1.49605093e+01, 1.49605093e+01, 1.49605093e+01,
       5.66403104e+00, 5.66403104e+00, 5.66403104e+00, 5.66403104e+00,
       2.39671368e-01, 2.39671368e-01, 2.39671368e-01, 2.39671368e-01,
       8.33807575e-04, 8.33807575e-04, 8.33807575e-04, 8.33807575e-04,
       1.88954541e-07, 1.88954541e-07, 1.88954541e-07, 1.88954541e-07,
       2.94104736e-11, 2.94104736e-11, 2.94104736e-11, 2.94104736e-11,
       4.70101359e-15, 4.70101359e-15, 4.70101359e-15, 4.70101359e-15,
       7.41275834e-19, 7.41275834e-19, 7.41275834e-19, 7.41275834e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99944497e+02, 9.99944497e+02, 9.99944497e+02, 9.99944497e+02,
       9.99824671e+02, 9.99824671e+02, 9.99824671e+02, 9.99824671e+02,
       9.99555901e+02, 9.99555901e+02, 9.99555901e+02, 9.99555901e+02,
       9.98927969e+02, 9.98927969e+02, 9.98927969e+02, 9.98927969e+02,
       9.97575760e+02, 9.97575760e+02, 9.97575760e+02, 9.97575760e+02,
       9.94874250e+02, 9.94874250e+02, 9.94874250e+02, 9.94874250e+02,
       9.89895755e+02, 9.89895755e+02, 9.89895755e+02, 9.89895755e+02,
       9.81464823e+02, 9.81464823e+02, 9.81464823e+02, 9.81464823e+02,
       9.68372978e+02, 9.68372978e+02, 9.68372978e+02, 9.68372978e+02,
       9.49721618e+02, 9.49721618e+02, 9.49721618e+02, 9.49721618e+02,
       9.25246848e+02, 9.25246848e+02, 9.25246848e+02, 9.25246848e+02,
       8.95440766e+02, 8.95440766e+02, 8.95440766e+02, 8.95440766e+02,
       8.61389674e+02, 8.61389674e+02, 8.61389674e+02, 8.61389674e+02,
       8.24419634e+02, 8.24419634e+02, 8.24419634e+02, 8.24419634e+02,
       7.85711897e+02, 7.85711897e+02, 7.85711897e+02, 7.85711897e+02,
       7.46248517e+02, 7.46248517e+02, 7.46248517e+02, 7.46248517e+02,
       7.07596025e+02, 7.07596025e+02, 7.07596025e+02, 7.07596025e+02,
       6.70801074e+02, 6.70801074e+02, 6.70801074e+02, 6.70801074e+02,
       6.35877624e+02, 6.35877624e+02, 6.35877624e+02, 6.35877624e+02,
       6.02787079e+02, 6.02787079e+02, 6.02787079e+02, 6.02787079e+02,
       5.71599803e+02, 5.71599803e+02, 5.71599803e+02, 5.71599803e+02,
       5.42561321e+02, 5.42561321e+02, 5.42561321e+02, 5.42561321e+02,
       5.16114337e+02, 5.16114337e+02, 5.16114337e+02, 5.16114337e+02,
       4.93068680e+02, 4.93068680e+02, 4.93068680e+02, 4.93068680e+02,
       4.74411379e+02, 4.74411379e+02, 4.74411379e+02, 4.74411379e+02,
       4.61084454e+02, 4.61084454e+02, 4.61084454e+02, 4.61084454e+02,
       4.53401496e+02, 4.53401496e+02, 4.53401496e+02, 4.53401496e+02,
       4.50361189e+02, 4.50361189e+02, 4.50361189e+02, 4.50361189e+02,
       4.49900506e+02, 4.49900506e+02, 4.49900506e+02, 4.49900506e+02,
       4.51070680e+02, 4.51070680e+02, 4.51070680e+02, 4.51070680e+02,
       4.52380461e+02, 4.52380461e+02, 4.52380461e+02, 4.52380461e+02,
       4.52845112e+02, 4.52845112e+02, 4.52845112e+02, 4.52845112e+02,
       4.53055158e+02, 4.53055158e+02, 4.53055158e+02, 4.53055158e+02,
       4.53218903e+02, 4.53218903e+02, 4.53218903e+02, 4.53218903e+02,
       4.53431056e+02, 4.53431056e+02, 4.53431056e+02, 4.53431056e+02,
       4.53786396e+02, 4.53786396e+02, 4.53786396e+02, 4.53786396e+02,
       4.54248310e+02, 4.54248310e+02, 4.54248310e+02, 4.54248310e+02,
       4.54702361e+02, 4.54702361e+02, 4.54702361e+02, 4.54702361e+02,
       4.55162009e+02, 4.55162009e+02, 4.55162009e+02, 4.55162009e+02,
       4.55624655e+02, 4.55624655e+02, 4.55624655e+02, 4.55624655e+02,
       4.56025036e+02, 4.56025036e+02, 4.56025036e+02, 4.56025036e+02,
       4.56514938e+02, 4.56514938e+02, 4.56514938e+02, 4.56514938e+02,
       4.57215307e+02, 4.57215307e+02, 4.57215307e+02, 4.57215307e+02,
       4.56862932e+02, 4.56862932e+02, 4.56862932e+02, 4.56862932e+02,
       4.48795942e+02, 4.48795942e+02, 4.48795942e+02, 4.48795942e+02,
       4.03414163e+02, 4.03414163e+02, 4.03414163e+02, 4.03414163e+02,
       2.46087022e+02, 2.46087022e+02, 2.46087022e+02, 2.46087022e+02,
       4.07741358e+01, 4.07741358e+01, 4.07741358e+01, 4.07741358e+01,
       5.40974800e-01, 5.40974800e-01, 5.40974800e-01, 5.40974800e-01,
       1.02032471e-02, 1.02032471e-02, 1.02032471e-02, 1.02032471e-02,
       1.00000224e-02, 1.00000224e-02, 1.00000224e-02, 1.00000224e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99991158, 0.99991158, 0.99991158, 0.99991158, 0.99973526,
       0.99973526, 0.99973526, 0.99973526, 0.99936862, 0.99936862,
       0.99936862, 0.99936862, 0.9985633 , 0.9985633 , 0.9985633 ,
       0.9985633 , 0.99694101, 0.99694101, 0.99694101, 0.99694101,
       0.99391234, 0.99391234, 0.99391234, 0.99391234, 0.9887    ,
       0.9887    , 0.9887    , 0.9887    , 0.98044802, 0.98044802,
       0.98044802, 0.98044802, 0.968429  , 0.968429  , 0.968429  ,
       0.968429  , 0.95227242, 0.95227242, 0.95227242, 0.95227242,
       0.93209641, 0.93209641, 0.93209641, 0.93209641, 0.90846461,
       0.90846461, 0.90846461, 0.90846461, 0.88219172, 0.88219172,
       0.88219172, 0.88219172, 0.8540954 , 0.8540954 , 0.8540954 ,
       0.8540954 , 0.82480124, 0.82480124, 0.82480124, 0.82480124,
       0.7952339 , 0.7952339 , 0.7952339 , 0.7952339 , 0.7663955 ,
       0.7663955 , 0.7663955 , 0.7663955 , 0.73852584, 0.73852584,
       0.73852584, 0.73852584, 0.71164018, 0.71164018, 0.71164018,
       0.71164018, 0.6857697 , 0.6857697 , 0.6857697 , 0.6857697 ,
       0.66111252, 0.66111252, 0.66111252, 0.66111252, 0.63763059,
       0.63763059, 0.63763059, 0.63763059, 0.6169687 , 0.6169687 ,
       0.6169687 , 0.6169687 , 0.59702916, 0.59702916, 0.59702916,
       0.59702916, 0.58420196, 0.58420196, 0.58420196, 0.58420196,
       0.57229985, 0.57229985, 0.57229985, 0.57229985, 0.56689435,
       0.56689435, 0.56689435, 0.56689435, 0.56582645, 0.56582645,
       0.56582645, 0.56582645, 0.56516822, 0.56516822, 0.56516822,
       0.56516822, 0.56616647, 0.56616647, 0.56616647, 0.56616647,
       0.56702185, 0.56702185, 0.56702185, 0.56702185, 0.56762457,
       0.56762457, 0.56762457, 0.56762457, 0.56765827, 0.56765827,
       0.56765827, 0.56765827, 0.56756729, 0.56756729, 0.56756729,
       0.56756729, 0.56761051, 0.56761051, 0.56761051, 0.56761051,
       0.56786939, 0.56786939, 0.56786939, 0.56786939, 0.56835266,
       0.56835266, 0.56835266, 0.56835266, 0.5696172 , 0.5696172 ,
       0.5696172 , 0.5696172 , 0.57503406, 0.57503406, 0.57503406,
       0.57503406, 0.59623637, 0.59623637, 0.59623637, 0.59623637,
       0.66403011, 0.66403011, 0.66403011, 0.66403011, 0.84354865,
       0.84354865, 0.84354865, 0.84354865, 1.24434905, 1.24434905,
       1.24434905, 1.24434905, 2.00424343, 2.00424343, 2.00424343,
       2.00424343, 3.13960403, 3.13960403, 3.13960403, 3.13960403,
       3.85414213, 3.85414213, 3.85414213, 3.85414213, 3.84786708,
       3.84786708, 3.84786708, 3.84786708, 2.5771983 , 2.5771983 ,
       2.5771983 , 2.5771983 , 1.18896322, 1.18896322, 1.18896322,
       1.18896322, 1.01065342, 1.01065342, 1.01065342, 1.01065342,
       1.00008186, 1.00008186, 1.00008186, 1.00008186, 1.00000002,
       1.00000002, 1.00000002, 1.00000002, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.30857813e-03, 3.30857813e-03, 3.30857813e-03, 3.30857813e-03,
       9.90650995e-03, 9.90650995e-03, 9.90650995e-03, 9.90650995e-03,
       2.36295980e-02, 2.36295980e-02, 2.36295980e-02, 2.36295980e-02,
       5.37860149e-02, 5.37860149e-02, 5.37860149e-02, 5.37860149e-02,
       1.14592327e-01, 1.14592327e-01, 1.14592327e-01, 1.14592327e-01,
       2.28324216e-01, 2.28324216e-01, 2.28324216e-01, 2.28324216e-01,
       4.24711771e-01, 4.24711771e-01, 4.24711771e-01, 4.24711771e-01,
       7.37353653e-01, 7.37353653e-01, 7.37353653e-01, 7.37353653e-01,
       1.19658658e+00, 1.19658658e+00, 1.19658658e+00, 1.19658658e+00,
       1.82130732e+00, 1.82130732e+00, 1.82130732e+00, 1.82130732e+00,
       2.61367668e+00, 2.61367668e+00, 2.61367668e+00, 2.61367668e+00,
       3.55960001e+00, 3.55960001e+00, 3.55960001e+00, 3.55960001e+00,
       4.63473086e+00, 4.63473086e+00, 4.63473086e+00, 4.63473086e+00,
       5.81317888e+00, 5.81317888e+00, 5.81317888e+00, 5.81317888e+00,
       7.07525107e+00, 7.07525107e+00, 7.07525107e+00, 7.07525107e+00,
       8.37802334e+00, 8.37802334e+00, 8.37802334e+00, 8.37802334e+00,
       9.69020641e+00, 9.69020641e+00, 9.69020641e+00, 9.69020641e+00,
       1.09986461e+01, 1.09986461e+01, 1.09986461e+01, 1.09986461e+01,
       1.22993392e+01, 1.22993392e+01, 1.22993392e+01, 1.22993392e+01,
       1.35884048e+01, 1.35884048e+01, 1.35884048e+01, 1.35884048e+01,
       1.48563893e+01, 1.48563893e+01, 1.48563893e+01, 1.48563893e+01,
       1.60857753e+01, 1.60857753e+01, 1.60857753e+01, 1.60857753e+01,
       1.72423634e+01, 1.72423634e+01, 1.72423634e+01, 1.72423634e+01,
       1.82765856e+01, 1.82765856e+01, 1.82765856e+01, 1.82765856e+01,
       1.91204857e+01, 1.91204857e+01, 1.91204857e+01, 1.91204857e+01,
       1.97147730e+01, 1.97147730e+01, 1.97147730e+01, 1.97147730e+01,
       2.00413906e+01, 2.00413906e+01, 2.00413906e+01, 2.00413906e+01,
       2.01574495e+01, 2.01574495e+01, 2.01574495e+01, 2.01574495e+01,
       2.01659188e+01, 2.01659188e+01, 2.01659188e+01, 2.01659188e+01,
       2.00925092e+01, 2.00925092e+01, 2.00925092e+01, 2.00925092e+01,
       2.00365890e+01, 2.00365890e+01, 2.00365890e+01, 2.00365890e+01,
       2.00158066e+01, 2.00158066e+01, 2.00158066e+01, 2.00158066e+01,
       2.00060951e+01, 2.00060951e+01, 2.00060951e+01, 2.00060951e+01,
       1.99977273e+01, 1.99977273e+01, 1.99977273e+01, 1.99977273e+01,
       1.99853901e+01, 1.99853901e+01, 1.99853901e+01, 1.99853901e+01,
       1.99645055e+01, 1.99645055e+01, 1.99645055e+01, 1.99645055e+01,
       1.99389693e+01, 1.99389693e+01, 1.99389693e+01, 1.99389693e+01,
       1.99147513e+01, 1.99147513e+01, 1.99147513e+01, 1.99147513e+01,
       1.98919906e+01, 1.98919906e+01, 1.98919906e+01, 1.98919906e+01,
       1.98717727e+01, 1.98717727e+01, 1.98717727e+01, 1.98717727e+01,
       1.98525425e+01, 1.98525425e+01, 1.98525425e+01, 1.98525425e+01,
       1.98340626e+01, 1.98340626e+01, 1.98340626e+01, 1.98340626e+01,
       1.98228656e+01, 1.98228656e+01, 1.98228656e+01, 1.98228656e+01,
       1.97973138e+01, 1.97973138e+01, 1.97973138e+01, 1.97973138e+01,
       1.96970829e+01, 1.96970829e+01, 1.96970829e+01, 1.96970829e+01,
       1.92311319e+01, 1.92311319e+01, 1.92311319e+01, 1.92311319e+01,
       1.72194921e+01, 1.72194921e+01, 1.72194921e+01, 1.72194921e+01,
       1.05940203e+01, 1.05940203e+01, 1.05940203e+01, 1.05940203e+01,
       1.33734950e+00, 1.33734950e+00, 1.33734950e+00, 1.33734950e+00,
       1.58314232e-02, 1.58314232e-02, 1.58314232e-02, 1.58314232e-02,
       1.13008501e-05, 1.13008501e-05, 1.13008501e-05, 1.13008501e-05,
       1.78142403e-09, 1.78142403e-09, 1.78142403e-09, 1.78142403e-09,
       2.75475972e-13, 2.75475972e-13, 2.75475972e-13, 2.75475972e-13,
       4.22869040e-17, 4.22869040e-17, 4.22869040e-17, 4.22869040e-17,
       4.15971299e-21, 4.15971299e-21, 4.15971299e-21, 4.15971299e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99876214e+02, 9.99876214e+02, 9.99876214e+02, 9.99876214e+02,
       9.99629396e+02, 9.99629396e+02, 9.99629396e+02, 9.99629396e+02,
       9.99116221e+02, 9.99116221e+02, 9.99116221e+02, 9.99116221e+02,
       9.97989363e+02, 9.97989363e+02, 9.97989363e+02, 9.97989363e+02,
       9.95720692e+02, 9.95720692e+02, 9.95720692e+02, 9.95720692e+02,
       9.91489781e+02, 9.91489781e+02, 9.91489781e+02, 9.91489781e+02,
       9.84221698e+02, 9.84221698e+02, 9.84221698e+02, 9.84221698e+02,
       9.72748451e+02, 9.72748451e+02, 9.72748451e+02, 9.72748451e+02,
       9.56108956e+02, 9.56108956e+02, 9.56108956e+02, 9.56108956e+02,
       9.33872727e+02, 9.33872727e+02, 9.33872727e+02, 9.33872727e+02,
       9.06315492e+02, 9.06315492e+02, 9.06315492e+02, 9.06315492e+02,
       8.74337896e+02, 8.74337896e+02, 8.74337896e+02, 8.74337896e+02,
       8.39171349e+02, 8.39171349e+02, 8.39171349e+02, 8.39171349e+02,
       8.02021280e+02, 8.02021280e+02, 8.02021280e+02, 8.02021280e+02,
       7.63802020e+02, 7.63802020e+02, 7.63802020e+02, 7.63802020e+02,
       7.25718152e+02, 7.25718152e+02, 7.25718152e+02, 7.25718152e+02,
       6.89144129e+02, 6.89144129e+02, 6.89144129e+02, 6.89144129e+02,
       6.54324851e+02, 6.54324851e+02, 6.54324851e+02, 6.54324851e+02,
       6.21229262e+02, 6.21229262e+02, 6.21229262e+02, 6.21229262e+02,
       5.89863923e+02, 5.89863923e+02, 5.89863923e+02, 5.89863923e+02,
       5.60333915e+02, 5.60333915e+02, 5.60333915e+02, 5.60333915e+02,
       5.32945780e+02, 5.32945780e+02, 5.32945780e+02, 5.32945780e+02,
       5.08201682e+02, 5.08201682e+02, 5.08201682e+02, 5.08201682e+02,
       4.86948766e+02, 4.86948766e+02, 4.86948766e+02, 4.86948766e+02,
       4.70169922e+02, 4.70169922e+02, 4.70169922e+02, 4.70169922e+02,
       4.58655322e+02, 4.58655322e+02, 4.58655322e+02, 4.58655322e+02,
       4.52421155e+02, 4.52421155e+02, 4.52421155e+02, 4.52421155e+02,
       4.50227207e+02, 4.50227207e+02, 4.50227207e+02, 4.50227207e+02,
       4.50078663e+02, 4.50078663e+02, 4.50078663e+02, 4.50078663e+02,
       4.51471203e+02, 4.51471203e+02, 4.51471203e+02, 4.51471203e+02,
       4.52529169e+02, 4.52529169e+02, 4.52529169e+02, 4.52529169e+02,
       4.52901471e+02, 4.52901471e+02, 4.52901471e+02, 4.52901471e+02,
       4.53088208e+02, 4.53088208e+02, 4.53088208e+02, 4.53088208e+02,
       4.53261283e+02, 4.53261283e+02, 4.53261283e+02, 4.53261283e+02,
       4.53508024e+02, 4.53508024e+02, 4.53508024e+02, 4.53508024e+02,
       4.53907221e+02, 4.53907221e+02, 4.53907221e+02, 4.53907221e+02,
       4.54378816e+02, 4.54378816e+02, 4.54378816e+02, 4.54378816e+02,
       4.54816020e+02, 4.54816020e+02, 4.54816020e+02, 4.54816020e+02,
       4.55254101e+02, 4.55254101e+02, 4.55254101e+02, 4.55254101e+02,
       4.55702968e+02, 4.55702968e+02, 4.55702968e+02, 4.55702968e+02,
       4.56112277e+02, 4.56112277e+02, 4.56112277e+02, 4.56112277e+02,
       4.56533652e+02, 4.56533652e+02, 4.56533652e+02, 4.56533652e+02,
       4.57147821e+02, 4.57147821e+02, 4.57147821e+02, 4.57147821e+02,
       4.57487722e+02, 4.57487722e+02, 4.57487722e+02, 4.57487722e+02,
       4.54489765e+02, 4.54489765e+02, 4.54489765e+02, 4.54489765e+02,
       4.32367414e+02, 4.32367414e+02, 4.32367414e+02, 4.32367414e+02,
       3.36891352e+02, 3.36891352e+02, 3.36891352e+02, 3.36891352e+02,
       1.20082128e+02, 1.20082128e+02, 1.20082128e+02, 1.20082128e+02,
       5.54711825e+00, 5.54711825e+00, 5.54711825e+00, 5.54711825e+00,
       2.19907181e-02, 2.19907181e-02, 2.19907181e-02, 2.19907181e-02,
       1.00013363e-02, 1.00013363e-02, 1.00013363e-02, 1.00013363e-02,
       1.00000002e-02, 1.00000002e-02, 1.00000002e-02, 1.00000002e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99981351, 0.99981351, 0.99981351, 0.99981351, 0.99947054,
       0.99947054, 0.99947054, 0.99947054, 0.9988105 , 0.9988105 ,
       0.9988105 , 0.9988105 , 0.99744661, 0.99744661, 0.99744661,
       0.99744661, 0.99487737, 0.99487737, 0.99487737, 0.99487737,
       0.99039499, 0.99039499, 0.99039499, 0.99039499, 0.98318849,
       0.98318849, 0.98318849, 0.98318849, 0.97251404, 0.97251404,
       0.97251404, 0.97251404, 0.95791416, 0.95791416, 0.95791416,
       0.95791416, 0.9393737 , 0.9393737 , 0.9393737 , 0.9393737 ,
       0.91732519, 0.91732519, 0.91732519, 0.91732519, 0.8924994 ,
       0.8924994 , 0.8924994 , 0.8924994 , 0.86569902, 0.86569902,
       0.86569902, 0.86569902, 0.83758007, 0.83758007, 0.83758007,
       0.83758007, 0.80880936, 0.80880936, 0.80880936, 0.80880936,
       0.78041711, 0.78041711, 0.78041711, 0.78041711, 0.75287396,
       0.75287396, 0.75287396, 0.75287396, 0.7262632 , 0.7262632 ,
       0.7262632 , 0.7262632 , 0.70056925, 0.70056925, 0.70056925,
       0.70056925, 0.67584993, 0.67584993, 0.67584993, 0.67584993,
       0.65238615, 0.65238615, 0.65238615, 0.65238615, 0.63003424,
       0.63003424, 0.63003424, 0.63003424, 0.61084192, 0.61084192,
       0.61084192, 0.61084192, 0.59222361, 0.59222361, 0.59222361,
       0.59222361, 0.58082307, 0.58082307, 0.58082307, 0.58082307,
       0.57084769, 0.57084769, 0.57084769, 0.57084769, 0.56609991,
       0.56609991, 0.56609991, 0.56609991, 0.56568386, 0.56568386,
       0.56568386, 0.56568386, 0.56548787, 0.56548787, 0.56548787,
       0.56548787, 0.56657134, 0.56657134, 0.56657134, 0.56657134,
       0.56710969, 0.56710969, 0.56710969, 0.56710969, 0.56763591,
       0.56763591, 0.56763591, 0.56763591, 0.56774535, 0.56774535,
       0.56774535, 0.56774535, 0.56770037, 0.56770037, 0.56770037,
       0.56770037, 0.56775753, 0.56775753, 0.56775753, 0.56775753,
       0.568006  , 0.568006  , 0.568006  , 0.568006  , 0.56842167,
       0.56842167, 0.56842167, 0.56842167, 0.56933391, 0.56933391,
       0.56933391, 0.56933391, 0.57288369, 0.57288369, 0.57288369,
       0.57288369, 0.58706794, 0.58706794, 0.58706794, 0.58706794,
       0.6343945 , 0.6343945 , 0.6343945 , 0.6343945 , 0.76532497,
       0.76532497, 0.76532497, 0.76532497, 1.0710979 , 1.0710979 ,
       1.0710979 , 1.0710979 , 1.67993717, 1.67993717, 1.67993717,
       1.67993717, 2.70591502, 2.70591502, 2.70591502, 2.70591502,
       3.70007988, 3.70007988, 3.70007988, 3.70007988, 3.98442962,
       3.98442962, 3.98442962, 3.98442962, 3.39924656, 3.39924656,
       3.39924656, 3.39924656, 1.61726694, 1.61726694, 1.61726694,
       1.61726694, 1.04481323, 1.04481323, 1.04481323, 1.04481323,
       1.00129504, 1.00129504, 1.00129504, 1.00129504, 1.00000081,
       1.00000081, 1.00000081, 1.00000081, 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([6.97829163e-03, 6.97829163e-03, 6.97829163e-03, 6.97829163e-03,
       1.98144360e-02, 1.98144360e-02, 1.98144360e-02, 1.98144360e-02,
       4.45271720e-02, 4.45271720e-02, 4.45271720e-02, 4.45271720e-02,
       9.56332947e-02, 9.56332947e-02, 9.56332947e-02, 9.56332947e-02,
       1.92056185e-01, 1.92056185e-01, 1.92056185e-01, 1.92056185e-01,
       3.60758718e-01, 3.60758718e-01, 3.60758718e-01, 3.60758718e-01,
       6.33292020e-01, 6.33292020e-01, 6.33292020e-01, 6.33292020e-01,
       1.03998760e+00, 1.03998760e+00, 1.03998760e+00, 1.03998760e+00,
       1.60218999e+00, 1.60218999e+00, 1.60218999e+00, 1.60218999e+00,
       2.32628483e+00, 2.32628483e+00, 2.32628483e+00, 2.32628483e+00,
       3.20261012e+00, 3.20261012e+00, 3.20261012e+00, 3.20261012e+00,
       4.20983812e+00, 4.20983812e+00, 4.20983812e+00, 4.20983812e+00,
       5.32266284e+00, 5.32266284e+00, 5.32266284e+00, 5.32266284e+00,
       6.52018139e+00, 6.52018139e+00, 6.52018139e+00, 6.52018139e+00,
       7.77578750e+00, 7.77578750e+00, 7.77578750e+00, 7.77578750e+00,
       9.04696669e+00, 9.04696669e+00, 9.04696669e+00, 9.04696669e+00,
       1.03198134e+01, 1.03198134e+01, 1.03198134e+01, 1.03198134e+01,
       1.15876099e+01, 1.15876099e+01, 1.15876099e+01, 1.15876099e+01,
       1.28468639e+01, 1.28468639e+01, 1.28468639e+01, 1.28468639e+01,
       1.40930929e+01, 1.40930929e+01, 1.40930929e+01, 1.40930929e+01,
       1.53148719e+01, 1.53148719e+01, 1.53148719e+01, 1.53148719e+01,
       1.64919282e+01, 1.64919282e+01, 1.64919282e+01, 1.64919282e+01,
       1.75867321e+01, 1.75867321e+01, 1.75867321e+01, 1.75867321e+01,
       1.85470262e+01, 1.85470262e+01, 1.85470262e+01, 1.85470262e+01,
       1.93069541e+01, 1.93069541e+01, 1.93069541e+01, 1.93069541e+01,
       1.98179609e+01, 1.98179609e+01, 1.98179609e+01, 1.98179609e+01,
       2.00793284e+01, 2.00793284e+01, 2.00793284e+01, 2.00793284e+01,
       2.01586176e+01, 2.01586176e+01, 2.01586176e+01, 2.01586176e+01,
       2.01524831e+01, 2.01524831e+01, 2.01524831e+01, 2.01524831e+01,
       2.00752058e+01, 2.00752058e+01, 2.00752058e+01, 2.00752058e+01,
       2.00307498e+01, 2.00307498e+01, 2.00307498e+01, 2.00307498e+01,
       2.00136099e+01, 2.00136099e+01, 2.00136099e+01, 2.00136099e+01,
       2.00037603e+01, 2.00037603e+01, 2.00037603e+01, 2.00037603e+01,
       1.99945192e+01, 1.99945192e+01, 1.99945192e+01, 1.99945192e+01,
       1.99804496e+01, 1.99804496e+01, 1.99804496e+01, 1.99804496e+01,
       1.99580977e+01, 1.99580977e+01, 1.99580977e+01, 1.99580977e+01,
       1.99332124e+01, 1.99332124e+01, 1.99332124e+01, 1.99332124e+01,
       1.99091877e+01, 1.99091877e+01, 1.99091877e+01, 1.99091877e+01,
       1.98860108e+01, 1.98860108e+01, 1.98860108e+01, 1.98860108e+01,
       1.98654280e+01, 1.98654280e+01, 1.98654280e+01, 1.98654280e+01,
       1.98471370e+01, 1.98471370e+01, 1.98471370e+01, 1.98471370e+01,
       1.98298574e+01, 1.98298574e+01, 1.98298574e+01, 1.98298574e+01,
       1.98171370e+01, 1.98171370e+01, 1.98171370e+01, 1.98171370e+01,
       1.98030159e+01, 1.98030159e+01, 1.98030159e+01, 1.98030159e+01,
       1.97516465e+01, 1.97516465e+01, 1.97516465e+01, 1.97516465e+01,
       1.95204012e+01, 1.95204012e+01, 1.95204012e+01, 1.95204012e+01,
       1.84745602e+01, 1.84745602e+01, 1.84745602e+01, 1.84745602e+01,
       1.44416174e+01, 1.44416174e+01, 1.44416174e+01, 1.44416174e+01,
       4.87006574e+00, 4.87006574e+00, 4.87006574e+00, 4.87006574e+00,
       1.70878215e-01, 1.70878215e-01, 1.70878215e-01, 1.70878215e-01,
       4.74222438e-04, 4.74222438e-04, 4.74222438e-04, 4.74222438e-04,
       9.62797091e-08, 9.62797091e-08, 9.62797091e-08, 9.62797091e-08,
       1.54134491e-11, 1.54134491e-11, 1.54134491e-11, 1.54134491e-11,
       2.48678570e-15, 2.48678570e-15, 2.48678570e-15, 2.48678570e-15,
       3.95125006e-19, 3.95125006e-19, 3.95125006e-19, 3.95125006e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99738937e+02, 9.99738937e+02, 9.99738937e+02, 9.99738937e+02,
       9.99258865e+02, 9.99258865e+02, 9.99258865e+02, 9.99258865e+02,
       9.98335213e+02, 9.98335213e+02, 9.98335213e+02, 9.98335213e+02,
       9.96427546e+02, 9.96427546e+02, 9.96427546e+02, 9.96427546e+02,
       9.92837210e+02, 9.92837210e+02, 9.92837210e+02, 9.92837210e+02,
       9.86583249e+02, 9.86583249e+02, 9.86583249e+02, 9.86583249e+02,
       9.76553906e+02, 9.76553906e+02, 9.76553906e+02, 9.76553906e+02,
       9.61754277e+02, 9.61754277e+02, 9.61754277e+02, 9.61754277e+02,
       9.41618962e+02, 9.41618962e+02, 9.41618962e+02, 9.41618962e+02,
       9.16225667e+02, 9.16225667e+02, 9.16225667e+02, 9.16225667e+02,
       8.86285914e+02, 8.86285914e+02, 8.86285914e+02, 8.86285914e+02,
       8.52914522e+02, 8.52914522e+02, 8.52914522e+02, 8.52914522e+02,
       8.17299685e+02, 8.17299685e+02, 8.17299685e+02, 8.17299685e+02,
       7.80401265e+02, 7.80401265e+02, 7.80401265e+02, 7.80401265e+02,
       7.43128313e+02, 7.43128313e+02, 7.43128313e+02, 7.43128313e+02,
       7.06850048e+02, 7.06850048e+02, 7.06850048e+02, 7.06850048e+02,
       6.72179206e+02, 6.72179206e+02, 6.72179206e+02, 6.72179206e+02,
       6.39161893e+02, 6.39161893e+02, 6.39161893e+02, 6.39161893e+02,
       6.07736695e+02, 6.07736695e+02, 6.07736695e+02, 6.07736695e+02,
       5.77958609e+02, 5.77958609e+02, 5.77958609e+02, 5.77958609e+02,
       5.49975461e+02, 5.49975461e+02, 5.49975461e+02, 5.49975461e+02,
       5.24148628e+02, 5.24148628e+02, 5.24148628e+02, 5.24148628e+02,
       5.01038900e+02, 5.01038900e+02, 5.01038900e+02, 5.01038900e+02,
       4.81516564e+02, 4.81516564e+02, 4.81516564e+02, 4.81516564e+02,
       4.66526226e+02, 4.66526226e+02, 4.66526226e+02, 4.66526226e+02,
       4.56679419e+02, 4.56679419e+02, 4.56679419e+02, 4.56679419e+02,
       4.51709116e+02, 4.51709116e+02, 4.51709116e+02, 4.51709116e+02,
       4.50204516e+02, 4.50204516e+02, 4.50204516e+02, 4.50204516e+02,
       4.50323474e+02, 4.50323474e+02, 4.50323474e+02, 4.50323474e+02,
       4.51792099e+02, 4.51792099e+02, 4.51792099e+02, 4.51792099e+02,
       4.52644533e+02, 4.52644533e+02, 4.52644533e+02, 4.52644533e+02,
       4.52957374e+02, 4.52957374e+02, 4.52957374e+02, 4.52957374e+02,
       4.53131411e+02, 4.53131411e+02, 4.53131411e+02, 4.53131411e+02,
       4.53310711e+02, 4.53310711e+02, 4.53310711e+02, 4.53310711e+02,
       4.53588206e+02, 4.53588206e+02, 4.53588206e+02, 4.53588206e+02,
       4.54024216e+02, 4.54024216e+02, 4.54024216e+02, 4.54024216e+02,
       4.54505579e+02, 4.54505579e+02, 4.54505579e+02, 4.54505579e+02,
       4.54941322e+02, 4.54941322e+02, 4.54941322e+02, 4.54941322e+02,
       4.55358316e+02, 4.55358316e+02, 4.55358316e+02, 4.55358316e+02,
       4.55776216e+02, 4.55776216e+02, 4.55776216e+02, 4.55776216e+02,
       4.56187451e+02, 4.56187451e+02, 4.56187451e+02, 4.56187451e+02,
       4.56567868e+02, 4.56567868e+02, 4.56567868e+02, 4.56567868e+02,
       4.57061252e+02, 4.57061252e+02, 4.57061252e+02, 4.57061252e+02,
       4.57670049e+02, 4.57670049e+02, 4.57670049e+02, 4.57670049e+02,
       4.56861977e+02, 4.56861977e+02, 4.56861977e+02, 4.56861977e+02,
       4.46897134e+02, 4.46897134e+02, 4.46897134e+02, 4.46897134e+02,
       3.95213842e+02, 3.95213842e+02, 3.95213842e+02, 3.95213842e+02,
       2.27017462e+02, 2.27017462e+02, 2.27017462e+02, 2.27017462e+02,
       3.24722316e+01, 3.24722316e+01, 3.24722316e+01, 3.24722316e+01,
       3.44215454e-01, 3.44215454e-01, 3.44215454e-01, 3.44215454e-01,
       1.00956522e-02, 1.00956522e-02, 1.00956522e-02, 1.00956522e-02,
       1.00000114e-02, 1.00000114e-02, 1.00000114e-02, 1.00000114e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99962715, 0.99962715, 0.99962715, 0.99962715, 0.9989959 ,
       0.9989959 , 0.9989959 , 0.9989959 , 0.99787399, 0.99787399,
       0.99787399, 0.99787399, 0.99569077, 0.99569077, 0.99569077,
       0.99569077, 0.99184415, 0.99184415, 0.99184415, 0.99184415,
       0.98556472, 0.98556472, 0.98556472, 0.98556472, 0.97611065,
       0.97611065, 0.97611065, 0.97611065, 0.96295756, 0.96295756,
       0.96295756, 0.96295756, 0.94597218, 0.94597218, 0.94597218,
       0.94597218, 0.92545827, 0.92545827, 0.92545827, 0.92545827,
       0.90205196, 0.90205196, 0.90205196, 0.90205196, 0.87652198,
       0.87652198, 0.87652198, 0.87652198, 0.84956063, 0.84956063,
       0.84956063, 0.84956063, 0.82170304, 0.82170304, 0.82170304,
       0.82170304, 0.79383738, 0.79383738, 0.79383738, 0.79383738,
       0.76665912, 0.76665912, 0.76665912, 0.76665912, 0.74033691,
       0.74033691, 0.74033691, 0.74033691, 0.71486688, 0.71486688,
       0.71486688, 0.71486688, 0.69028102, 0.69028102, 0.69028102,
       0.69028102, 0.6666371 , 0.6666371 , 0.6666371 , 0.6666371 ,
       0.64432028, 0.64432028, 0.64432028, 0.64432028, 0.62304012,
       0.62304012, 0.62304012, 0.62304012, 0.60528142, 0.60528142,
       0.60528142, 0.60528142, 0.58800675, 0.58800675, 0.58800675,
       0.58800675, 0.5778694 , 0.5778694 , 0.5778694 , 0.5778694 ,
       0.56972246, 0.56972246, 0.56972246, 0.56972246, 0.56560315,
       0.56560315, 0.56560315, 0.56560315, 0.56553233, 0.56553233,
       0.56553233, 0.56553233, 0.56584834, 0.56584834, 0.56584834,
       0.56584834, 0.56690991, 0.56690991, 0.56690991, 0.56690991,
       0.56721384, 0.56721384, 0.56721384, 0.56721384, 0.56762924,
       0.56762924, 0.56762924, 0.56762924, 0.56782241, 0.56782241,
       0.56782241, 0.56782241, 0.56782868, 0.56782868, 0.56782868,
       0.56782868, 0.56791572, 0.56791572, 0.56791572, 0.56791572,
       0.56816164, 0.56816164, 0.56816164, 0.56816164, 0.56851365,
       0.56851365, 0.56851365, 0.56851365, 0.56920152, 0.56920152,
       0.56920152, 0.56920152, 0.57156713, 0.57156713, 0.57156713,
       0.57156713, 0.58101327, 0.58101327, 0.58101327, 0.58101327,
       0.61373599, 0.61373599, 0.61373599, 0.61373599, 0.70822132,
       0.70822132, 0.70822132, 0.70822132, 0.93867528, 0.93867528,
       0.93867528, 0.93867528, 1.41891316, 1.41891316, 1.41891316,
       1.41891316, 2.27525624, 2.27525624, 2.27525624, 2.27525624,
       3.41072177, 3.41072177, 3.41072177, 3.41072177, 3.98667427,
       3.98667427, 3.98667427, 3.98667427, 3.87982047, 3.87982047,
       3.87982047, 3.87982047, 2.43231843, 2.43231843, 2.43231843,
       2.43231843, 1.15615318, 1.15615318, 1.15615318, 1.15615318,
       1.00824283, 1.00824283, 1.00824283, 1.00824283, 1.0000454 ,
       1.0000454 , 1.0000454 , 1.0000454 , 1.00000001, 1.00000001,
       1.00000001, 1.00000001, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.39530183e-02, 1.39530183e-02, 1.39530183e-02, 1.39530183e-02,
       3.75848880e-02, 3.75848880e-02, 3.75848880e-02, 3.75848880e-02,
       7.96128157e-02, 7.96128157e-02, 7.96128157e-02, 7.96128157e-02,
       1.61508250e-01, 1.61508250e-01, 1.61508250e-01, 1.61508250e-01,
       3.06150477e-01, 3.06150477e-01, 3.06150477e-01, 3.06150477e-01,
       5.43251766e-01, 5.43251766e-01, 5.43251766e-01, 5.43251766e-01,
       9.02556002e-01, 9.02556002e-01, 9.02556002e-01, 9.02556002e-01,
       1.40720176e+00, 1.40720176e+00, 1.40720176e+00, 1.40720176e+00,
       2.06726331e+00, 2.06726331e+00, 2.06726331e+00, 2.06726331e+00,
       2.87738380e+00, 2.87738380e+00, 2.87738380e+00, 2.87738380e+00,
       3.81959664e+00, 3.81959664e+00, 3.81959664e+00, 3.81959664e+00,
       4.86989842e+00, 4.86989842e+00, 4.86989842e+00, 4.86989842e+00,
       6.00593747e+00, 6.00593747e+00, 6.00593747e+00, 6.00593747e+00,
       7.20976710e+00, 7.20976710e+00, 7.20976710e+00, 7.20976710e+00,
       8.44013430e+00, 8.44013430e+00, 8.44013430e+00, 8.44013430e+00,
       9.67820971e+00, 9.67820971e+00, 9.67820971e+00, 9.67820971e+00,
       1.09131010e+01, 1.09131010e+01, 1.09131010e+01, 1.09131010e+01,
       1.21419057e+01, 1.21419057e+01, 1.21419057e+01, 1.21419057e+01,
       1.33619281e+01, 1.33619281e+01, 1.33619281e+01, 1.33619281e+01,
       1.45669883e+01, 1.45669883e+01, 1.45669883e+01, 1.45669883e+01,
       1.57435737e+01, 1.57435737e+01, 1.57435737e+01, 1.57435737e+01,
       1.68686020e+01, 1.68686020e+01, 1.68686020e+01, 1.68686020e+01,
       1.79014772e+01, 1.79014772e+01, 1.79014772e+01, 1.79014772e+01,
       1.87882849e+01, 1.87882849e+01, 1.87882849e+01, 1.87882849e+01,
       1.94668837e+01, 1.94668837e+01, 1.94668837e+01, 1.94668837e+01,
       1.99006239e+01, 1.99006239e+01, 1.99006239e+01, 1.99006239e+01,
       2.01050731e+01, 2.01050731e+01, 2.01050731e+01, 2.01050731e+01,
       2.01571544e+01, 2.01571544e+01, 2.01571544e+01, 2.01571544e+01,
       2.01363521e+01, 2.01363521e+01, 2.01363521e+01, 2.01363521e+01,
       2.00613129e+01, 2.00613129e+01, 2.00613129e+01, 2.00613129e+01,
       2.00257473e+01, 2.00257473e+01, 2.00257473e+01, 2.00257473e+01,
       2.00113940e+01, 2.00113940e+01, 2.00113940e+01, 2.00113940e+01,
       2.00016210e+01, 2.00016210e+01, 2.00016210e+01, 2.00016210e+01,
       1.99912688e+01, 1.99912688e+01, 1.99912688e+01, 1.99912688e+01,
       1.99751513e+01, 1.99751513e+01, 1.99751513e+01, 1.99751513e+01,
       1.99512938e+01, 1.99512938e+01, 1.99512938e+01, 1.99512938e+01,
       1.99269046e+01, 1.99269046e+01, 1.99269046e+01, 1.99269046e+01,
       1.99037068e+01, 1.99037068e+01, 1.99037068e+01, 1.99037068e+01,
       1.98807884e+01, 1.98807884e+01, 1.98807884e+01, 1.98807884e+01,
       1.98596458e+01, 1.98596458e+01, 1.98596458e+01, 1.98596458e+01,
       1.98416867e+01, 1.98416867e+01, 1.98416867e+01, 1.98416867e+01,
       1.98257179e+01, 1.98257179e+01, 1.98257179e+01, 1.98257179e+01,
       1.98115993e+01, 1.98115993e+01, 1.98115993e+01, 1.98115993e+01,
       1.98022942e+01, 1.98022942e+01, 1.98022942e+01, 1.98022942e+01,
       1.97745446e+01, 1.97745446e+01, 1.97745446e+01, 1.97745446e+01,
       1.96599658e+01, 1.96599658e+01, 1.96599658e+01, 1.96599658e+01,
       1.91316282e+01, 1.91316282e+01, 1.91316282e+01, 1.91316282e+01,
       1.68989432e+01, 1.68989432e+01, 1.68989432e+01, 1.68989432e+01,
       9.82776433e+00, 9.82776433e+00, 9.82776433e+00, 9.82776433e+00,
       1.03966586e+00, 1.03966586e+00, 1.03966586e+00, 1.03966586e+00,
       1.02686172e-02, 1.02686172e-02, 1.02686172e-02, 1.02686172e-02,
       5.87596530e-06, 5.87596530e-06, 5.87596530e-06, 5.87596530e-06,
       9.09802870e-10, 9.09802870e-10, 9.09802870e-10, 9.09802870e-10,
       1.40162828e-13, 1.40162828e-13, 1.40162828e-13, 1.40162828e-13,
       2.18096263e-17, 2.18096263e-17, 2.18096263e-17, 2.18096263e-17,
       4.14673755e-21, 4.14673755e-21, 4.14673755e-21, 4.14673755e-21,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99478084e+02, 9.99478084e+02, 9.99478084e+02, 9.99478084e+02,
       9.98594612e+02, 9.98594612e+02, 9.98594612e+02, 9.98594612e+02,
       9.97025182e+02, 9.97025182e+02, 9.97025182e+02, 9.97025182e+02,
       9.93973403e+02, 9.93973403e+02, 9.93973403e+02, 9.93973403e+02,
       9.88603735e+02, 9.88603735e+02, 9.88603735e+02, 9.88603735e+02,
       9.79857278e+02, 9.79857278e+02, 9.79857278e+02, 9.79857278e+02,
       9.66732858e+02, 9.66732858e+02, 9.66732858e+02, 9.66732858e+02,
       9.48559568e+02, 9.48559568e+02, 9.48559568e+02, 9.48559568e+02,
       9.25238470e+02, 9.25238470e+02, 9.25238470e+02, 9.25238470e+02,
       8.97294073e+02, 8.97294073e+02, 8.97294073e+02, 8.97294073e+02,
       8.65708163e+02, 8.65708163e+02, 8.65708163e+02, 8.65708163e+02,
       8.31624879e+02, 8.31624879e+02, 8.31624879e+02, 8.31624879e+02,
       7.96056352e+02, 7.96056352e+02, 7.96056352e+02, 7.96056352e+02,
       7.59769847e+02, 7.59769847e+02, 7.59769847e+02, 7.59769847e+02,
       7.23915193e+02, 7.23915193e+02, 7.23915193e+02, 7.23915193e+02,
       6.89464378e+02, 6.89464378e+02, 6.89464378e+02, 6.89464378e+02,
       6.56557931e+02, 6.56557931e+02, 6.56557931e+02, 6.56557931e+02,
       6.25161940e+02, 6.25161940e+02, 6.25161940e+02, 6.25161940e+02,
       5.95273088e+02, 5.95273088e+02, 5.95273088e+02, 5.95273088e+02,
       5.66968750e+02, 5.66968750e+02, 5.66968750e+02, 5.66968750e+02,
       5.40439673e+02, 5.40439673e+02, 5.40439673e+02, 5.40439673e+02,
       5.16100425e+02, 5.16100425e+02, 5.16100425e+02, 5.16100425e+02,
       4.94565963e+02, 4.94565963e+02, 4.94565963e+02, 4.94565963e+02,
       4.76716435e+02, 4.76716435e+02, 4.76716435e+02, 4.76716435e+02,
       4.63423824e+02, 4.63423824e+02, 4.63423824e+02, 4.63423824e+02,
       4.55097958e+02, 4.55097958e+02, 4.55097958e+02, 4.55097958e+02,
       4.51223672e+02, 4.51223672e+02, 4.51223672e+02, 4.51223672e+02,
       4.50235886e+02, 4.50235886e+02, 4.50235886e+02, 4.50235886e+02,
       4.50627214e+02, 4.50627214e+02, 4.50627214e+02, 4.50627214e+02,
       4.52045781e+02, 4.52045781e+02, 4.52045781e+02, 4.52045781e+02,
       4.52733619e+02, 4.52733619e+02, 4.52733619e+02, 4.52733619e+02,
       4.53008677e+02, 4.53008677e+02, 4.53008677e+02, 4.53008677e+02,
       4.53183711e+02, 4.53183711e+02, 4.53183711e+02, 4.53183711e+02,
       4.53371405e+02, 4.53371405e+02, 4.53371405e+02, 4.53371405e+02,
       4.53677995e+02, 4.53677995e+02, 4.53677995e+02, 4.53677995e+02,
       4.54140504e+02, 4.54140504e+02, 4.54140504e+02, 4.54140504e+02,
       4.54621285e+02, 4.54621285e+02, 4.54621285e+02, 4.54621285e+02,
       4.55065003e+02, 4.55065003e+02, 4.55065003e+02, 4.55065003e+02,
       4.55473454e+02, 4.55473454e+02, 4.55473454e+02, 4.55473454e+02,
       4.55862605e+02, 4.55862605e+02, 4.55862605e+02, 4.55862605e+02,
       4.56251236e+02, 4.56251236e+02, 4.56251236e+02, 4.56251236e+02,
       4.56613227e+02, 4.56613227e+02, 4.56613227e+02, 4.56613227e+02,
       4.57031953e+02, 4.57031953e+02, 4.57031953e+02, 4.57031953e+02,
       4.57636572e+02, 4.57636572e+02, 4.57636572e+02, 4.57636572e+02,
       4.57734018e+02, 4.57734018e+02, 4.57734018e+02, 4.57734018e+02,
       4.53736791e+02, 4.53736791e+02, 4.53736791e+02, 4.53736791e+02,
       4.27841681e+02, 4.27841681e+02, 4.27841681e+02, 4.27841681e+02,
       3.22491407e+02, 3.22491407e+02, 3.22491407e+02, 3.22491407e+02,
       1.03503221e+02, 1.03503221e+02, 1.03503221e+02, 1.03503221e+02,
       3.92201766e+00, 3.92201766e+00, 3.92201766e+00, 3.92201766e+00,
       1.65463831e-02, 1.65463831e-02, 1.65463831e-02, 1.65463831e-02,
       1.00006926e-02, 1.00006926e-02, 1.00006926e-02, 1.00006926e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99929182, 0.99929182, 0.99929182, 0.99929182, 0.99819056,
       0.99819056, 0.99819056, 0.99819056, 0.99638774, 0.99638774,
       0.99638774, 0.99638774, 0.99307857, 0.99307857, 0.99307857,
       0.99307857, 0.98762234, 0.98762234, 0.98762234, 0.98762234,
       0.97927076, 0.97927076, 0.97927076, 0.97927076, 0.96745681,
       0.96745681, 0.96745681, 0.96745681, 0.95194398, 0.95194398,
       0.95194398, 0.95194398, 0.93291304, 0.93291304, 0.93291304,
       0.93291304, 0.91089851, 0.91089851, 0.91089851, 0.91089851,
       0.88661886, 0.88661886, 0.88661886, 0.88661886, 0.86077838,
       0.86077838, 0.86077838, 0.86077838, 0.83390834, 0.83390834,
       0.83390834, 0.83390834, 0.80667351, 0.80667351, 0.80667351,
       0.80667351, 0.77989973, 0.77989973, 0.77989973, 0.77989973,
       0.75387045, 0.75387045, 0.75387045, 0.75387045, 0.72866226,
       0.72866226, 0.72866226, 0.72866226, 0.70425431, 0.70425431,
       0.70425431, 0.70425431, 0.68070198, 0.68070198, 0.68070198,
       0.68070198, 0.65806701, 0.65806701, 0.65806701, 0.65806701,
       0.63686275, 0.63686275, 0.63686275, 0.63686275, 0.61660877,
       0.61660877, 0.61660877, 0.61660877, 0.60023979, 0.60023979,
       0.60023979, 0.60023979, 0.58434031, 0.58434031, 0.58434031,
       0.58434031, 0.57531196, 0.57531196, 0.57531196, 0.57531196,
       0.56885665, 0.56885665, 0.56885665, 0.56885665, 0.56535251,
       0.56535251, 0.56535251, 0.56535251, 0.56542652, 0.56542652,
       0.56542652, 0.56542652, 0.56613675, 0.56613675, 0.56613675,
       0.56613675, 0.56722021, 0.56722021, 0.56722021, 0.56722021,
       0.56734999, 0.56734999, 0.56734999, 0.56734999, 0.56761109,
       0.56761109, 0.56761109, 0.56761109, 0.56787835, 0.56787835,
       0.56787835, 0.56787835, 0.56795177, 0.56795177, 0.56795177,
       0.56795177, 0.56808491, 0.56808491, 0.56808491, 0.56808491,
       0.56833262, 0.56833262, 0.56833262, 0.56833262, 0.56862979,
       0.56862979, 0.56862979, 0.56862979, 0.56915933, 0.56915933,
       0.56915933, 0.56915933, 0.570773  , 0.570773  , 0.570773  ,
       0.570773  , 0.57706088, 0.57706088, 0.57706088, 0.57706088,
       0.59949934, 0.59949934, 0.59949934, 0.59949934, 0.66700177,
       0.66700177, 0.66700177, 0.66700177, 0.83868505, 0.83868505,
       0.83868505, 0.83868505, 1.21237055, 1.21237055, 1.21237055,
       1.21237055, 1.91223289, 1.91223289, 1.91223289, 1.91223289,
       3.007806  , 3.007806  , 3.007806  , 3.007806  , 3.87809533,
       3.87809533, 3.87809533, 3.87809533, 4.06550349, 4.06550349,
       4.06550349, 4.06550349, 3.31660165, 3.31660165, 3.31660165,
       3.31660165, 1.51650855, 1.51650855, 1.51650855, 1.51650855,
       1.03580283, 1.03580283, 1.03580283, 1.03580283, 1.00089283,
       1.00089283, 1.00089283, 1.00089283, 1.00000042, 1.00000042,
       1.00000042, 1.00000042, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.65061748e-02, 2.65061748e-02, 2.65061748e-02, 2.65061748e-02,
       6.77521323e-02, 6.77521323e-02, 6.77521323e-02, 6.77521323e-02,
       1.35347197e-01, 1.35347197e-01, 1.35347197e-01, 1.35347197e-01,
       2.59685207e-01, 2.59685207e-01, 2.59685207e-01, 2.59685207e-01,
       4.65425979e-01, 4.65425979e-01, 4.65425979e-01, 4.65425979e-01,
       7.82144211e-01, 7.82144211e-01, 7.82144211e-01, 7.82144211e-01,
       1.23395371e+00, 1.23395371e+00, 1.23395371e+00, 1.23395371e+00,
       1.83410775e+00, 1.83410775e+00, 1.83410775e+00, 1.83410775e+00,
       2.58131290e+00, 2.58131290e+00, 2.58131290e+00, 2.58131290e+00,
       3.46116458e+00, 3.46116458e+00, 3.46116458e+00, 3.46116458e+00,
       4.45155217e+00, 4.45155217e+00, 4.45155217e+00, 4.45155217e+00,
       5.52969690e+00, 5.52969690e+00, 5.52969690e+00, 5.52969690e+00,
       6.67852811e+00, 6.67852811e+00, 6.67852811e+00, 6.67852811e+00,
       7.86873820e+00, 7.86873820e+00, 7.86873820e+00, 7.86873820e+00,
       9.07107121e+00, 9.07107121e+00, 9.07107121e+00, 9.07107121e+00,
       1.02736328e+01, 1.02736328e+01, 1.02736328e+01, 1.02736328e+01,
       1.14723262e+01, 1.14723262e+01, 1.14723262e+01, 1.14723262e+01,
       1.26646432e+01, 1.26646432e+01, 1.26646432e+01, 1.26646432e+01,
       1.38470920e+01, 1.38470920e+01, 1.38470920e+01, 1.38470920e+01,
       1.50122685e+01, 1.50122685e+01, 1.50122685e+01, 1.50122685e+01,
       1.61443786e+01, 1.61443786e+01, 1.61443786e+01, 1.61443786e+01,
       1.72174436e+01, 1.72174436e+01, 1.72174436e+01, 1.72174436e+01,
       1.81881157e+01, 1.81881157e+01, 1.81881157e+01, 1.81881157e+01,
       1.90020678e+01, 1.90020678e+01, 1.90020678e+01, 1.90020678e+01,
       1.96026064e+01, 1.96026064e+01, 1.96026064e+01, 1.96026064e+01,
       1.99654493e+01, 1.99654493e+01, 1.99654493e+01, 1.99654493e+01,
       2.01215540e+01, 2.01215540e+01, 2.01215540e+01, 2.01215540e+01,
       2.01536613e+01, 2.01536613e+01, 2.01536613e+01, 2.01536613e+01,
       2.01186860e+01, 2.01186860e+01, 2.01186860e+01, 2.01186860e+01,
       2.00503930e+01, 2.00503930e+01, 2.00503930e+01, 2.00503930e+01,
       2.00214278e+01, 2.00214278e+01, 2.00214278e+01, 2.00214278e+01,
       2.00088918e+01, 2.00088918e+01, 2.00088918e+01, 2.00088918e+01,
       1.99992270e+01, 1.99992270e+01, 1.99992270e+01, 1.99992270e+01,
       1.99879478e+01, 1.99879478e+01, 1.99879478e+01, 1.99879478e+01,
       1.99697555e+01, 1.99697555e+01, 1.99697555e+01, 1.99697555e+01,
       1.99444645e+01, 1.99444645e+01, 1.99444645e+01, 1.99444645e+01,
       1.99203251e+01, 1.99203251e+01, 1.99203251e+01, 1.99203251e+01,
       1.98978235e+01, 1.98978235e+01, 1.98978235e+01, 1.98978235e+01,
       1.98758306e+01, 1.98758306e+01, 1.98758306e+01, 1.98758306e+01,
       1.98547615e+01, 1.98547615e+01, 1.98547615e+01, 1.98547615e+01,
       1.98366120e+01, 1.98366120e+01, 1.98366120e+01, 1.98366120e+01,
       1.98210642e+01, 1.98210642e+01, 1.98210642e+01, 1.98210642e+01,
       1.98067178e+01, 1.98067178e+01, 1.98067178e+01, 1.98067178e+01,
       1.97979636e+01, 1.97979636e+01, 1.97979636e+01, 1.97979636e+01,
       1.97829582e+01, 1.97829582e+01, 1.97829582e+01, 1.97829582e+01,
       1.97247063e+01, 1.97247063e+01, 1.97247063e+01, 1.97247063e+01,
       1.94611034e+01, 1.94611034e+01, 1.94611034e+01, 1.94611034e+01,
       1.82839011e+01, 1.82839011e+01, 1.82839011e+01, 1.82839011e+01,
       1.38817854e+01, 1.38817854e+01, 1.38817854e+01, 1.38817854e+01,
       4.10564450e+00, 4.10564450e+00, 4.10564450e+00, 4.10564450e+00,
       1.19559981e-01, 1.19559981e-01, 1.19559981e-01, 1.19559981e-01,
       2.64879102e-04, 2.64879102e-04, 2.64879102e-04, 2.64879102e-04,
       4.95793305e-08, 4.95793305e-08, 4.95793305e-08, 4.95793305e-08,
       8.02645853e-12, 8.02645853e-12, 8.02645853e-12, 8.02645853e-12,
       1.28397217e-15, 1.28397217e-15, 1.28397217e-15, 1.28397217e-15,
       1.96745591e-19, 1.96745591e-19, 1.96745591e-19, 1.96745591e-19,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.99008791e+02, 9.99008791e+02, 9.99008791e+02, 9.99008791e+02,
       9.97467896e+02, 9.97467896e+02, 9.97467896e+02, 9.97467896e+02,
       9.94947317e+02, 9.94947317e+02, 9.94947317e+02, 9.94947317e+02,
       9.90325847e+02, 9.90325847e+02, 9.90325847e+02, 9.90325847e+02,
       9.82720519e+02, 9.82720519e+02, 9.82720519e+02, 9.82720519e+02,
       9.71113593e+02, 9.71113593e+02, 9.71113593e+02, 9.71113593e+02,
       9.54764008e+02, 9.54764008e+02, 9.54764008e+02, 9.54764008e+02,
       9.33417401e+02, 9.33417401e+02, 9.33417401e+02, 9.33417401e+02,
       9.07418550e+02, 9.07418550e+02, 9.07418550e+02, 9.07418550e+02,
       8.77605065e+02, 8.77605065e+02, 8.77605065e+02, 8.77605065e+02,
       8.45053460e+02, 8.45053460e+02, 8.45053460e+02, 8.45053460e+02,
       8.10795758e+02, 8.10795758e+02, 8.10795758e+02, 8.10795758e+02,
       7.75604847e+02, 7.75604847e+02, 7.75604847e+02, 7.75604847e+02,
       7.40358342e+02, 7.40358342e+02, 7.40358342e+02, 7.40358342e+02,
       7.06183106e+02, 7.06183106e+02, 7.06183106e+02, 7.06183106e+02,
       6.73414104e+02, 6.73414104e+02, 6.73414104e+02, 6.73414104e+02,
       6.42106090e+02, 6.42106090e+02, 6.42106090e+02, 6.42106090e+02,
       6.12205307e+02, 6.12205307e+02, 6.12205307e+02, 6.12205307e+02,
       5.83733464e+02, 5.83733464e+02, 5.83733464e+02, 5.83733464e+02,
       5.56805862e+02, 5.56805862e+02, 5.56805862e+02, 5.56805862e+02,
       5.31654012e+02, 5.31654012e+02, 5.31654012e+02, 5.31654012e+02,
       5.08742192e+02, 5.08742192e+02, 5.08742192e+02, 5.08742192e+02,
       4.88731625e+02, 4.88731625e+02, 4.88731625e+02, 4.88731625e+02,
       4.72495806e+02, 4.72495806e+02, 4.72495806e+02, 4.72495806e+02,
       4.60808275e+02, 4.60808275e+02, 4.60808275e+02, 4.60808275e+02,
       4.53862047e+02, 4.53862047e+02, 4.53862047e+02, 4.53862047e+02,
       4.50909195e+02, 4.50909195e+02, 4.50909195e+02, 4.50909195e+02,
       4.50303363e+02, 4.50303363e+02, 4.50303363e+02, 4.50303363e+02,
       4.50963314e+02, 4.50963314e+02, 4.50963314e+02, 4.50963314e+02,
       4.52251030e+02, 4.52251030e+02, 4.52251030e+02, 4.52251030e+02,
       4.52805650e+02, 4.52805650e+02, 4.52805650e+02, 4.52805650e+02,
       4.53054444e+02, 4.53054444e+02, 4.53054444e+02, 4.53054444e+02,
       4.53236462e+02, 4.53236462e+02, 4.53236462e+02, 4.53236462e+02,
       4.53444188e+02, 4.53444188e+02, 4.53444188e+02, 4.53444188e+02,
       4.53782015e+02, 4.53782015e+02, 4.53782015e+02, 4.53782015e+02,
       4.54259731e+02, 4.54259731e+02, 4.54259731e+02, 4.54259731e+02,
       4.54730412e+02, 4.54730412e+02, 4.54730412e+02, 4.54730412e+02,
       4.55178339e+02, 4.55178339e+02, 4.55178339e+02, 4.55178339e+02,
       4.55590920e+02, 4.55590920e+02, 4.55590920e+02, 4.55590920e+02,
       4.55961244e+02, 4.55961244e+02, 4.55961244e+02, 4.55961244e+02,
       4.56316460e+02, 4.56316460e+02, 4.56316460e+02, 4.56316460e+02,
       4.56666544e+02, 4.56666544e+02, 4.56666544e+02, 4.56666544e+02,
       4.57026199e+02, 4.57026199e+02, 4.57026199e+02, 4.57026199e+02,
       4.57531552e+02, 4.57531552e+02, 4.57531552e+02, 4.57531552e+02,
       4.58018403e+02, 4.58018403e+02, 4.58018403e+02, 4.58018403e+02,
       4.56713026e+02, 4.56713026e+02, 4.56713026e+02, 4.56713026e+02,
       4.44619433e+02, 4.44619433e+02, 4.44619433e+02, 4.44619433e+02,
       3.86158645e+02, 3.86158645e+02, 3.86158645e+02, 3.86158645e+02,
       2.07519215e+02, 2.07519215e+02, 2.07519215e+02, 2.07519215e+02,
       2.53994497e+01, 2.53994497e+01, 2.53994497e+01, 2.53994497e+01,
       2.14148688e-01, 2.14148688e-01, 2.14148688e-01, 2.14148688e-01,
       1.00450120e-02, 1.00450120e-02, 1.00450120e-02, 1.00450120e-02,
       1.00000059e-02, 1.00000059e-02, 1.00000059e-02, 1.00000059e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99871963, 0.99871963, 0.99871963, 0.99871963, 0.99689581,
       0.99689581, 0.99689581, 0.99689581, 0.99415366, 0.99415366,
       0.99415366, 0.99415366, 0.98939445, 0.98939445, 0.98939445,
       0.98939445, 0.98204346, 0.98204346, 0.98204346, 0.98204346,
       0.97146171, 0.97146171, 0.97146171, 0.97146171, 0.9573379 ,
       0.9573379 , 0.9573379 , 0.9573379 , 0.93973497, 0.93973497,
       0.93973497, 0.93973497, 0.91908294, 0.91908294, 0.91908294,
       0.91908294, 0.89603722, 0.89603722, 0.89603722, 0.89603722,
       0.87129459, 0.87129459, 0.87129459, 0.87129459, 0.84542383,
       0.84542383, 0.84542383, 0.84542383, 0.81892298, 0.81892298,
       0.81892298, 0.81892298, 0.79259907, 0.79259907, 0.79259907,
       0.79259907, 0.76689349, 0.76689349, 0.76689349, 0.76689349,
       0.74195878, 0.74195878, 0.74195878, 0.74195878, 0.71776989,
       0.71776989, 0.71776989, 0.71776989, 0.69434792, 0.69434792,
       0.69434792, 0.69434792, 0.67176942, 0.67176942, 0.67176942,
       0.67176942, 0.65008496, 0.65008496, 0.65008496, 0.65008496,
       0.62996773, 0.62996773, 0.62996773, 0.62996773, 0.61070758,
       0.61070758, 0.61070758, 0.61070758, 0.59567443, 0.59567443,
       0.59567443, 0.59567443, 0.58118471, 0.58118471, 0.58118471,
       0.58118471, 0.57312756, 0.57312756, 0.57312756, 0.57312756,
       0.56818316, 0.56818316, 0.56818316, 0.56818316, 0.56529871,
       0.56529871, 0.56529871, 0.56529871, 0.56537711, 0.56537711,
       0.56537711, 0.56537711, 0.56637301, 0.56637301, 0.56637301,
       0.56637301, 0.56746355, 0.56746355, 0.56746355, 0.56746355,
       0.56750707, 0.56750707, 0.56750707, 0.56750707, 0.56762621,
       0.56762621, 0.56762621, 0.56762621, 0.56789882, 0.56789882,
       0.56789882, 0.56789882, 0.56806145, 0.56806145, 0.56806145,
       0.56806145, 0.56826163, 0.56826163, 0.56826163, 0.56826163,
       0.56851406, 0.56851406, 0.56851406, 0.56851406, 0.56877122,
       0.56877122, 0.56877122, 0.56877122, 0.56918068, 0.56918068,
       0.56918068, 0.56918068, 0.57030245, 0.57030245, 0.57030245,
       0.57030245, 0.5745043 , 0.5745043 , 0.5745043 , 0.5745043 ,
       0.58979671, 0.58979671, 0.58979671, 0.58979671, 0.63756363,
       0.63756363, 0.63756363, 0.63756363, 0.7640859 , 0.7640859 ,
       0.7640859 , 0.7640859 , 1.05129673, 1.05129673, 1.05129673,
       1.05129673, 1.61395351, 1.61395351, 1.61395351, 1.61395351,
       2.56324844, 2.56324844, 2.56324844, 2.56324844, 3.64796108,
       3.64796108, 3.64796108, 3.64796108, 4.10212289, 4.10212289,
       4.10212289, 4.10212289, 3.88420625, 3.88420625, 3.88420625,
       3.88420625, 2.28314086, 2.28314086, 2.28314086, 2.28314086,
       1.12772592, 1.12772592, 1.12772592, 1.12772592, 1.00628402,
       1.00628402, 1.00628402, 1.00628402, 1.00002417, 1.00002417,
       1.00002417, 1.00002417, 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([4.79346584e-02, 4.79346584e-02, 4.79346584e-02, 4.79346584e-02,
       1.16295186e-01, 1.16295186e-01, 1.16295186e-01, 1.16295186e-01,
       2.19249025e-01, 2.19249025e-01, 2.19249025e-01, 2.19249025e-01,
       3.98505426e-01, 3.98505426e-01, 3.98505426e-01, 3.98505426e-01,
       6.76753261e-01, 6.76753261e-01, 6.76753261e-01, 6.76753261e-01,
       1.08029397e+00, 1.08029397e+00, 1.08029397e+00, 1.08029397e+00,
       1.62453623e+00, 1.62453623e+00, 1.62453623e+00, 1.62453623e+00,
       2.31205472e+00, 2.31205472e+00, 2.31205472e+00, 2.31205472e+00,
       3.13205824e+00, 3.13205824e+00, 3.13205824e+00, 3.13205824e+00,
       4.06476657e+00, 4.06476657e+00, 4.06476657e+00, 4.06476657e+00,
       5.08775132e+00, 5.08775132e+00, 5.08775132e+00, 5.08775132e+00,
       6.18246089e+00, 6.18246089e+00, 6.18246089e+00, 6.18246089e+00,
       7.33022569e+00, 7.33022569e+00, 7.33022569e+00, 7.33022569e+00,
       8.49610187e+00, 8.49610187e+00, 8.49610187e+00, 8.49610187e+00,
       9.66738034e+00, 9.66738034e+00, 9.66738034e+00, 9.66738034e+00,
       1.08365227e+01, 1.08365227e+01, 1.08365227e+01, 1.08365227e+01,
       1.20006085e+01, 1.20006085e+01, 1.20006085e+01, 1.20006085e+01,
       1.31582056e+01, 1.31582056e+01, 1.31582056e+01, 1.31582056e+01,
       1.43045927e+01, 1.43045927e+01, 1.43045927e+01, 1.43045927e+01,
       1.54308433e+01, 1.54308433e+01, 1.54308433e+01, 1.54308433e+01,
       1.65188815e+01, 1.65188815e+01, 1.65188815e+01, 1.65188815e+01,
       1.75398658e+01, 1.75398658e+01, 1.75398658e+01, 1.75398658e+01,
       1.84481157e+01, 1.84481157e+01, 1.84481157e+01, 1.84481157e+01,
       1.91900861e+01, 1.91900861e+01, 1.91900861e+01, 1.91900861e+01,
       1.97162589e+01, 1.97162589e+01, 1.97162589e+01, 1.97162589e+01,
       2.00152679e+01, 2.00152679e+01, 2.00152679e+01, 2.00152679e+01,
       2.01312403e+01, 2.01312403e+01, 2.01312403e+01, 2.01312403e+01,
       2.01482309e+01, 2.01482309e+01, 2.01482309e+01, 2.01482309e+01,
       2.01006098e+01, 2.01006098e+01, 2.01006098e+01, 2.01006098e+01,
       2.00417664e+01, 2.00417664e+01, 2.00417664e+01, 2.00417664e+01,
       2.00177684e+01, 2.00177684e+01, 2.00177684e+01, 2.00177684e+01,
       2.00061893e+01, 2.00061893e+01, 2.00061893e+01, 2.00061893e+01,
       1.99964358e+01, 1.99964358e+01, 1.99964358e+01, 1.99964358e+01,
       1.99841326e+01, 1.99841326e+01, 1.99841326e+01, 1.99841326e+01,
       1.99640722e+01, 1.99640722e+01, 1.99640722e+01, 1.99640722e+01,
       1.99380327e+01, 1.99380327e+01, 1.99380327e+01, 1.99380327e+01,
       1.99138950e+01, 1.99138950e+01, 1.99138950e+01, 1.99138950e+01,
       1.98915983e+01, 1.98915983e+01, 1.98915983e+01, 1.98915983e+01,
       1.98706224e+01, 1.98706224e+01, 1.98706224e+01, 1.98706224e+01,
       1.98504781e+01, 1.98504781e+01, 1.98504781e+01, 1.98504781e+01,
       1.98321531e+01, 1.98321531e+01, 1.98321531e+01, 1.98321531e+01,
       1.98164498e+01, 1.98164498e+01, 1.98164498e+01, 1.98164498e+01,
       1.98028802e+01, 1.98028802e+01, 1.98028802e+01, 1.98028802e+01,
       1.97923327e+01, 1.97923327e+01, 1.97923327e+01, 1.97923327e+01,
       1.97838509e+01, 1.97838509e+01, 1.97838509e+01, 1.97838509e+01,
       1.97535132e+01, 1.97535132e+01, 1.97535132e+01, 1.97535132e+01,
       1.96225421e+01, 1.96225421e+01, 1.96225421e+01, 1.96225421e+01,
       1.90212196e+01, 1.90212196e+01, 1.90212196e+01, 1.90212196e+01,
       1.65525784e+01, 1.65525784e+01, 1.65525784e+01, 1.65525784e+01,
       9.01356040e+00, 9.01356040e+00, 9.01356040e+00, 9.01356040e+00,
       7.89629666e-01, 7.89629666e-01, 7.89629666e-01, 7.89629666e-01,
       6.47563091e-03, 6.47563091e-03, 6.47563091e-03, 6.47563091e-03,
       3.00072068e-06, 3.00072068e-06, 3.00072068e-06, 3.00072068e-06,
       4.61483424e-10, 4.61483424e-10, 4.61483424e-10, 4.61483424e-10,
       7.14105492e-14, 7.14105492e-14, 7.14105492e-14, 7.14105492e-14,
       1.12055754e-17, 1.12055754e-17, 1.12055754e-17, 1.12055754e-17,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.98208251e+02, 9.98208251e+02, 9.98208251e+02, 9.98208251e+02,
       9.95657307e+02, 9.95657307e+02, 9.95657307e+02, 9.95657307e+02,
       9.91826551e+02, 9.91826551e+02, 9.91826551e+02, 9.91826551e+02,
       9.85188507e+02, 9.85188507e+02, 9.85188507e+02, 9.85188507e+02,
       9.74962220e+02, 9.74962220e+02, 9.74962220e+02, 9.74962220e+02,
       9.60296787e+02, 9.60296787e+02, 9.60296787e+02, 9.60296787e+02,
       9.40822905e+02, 9.40822905e+02, 9.40822905e+02, 9.40822905e+02,
       9.16712279e+02, 9.16712279e+02, 9.16712279e+02, 9.16712279e+02,
       8.88653079e+02, 8.88653079e+02, 8.88653079e+02, 8.88653079e+02,
       8.57635270e+02, 8.57635270e+02, 8.57635270e+02, 8.57635270e+02,
       8.24683912e+02, 8.24683912e+02, 8.24683912e+02, 8.24683912e+02,
       7.90625936e+02, 7.90625936e+02, 7.90625936e+02, 7.90625936e+02,
       7.56152074e+02, 7.56152074e+02, 7.56152074e+02, 7.56152074e+02,
       7.22323562e+02, 7.22323562e+02, 7.22323562e+02, 7.22323562e+02,
       6.89748211e+02, 6.89748211e+02, 6.89748211e+02, 6.89748211e+02,
       6.58562261e+02, 6.58562261e+02, 6.58562261e+02, 6.58562261e+02,
       6.28705838e+02, 6.28705838e+02, 6.28705838e+02, 6.28705838e+02,
       6.00181833e+02, 6.00181833e+02, 6.00181833e+02, 6.00181833e+02,
       5.73028492e+02, 5.73028492e+02, 5.73028492e+02, 5.73028492e+02,
       5.47394913e+02, 5.47394913e+02, 5.47394913e+02, 5.47394913e+02,
       5.23556041e+02, 5.23556041e+02, 5.23556041e+02, 5.23556041e+02,
       5.02022645e+02, 5.02022645e+02, 5.02022645e+02, 5.02022645e+02,
       4.83490652e+02, 4.83490652e+02, 4.83490652e+02, 4.83490652e+02,
       4.68807418e+02, 4.68807418e+02, 4.68807418e+02, 4.68807418e+02,
       4.58628006e+02, 4.58628006e+02, 4.58628006e+02, 4.58628006e+02,
       4.52917665e+02, 4.52917665e+02, 4.52917665e+02, 4.52917665e+02,
       4.50722891e+02, 4.50722891e+02, 4.50722891e+02, 4.50722891e+02,
       4.50404840e+02, 4.50404840e+02, 4.50404840e+02, 4.50404840e+02,
       4.51305706e+02, 4.51305706e+02, 4.51305706e+02, 4.51305706e+02,
       4.52417827e+02, 4.52417827e+02, 4.52417827e+02, 4.52417827e+02,
       4.52869771e+02, 4.52869771e+02, 4.52869771e+02, 4.52869771e+02,
       4.53098143e+02, 4.53098143e+02, 4.53098143e+02, 4.53098143e+02,
       4.53288109e+02, 4.53288109e+02, 4.53288109e+02, 4.53288109e+02,
       4.53522454e+02, 4.53522454e+02, 4.53522454e+02, 4.53522454e+02,
       4.53898721e+02, 4.53898721e+02, 4.53898721e+02, 4.53898721e+02,
       4.54383577e+02, 4.54383577e+02, 4.54383577e+02, 4.54383577e+02,
       4.54840633e+02, 4.54840633e+02, 4.54840633e+02, 4.54840633e+02,
       4.55282568e+02, 4.55282568e+02, 4.55282568e+02, 4.55282568e+02,
       4.55699208e+02, 4.55699208e+02, 4.55699208e+02, 4.55699208e+02,
       4.56064730e+02, 4.56064730e+02, 4.56064730e+02, 4.56064730e+02,
       4.56394118e+02, 4.56394118e+02, 4.56394118e+02, 4.56394118e+02,
       4.56721490e+02, 4.56721490e+02, 4.56721490e+02, 4.56721490e+02,
       4.57041842e+02, 4.57041842e+02, 4.57041842e+02, 4.57041842e+02,
       4.57452339e+02, 4.57452339e+02, 4.57452339e+02, 4.57452339e+02,
       4.58033692e+02, 4.58033692e+02, 4.58033692e+02, 4.58033692e+02,
       4.57888048e+02, 4.57888048e+02, 4.57888048e+02, 4.57888048e+02,
       4.52727602e+02, 4.52727602e+02, 4.52727602e+02, 4.52727602e+02,
       4.22759926e+02, 4.22759926e+02, 4.22759926e+02, 4.22759926e+02,
       3.07068930e+02, 3.07068930e+02, 3.07068930e+02, 3.07068930e+02,
       8.77696574e+01, 8.77696574e+01, 8.77696574e+01, 8.77696574e+01,
       2.68785775e+00, 2.68785775e+00, 2.68785775e+00, 2.68785775e+00,
       1.34301951e-02, 1.34301951e-02, 1.34301951e-02, 1.34301951e-02,
       1.00003538e-02, 1.00003538e-02, 1.00003538e-02, 1.00003538e-02,
       1.00000001e-02, 1.00000001e-02, 1.00000001e-02, 1.00000001e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99779253, 0.99779253, 0.99779253, 0.99779253, 0.99492087,
       0.99492087, 0.99492087, 0.99492087, 0.99096776, 0.99096776,
       0.99096776, 0.99096776, 0.98445746, 0.98445746, 0.98445746,
       0.98445746, 0.97502252, 0.97502252, 0.97502252, 0.97502252,
       0.9621987 , 0.9621987 , 0.9621987 , 0.9621987 , 0.94596677,
       0.94596677, 0.94596677, 0.94596677, 0.92664513, 0.92664513,
       0.92664513, 0.92664513, 0.90481789, 0.90481789, 0.90481789,
       0.90481789, 0.88115819, 0.88115819, 0.88115819, 0.88115819,
       0.85626688, 0.85626688, 0.85626688, 0.85626688, 0.83058143,
       0.83058143, 0.83058143, 0.83058143, 0.80476657, 0.80476657,
       0.80476657, 0.80476657, 0.77943364, 0.77943364, 0.77943364,
       0.77943364, 0.75476663, 0.75476663, 0.75476663, 0.75476663,
       0.73082127, 0.73082127, 0.73082127, 0.73082127, 0.70758612,
       0.70758612, 0.70758612, 0.70758612, 0.6850841 , 0.6850841 ,
       0.6850841 , 0.6850841 , 0.66342869, 0.66342869, 0.66342869,
       0.66342869, 0.6426441 , 0.6426441 , 0.6426441 , 0.6426441 ,
       0.62359474, 0.62359474, 0.62359474, 0.62359474, 0.60530901,
       0.60530901, 0.60530901, 0.60530901, 0.59154744, 0.59154744,
       0.59154744, 0.59154744, 0.57849861, 0.57849861, 0.57849861,
       0.57849861, 0.57129468, 0.57129468, 0.57129468, 0.57129468,
       0.56764504, 0.56764504, 0.56764504, 0.56764504, 0.56537656,
       0.56537656, 0.56537656, 0.56537656, 0.56541728, 0.56541728,
       0.56541728, 0.56541728, 0.566573  , 0.566573  , 0.566573  ,
       0.566573  , 0.56761976, 0.56761976, 0.56761976, 0.56761976,
       0.56766123, 0.56766123, 0.56766123, 0.56766123, 0.56769891,
       0.56769891, 0.56769891, 0.56769891, 0.56789839, 0.56789839,
       0.56789839, 0.56789839, 0.56815101, 0.56815101, 0.56815101,
       0.56815101, 0.56843359, 0.56843359, 0.56843359, 0.56843359,
       0.56870197, 0.56870197, 0.56870197, 0.56870197, 0.56893189,
       0.56893189, 0.56893189, 0.56893189, 0.56925247, 0.56925247,
       0.56925247, 0.56925247, 0.57003928, 0.57003928, 0.57003928,
       0.57003928, 0.57286264, 0.57286264, 0.57286264, 0.57286264,
       0.58324543, 0.58324543, 0.58324543, 0.58324543, 0.61675826,
       0.61675826, 0.61675826, 0.61675826, 0.70906129, 0.70906129,
       0.70906129, 0.70906129, 0.92724037, 0.92724037, 0.92724037,
       0.92724037, 1.37323589, 1.37323589, 1.37323589, 1.37323589,
       2.1635062 , 2.1635062 , 2.1635062 , 2.1635062 , 3.29148444,
       3.29148444, 3.29148444, 3.29148444, 4.0332475 , 4.0332475 ,
       4.0332475 , 4.0332475 , 4.12979469, 4.12979469, 4.12979469,
       4.12979469, 3.20980045, 3.20980045, 3.20980045, 3.20980045,
       1.4244878 , 1.4244878 , 1.4244878 , 1.4244878 , 1.02817994,
       1.02817994, 1.02817994, 1.02817994, 1.00058696, 1.00058696,
       1.00058696, 1.00058696, 1.00000021, 1.00000021, 1.00000021,
       1.00000021, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([8.26770714e-02, 8.26770714e-02, 8.26770714e-02, 8.26770714e-02,
       1.90444567e-01, 1.90444567e-01, 1.90444567e-01, 1.90444567e-01,
       3.39156393e-01, 3.39156393e-01, 3.39156393e-01, 3.39156393e-01,
       5.85196350e-01, 5.85196350e-01, 5.85196350e-01, 5.85196350e-01,
       9.44102208e-01, 9.44102208e-01, 9.44102208e-01, 9.44102208e-01,
       1.43650190e+00, 1.43650190e+00, 1.43650190e+00, 1.43650190e+00,
       2.06747296e+00, 2.06747296e+00, 2.06747296e+00, 2.06747296e+00,
       2.83007409e+00, 2.83007409e+00, 2.83007409e+00, 2.83007409e+00,
       3.70711102e+00, 3.70711102e+00, 3.70711102e+00, 3.70711102e+00,
       4.67711511e+00, 4.67711511e+00, 4.67711511e+00, 4.67711511e+00,
       5.72031049e+00, 5.72031049e+00, 5.72031049e+00, 5.72031049e+00,
       6.82230541e+00, 6.82230541e+00, 6.82230541e+00, 6.82230541e+00,
       7.95228204e+00, 7.95228204e+00, 7.95228204e+00, 7.95228204e+00,
       9.09250910e+00, 9.09250910e+00, 9.09250910e+00, 9.09250910e+00,
       1.02322411e+01, 1.02322411e+01, 1.02322411e+01, 1.02322411e+01,
       1.13687918e+01, 1.13687918e+01, 1.13687918e+01, 1.13687918e+01,
       1.25004504e+01, 1.25004504e+01, 1.25004504e+01, 1.25004504e+01,
       1.36248432e+01, 1.36248432e+01, 1.36248432e+01, 1.36248432e+01,
       1.47363425e+01, 1.47363425e+01, 1.47363425e+01, 1.47363425e+01,
       1.58243684e+01, 1.58243684e+01, 1.58243684e+01, 1.58243684e+01,
       1.68684615e+01, 1.68684615e+01, 1.68684615e+01, 1.68684615e+01,
       1.78370966e+01, 1.78370966e+01, 1.78370966e+01, 1.78370966e+01,
       1.86828484e+01, 1.86828484e+01, 1.86828484e+01, 1.86828484e+01,
       1.93540793e+01, 1.93540793e+01, 1.93540793e+01, 1.93540793e+01,
       1.98100759e+01, 1.98100759e+01, 1.98100759e+01, 1.98100759e+01,
       2.00526668e+01, 2.00526668e+01, 2.00526668e+01, 2.00526668e+01,
       2.01358422e+01, 2.01358422e+01, 2.01358422e+01, 2.01358422e+01,
       2.01409960e+01, 2.01409960e+01, 2.01409960e+01, 2.01409960e+01,
       2.00831703e+01, 2.00831703e+01, 2.00831703e+01, 2.00831703e+01,
       2.00347786e+01, 2.00347786e+01, 2.00347786e+01, 2.00347786e+01,
       2.00146195e+01, 2.00146195e+01, 2.00146195e+01, 2.00146195e+01,
       2.00034460e+01, 2.00034460e+01, 2.00034460e+01, 2.00034460e+01,
       1.99933175e+01, 1.99933175e+01, 1.99933175e+01, 1.99933175e+01,
       1.99796992e+01, 1.99796992e+01, 1.99796992e+01, 1.99796992e+01,
       1.99579053e+01, 1.99579053e+01, 1.99579053e+01, 1.99579053e+01,
       1.99319311e+01, 1.99319311e+01, 1.99319311e+01, 1.99319311e+01,
       1.99078330e+01, 1.99078330e+01, 1.99078330e+01, 1.99078330e+01,
       1.98854258e+01, 1.98854258e+01, 1.98854258e+01, 1.98854258e+01,
       1.98650641e+01, 1.98650641e+01, 1.98650641e+01, 1.98650641e+01,
       1.98461462e+01, 1.98461462e+01, 1.98461462e+01, 1.98461462e+01,
       1.98282545e+01, 1.98282545e+01, 1.98282545e+01, 1.98282545e+01,
       1.98124498e+01, 1.98124498e+01, 1.98124498e+01, 1.98124498e+01,
       1.97991749e+01, 1.97991749e+01, 1.97991749e+01, 1.97991749e+01,
       1.97873673e+01, 1.97873673e+01, 1.97873673e+01, 1.97873673e+01,
       1.97808776e+01, 1.97808776e+01, 1.97808776e+01, 1.97808776e+01,
       1.97645088e+01, 1.97645088e+01, 1.97645088e+01, 1.97645088e+01,
       1.96988900e+01, 1.96988900e+01, 1.96988900e+01, 1.96988900e+01,
       1.93964557e+01, 1.93964557e+01, 1.93964557e+01, 1.93964557e+01,
       1.80772383e+01, 1.80772383e+01, 1.80772383e+01, 1.80772383e+01,
       1.32758210e+01, 1.32758210e+01, 1.32758210e+01, 1.32758210e+01,
       3.37432001e+00, 3.37432001e+00, 3.37432001e+00, 3.37432001e+00,
       8.08064010e-02, 8.08064010e-02, 8.08064010e-02, 8.08064010e-02,
       1.40942456e-04, 1.40942456e-04, 1.40942456e-04, 1.40942456e-04,
       2.50612552e-08, 2.50612552e-08, 2.50612552e-08, 2.50612552e-08,
       4.11745361e-12, 4.11745361e-12, 4.11745361e-12, 4.11745361e-12,
       6.55937311e-16, 6.55937311e-16, 6.55937311e-16, 6.55937311e-16,
       9.42282893e-20, 9.42282893e-20, 9.42282893e-20, 9.42282893e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.96911775e+02, 9.96911775e+02, 9.96911775e+02, 9.96911775e+02,
       9.92897461e+02, 9.92897461e+02, 9.92897461e+02, 9.92897461e+02,
       9.87381492e+02, 9.87381492e+02, 9.87381492e+02, 9.87381492e+02,
       9.78316630e+02, 9.78316630e+02, 9.78316630e+02, 9.78316630e+02,
       9.65224072e+02, 9.65224072e+02, 9.65224072e+02, 9.65224072e+02,
       9.47511089e+02, 9.47511089e+02, 9.47511089e+02, 9.47511089e+02,
       9.25225984e+02, 9.25225984e+02, 9.25225984e+02, 9.25225984e+02,
       8.98896472e+02, 8.98896472e+02, 8.98896472e+02, 8.98896472e+02,
       8.69413243e+02, 8.69413243e+02, 8.69413243e+02, 8.69413243e+02,
       8.37771694e+02, 8.37771694e+02, 8.37771694e+02, 8.37771694e+02,
       8.04845422e+02, 8.04845422e+02, 8.04845422e+02, 8.04845422e+02,
       7.71265034e+02, 7.71265034e+02, 7.71265034e+02, 7.71265034e+02,
       7.37891694e+02, 7.37891694e+02, 7.37891694e+02, 7.37891694e+02,
       7.05581087e+02, 7.05581087e+02, 7.05581087e+02, 7.05581087e+02,
       6.74524283e+02, 6.74524283e+02, 6.74524283e+02, 6.74524283e+02,
       6.44761697e+02, 6.44761697e+02, 6.44761697e+02, 6.44761697e+02,
       6.16250581e+02, 6.16250581e+02, 6.16250581e+02, 6.16250581e+02,
       5.89001288e+02, 5.89001288e+02, 5.89001288e+02, 5.89001288e+02,
       5.63080642e+02, 5.63080642e+02, 5.63080642e+02, 5.63080642e+02,
       5.38671716e+02, 5.38671716e+02, 5.38671716e+02, 5.38671716e+02,
       5.16092282e+02, 5.16092282e+02, 5.16092282e+02, 5.16092282e+02,
       4.95896244e+02, 4.95896244e+02, 4.95896244e+02, 4.95896244e+02,
       4.78802137e+02, 4.78802137e+02, 4.78802137e+02, 4.78802137e+02,
       4.65608882e+02, 4.65608882e+02, 4.65608882e+02, 4.65608882e+02,
       4.56832207e+02, 4.56832207e+02, 4.56832207e+02, 4.56832207e+02,
       4.52212128e+02, 4.52212128e+02, 4.52212128e+02, 4.52212128e+02,
       4.50635329e+02, 4.50635329e+02, 4.50635329e+02, 4.50635329e+02,
       4.50539724e+02, 4.50539724e+02, 4.50539724e+02, 4.50539724e+02,
       4.51634371e+02, 4.51634371e+02, 4.51634371e+02, 4.51634371e+02,
       4.52552736e+02, 4.52552736e+02, 4.52552736e+02, 4.52552736e+02,
       4.52930057e+02, 4.52930057e+02, 4.52930057e+02, 4.52930057e+02,
       4.53144052e+02, 4.53144052e+02, 4.53144052e+02, 4.53144052e+02,
       4.53341730e+02, 4.53341730e+02, 4.53341730e+02, 4.53341730e+02,
       4.53605101e+02, 4.53605101e+02, 4.53605101e+02, 4.53605101e+02,
       4.54020478e+02, 4.54020478e+02, 4.54020478e+02, 4.54020478e+02,
       4.54510123e+02, 4.54510123e+02, 4.54510123e+02, 4.54510123e+02,
       4.54955970e+02, 4.54955970e+02, 4.54955970e+02, 4.54955970e+02,
       4.55384422e+02, 4.55384422e+02, 4.55384422e+02, 4.55384422e+02,
       4.55795165e+02, 4.55795165e+02, 4.55795165e+02, 4.55795165e+02,
       4.56163141e+02, 4.56163141e+02, 4.56163141e+02, 4.56163141e+02,
       4.56482181e+02, 4.56482181e+02, 4.56482181e+02, 4.56482181e+02,
       4.56781749e+02, 4.56781749e+02, 4.56781749e+02, 4.56781749e+02,
       4.57078389e+02, 4.57078389e+02, 4.57078389e+02, 4.57078389e+02,
       4.57417386e+02, 4.57417386e+02, 4.57417386e+02, 4.57417386e+02,
       4.57936162e+02, 4.57936162e+02, 4.57936162e+02, 4.57936162e+02,
       4.58275885e+02, 4.58275885e+02, 4.58275885e+02, 4.58275885e+02,
       4.56396881e+02, 4.56396881e+02, 4.56396881e+02, 4.56396881e+02,
       4.42008574e+02, 4.42008574e+02, 4.42008574e+02, 4.42008574e+02,
       3.76142236e+02, 3.76142236e+02, 3.76142236e+02, 3.76142236e+02,
       1.87877799e+02, 1.87877799e+02, 1.87877799e+02, 1.87877799e+02,
       1.93878950e+01, 1.93878950e+01, 1.93878950e+01, 1.93878950e+01,
       1.28441959e-01, 1.28441959e-01, 1.28441959e-01, 1.28441959e-01,
       1.00206317e-02, 1.00206317e-02, 1.00206317e-02, 1.00206317e-02,
       1.00000030e-02, 1.00000030e-02, 1.00000030e-02, 1.00000030e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99636432, 0.99636432, 0.99636432, 0.99636432, 0.99205876,
       0.99205876, 0.99205876, 0.99205876, 0.98664933, 0.98664933,
       0.98664933, 0.98664933, 0.97815371, 0.97815371, 0.97815371,
       0.97815371, 0.9665772 , 0.9665772 , 0.9665772 , 0.9665772 ,
       0.95164637, 0.95164637, 0.95164637, 0.95164637, 0.93362252,
       0.93362252, 0.93362252, 0.93362252, 0.91299712, 0.91299712,
       0.91299712, 0.91299712, 0.89041028, 0.89041028, 0.89041028,
       0.89041028, 0.86647311, 0.86647311, 0.86647311, 0.86647311,
       0.84164558, 0.84164558, 0.84164558, 0.84164558, 0.81642336,
       0.81642336, 0.81642336, 0.81642336, 0.79148604, 0.79148604,
       0.79148604, 0.79148604, 0.76710834, 0.76710834, 0.76710834,
       0.76710834, 0.7434205 , 0.7434205 , 0.7434205 , 0.7434205 ,
       0.72039324, 0.72039324, 0.72039324, 0.72039324, 0.69804488,
       0.69804488, 0.69804488, 0.69804488, 0.67640665, 0.67640665,
       0.67640665, 0.67640665, 0.65563302, 0.65563302, 0.65563302,
       0.65563302, 0.63570432, 0.63570432, 0.63570432, 0.63570432,
       0.61770755, 0.61770755, 0.61770755, 0.61770755, 0.60038962,
       0.60038962, 0.60038962, 0.60038962, 0.58782557, 0.58782557,
       0.58782557, 0.58782557, 0.57623676, 0.57623676, 0.57623676,
       0.57623676, 0.56979185, 0.56979185, 0.56979185, 0.56979185,
       0.56720324, 0.56720324, 0.56720324, 0.56720324, 0.56553241,
       0.56553241, 0.56553241, 0.56553241, 0.56556965, 0.56556965,
       0.56556965, 0.56556965, 0.56672103, 0.56672103, 0.56672103,
       0.56672103, 0.56770851, 0.56770851, 0.56770851, 0.56770851,
       0.56779669, 0.56779669, 0.56779669, 0.56779669, 0.56780547,
       0.56780547, 0.56780547, 0.56780547, 0.56792996, 0.56792996,
       0.56792996, 0.56792996, 0.56821566, 0.56821566, 0.56821566,
       0.56821566, 0.5685916 , 0.5685916 , 0.5685916 , 0.5685916 ,
       0.56888519, 0.56888519, 0.56888519, 0.56888519, 0.56910119,
       0.56910119, 0.56910119, 0.56910119, 0.56936231, 0.56936231,
       0.56936231, 0.56936231, 0.56991804, 0.56991804, 0.56991804,
       0.56991804, 0.57182047, 0.57182047, 0.57182047, 0.57182047,
       0.57885305, 0.57885305, 0.57885305, 0.57885305, 0.60219878,
       0.60219878, 0.60219878, 0.60219878, 0.66890255, 0.66890255,
       0.66890255, 0.66890255, 0.83282931, 0.83282931, 0.83282931,
       0.83282931, 1.18191186, 1.18191186, 1.18191186, 1.18191186,
       1.82871125, 1.82871125, 1.82871125, 1.82871125, 2.86090807,
       2.86090807, 2.86090807, 2.86090807, 3.85054369, 3.85054369,
       3.85054369, 3.85054369, 4.19989541, 4.19989541, 4.19989541,
       4.19989541, 3.86486856, 3.86486856, 3.86486856, 3.86486856,
       2.13052935, 2.13052935, 2.13052935, 2.13052935, 1.10421234,
       1.10421234, 1.10421234, 1.10421234, 1.0046868 , 1.0046868 ,
       1.0046868 , 1.0046868 , 1.00001224, 1.00001224, 1.00001224,
       1.00001224, 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([1.36253533e-01, 1.36253533e-01, 1.36253533e-01, 1.36253533e-01,
       2.98133139e-01, 2.98133139e-01, 2.98133139e-01, 2.98133139e-01,
       5.02180164e-01, 5.02180164e-01, 5.02180164e-01, 5.02180164e-01,
       8.24685029e-01, 8.24685029e-01, 8.24685029e-01, 8.24685029e-01,
       1.26777639e+00, 1.26777639e+00, 1.26777639e+00, 1.26777639e+00,
       1.84570316e+00, 1.84570316e+00, 1.84570316e+00, 1.84570316e+00,
       2.55320788e+00, 2.55320788e+00, 2.55320788e+00, 2.55320788e+00,
       3.37646407e+00, 3.37646407e+00, 3.37646407e+00, 3.37646407e+00,
       4.29528509e+00, 4.29528509e+00, 4.29528509e+00, 4.29528509e+00,
       5.28957743e+00, 5.28957743e+00, 5.28957743e+00, 5.28957743e+00,
       6.34426536e+00, 6.34426536e+00, 6.34426536e+00, 6.34426536e+00,
       7.43855306e+00, 7.43855306e+00, 7.43855306e+00, 7.43855306e+00,
       8.54650989e+00, 8.54650989e+00, 8.54650989e+00, 8.54650989e+00,
       9.65778684e+00, 9.65778684e+00, 9.65778684e+00, 9.65778684e+00,
       1.07675433e+01, 1.07675433e+01, 1.07675433e+01, 1.07675433e+01,
       1.18732730e+01, 1.18732730e+01, 1.18732730e+01, 1.18732730e+01,
       1.29739395e+01, 1.29739395e+01, 1.29739395e+01, 1.29739395e+01,
       1.40664784e+01, 1.40664784e+01, 1.40664784e+01, 1.40664784e+01,
       1.51440272e+01, 1.51440272e+01, 1.51440272e+01, 1.51440272e+01,
       1.61942747e+01, 1.61942747e+01, 1.61942747e+01, 1.61942747e+01,
       1.71943313e+01, 1.71943313e+01, 1.71943313e+01, 1.71943313e+01,
       1.81102285e+01, 1.81102285e+01, 1.81102285e+01, 1.81102285e+01,
       1.88935753e+01, 1.88935753e+01, 1.88935753e+01, 1.88935753e+01,
       1.94958477e+01, 1.94958477e+01, 1.94958477e+01, 1.94958477e+01,
       1.98864185e+01, 1.98864185e+01, 1.98864185e+01, 1.98864185e+01,
       2.00798147e+01, 2.00798147e+01, 2.00798147e+01, 2.00798147e+01,
       2.01365297e+01, 2.01365297e+01, 2.01365297e+01, 2.01365297e+01,
       2.01309132e+01, 2.01309132e+01, 2.01309132e+01, 2.01309132e+01,
       2.00684530e+01, 2.00684530e+01, 2.00684530e+01, 2.00684530e+01,
       2.00289832e+01, 2.00289832e+01, 2.00289832e+01, 2.00289832e+01,
       2.00117538e+01, 2.00117538e+01, 2.00117538e+01, 2.00117538e+01,
       2.00007059e+01, 2.00007059e+01, 2.00007059e+01, 2.00007059e+01,
       1.99899662e+01, 1.99899662e+01, 1.99899662e+01, 1.99899662e+01,
       1.99747375e+01, 1.99747375e+01, 1.99747375e+01, 1.99747375e+01,
       1.99513167e+01, 1.99513167e+01, 1.99513167e+01, 1.99513167e+01,
       1.99258024e+01, 1.99258024e+01, 1.99258024e+01, 1.99258024e+01,
       1.99020913e+01, 1.99020913e+01, 1.99020913e+01, 1.99020913e+01,
       1.98796675e+01, 1.98796675e+01, 1.98796675e+01, 1.98796675e+01,
       1.98594450e+01, 1.98594450e+01, 1.98594450e+01, 1.98594450e+01,
       1.98414283e+01, 1.98414283e+01, 1.98414283e+01, 1.98414283e+01,
       1.98245672e+01, 1.98245672e+01, 1.98245672e+01, 1.98245672e+01,
       1.98089852e+01, 1.98089852e+01, 1.98089852e+01, 1.98089852e+01,
       1.97956031e+01, 1.97956031e+01, 1.97956031e+01, 1.97956031e+01,
       1.97837093e+01, 1.97837093e+01, 1.97837093e+01, 1.97837093e+01,
       1.97755943e+01, 1.97755943e+01, 1.97755943e+01, 1.97755943e+01,
       1.97672969e+01, 1.97672969e+01, 1.97672969e+01, 1.97672969e+01,
       1.97336516e+01, 1.97336516e+01, 1.97336516e+01, 1.97336516e+01,
       1.95824012e+01, 1.95824012e+01, 1.95824012e+01, 1.95824012e+01,
       1.89016608e+01, 1.89016608e+01, 1.89016608e+01, 1.89016608e+01,
       1.61684252e+01, 1.61684252e+01, 1.61684252e+01, 1.61684252e+01,
       8.15698720e+00, 8.15698720e+00, 8.15698720e+00, 8.15698720e+00,
       5.95654577e-01, 5.95654577e-01, 5.95654577e-01, 5.95654577e-01,
       3.94968248e-03, 3.94968248e-03, 3.94968248e-03, 3.94968248e-03,
       1.48333272e-06, 1.48333272e-06, 1.48333272e-06, 1.48333272e-06,
       2.26392355e-10, 2.26392355e-10, 2.26392355e-10, 2.26392355e-10,
       3.54863604e-14, 3.54863604e-14, 3.54863604e-14, 3.54863604e-14,
       5.67765305e-18, 5.67765305e-18, 5.67765305e-18, 5.67765305e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.94915923e+02, 9.94915923e+02, 9.94915923e+02, 9.94915923e+02,
       9.88901826e+02, 9.88901826e+02, 9.88901826e+02, 9.88901826e+02,
       9.81366024e+02, 9.81366024e+02, 9.81366024e+02, 9.81366024e+02,
       9.69562839e+02, 9.69562839e+02, 9.69562839e+02, 9.69562839e+02,
       9.53547612e+02, 9.53547612e+02, 9.53547612e+02, 9.53547612e+02,
       9.33005104e+02, 9.33005104e+02, 9.33005104e+02, 9.33005104e+02,
       9.08377668e+02, 9.08377668e+02, 9.08377668e+02, 9.08377668e+02,
       8.80425926e+02, 8.80425926e+02, 8.80425926e+02, 8.80425926e+02,
       8.50101783e+02, 8.50101783e+02, 8.50101783e+02, 8.50101783e+02,
       8.18296299e+02, 8.18296299e+02, 8.18296299e+02, 8.18296299e+02,
       7.85675395e+02, 7.85675395e+02, 7.85675395e+02, 7.85675395e+02,
       7.52902859e+02, 7.52902859e+02, 7.52902859e+02, 7.52902859e+02,
       7.20897155e+02, 7.20897155e+02, 7.20897155e+02, 7.20897155e+02,
       6.90007959e+02, 6.90007959e+02, 6.90007959e+02, 6.90007959e+02,
       6.60368829e+02, 6.60368829e+02, 6.60368829e+02, 6.60368829e+02,
       6.31916337e+02, 6.31916337e+02, 6.31916337e+02, 6.31916337e+02,
       6.04645783e+02, 6.04645783e+02, 6.04645783e+02, 6.04645783e+02,
       5.78584743e+02, 5.78584743e+02, 5.78584743e+02, 5.78584743e+02,
       5.53823640e+02, 5.53823640e+02, 5.53823640e+02, 5.53823640e+02,
       5.30581052e+02, 5.30581052e+02, 5.30581052e+02, 5.30581052e+02,
       5.09216724e+02, 5.09216724e+02, 5.09216724e+02, 5.09216724e+02,
       4.90322663e+02, 4.90322663e+02, 4.90322663e+02, 4.90322663e+02,
       4.74628094e+02, 4.74628094e+02, 4.74628094e+02, 4.74628094e+02,
       4.62859662e+02, 4.62859662e+02, 4.62859662e+02, 4.62859662e+02,
       4.55372213e+02, 4.55372213e+02, 4.55372213e+02, 4.55372213e+02,
       4.51700059e+02, 4.51700059e+02, 4.51700059e+02, 4.51700059e+02,
       4.50624155e+02, 4.50624155e+02, 4.50624155e+02, 4.50624155e+02,
       4.50729577e+02, 4.50729577e+02, 4.50729577e+02, 4.50729577e+02,
       4.51910877e+02, 4.51910877e+02, 4.51910877e+02, 4.51910877e+02,
       4.52662577e+02, 4.52662577e+02, 4.52662577e+02, 4.52662577e+02,
       4.52987231e+02, 4.52987231e+02, 4.52987231e+02, 4.52987231e+02,
       4.53194374e+02, 4.53194374e+02, 4.53194374e+02, 4.53194374e+02,
       4.53400795e+02, 4.53400795e+02, 4.53400795e+02, 4.53400795e+02,
       4.53694238e+02, 4.53694238e+02, 4.53694238e+02, 4.53694238e+02,
       4.54143778e+02, 4.54143778e+02, 4.54143778e+02, 4.54143778e+02,
       4.54633274e+02, 4.54633274e+02, 4.54633274e+02, 4.54633274e+02,
       4.55075065e+02, 4.55075065e+02, 4.55075065e+02, 4.55075065e+02,
       4.55489841e+02, 4.55489841e+02, 4.55489841e+02, 4.55489841e+02,
       4.55884753e+02, 4.55884753e+02, 4.55884753e+02, 4.55884753e+02,
       4.56250604e+02, 4.56250604e+02, 4.56250604e+02, 4.56250604e+02,
       4.56569475e+02, 4.56569475e+02, 4.56569475e+02, 4.56569475e+02,
       4.56850195e+02, 4.56850195e+02, 4.56850195e+02, 4.56850195e+02,
       4.57127711e+02, 4.57127711e+02, 4.57127711e+02, 4.57127711e+02,
       4.57412507e+02, 4.57412507e+02, 4.57412507e+02, 4.57412507e+02,
       4.57820992e+02, 4.57820992e+02, 4.57820992e+02, 4.57820992e+02,
       4.58356923e+02, 4.58356923e+02, 4.58356923e+02, 4.58356923e+02,
       4.57913485e+02, 4.57913485e+02, 4.57913485e+02, 4.57913485e+02,
       4.51520684e+02, 4.51520684e+02, 4.51520684e+02, 4.51520684e+02,
       4.16998340e+02, 4.16998340e+02, 4.16998340e+02, 4.16998340e+02,
       2.90460159e+02, 2.90460159e+02, 2.90460159e+02, 2.90460159e+02,
       7.32958303e+01, 7.32958303e+01, 7.32958303e+01, 7.32958303e+01,
       1.83484411e+00, 1.83484411e+00, 1.83484411e+00, 1.83484411e+00,
       1.17220052e-02, 1.17220052e-02, 1.17220052e-02, 1.17220052e-02,
       1.00001751e-02, 1.00001751e-02, 1.00001751e-02, 1.00001751e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99426946, 0.99426946, 0.99426946, 0.99426946, 0.98811149,
       0.98811149, 0.98811149, 0.98811149, 0.98107232, 0.98107232,
       0.98107232, 0.98107232, 0.97045921, 0.97045921, 0.97045921,
       0.97045921, 0.95682737, 0.95682737, 0.95682737, 0.95682737,
       0.94004521, 0.94004521, 0.94004521, 0.94004521, 0.92060887,
       0.92060887, 0.92060887, 0.92060887, 0.89908557, 0.89908557,
       0.89908557, 0.89908557, 0.87609083, 0.87609083, 0.87609083,
       0.87609083, 0.85212027, 0.85212027, 0.85212027, 0.85212027,
       0.82756445, 0.82756445, 0.82756445, 0.82756445, 0.80306007,
       0.80306007, 0.80306007, 0.80306007, 0.77900808, 0.77900808,
       0.77900808, 0.77900808, 0.75557607, 0.75557607, 0.75557607,
       0.75557607, 0.73277632, 0.73277632, 0.73277632, 0.73277632,
       0.71060835, 0.71060835, 0.71060835, 0.71060835, 0.68909145,
       0.68909145, 0.68909145, 0.68909145, 0.66826654, 0.66826654,
       0.66826654, 0.66826654, 0.64834169, 0.64834169, 0.64834169,
       0.64834169, 0.62923142, 0.62923142, 0.62923142, 0.62923142,
       0.61227339, 0.61227339, 0.61227339, 0.61227339, 0.5959292 ,
       0.5959292 , 0.5959292 , 0.5959292 , 0.58448008, 0.58448008,
       0.58448008, 0.58448008, 0.57434928, 0.57434928, 0.57434928,
       0.57434928, 0.56859881, 0.56859881, 0.56859881, 0.56859881,
       0.56684346, 0.56684346, 0.56684346, 0.56684346, 0.56569203,
       0.56569203, 0.56569203, 0.56569203, 0.56583937, 0.56583937,
       0.56583937, 0.56583937, 0.56683174, 0.56683174, 0.56683174,
       0.56683174, 0.56774694, 0.56774694, 0.56774694, 0.56774694,
       0.56791077, 0.56791077, 0.56791077, 0.56791077, 0.56792256,
       0.56792256, 0.56792256, 0.56792256, 0.56800423, 0.56800423,
       0.56800423, 0.56800423, 0.56828226, 0.56828226, 0.56828226,
       0.56828226, 0.56872634, 0.56872634, 0.56872634, 0.56872634,
       0.5690527 , 0.5690527 , 0.5690527 , 0.5690527 , 0.56926962,
       0.56926962, 0.56926962, 0.56926962, 0.56949685, 0.56949685,
       0.56949685, 0.56949685, 0.569897  , 0.569897  , 0.569897  ,
       0.569897  , 0.57117768, 0.57117768, 0.57117768, 0.57117768,
       0.57592859, 0.57592859, 0.57592859, 0.57592859, 0.59209704,
       0.59209704, 0.59209704, 0.59209704, 0.63988261, 0.63988261,
       0.63988261, 0.63988261, 0.76179894, 0.76179894, 0.76179894,
       0.76179894, 1.03182564, 1.03182564, 1.03182564, 1.03182564,
       1.55348275, 1.55348275, 1.55348275, 1.55348275, 2.43068895,
       2.43068895, 2.43068895, 2.43068895, 3.55229101, 3.55229101,
       3.55229101, 3.55229101, 4.16458528, 4.16458528, 4.16458528,
       4.16458528, 4.1800089 , 4.1800089 , 4.1800089 , 4.1800089 ,
       3.07676045, 3.07676045, 3.07676045, 3.07676045, 1.34520374,
       1.34520374, 1.34520374, 1.34520374, 1.02204848, 1.02204848,
       1.02204848, 1.02204848, 1.00037232, 1.00037232, 1.00037232,
       1.00037232, 1.00000011, 1.00000011, 1.00000011, 1.00000011,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([2.14957957e-01, 2.14957957e-01, 2.14957957e-01, 2.14957957e-01,
       4.47108627e-01, 4.47108627e-01, 4.47108627e-01, 4.47108627e-01,
       7.13561081e-01, 7.13561081e-01, 7.13561081e-01, 7.13561081e-01,
       1.11872396e+00, 1.11872396e+00, 1.11872396e+00, 1.11872396e+00,
       1.64431395e+00, 1.64431395e+00, 1.64431395e+00, 1.64431395e+00,
       2.29983169e+00, 2.29983169e+00, 2.29983169e+00, 2.29983169e+00,
       3.07089753e+00, 3.07089753e+00, 3.07089753e+00, 3.07089753e+00,
       3.94015044e+00, 3.94015044e+00, 3.94015044e+00, 3.94015044e+00,
       4.88739659e+00, 4.88739659e+00, 4.88739659e+00, 4.88739659e+00,
       5.89618557e+00, 5.89618557e+00, 5.89618557e+00, 5.89618557e+00,
       6.95255343e+00, 6.95255343e+00, 6.95255343e+00, 6.95255343e+00,
       8.02806459e+00, 8.02806459e+00, 8.02806459e+00, 8.02806459e+00,
       9.11164658e+00, 9.11164658e+00, 9.11164658e+00, 9.11164658e+00,
       1.01949310e+01, 1.01949310e+01, 1.01949310e+01, 1.01949310e+01,
       1.12753220e+01, 1.12753220e+01, 1.12753220e+01, 1.12753220e+01,
       1.23519886e+01, 1.23519886e+01, 1.23519886e+01, 1.23519886e+01,
       1.34230468e+01, 1.34230468e+01, 1.34230468e+01, 1.34230468e+01,
       1.44847959e+01, 1.44847959e+01, 1.44847959e+01, 1.44847959e+01,
       1.55291038e+01, 1.55291038e+01, 1.55291038e+01, 1.55291038e+01,
       1.65418026e+01, 1.65418026e+01, 1.65418026e+01, 1.65418026e+01,
       1.74975626e+01, 1.74975626e+01, 1.74975626e+01, 1.74975626e+01,
       1.83602647e+01, 1.83602647e+01, 1.83602647e+01, 1.83602647e+01,
       1.90815134e+01, 1.90815134e+01, 1.90815134e+01, 1.90815134e+01,
       1.96172465e+01, 1.96172465e+01, 1.96172465e+01, 1.96172465e+01,
       1.99474835e+01, 1.99474835e+01, 1.99474835e+01, 1.99474835e+01,
       2.00981416e+01, 2.00981416e+01, 2.00981416e+01, 2.00981416e+01,
       2.01352473e+01, 2.01352473e+01, 2.01352473e+01, 2.01352473e+01,
       2.01181972e+01, 2.01181972e+01, 2.01181972e+01, 2.01181972e+01,
       2.00565244e+01, 2.00565244e+01, 2.00565244e+01, 2.00565244e+01,
       2.00240733e+01, 2.00240733e+01, 2.00240733e+01, 2.00240733e+01,
       2.00089626e+01, 2.00089626e+01, 2.00089626e+01, 2.00089626e+01,
       1.99979297e+01, 1.99979297e+01, 1.99979297e+01, 1.99979297e+01,
       1.99863891e+01, 1.99863891e+01, 1.99863891e+01, 1.99863891e+01,
       1.99693717e+01, 1.99693717e+01, 1.99693717e+01, 1.99693717e+01,
       1.99445026e+01, 1.99445026e+01, 1.99445026e+01, 1.99445026e+01,
       1.99195116e+01, 1.99195116e+01, 1.99195116e+01, 1.99195116e+01,
       1.98964046e+01, 1.98964046e+01, 1.98964046e+01, 1.98964046e+01,
       1.98743565e+01, 1.98743565e+01, 1.98743565e+01, 1.98743565e+01,
       1.98541585e+01, 1.98541585e+01, 1.98541585e+01, 1.98541585e+01,
       1.98364920e+01, 1.98364920e+01, 1.98364920e+01, 1.98364920e+01,
       1.98206754e+01, 1.98206754e+01, 1.98206754e+01, 1.98206754e+01,
       1.98057571e+01, 1.98057571e+01, 1.98057571e+01, 1.98057571e+01,
       1.97923828e+01, 1.97923828e+01, 1.97923828e+01, 1.97923828e+01,
       1.97808552e+01, 1.97808552e+01, 1.97808552e+01, 1.97808552e+01,
       1.97709468e+01, 1.97709468e+01, 1.97709468e+01, 1.97709468e+01,
       1.97654812e+01, 1.97654812e+01, 1.97654812e+01, 1.97654812e+01,
       1.97477731e+01, 1.97477731e+01, 1.97477731e+01, 1.97477731e+01,
       1.96722020e+01, 1.96722020e+01, 1.96722020e+01, 1.96722020e+01,
       1.93272540e+01, 1.93272540e+01, 1.93272540e+01, 1.93272540e+01,
       1.78485419e+01, 1.78485419e+01, 1.78485419e+01, 1.78485419e+01,
       1.26228462e+01, 1.26228462e+01, 1.26228462e+01, 1.26228462e+01,
       2.71270096e+00, 2.71270096e+00, 2.71270096e+00, 2.71270096e+00,
       5.37681970e-02, 5.37681970e-02, 5.37681970e-02, 5.37681970e-02,
       7.39978310e-05, 7.39978310e-05, 7.39978310e-05, 7.39978310e-05,
       1.26879911e-08, 1.26879911e-08, 1.26879911e-08, 1.26879911e-08,
       2.06933606e-12, 2.06933606e-12, 2.06933606e-12, 2.06933606e-12,
       3.25161787e-16, 3.25161787e-16, 3.25161787e-16, 3.25161787e-16,
       5.40240794e-20, 5.40240794e-20, 5.40240794e-20, 5.40240794e-20,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.91991427e+02, 9.91991427e+02, 9.91991427e+02, 9.91991427e+02,
       9.83398788e+02, 9.83398788e+02, 9.83398788e+02, 9.83398788e+02,
       9.73613696e+02, 9.73613696e+02, 9.73613696e+02, 9.73613696e+02,
       9.58908504e+02, 9.58908504e+02, 9.58908504e+02, 9.58908504e+02,
       9.40117970e+02, 9.40117970e+02, 9.40117970e+02, 9.40117970e+02,
       9.17130377e+02, 9.17130377e+02, 9.17130377e+02, 9.17130377e+02,
       8.90710253e+02, 8.90710253e+02, 8.90710253e+02, 8.90710253e+02,
       8.61710068e+02, 8.61710068e+02, 8.61710068e+02, 8.61710068e+02,
       8.31030081e+02, 8.31030081e+02, 8.31030081e+02, 8.31030081e+02,
       7.99387307e+02, 7.99387307e+02, 7.99387307e+02, 7.99387307e+02,
       7.67330949e+02, 7.67330949e+02, 7.67330949e+02, 7.67330949e+02,
       7.35690337e+02, 7.35690337e+02, 7.35690337e+02, 7.35690337e+02,
       7.05034804e+02, 7.05034804e+02, 7.05034804e+02, 7.05034804e+02,
       6.75527261e+02, 6.75527261e+02, 6.75527261e+02, 6.75527261e+02,
       6.47167439e+02, 6.47167439e+02, 6.47167439e+02, 6.47167439e+02,
       6.19930743e+02, 6.19930743e+02, 6.19930743e+02, 6.19930743e+02,
       5.93813015e+02, 5.93813015e+02, 5.93813015e+02, 5.93813015e+02,
       5.68863894e+02, 5.68863894e+02, 5.68863894e+02, 5.68863894e+02,
       5.45199993e+02, 5.45199993e+02, 5.45199993e+02, 5.45199993e+02,
       5.23075190e+02, 5.23075190e+02, 5.23075190e+02, 5.23075190e+02,
       5.02889600e+02, 5.02889600e+02, 5.02889600e+02, 5.02889600e+02,
       4.85266432e+02, 4.85266432e+02, 4.85266432e+02, 4.85266432e+02,
       4.70932260e+02, 4.70932260e+02, 4.70932260e+02, 4.70932260e+02,
       4.60518670e+02, 4.60518670e+02, 4.60518670e+02, 4.60518670e+02,
       4.54205957e+02, 4.54205957e+02, 4.54205957e+02, 4.54205957e+02,
       4.51352380e+02, 4.51352380e+02, 4.51352380e+02, 4.51352380e+02,
       4.50649917e+02, 4.50649917e+02, 4.50649917e+02, 4.50649917e+02,
       4.50971173e+02, 4.50971173e+02, 4.50971173e+02, 4.50971173e+02,
       4.52135940e+02, 4.52135940e+02, 4.52135940e+02, 4.52135940e+02,
       4.52753679e+02, 4.52753679e+02, 4.52753679e+02, 4.52753679e+02,
       4.53041751e+02, 4.53041751e+02, 4.53041751e+02, 4.53041751e+02,
       4.53249156e+02, 4.53249156e+02, 4.53249156e+02, 4.53249156e+02,
       4.53466954e+02, 4.53466954e+02, 4.53466954e+02, 4.53466954e+02,
       4.53791825e+02, 4.53791825e+02, 4.53791825e+02, 4.53791825e+02,
       4.54268545e+02, 4.54268545e+02, 4.54268545e+02, 4.54268545e+02,
       4.54750752e+02, 4.54750752e+02, 4.54750752e+02, 4.54750752e+02,
       4.55192196e+02, 4.55192196e+02, 4.55192196e+02, 4.55192196e+02,
       4.55599122e+02, 4.55599122e+02, 4.55599122e+02, 4.55599122e+02,
       4.55975922e+02, 4.55975922e+02, 4.55975922e+02, 4.55975922e+02,
       4.56329221e+02, 4.56329221e+02, 4.56329221e+02, 4.56329221e+02,
       4.56648137e+02, 4.56648137e+02, 4.56648137e+02, 4.56648137e+02,
       4.56923106e+02, 4.56923106e+02, 4.56923106e+02, 4.56923106e+02,
       4.57181465e+02, 4.57181465e+02, 4.57181465e+02, 4.57181465e+02,
       4.57438180e+02, 4.57438180e+02, 4.57438180e+02, 4.57438180e+02,
       4.57763252e+02, 4.57763252e+02, 4.57763252e+02, 4.57763252e+02,
       4.58282193e+02, 4.58282193e+02, 4.58282193e+02, 4.58282193e+02,
       4.58443493e+02, 4.58443493e+02, 4.58443493e+02, 4.58443493e+02,
       4.55958160e+02, 4.55958160e+02, 4.55958160e+02, 4.55958160e+02,
       4.38959204e+02, 4.38959204e+02, 4.38959204e+02, 4.38959204e+02,
       3.65073159e+02, 3.65073159e+02, 3.65073159e+02, 3.65073159e+02,
       1.68405632e+02, 1.68405632e+02, 1.68405632e+02, 1.68405632e+02,
       1.44222649e+01, 1.44222649e+01, 1.44222649e+01, 1.44222649e+01,
       7.69577756e-02, 7.69577756e-02, 7.69577756e-02, 7.69577756e-02,
       1.00097351e-02, 1.00097351e-02, 1.00097351e-02, 1.00097351e-02,
       1.00000015e-02, 1.00000015e-02, 1.00000015e-02, 1.00000015e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}, {'rho': array([0.99133911, 0.99133911, 0.99133911, 0.99133911, 0.98292058,
       0.98292058, 0.98292058, 0.98292058, 0.97419061, 0.97419061,
       0.97419061, 0.97419061, 0.96144618, 0.96144618, 0.96144618,
       0.96144618, 0.94597586, 0.94597586, 0.94597586, 0.94597586,
       0.9276744 , 0.9276744 , 0.9276744 , 0.9276744 , 0.90721706,
       0.90721706, 0.90721706, 0.90721706, 0.88515443, 0.88515443,
       0.88515443, 0.88515443, 0.86202321, 0.86202321, 0.86202321,
       0.86202321, 0.83819213, 0.83819213, 0.83819213, 0.83819213,
       0.8141677 , 0.8141677 , 0.8141677 , 0.8141677 , 0.79048162,
       0.79048162, 0.79048162, 0.79048162, 0.76730128, 0.76730128,
       0.76730128, 0.76730128, 0.74474398, 0.74474398, 0.74474398,
       0.74474398, 0.72277684, 0.72277684, 0.72277684, 0.72277684,
       0.70140995, 0.70140995, 0.70140995, 0.70140995, 0.68067678,
       0.68067678, 0.68067678, 0.68067678, 0.66062128, 0.66062128,
       0.66062128, 0.66062128, 0.64151926, 0.64151926, 0.64151926,
       0.64151926, 0.62319637, 0.62319637, 0.62319637, 0.62319637,
       0.60726225, 0.60726225, 0.60726225, 0.60726225, 0.59190903,
       0.59190903, 0.59190903, 0.59190903, 0.58148652, 0.58148652,
       0.58148652, 0.58148652, 0.57278527, 0.57278527, 0.57278527,
       0.57278527, 0.56769271, 0.56769271, 0.56769271, 0.56769271,
       0.56654927, 0.56654927, 0.56654927, 0.56654927, 0.56583728,
       0.56583728, 0.56583728, 0.56583728, 0.56616565, 0.56616565,
       0.56616565, 0.56616565, 0.56694844, 0.56694844, 0.56694844,
       0.56694844, 0.56774994, 0.56774994, 0.56774994, 0.56774994,
       0.56799881, 0.56799881, 0.56799881, 0.56799881, 0.56803723,
       0.56803723, 0.56803723, 0.56803723, 0.56811091, 0.56811091,
       0.56811091, 0.56811091, 0.56837366, 0.56837366, 0.56837366,
       0.56837366, 0.56883911, 0.56883911, 0.56883911, 0.56883911,
       0.56920333, 0.56920333, 0.56920333, 0.56920333, 0.56943051,
       0.56943051, 0.56943051, 0.56943051, 0.56964182, 0.56964182,
       0.56964182, 0.56964182, 0.56994366, 0.56994366, 0.56994366,
       0.56994366, 0.57080637, 0.57080637, 0.57080637, 0.57080637,
       0.57400236, 0.57400236, 0.57400236, 0.57400236, 0.58513972,
       0.58513972, 0.58513972, 0.58513972, 0.61910673, 0.61910673,
       0.61910673, 0.61910673, 0.70892127, 0.70892127, 0.70892127,
       0.70892127, 0.91548374, 0.91548374, 0.91548374, 0.91548374,
       1.33078894, 1.33078894, 1.33078894, 1.33078894, 2.06133491,
       2.06133491, 2.06133491, 2.06133491, 3.15181689, 3.15181689,
       3.15181689, 3.15181689, 4.02701618, 4.02701618, 4.02701618,
       4.02701618, 4.28308718, 4.28308718, 4.28308718, 4.28308718,
       3.81910697, 3.81910697, 3.81910697, 3.81910697, 1.98110507,
       1.98110507, 1.98110507, 1.98110507, 1.08418873, 1.08418873,
       1.08418873, 1.08418873, 1.00343534, 1.00343534, 1.00343534,
       1.00343534, 1.00000606, 1.00000606, 1.00000606, 1.00000606,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ,
       1.        , 1.        , 1.        , 1.        , 1.        ]), 'vx': array([3.25290090e-01, 3.25290090e-01, 3.25290090e-01, 3.25290090e-01,
       6.43847125e-01, 6.43847125e-01, 6.43847125e-01, 6.43847125e-01,
       9.75722154e-01, 9.75722154e-01, 9.75722154e-01, 9.75722154e-01,
       1.46557297e+00, 1.46557297e+00, 1.46557297e+00, 1.46557297e+00,
       2.06705518e+00, 2.06705518e+00, 2.06705518e+00, 2.06705518e+00,
       2.78907819e+00, 2.78907819e+00, 2.78907819e+00, 2.78907819e+00,
       3.60976834e+00, 3.60976834e+00, 3.60976834e+00, 3.60976834e+00,
       4.51162281e+00, 4.51162281e+00, 4.51162281e+00, 4.51162281e+00,
       5.47661724e+00, 5.47661724e+00, 5.47661724e+00, 5.47661724e+00,
       6.49264130e+00, 6.49264130e+00, 6.49264130e+00, 6.49264130e+00,
       7.53660887e+00, 7.53660887e+00, 7.53660887e+00, 7.53660887e+00,
       8.59198431e+00, 8.59198431e+00, 8.59198431e+00, 8.59198431e+00,
       9.64916487e+00, 9.64916487e+00, 9.64916487e+00, 9.64916487e+00,
       1.07051453e+01, 1.07051453e+01, 1.07051453e+01, 1.07051453e+01,
       1.17579310e+01, 1.17579310e+01, 1.17579310e+01, 1.17579310e+01,
       1.28067954e+01, 1.28067954e+01, 1.28067954e+01, 1.28067954e+01,
       1.38494448e+01, 1.38494448e+01, 1.38494448e+01, 1.38494448e+01,
       1.48812924e+01, 1.48812924e+01, 1.48812924e+01, 1.48812924e+01,
       1.58928454e+01, 1.58928454e+01, 1.58928454e+01, 1.58928454e+01,
       1.68680207e+01, 1.68680207e+01, 1.68680207e+01, 1.68680207e+01,
       1.77790951e+01, 1.77790951e+01, 1.77790951e+01, 1.77790951e+01,
       1.85881715e+01, 1.85881715e+01, 1.85881715e+01, 1.85881715e+01,
       1.92479302e+01, 1.92479302e+01, 1.92479302e+01, 1.92479302e+01,
       1.97200343e+01, 1.97200343e+01, 1.97200343e+01, 1.97200343e+01,
       1.99952626e+01, 1.99952626e+01, 1.99952626e+01, 1.99952626e+01,
       2.01098122e+01, 2.01098122e+01, 2.01098122e+01, 2.01098122e+01,
       2.01323555e+01, 2.01323555e+01, 2.01323555e+01, 2.01323555e+01,
       2.01039208e+01, 2.01039208e+01, 2.01039208e+01, 2.01039208e+01,
       2.00468661e+01, 2.00468661e+01, 2.00468661e+01, 2.00468661e+01,
       2.00198405e+01, 2.00198405e+01, 2.00198405e+01, 2.00198405e+01,
       2.00061051e+01, 2.00061051e+01, 2.00061051e+01, 2.00061051e+01,
       1.99950115e+01, 1.99950115e+01, 1.99950115e+01, 1.99950115e+01,
       1.99825634e+01, 1.99825634e+01, 1.99825634e+01, 1.99825634e+01,
       1.99636417e+01, 1.99636417e+01, 1.99636417e+01, 1.99636417e+01,
       1.99376749e+01, 1.99376749e+01, 1.99376749e+01, 1.99376749e+01,
       1.99131873e+01, 1.99131873e+01, 1.99131873e+01, 1.99131873e+01,
       1.98905974e+01, 1.98905974e+01, 1.98905974e+01, 1.98905974e+01,
       1.98692438e+01, 1.98692438e+01, 1.98692438e+01, 1.98692438e+01,
       1.98493625e+01, 1.98493625e+01, 1.98493625e+01, 1.98493625e+01,
       1.98317370e+01, 1.98317370e+01, 1.98317370e+01, 1.98317370e+01,
       1.98164911e+01, 1.98164911e+01, 1.98164911e+01, 1.98164911e+01,
       1.98024735e+01, 1.98024735e+01, 1.98024735e+01, 1.98024735e+01,
       1.97894710e+01, 1.97894710e+01, 1.97894710e+01, 1.97894710e+01,
       1.97780897e+01, 1.97780897e+01, 1.97780897e+01, 1.97780897e+01,
       1.97674568e+01, 1.97674568e+01, 1.97674568e+01, 1.97674568e+01,
       1.97612054e+01, 1.97612054e+01, 1.97612054e+01, 1.97612054e+01,
       1.97524408e+01, 1.97524408e+01, 1.97524408e+01, 1.97524408e+01,
       1.97136422e+01, 1.97136422e+01, 1.97136422e+01, 1.97136422e+01,
       1.95403967e+01, 1.95403967e+01, 1.95403967e+01, 1.95403967e+01,
       1.87695037e+01, 1.87695037e+01, 1.87695037e+01, 1.87695037e+01,
       1.57483105e+01, 1.57483105e+01, 1.57483105e+01, 1.57483105e+01,
       7.26747736e+00, 7.26747736e+00, 7.26747736e+00, 7.26747736e+00,
       4.38929043e-01, 4.38929043e-01, 4.38929043e-01, 4.38929043e-01,
       2.34025635e-03, 2.34025635e-03, 2.34025635e-03, 2.34025635e-03,
       7.25432818e-07, 7.25432818e-07, 7.25432818e-07, 7.25432818e-07,
       1.11193400e-10, 1.11193400e-10, 1.11193400e-10, 1.11193400e-10,
       1.76869480e-14, 1.76869480e-14, 1.76869480e-14, 1.76869480e-14,
       2.85535124e-18, 2.85535124e-18, 2.85535124e-18, 2.85535124e-18,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00, 0.00000000e+00,
       0.00000000e+00, 0.00000000e+00, 0.00000000e+00]), 'P': array([9.87906280e+02, 9.87906280e+02, 9.87906280e+02, 9.87906280e+02,
       9.76174941e+02, 9.76174941e+02, 9.76174941e+02, 9.76174941e+02,
       9.64072771e+02, 9.64072771e+02, 9.64072771e+02, 9.64072771e+02,
       9.46471139e+02, 9.46471139e+02, 9.46471139e+02, 9.46471139e+02,
       9.25234369e+02, 9.25234369e+02, 9.25234369e+02, 9.25234369e+02,
       9.00287177e+02, 9.00287177e+02, 9.00287177e+02, 9.00287177e+02,
       8.72631649e+02, 8.72631649e+02, 8.72631649e+02, 8.72631649e+02,
       8.43081763e+02, 8.43081763e+02, 8.43081763e+02, 8.43081763e+02,
       8.12413334e+02, 8.12413334e+02, 8.12413334e+02, 8.12413334e+02,
       7.81158038e+02, 7.81158038e+02, 7.81158038e+02, 7.81158038e+02,
       7.49976361e+02, 7.49976361e+02, 7.49976361e+02, 7.49976361e+02,
       7.19607955e+02, 7.19607955e+02, 7.19607955e+02, 7.19607955e+02,
       6.90244348e+02, 6.90244348e+02, 6.90244348e+02, 6.90244348e+02,
       6.62006070e+02, 6.62006070e+02, 6.62006070e+02, 6.62006070e+02,
       6.34835316e+02, 6.34835316e+02, 6.34835316e+02, 6.34835316e+02,
       6.08723776e+02, 6.08723776e+02, 6.08723776e+02, 6.08723776e+02,
       5.83682527e+02, 5.83682527e+02, 5.83682527e+02, 5.83682527e+02,
       5.59779886e+02, 5.59779886e+02, 5.59779886e+02, 5.59779886e+02,
       5.37159931e+02, 5.37159931e+02, 5.37159931e+02, 5.37159931e+02,
       5.16112600e+02, 5.16112600e+02, 5.16112600e+02, 5.16112600e+02,
       4.97076250e+02, 4.97076250e+02, 4.97076250e+02, 4.97076250e+02,
       4.80695875e+02, 4.80695875e+02, 4.80695875e+02, 4.80695875e+02,
       4.67679348e+02, 4.67679348e+02, 4.67679348e+02, 4.67679348e+02,
       4.58546259e+02, 4.58546259e+02, 4.58546259e+02, 4.58546259e+02,
       4.53296009e+02, 4.53296009e+02, 4.53296009e+02, 4.53296009e+02,
       4.51129021e+02, 4.51129021e+02, 4.51129021e+02, 4.51129021e+02,
       4.50704444e+02, 4.50704444e+02, 4.50704444e+02, 4.50704444e+02,
       4.51242012e+02, 4.51242012e+02, 4.51242012e+02, 4.51242012e+02,
       4.52320289e+02, 4.52320289e+02, 4.52320289e+02, 4.52320289e+02,
       4.52832280e+02, 4.52832280e+02, 4.52832280e+02, 4.52832280e+02,
       4.53095183e+02, 4.53095183e+02, 4.53095183e+02, 4.53095183e+02,
       4.53305822e+02, 4.53305822e+02, 4.53305822e+02, 4.53305822e+02,
       4.53541196e+02, 4.53541196e+02, 4.53541196e+02, 4.53541196e+02,
       4.53899663e+02, 4.53899663e+02, 4.53899663e+02, 4.53899663e+02,
       4.54393535e+02, 4.54393535e+02, 4.54393535e+02, 4.54393535e+02,
       4.54864936e+02, 4.54864936e+02, 4.54864936e+02, 4.54864936e+02,
       4.55303481e+02, 4.55303481e+02, 4.55303481e+02, 4.55303481e+02,
       4.55707477e+02, 4.55707477e+02, 4.55707477e+02, 4.55707477e+02,
       4.56071530e+02, 4.56071530e+02, 4.56071530e+02, 4.56071530e+02,
       4.56406325e+02, 4.56406325e+02, 4.56406325e+02, 4.56406325e+02,
       4.56717719e+02, 4.56717719e+02, 4.56717719e+02, 4.56717719e+02,
       4.56992693e+02, 4.56992693e+02, 4.56992693e+02, 4.56992693e+02,
       4.57237821e+02, 4.57237821e+02, 4.57237821e+02, 4.57237821e+02,
       4.57481191e+02, 4.57481191e+02, 4.57481191e+02, 4.57481191e+02,
       4.57744387e+02, 4.57744387e+02, 4.57744387e+02, 4.57744387e+02,
       4.58159054e+02, 4.58159054e+02, 4.58159054e+02, 4.58159054e+02,
       4.58594305e+02, 4.58594305e+02, 4.58594305e+02, 4.58594305e+02,
       4.57858557e+02, 4.57858557e+02, 4.57858557e+02, 4.57858557e+02,
       4.50044024e+02, 4.50044024e+02, 4.50044024e+02, 4.50044024e+02,
       4.10501297e+02, 4.10501297e+02, 4.10501297e+02, 4.10501297e+02,
       2.72947363e+02, 2.72947363e+02, 2.72947363e+02, 2.72947363e+02,
       6.00463556e+01, 6.00463556e+01, 6.00463556e+01, 6.00463556e+01,
       1.21367312e+00, 1.21367312e+00, 1.21367312e+00, 1.21367312e+00,
       1.08313285e-02, 1.08313285e-02, 1.08313285e-02, 1.08313285e-02,
       1.00000857e-02, 1.00000857e-02, 1.00000857e-02, 1.00000857e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02, 1.00000000e-02,
       1.00000000e-02, 1.00000000e-02, 1.00000000e-02])}]}
351 plot, anim = run_and_plot(cases, 4, "minmod_hllc")
  • Test 4 - t=0.035 (Last Step)
running none hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  16.98 ms                            [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.41 us    (51.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     : 1131.00 ns (0.2%)
   patch tree reduce : 1793.00 ns (0.3%)
   gen split merge   : 1181.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.2%)
   LB compute        : 524.66 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 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     : 13.17 us   (2.7%)
   patch tree reduce : 2.44 us    (0.5%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.2%)
   LB compute        : 454.25 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.3505e+05 | 65536 |      2 | 2.788e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 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     : 7.30 us    (1.6%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 1061.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 428.15 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.15 us    (74.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.1007e+05 | 65536 |      2 | 2.114e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6641403262498025 (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     : 7.02 us    (1.5%)
   patch tree reduce : 2.38 us    (0.5%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 435.34 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3819e+05 | 65536 |      2 | 1.938e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.905748494183816 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 334.58 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.4812e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8502825172308834 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 330.10 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.75 us    (71.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4011e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.922288795273759 (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.72 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 320.44 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6546e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.999250208580248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 303.20 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.5392e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9001324628234366 (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     : 7.21 us    (2.2%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 310.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8523e+05 | 65536 |      2 | 1.701e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3099210158983974 (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     : 7.02 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 336.36 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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.4901e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.857954227860553 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 246.73 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (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.5876e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9416889319695354 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014077328340275786, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 280.98 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (62.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9463e+05 | 65536 |      2 | 1.661e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3906703235312263 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 311.40 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (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    | 3.4907e+05 | 65536 |      2 | 1.877e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9992355643678152 (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     : 6.57 us    (1.8%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 351.00 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5553e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9139858868958375 (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     : 6.72 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 287.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (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.5311e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8931978181442473 (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     : 6.81 us    (2.1%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 307.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.6200e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9695503479558907 (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     : 6.73 us    (2.2%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 289.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.5270e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.889674617884588 (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     : 7.02 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 255.12 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3994e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7799922470684035 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.4%)
   patch tree reduce : 3.62 us    (1.3%)
   gen split merge   : 1472.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1953.00 ns (0.7%)
   LB compute        : 252.58 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (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.5359e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.897265726493183 (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     : 6.90 us    (2.5%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1553.00 ns (0.6%)
   LB compute        : 252.14 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (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.4196e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.797411497457527 (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     : 6.96 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 267.52 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (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.5827e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9374880770731084 (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     : 6.27 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 286.99 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5237e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8867818587592744 (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     : 6.66 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 284.45 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6328e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9805615984964717 (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     : 6.38 us    (1.9%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 309.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.0424e+05 | 65536 |      2 | 1.621e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.473248245861994 (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     : 6.96 us    (2.2%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 290.05 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6032e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.955118429293476 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003597539464737146, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 255.79 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3108e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.703931542110751 (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     : 7.03 us    (2.5%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 256.94 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4972e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.864058298371435 (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     : 6.53 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 269.86 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (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.4233e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.800552904584733 (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     : 6.78 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 307.81 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (61.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7668e+05 | 65536 |      2 | 1.740e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.236456818426508 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 281.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1621e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.576094335273858 (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     : 6.82 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 264.94 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4786e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.848048712168825 (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     : 6.34 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 316.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.4254e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8023732136404083 (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     : 6.47 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 326.37 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8415e+05 | 65536 |      2 | 1.706e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3006847624613775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 295.31 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (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.6462e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9921108915657957 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 272.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5108e+05 | 65536 |      2 | 1.867e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0165185122185965 (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     : 6.25 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 17.05 us   (5.4%)
   LB compute        : 276.62 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9335e+05 | 65536 |      2 | 1.666e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.379701228553672 (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.85 us    (1.7%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 374.88 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1493e+05 | 65536 |      2 | 1.579e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5651618168617376 (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.68 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 270.96 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.4817e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8507047467899027 (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     : 6.65 us    (2.3%)
   patch tree reduce : 1962.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 270.07 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9750e+05 | 65536 |      2 | 1.649e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4153653539053495 (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     : 6.56 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 289.41 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3435e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.872739826709034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 308.50 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.3165e+05 | 65536 |      2 | 1.976e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.849606086172063 (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.55 us    (1.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 325.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (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    | 3.3717e+05 | 65536 |      2 | 1.944e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.897003482358111 (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     : 6.51 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 339.28 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2680e+05 | 65536 |      2 | 2.005e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.807866080233692 (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     : 7.38 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 304.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.83 us    (74.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.5301e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.892339962037308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 269.62 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.3127e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7055588839375413 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.9%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 332.29 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5254e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8882562540787577 (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     : 6.32 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 286.74 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5014e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8676185305669386 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 273.50 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4003e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9215886356102456 (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     : 6.16 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 270.83 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4614e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.833264883392521 (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     : 7.35 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 303.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2511e+05 | 65536 |      2 | 2.016e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.793387639999583 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 309.10 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 19.48 us   (5.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.52 us    (70.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.3638e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7493912898616073 (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     : 6.62 us    (2.2%)
   patch tree reduce : 2.58 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 271.93 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4878e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8560069175528033 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 267.28 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (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.3213e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.712873310595876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 274.16 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.2245e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6297419383230505 (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     : 6.61 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 303.72 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6561e+05 | 65536 |      2 | 1.793e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1413767521284686 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 265.65 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.9131e+05 | 65536 |      2 | 1.675e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.362170172135727 (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     : 6.89 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 278.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.5261e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8889025116085354 (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     : 7.31 us    (2.7%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 245.13 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5345e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.896132299535643 (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     : 6.54 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 282.89 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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.4262e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.803068701278288 (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     : 6.22 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 311.57 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (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.4164e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7946454212117304 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1241.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 252.56 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (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.4862e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8546351352095405 (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     : 7.39 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 297.95 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.3632e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.748953295328728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 302.92 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (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.0010e+05 | 65536 |      2 | 1.638e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.437685255466849 (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     : 6.50 us    (2.0%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 300.34 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3796e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7630378462174456 (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     : 7.10 us    (2.0%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 339.71 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (66.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4596e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8317005783177835 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 268.12 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3883e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.770497482872846 (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     : 6.63 us    (2.5%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 241.85 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.5363e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.897648870984452 (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     : 6.36 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 294.82 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (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.5791e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.934417839228765 (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     : 6.99 us    (1.0%)
   patch tree reduce : 2.29 us    (0.3%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.2%)
   LB compute        : 679.32 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.71 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (68.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3898e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.771803150944442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 342.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3996e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.780169447178429 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 324.32 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4775e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8471211101339904 (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.94 us    (2.2%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 243.94 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (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.4860e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.854431914980226 (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.63 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 246.28 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9391e+05 | 65536 |      2 | 1.664e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.38448791004242 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 265.89 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.59 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.6647e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.007989638711745 (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     : 6.29 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 293.14 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7337e+05 | 65536 |      2 | 1.755e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.208037316845492 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 267.81 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.6008e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9530439596697793 (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     : 22.51 us   (7.3%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 268.46 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.6950e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0340055383182145 (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     : 6.26 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 250.76 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7549e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.085442122607662 (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     : 6.63 us    (2.1%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 294.52 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.5785e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9338653601992024 (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     : 6.13 us    (2.1%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 272.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.5909e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9445221352527597 (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     : 6.59 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 267.96 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (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.2084e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.615913403263623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 267.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.4800e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.849284658434106 (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     : 6.63 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 276.42 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (62.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7026e+05 | 65536 |      2 | 1.770e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.181342805472077 (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     : 6.59 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 284.84 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (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.6437e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.989933041723123 (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     : 6.63 us    (1.9%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 325.67 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (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.6238e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9728536111674644 (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     : 6.49 us    (2.1%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 292.03 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6788e+05 | 65536 |      2 | 1.781e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1608856208450047 (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     : 6.32 us    (2.3%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 249.84 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.5902e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.94392979925994 (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     : 6.72 us    (2.5%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 246.51 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.5920e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9454915851050627 (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     : 6.94 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 301.05 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (62.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4748e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9856322561983424 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.9%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 323.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.6321e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.979928937654472 (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     : 6.67 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 327.92 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6760e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.017692028121357 (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     : 6.48 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 233.18 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (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.0110e+05 | 65536 |      2 | 1.634e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4462891285721335 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 259.68 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.3666e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8925921246142825 (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     : 6.52 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 287.39 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (60.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3444e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7327376914243375 (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.44 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 261.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4137e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7923084689539457 (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.62 us    (2.2%)
   patch tree reduce : 2.64 us    (0.9%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 281.06 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3482e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.73599658364146 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 266.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (68.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5066e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.872103352264888 (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     : 6.00 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 245.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.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    | 4.5135e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8780548757105886 (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     : 6.78 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 246.38 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (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.5103e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8753182903656715 (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     : 7.03 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 278.67 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (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.3824e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7653922557182775 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 279.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (65.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3619e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7478135814329083 (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     : 6.37 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 283.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (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.3399e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7288794487976915 (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     : 6.63 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 299.80 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (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.5146e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8790346800195588 (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     : 6.55 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.72 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.6127e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9632748215713214 (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     : 6.62 us    (2.6%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 233.94 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.1176e+05 | 65536 |      2 | 1.592e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.537915761525431 (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     : 6.22 us    (2.3%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 246.13 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5534e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9123655396185817 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 265.01 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (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.5872e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9413442542380124 (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     : 6.53 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 264.65 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.5751e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9309627238548184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.5%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 251.42 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 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.3817e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7648279507540283 (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     : 6.21 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 255.03 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.4530e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8260667049878068 (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     : 6.49 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 274.43 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.4007e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.781093603178039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 267.64 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.4466e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.820565840442536 (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.47 us    (2.5%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 239.33 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (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.4782e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.847684353603124 (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     : 6.39 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 245.15 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.4898e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8576788500471344 (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     : 6.54 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.4%)
   LB compute        : 248.72 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4455e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8196034547396973 (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     : 7.42 us    (2.7%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.5%)
   LB compute        : 253.70 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.4087e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7879925697329195 (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.73 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 244.51 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4876e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.855775117079642 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.4%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 237.89 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5202e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.883789461110029 (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.71 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 304.69 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4141e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.792608004457964 (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     : 6.84 us    (2.6%)
   patch tree reduce : 2.59 us    (1.0%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 243.28 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4910e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8587399803609013 (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     : 6.20 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 289.51 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.3704e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7550654480747063 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 266.01 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.4965e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8634403370541266 (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     : 6.61 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.5%)
   LB compute        : 244.47 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (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.4431e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8175400879887036 (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     : 6.74 us    (2.4%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 252.55 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (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.4934e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8607876756383708 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 263.27 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3137e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.706356014106463 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 283.21 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2376e+05 | 65536 |      2 | 2.024e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.781822845022905 (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.43 us    (1.7%)
   patch tree reduce : 1682.00 ns (0.5%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 290.79 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8277e+05 | 65536 |      2 | 1.712e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2887715432919573 (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     : 6.61 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 276.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9549e+05 | 65536 |      2 | 1.657e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.398112984579363 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 270.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5095e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8746121787325647 (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     : 7.09 us    (2.4%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 269.24 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.0944e+05 | 65536 |      2 | 2.118e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.658771087094246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (1.8%)
   patch tree reduce : 2.67 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 348.67 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5951e+05 | 65536 |      2 | 1.823e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0889943407574867 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 302.77 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2028e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7518680975322005 (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     : 6.91 us    (0.9%)
   patch tree reduce : 2.29 us    (0.3%)
   gen split merge   : 1091.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.2%)
   LB compute        : 777.30 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 5.03 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (68.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4578e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8302083092184485 (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.98 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 309.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1962.00 ns (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2183e+05 | 65536 |      2 | 2.036e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7651972712941775 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.7%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 348.79 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (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.5629e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.920522401331439 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.9%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 309.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (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.6045e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.956202384772735 (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     : 6.81 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 261.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5226e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.88587823582863 (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.82 us    (1.8%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 293.63 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (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.3300e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7203762902980695 (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.99 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 262.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6388e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9857012276762895 (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     : 6.30 us    (2.1%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 273.46 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5361e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8974356949082205 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02158523678842284, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 248.72 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (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.6184e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9681495674980036 (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.46 us    (1.7%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 355.08 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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.6499e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.995272406337224 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021898066307095634, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 240.46 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (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.6172e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9671471795383577 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 265.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5856e+05 | 65536 |      2 | 1.828e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.080781576138163 (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.44 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 245.55 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (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.1325e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.550654718264323 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 263.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.5591e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.917191670393689 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.1%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 270.20 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2046e+05 | 65536 |      2 | 2.045e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.753396969074078 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.7%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 359.14 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3764e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7602637460920856 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.45 us    (0.9%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 259.39 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (58.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2026e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.751742682205662 (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     : 7.16 us    (1.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 369.08 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (60.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4172e+05 | 65536 |      2 | 1.918e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9360961318640335 (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.92 us    (2.4%)
   patch tree reduce : 2.54 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 266.09 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (62.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4105e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9303243613091605 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023305799141123202, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 320.69 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2611e+05 | 65536 |      2 | 2.010e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8020145830392047 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.1%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 306.22 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4104e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.93027303291657 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 255.12 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3949e+05 | 65536 |      2 | 1.930e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9169596151990262 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377504341913239, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 314.64 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.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.3850e+05 | 65536 |      2 | 1.936e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9084032278568044 (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     : 6.50 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 307.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4938e+05 | 65536 |      2 | 1.876e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0018866088413305 (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.58 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 318.08 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4652e+05 | 65536 |      2 | 1.891e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.977374551840611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 270.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.3871e+05 | 65536 |      2 | 1.935e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9102446684105883 (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.99 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 308.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3579e+05 | 65536 |      2 | 1.952e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8851380000776317 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 287.39 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.78 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.4353e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.951612916574091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 267.39 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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    | 3.3470e+05 | 65536 |      2 | 1.958e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8757848527313166 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024869946734487166, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 264.94 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3504e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8787067091167917 (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     : 6.21 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 261.25 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.5128e+05 | 65536 |      2 | 1.866e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.018221066849429 (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     : 6.71 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 263.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 3.4762e+05 | 65536 |      2 | 1.885e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9867692497531966 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 323.27 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (64.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3734e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.898463235258361 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 270.84 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9448e+05 | 65536 |      2 | 1.661e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3894268769276894 (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.72 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 260.74 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.4838e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.852552550121433 (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     : 7.05 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 269.58 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.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    | 3.9076e+05 | 65536 |      2 | 1.677e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.357462841961441 (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.43 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 284.29 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.2010e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.609557764045295 (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     : 6.52 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 269.04 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3306e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.72088419602224 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026277679568514734, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 279.73 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2404e+05 | 65536 |      2 | 2.022e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.784218646684192 (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.50 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 332.82 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7982e+05 | 65536 |      2 | 1.725e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.263419595150282 (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     : 6.53 us    (2.1%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 285.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (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.3722e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7566726776455095 (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     : 6.81 us    (2.4%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 263.70 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.4618e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.833647056784088 (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     : 7.07 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 278.95 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.2642e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.663880244135896 (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     : 6.62 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 273.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.1221e+05 | 65536 |      2 | 1.590e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5417898216979955 (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     : 7.12 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 269.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5923e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9457521596882077 (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     : 6.97 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 275.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.6133e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9638185719394183 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 278.58 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (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.6406e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9872720250555798 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 233.82 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6685e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.011245741221297 (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     : 6.46 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 322.88 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5763e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9320223849323637 (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     : 6.91 us    (2.4%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 266.23 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5211e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.884608579286679 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 260.77 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7165e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.052501204311612 (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.59 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 280.90 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6020e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9541109791484175 (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.46 us    (2.3%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 265.09 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (62.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5801e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9352693455373084 (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.56 us    (2.1%)
   patch tree reduce : 2.64 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 283.14 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (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.5843e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.938872359708166 (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     : 6.21 us    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 271.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.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    | 4.5295e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8918191678766956 (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     : 7.00 us    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 302.64 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6074e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9587016237548514 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.9%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 323.10 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9038e+05 | 65536 |      2 | 1.679e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3541599379042855 (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.50 us    (1.9%)
   patch tree reduce : 1842.00 ns (0.5%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 322.20 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6647e+05 | 65536 |      2 | 1.788e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1487413462366574 (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     : 6.65 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 15.32 us   (5.0%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 269.13 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0993e+05 | 65536 |      2 | 1.599e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5221427990493726 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 295.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (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.6047e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9563720010753047 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 336.79 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.5864e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.940698294171427 (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     : 6.28 us    (2.2%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 261.30 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1752e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5873846371079603 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.5%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1241.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 252.77 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.5607e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9185769598868827 (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.55 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 251.03 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.6206e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.970057194275051 (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.25 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 244.16 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (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.5527e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9117597770006545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 257.26 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (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.5554e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.914063886900173 (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     : 6.71 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 234.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (69.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.5439e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.904141741771338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.5%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 243.22 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.1679e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.581077857614185 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 274.12 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4887e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8567501660476284 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 267.74 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.3933e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.774764905639925 (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     : 6.47 us    (2.4%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 246.39 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4970e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.863884149494049 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 250.66 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.4997e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8662031433159414 (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     : 6.54 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 286.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3617e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7476348372897434 (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     : 6.83 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 335.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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.5456e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9056184224131285 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03190861090462502, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.0%)
   patch tree reduce : 2.25 us    (0.3%)
   gen split merge   : 1212.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.2%)
   LB compute        : 666.18 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9155e+05 | 65536 |      2 | 1.674e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3642054795434144 (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     : 6.79 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 304.67 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.3896e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7716141283389466 (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     : 7.17 us    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 267.86 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1922.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6008e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.953047900355802 (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     : 6.14 us    (2.4%)
   patch tree reduce : 2.50 us    (1.0%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.4%)
   LB compute        : 239.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.4654e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8367302729104864 (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     : 6.46 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 238.99 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6155e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.965695558812133 (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     : 6.37 us    (2.4%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1592.00 ns (0.6%)
   LB compute        : 243.31 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (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.5896e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9434494857432045 (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     : 6.30 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 266.41 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.4228e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.800131932599937 (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     : 6.20 us    (2.4%)
   patch tree reduce : 2.30 us    (0.9%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 239.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.3754e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.759370800710623 (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     : 6.71 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 261.71 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.5192e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.882921394052608 (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     : 6.51 us    (2.4%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 244.11 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (60.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4587e+05 | 65536 |      2 | 1.895e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9717898686992834 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 2.58 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 255.87 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (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    | 3.4656e+05 | 65536 |      2 | 1.891e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9776809258482326 (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     : 7.37 us    (2.3%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1362.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 299.08 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3373e+05 | 65536 |      2 | 1.964e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.867448743071954 (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     : 7.29 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 313.64 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.1997e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.608448817883971 (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     : 6.78 us    (2.6%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 241.86 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.6209e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9702912660581338 (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.50 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 249.81 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (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.6244e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9733071902222696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 272.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.7521e+05 | 65536 |      2 | 1.747e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.223866992372415 (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     : 6.59 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 268.84 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (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.5514e+05 | 65536 |      2 | 1.845e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0514373624477464 (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     : 6.45 us    (1.9%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 319.95 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.5625e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9201435619261917 (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     : 6.21 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 291.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.0369e+05 | 65536 |      2 | 1.623e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.468585444334764 (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.49 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1342.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 277.40 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.5632e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9956236064881456 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 352.11680646800005 (s)                                   [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.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     : 4.85 us    (51.4%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1002.00 ns (0.3%)
   patch tree reduce : 1733.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.3%)
   LB compute        : 333.71 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.07 us    (0.9%)
Info: patch count stable after 1 runs npatch = 2                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod rusanov with only_last_step=True
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 13.59 us   (4.0%)
   patch tree reduce : 3.07 us    (0.9%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 307.74 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (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.1745e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 288.61 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2886e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8255850913499887 (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     : 6.91 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 309.81 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 3.2104e+05 | 65536 |      2 | 2.041e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.758436875189866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.8%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 349.23 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.71 us    (69.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.3425e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8718897432791572 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.8%)
   patch tree reduce : 1752.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 329.25 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (60.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3363e+05 | 65536 |      2 | 1.964e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.866609989183119 (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.94 us    (1.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 340.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3600e+05 | 65536 |      2 | 1.950e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8869332598466206 (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     : 7.05 us    (2.2%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 299.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.3799e+05 | 65536 |      2 | 1.939e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.904036052379008 (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     : 6.35 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 304.51 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.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    | 3.2963e+05 | 65536 |      2 | 1.988e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8322080393028526 (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     : 6.29 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 312.63 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (62.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3147e+05 | 65536 |      2 | 1.977e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.848008580500677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 299.75 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 3.3619e+05 | 65536 |      2 | 1.949e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8885485904146067 (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     : 7.01 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 308.46 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (59.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3605e+05 | 65536 |      2 | 1.950e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8874044253431657 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.8%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1623.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1692.00 ns (0.5%)
   LB compute        : 338.98 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4081e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.928253424838675 (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     : 6.28 us    (1.7%)
   patch tree reduce : 2.54 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 348.30 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3422e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8716546160130303 (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     : 6.35 us    (1.6%)
   patch tree reduce : 2.47 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 364.20 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3466e+05 | 65536 |      2 | 1.958e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8754179599959957 (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     : 6.43 us    (1.8%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 343.64 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4184e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9371402877879222 (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     : 6.56 us    (1.7%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 370.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (69.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.4169e+05 | 65536 |      2 | 1.918e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.935882809823911 (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     : 6.18 us    (1.6%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 361.08 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (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.1503e+05 | 65536 |      2 | 1.579e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5659536528601747 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 268.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (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.5757e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9314865539043886 (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     : 6.35 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 304.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (67.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4770e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8467192171697135 (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     : 6.31 us    (1.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 315.46 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3511e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.879271225380014 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 277.98 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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    | 3.2343e+05 | 65536 |      2 | 2.026e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7789734393871726 (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     : 6.57 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 307.67 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7159e+05 | 65536 |      2 | 1.764e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1927544151157043 (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     : 6.31 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 253.58 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4321e+05 | 65536 |      2 | 1.909e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.94890602480228 (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     : 6.19 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 299.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3060e+05 | 65536 |      2 | 1.982e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8405340199009372 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003597539464737146, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 276.52 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.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    | 3.2789e+05 | 65536 |      2 | 1.999e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8172609817020517 (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     : 6.26 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 297.40 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (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.2647e+05 | 65536 |      2 | 2.007e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8050728590868763 (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.96 us    (1.8%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 316.66 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (62.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3625e+05 | 65536 |      2 | 1.949e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8890575327449057 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 289.23 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (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.5284e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.890832438245765 (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     : 6.65 us    (1.9%)
   patch tree reduce : 2.74 us    (0.8%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 330.20 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.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.4287e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8052292313383185 (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     : 21.86 us   (7.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 276.25 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (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    | 3.7988e+05 | 65536 |      2 | 1.725e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2639326213786855 (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     : 6.77 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 303.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4172e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.795350363511723 (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     : 6.62 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 286.31 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.1733e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.585747045322296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 296.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2991e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.693863026746757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 271.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (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.3892e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7712933739089847 (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     : 7.00 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 259.44 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4981e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8648034340232353 (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.63 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 248.09 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (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.1351e+05 | 65536 |      2 | 1.585e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5529126163076086 (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.60 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 246.04 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (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.5206e+05 | 65536 |      2 | 1.861e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.024957301226812 (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     : 6.26 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 258.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3398e+05 | 65536 |      2 | 1.962e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8695930367068403 (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     : 7.05 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 279.01 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.2117e+05 | 65536 |      2 | 2.041e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7595131313189483 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 306.48 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (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.4798e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8490808969100234 (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     : 7.03 us    (1.1%)
   patch tree reduce : 2.15 us    (0.3%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 617.50 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.76 us    (70.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.5039e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8698323285256206 (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     : 6.01 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 269.46 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5185e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8823565140033773 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 273.11 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.4275e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.804134511695524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 259.31 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (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.4997e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8661840307297433 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 273.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (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.4819e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.85089888339484 (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     : 7.14 us    (2.5%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 257.56 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (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.4492e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8227888639888117 (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     : 6.35 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 243.04 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.4928e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.860288204576788 (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     : 6.52 us    (2.6%)
   patch tree reduce : 2.17 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.5%)
   LB compute        : 228.00 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (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.4504e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.823821536161528 (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     : 6.85 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 277.29 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (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.3945e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7758385310991693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 278.75 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (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.4464e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.82043008967693 (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     : 6.30 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 283.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (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.4823e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8512624813342566 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 268.95 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (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.5139e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.878428107926526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 283.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4474e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.821238152387118 (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     : 6.59 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 254.99 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (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.5614e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.919243047830092 (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     : 6.37 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 264.98 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5450e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.905123480532541 (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     : 6.95 us    (2.7%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.5%)
   LB compute        : 231.17 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.6148e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9651025150712624 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008602811763501864, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 274.40 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (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.6367e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.983878992936912 (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     : 7.06 us    (2.8%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 229.42 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (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.5989e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.951434458099357 (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     : 6.01 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 238.25 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.6459e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.991805247854014 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.1%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 265.15 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (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.5518e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.910932483598619 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 268.54 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.6604e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.004298110061537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.5%)
   LB compute        : 232.97 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.6310e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.979047930976416 (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     : 6.33 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 238.46 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.6452e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.991177325202474 (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.62 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 259.52 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (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.6849e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.02532177454297 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 256.23 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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.6976e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.036232416529924 (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     : 6.23 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 288.79 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (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.6277e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9761762746586493 (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     : 6.76 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.6%)
   LB compute        : 246.48 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.84 us   (94.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.3838e+05 | 65536 |      2 | 1.937e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9074064064003715 (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     : 6.43 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 287.14 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2450e+05 | 65536 |      2 | 2.020e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7881672246289155 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 323.73 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6566e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.001025667805911 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 289.14 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.6540e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.99876004694344 (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     : 6.19 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 287.49 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6534e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9982441991825812 (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.54 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 259.71 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.6896e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.029334208489478 (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     : 6.26 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 283.46 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (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.6265e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9751653378399547 (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     : 6.06 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 249.50 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7129e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.049340434948845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 264.01 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.6802e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.021252651622348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011574692190893429, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 264.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.0673e+05 | 65536 |      2 | 1.611e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.494655232393257 (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     : 6.32 us    (2.1%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 275.07 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.6525e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.997464149980148 (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     : 6.43 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 240.04 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6749e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0166900436291 (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     : 6.35 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 254.87 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (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.6633e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.006750219120047 (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     : 6.08 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 268.86 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.6318e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9796641671703186 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.4%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 239.07 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.6778e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.019186647679672 (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     : 6.35 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 239.02 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6777e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.019155349614759 (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     : 6.37 us    (2.2%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 15.64 us   (5.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 248.71 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.8273e+05 | 65536 |      2 | 1.712e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.288436125104611 (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     : 6.80 us    (2.5%)
   patch tree reduce : 2.30 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 243.99 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (60.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6544e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.999094504840734 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 265.53 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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.5796e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9348392843899234 (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     : 6.92 us    (2.7%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 237.61 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (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.6280e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.976438362847465 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 252.98 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.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    | 4.5068e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.872254836198435 (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     : 6.70 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 266.99 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0857e+05 | 65536 |      2 | 1.604e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.510495487767734 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 232.83 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.6672e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.010079755776196 (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     : 6.30 us    (2.0%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 295.64 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 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.5847e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9392450447371505 (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     : 6.61 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 253.02 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3900e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7719270288810978 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 287.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3565e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7431574358113053 (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     : 6.29 us    (2.3%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 247.12 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.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.3580e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.744448766139754 (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.66 us    (2.4%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 253.66 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1786e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.590262019580176 (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.23 us    (2.3%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 247.36 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5282e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8907110845985255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 274.38 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.4400e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.814891831091897 (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     : 6.69 us    (2.6%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 237.93 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4923e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.859797223282659 (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     : 6.79 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 247.85 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (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.5313e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.893333621039963 (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     : 6.10 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 271.47 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.5616e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.919356448795572 (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     : 6.86 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 248.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (59.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5404e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9011931603638113 (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     : 6.48 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 302.05 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.5229e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.886148321114325 (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     : 6.52 us    (2.3%)
   patch tree reduce : 19.84 us   (6.9%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 248.38 us  (86.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7099e+05 | 65536 |      2 | 1.767e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.187602009665381 (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     : 6.84 us    (2.4%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1432.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 257.32 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.86 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6415e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9880745104285373 (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     : 6.36 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1452.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 263.49 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1363.00 ns (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.6571e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.001452205975636 (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     : 6.33 us    (2.5%)
   patch tree reduce : 2.61 us    (1.0%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.5%)
   LB compute        : 232.02 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.6391e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9859971903794604 (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     : 6.89 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 249.69 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.7170e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.052897365798582 (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     : 6.10 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 266.55 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.4282e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.804737938340625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 265.69 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (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.5562e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.914712792220997 (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     : 6.78 us    (2.6%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 240.04 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 3.9298e+05 | 65536 |      2 | 1.668e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.376542776023993 (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     : 6.44 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 248.28 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5861e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.940390655632258 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 1822.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 262.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5920e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.945474610936365 (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.53 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 263.90 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6120e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9627253082311364 (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     : 6.67 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1251.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 241.78 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.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    | 4.0042e+05 | 65536 |      2 | 1.637e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4404730664223493 (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     : 6.31 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 245.18 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5919e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.945446081392283 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01767486780501293, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 243.82 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.6376e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.984718602591125 (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.19 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 249.97 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.3377e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7270176019043233 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 249.06 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.0009e+05 | 65536 |      2 | 1.638e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4376255062922616 (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.30 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 239.12 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.6709e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.013259738173277 (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     : 6.38 us    (2.3%)
   patch tree reduce : 1553.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 253.47 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7284e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.062715159220776 (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     : 6.10 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 306.52 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (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.6285e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9768925080733553 (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     : 6.33 us    (2.0%)
   patch tree reduce : 1872.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 288.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3278e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7185327208852965 (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     : 6.48 us    (2.5%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 232.26 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.6922e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.0316247163233525 (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     : 6.72 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 267.12 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (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.6876e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.027669486992618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 311.53 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (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.6110e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9618646954363377 (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     : 11.05 us   (2.7%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 376.73 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 6.94 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3587e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8858608912246284 (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.56 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 277.85 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3827e+05 | 65536 |      2 | 1.937e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.906438426026105 (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     : 6.81 us    (2.6%)
   patch tree reduce : 1912.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 243.02 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (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.5041e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.86998496468131 (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     : 6.55 us    (2.2%)
   patch tree reduce : 19.20 us   (6.5%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 256.90 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.5560e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.914560988908938 (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.73 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 260.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.6664e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.009441103661084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.5%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 250.21 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2767e+05 | 65536 |      2 | 2.000e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.815387414361975 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 292.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3217e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.854009624566808 (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     : 6.73 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 298.58 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (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.3943e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7756083194437156 (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.52 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 305.68 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (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.1679e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5811452256111256 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.4%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 242.01 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5623e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9199580446670526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 277.01 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (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.5881e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9421870595752475 (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     : 6.68 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 261.82 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4621e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8338877941490708 (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     : 6.08 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 271.86 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.4570e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8295135908315214 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 279.95 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3714e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.755991022885433 (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     : 11.64 us   (3.4%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 314.80 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.62 us    (69.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.4210e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.798573048135371 (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     : 7.56 us    (2.7%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 253.20 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (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.4868e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8550776130587625 (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     : 7.01 us    (1.0%)
   patch tree reduce : 2.16 us    (0.3%)
   gen split merge   : 1503.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.2%)
   LB compute        : 693.95 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.72 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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    | 4.4226e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.799970421893917 (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.94 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 295.13 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5032e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8692261847755343 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 243.71 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (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.1558e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.570699498548915 (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.10 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 253.39 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0709e+05 | 65536 |      2 | 2.134e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.638551465147632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 308.25 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0807e+05 | 65536 |      2 | 1.606e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5061910344676197 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 319.50 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4811e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8501784485526085 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 292.65 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3955e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.776630093076196 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.4%)
   patch tree reduce : 1822.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 258.02 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (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.2510e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.65251407088711 (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.57 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 270.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2692e+05 | 65536 |      2 | 2.005e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8089004671268483 (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.36 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 288.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2110e+05 | 65536 |      2 | 2.041e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.758963908132777 (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.91 us    (1.6%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 357.59 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3131e+05 | 65536 |      2 | 1.978e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.846653446650723 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 1802.00 ns (0.6%)
   gen split merge   : 1453.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 282.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (64.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6725e+05 | 65536 |      2 | 1.785e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.155426048265132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 266.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.2793e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.676863342343563 (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     : 7.00 us    (1.9%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 340.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (68.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8129e+05 | 65536 |      2 | 1.719e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.276120877168361 (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     : 6.63 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 285.40 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (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.5279e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8904082174149908 (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.31 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 249.80 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (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.6463e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9921556383365715 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 2.56 us    (0.8%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 292.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3398e+05 | 65536 |      2 | 1.962e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8696006264817218 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024400702456477977, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 307.80 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3201e+05 | 65536 |      2 | 1.974e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.852686349947873 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 266.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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    | 3.3461e+05 | 65536 |      2 | 1.959e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.874990932185547 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 260.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2309e+05 | 65536 |      2 | 2.028e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7760265752202065 (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.64 us    (1.6%)
   patch tree reduce : 1572.00 ns (0.4%)
   gen split merge   : 782.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 331.17 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2150e+05 | 65536 |      2 | 2.038e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.762350867896886 (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     : 6.43 us    (1.9%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 316.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2957e+05 | 65536 |      2 | 1.989e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8316685462686193 (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     : 6.54 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 303.29 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1927e+05 | 65536 |      2 | 2.053e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7431882269471988 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.7%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.3%)
   LB compute        : 362.01 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (68.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7004e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.038627259170308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (1.7%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 332.81 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (63.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3642e+05 | 65536 |      2 | 1.948e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8905817267383163 (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.32 us    (2.0%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 301.73 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5991e+05 | 65536 |      2 | 1.821e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0924256944147244 (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.41 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 284.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5617e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.919506196135716 (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.36 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 291.90 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (60.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4187e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9373790291398514 (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     : 7.27 us    (2.2%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 309.04 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.91 us    (69.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.4306e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8068084860470073 (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     : 7.08 us    (2.2%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 293.90 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6119e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9625994843704393 (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.40 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 302.10 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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.5600e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.918023904238344 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 264.32 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.1182e+05 | 65536 |      2 | 1.591e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.538445106890223 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 263.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (61.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4226e+05 | 65536 |      2 | 1.915e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.940725503276533 (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     : 6.40 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 294.88 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3812e+05 | 65536 |      2 | 1.938e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9051665191538367 (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     : 6.26 us    (2.0%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 290.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4058e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9263350206625955 (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.33 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 293.23 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4064e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9267850141303247 (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     : 6.42 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 288.37 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (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    | 3.3612e+05 | 65536 |      2 | 1.950e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.887963826819737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 276.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3902e+05 | 65536 |      2 | 1.933e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.912869836159608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 268.69 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 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.1565e+05 | 65536 |      2 | 2.076e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7120837476774406 (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     : 6.87 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.3%)
   LB compute        : 346.72 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3416e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8711766592091887 (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.98 us    (1.9%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 274.88 us  (88.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (65.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4182e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9369331250870476 (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     : 6.24 us    (1.8%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 320.92 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (64.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2341e+05 | 65536 |      2 | 2.026e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.778745998526281 (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.32 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 336.28 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5944e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.947551270374655 (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     : 7.12 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 287.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4139e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7924354088112793 (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.14 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 269.77 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (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.5384e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8994813336493452 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 276.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.4761e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8458847401883407 (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.32 us    (1.8%)
   patch tree reduce : 1852.00 ns (0.5%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 329.91 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4688e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8396286517022293 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 295.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (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.5302e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.892402948865626 (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.32 us    (1.8%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 328.52 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6087e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.959807287387622 (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     : 6.52 us    (2.1%)
   patch tree reduce : 1693.00 ns (0.5%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 290.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.8817e+05 | 65536 |      2 | 1.688e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3351906835221206 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 267.78 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.6021e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.954196834306489 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 269.49 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (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.5759e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9316379158981003 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 279.91 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5632e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9207705972113267 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 280.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.5804e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9355466155527545 (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.59 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 294.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3454e+05 | 65536 |      2 | 1.959e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8743808168816867 (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.92 us    (1.7%)
   patch tree reduce : 1792.00 ns (0.5%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 331.52 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5518e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9109561700238005 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 268.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.5700e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.926570066038109 (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     : 6.68 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 287.58 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.5272e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8897964980312687 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 291.77 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (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.5196e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8833330033002413 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 299.47 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.4989e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8654774224261534 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 287.93 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.5148e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8791479573986196 (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     : 6.74 us    (2.1%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 301.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (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.0147e+05 | 65536 |      2 | 1.632e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.449511936878267 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 269.72 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.6878e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.027778848733261 (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     : 6.70 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.4%)
   LB compute        : 267.33 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.6699e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.012432047099326 (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     : 6.66 us    (2.4%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 249.97 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6664e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.009455121157559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03190861090462502, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1622.00 ns (0.6%)
   LB compute        : 267.37 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (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.6219e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.971180553713523 (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     : 6.43 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 275.55 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (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.0936e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5172685256079004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03222144042329782, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 281.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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.5269e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.889592079054325 (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     : 6.53 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 276.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.3305e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7208380461012194 (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     : 6.90 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 282.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1921e+05 | 65536 |      2 | 2.053e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7427098718522784 (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     : 6.33 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 310.73 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2087e+05 | 65536 |      2 | 2.042e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.756945880149873 (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     : 6.62 us    (1.6%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 381.04 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4182e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.796177793664167 (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     : 6.08 us    (1.8%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 307.07 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (60.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3902e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.772095943482578 (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     : 6.31 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 294.58 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.4403e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.815149553558922 (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     : 6.36 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 284.02 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3262e+05 | 65536 |      2 | 1.970e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8579340101488366 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.1%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 301.91 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2709e+05 | 65536 |      2 | 2.004e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8104181289913073 (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.21 us    (1.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 317.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0190e+05 | 65536 |      2 | 1.631e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4531326615308746 (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.78 us    (2.0%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 319.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (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.5349e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.896463371517743 (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     : 6.83 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1402.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 244.01 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.1781e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.589868514034073 (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.60 us    (2.4%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 249.69 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.3931e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.774611616559721 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 266.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3684e+05 | 65536 |      2 | 1.946e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.894156569637851 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1482.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 266.04 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.4427e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8172154857774476 (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     : 6.23 us    (2.0%)
   patch tree reduce : 1872.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 285.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.4106e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7896492588791952 (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     : 6.58 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 282.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3282e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.718882460087001 (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.58 us    (2.1%)
   patch tree reduce : 1673.00 ns (0.5%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 295.68 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4335e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9104894885317467 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 388.562204509 (s)                                        [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.19 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.17 us    (62.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     : 1202.00 ns (0.3%)
   patch tree reduce : 1222.00 ns (0.4%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 332.26 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 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     : 13.73 us   (3.3%)
   patch tree reduce : 2.97 us    (0.7%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 380.14 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (60.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4802e+05 | 65536 |      2 | 1.883e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1301.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 285.63 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2267e+05 | 65536 |      2 | 2.031e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.77241517548586 (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     : 6.14 us    (1.8%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 325.64 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1475e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.563541830460366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 283.07 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (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.1882e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5985736668200827 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 268.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4752e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.845138137476716 (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.35 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 269.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5095e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8746345474310173 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0007820737966819881, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.5%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 253.18 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.4916e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8592092420918287 (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     : 6.37 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 264.27 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (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.4742e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.844271329664885 (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     : 6.49 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 305.30 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.1498e+05 | 65536 |      2 | 1.579e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5655775140012453 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001251318074691181, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 264.47 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.5409e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.901589945428358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014077328340275786, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.5%)
   patch tree reduce : 1972.00 ns (0.8%)
   gen split merge   : 1191.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.5%)
   LB compute        : 234.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.8508e+05 | 65536 |      2 | 1.702e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.308644004031903 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015641475933639763, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.7%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 229.41 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.6417e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.988167213680215 (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     : 6.72 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 266.27 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (61.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7213e+05 | 65536 |      2 | 1.761e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1973892042640424 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 263.60 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.1965e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6056964013419637 (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     : 6.15 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 247.00 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (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.5636e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.921070674466858 (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     : 6.50 us    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 294.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (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.5591e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.917271160788706 (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     : 6.04 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 277.25 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (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.5167e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8807725143773237 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0025026361493823623, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.7%)
   patch tree reduce : 1893.00 ns (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1512.00 ns (0.6%)
   LB compute        : 228.41 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (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.6552e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9998147575972345 (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     : 6.65 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 308.76 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1111e+05 | 65536 |      2 | 1.594e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5322669375207902 (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     : 6.58 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 292.61 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5164e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8805735088342765 (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     : 6.34 us    (2.2%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 267.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1441e+05 | 65536 |      2 | 2.084e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7014253481675587 (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     : 6.46 us    (1.8%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 330.65 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (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.5262e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8889321362226275 (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     : 7.02 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 270.97 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 3.2203e+05 | 65536 |      2 | 2.035e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7669351609805717 (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     : 6.17 us    (1.8%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 318.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3128e+05 | 65536 |      2 | 1.978e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.846435570203508 (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     : 21.24 us   (6.4%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 296.43 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2863e+05 | 65536 |      2 | 1.994e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.823606577595417 (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.97 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 266.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3070e+05 | 65536 |      2 | 1.982e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8413954329788234 (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     : 6.54 us    (1.9%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 327.98 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3020e+05 | 65536 |      2 | 1.985e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8371598119560923 (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     : 6.40 us    (1.9%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 317.72 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3195e+05 | 65536 |      2 | 1.974e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8521623446038515 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.5%)
   LB compute        : 262.86 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (61.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2870e+05 | 65536 |      2 | 1.994e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8242503009186435 (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     : 6.35 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 257.62 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1646e+05 | 65536 |      2 | 2.071e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.719040235424682 (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     : 6.12 us    (1.5%)
   patch tree reduce : 2.11 us    (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 376.16 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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.2374e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6408051599523708 (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     : 6.39 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 296.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.4903e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8581454217012343 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004848857539428325, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 253.23 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.6013e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9534759278265486 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005005272298764722, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.5%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 236.98 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.5711e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9275518317511926 (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     : 6.65 us    (2.2%)
   patch tree reduce : 2.69 us    (0.9%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 277.48 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.6219e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9711661864244943 (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.89 us    (2.7%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 231.43 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.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.6209e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9702940654571868 (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.63 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 244.69 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.3526e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7397667457654675 (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     : 6.36 us    (2.4%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 245.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4570e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8295265868110393 (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     : 6.96 us    (2.5%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 251.87 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.4782e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8477171659226417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005943760854783106, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 279.47 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.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.4611e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8330419406137093 (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.58 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 242.15 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.4914e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.859024316494837 (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     : 6.59 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 243.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.4537e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8266894887952905 (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     : 6.13 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 260.97 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.5513e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9105602206673984 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006569419892128695, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 270.30 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.4089e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7881792619973824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006725834651465092, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.6%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 240.43 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (59.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4982e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8648998060109028 (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     : 6.99 us    (2.5%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 255.57 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (66.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4203e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.797962532565389 (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     : 6.63 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 245.33 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5282e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8907020519314757 (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     : 6.43 us    (2.5%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 232.27 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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.5251e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8879865737026176 (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     : 6.80 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 282.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8166e+05 | 65536 |      2 | 1.717e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2793055685048147 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007507908448147078, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 262.67 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9424e+05 | 65536 |      2 | 1.662e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3873653078672348 (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     : 6.12 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 260.68 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.5766e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.932277586058214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007820737966819874, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 275.20 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.6250e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9738264382865824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007977152726156272, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 260.45 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6468e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.992601066320616 (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     : 6.67 us    (2.2%)
   patch tree reduce : 16.43 us   (5.4%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 267.75 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5606e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9185015612822176 (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     : 6.12 us    (1.9%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 294.50 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5860e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9403270712254073 (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     : 6.43 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 294.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.6313e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9792395615876868 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008602811763501864, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 302.19 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (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.6279e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9763687238751477 (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     : 6.90 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 263.04 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.3954e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.776608512363637 (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     : 6.14 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 278.32 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (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.4755e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.845432368697363 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009072056041511059, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 286.12 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (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.3542e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.741168978618127 (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     : 7.33 us    (2.7%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 249.22 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (65.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4805e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.849723645206396 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009384885560183855, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.6%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 240.22 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4820e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.850960035739146 (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     : 6.38 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 962.00 ns  (0.4%)
   LB compute        : 235.65 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5092e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.874323701656094 (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.67 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 242.45 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.4776e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8472106092415577 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.5%)
   LB compute        : 276.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.3798e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.763180614689543 (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     : 6.36 us    (2.0%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.5%)
   LB compute        : 294.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.4648e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8361729496683363 (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     : 6.41 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 275.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.2193e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6252660756985864 (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     : 6.28 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.5%)
   LB compute        : 257.55 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.4143e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.792797987666994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010479788875538642, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 2.70 us    (0.9%)
   gen split merge   : 1333.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 268.53 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6416e+05 | 65536 |      2 | 1.800e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1289391223993417 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01063620363487504, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 298.46 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1390e+05 | 65536 |      2 | 1.583e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5563039544247386 (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.89 us    (2.1%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 258.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.3497e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.737333777538102 (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     : 11.84 us   (3.8%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 282.80 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5867e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.940912891941681 (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     : 6.03 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 242.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.5467e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.906545126821636 (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     : 6.56 us    (2.5%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 243.67 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (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.4983e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8650111451164264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01141827743155703, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 249.87 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (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.5329e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.894749092175769 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011574692190893429, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.6%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 240.73 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.5667e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.923801600465311 (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     : 6.71 us    (2.5%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 249.82 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.5372e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8983855627669706 (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     : 6.54 us    (2.3%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 259.34 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.5098e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.874897792293115 (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     : 6.96 us    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 281.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (68.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5341e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8957167059144076 (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     : 6.22 us    (2.4%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 237.83 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.4993e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8658840409790587 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01235676598757542, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 270.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (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.2794e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6769235339853736 (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     : 6.21 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 300.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2897e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6857789121170206 (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     : 6.59 us    (1.7%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 357.73 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2041e+05 | 65536 |      2 | 2.045e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.752985653802349 (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     : 6.40 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 332.01 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (61.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2633e+05 | 65536 |      2 | 2.008e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.803881236455056 (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     : 6.31 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 285.14 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (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    | 4.3357e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7252883537090526 (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     : 6.85 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 246.53 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (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.4733e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8435308887548425 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.4%)
   LB compute        : 266.29 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (65.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5173e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.881320212608723 (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     : 6.20 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 281.50 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.4631e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.834758386545753 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.013608084062266605, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 247.27 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.5085e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8737843719728606 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 243.22 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 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.4504e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8237951023509287 (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     : 6.15 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 242.15 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (61.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6634e+05 | 65536 |      2 | 1.789e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1476153195060874 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014077328340275799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 286.38 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6896e+05 | 65536 |      2 | 1.776e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1701218269480687 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014233743099612197, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.8%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 292.95 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3380e+05 | 65536 |      2 | 1.963e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8680196910774134 (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.83 us    (2.6%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 238.73 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.3851e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7677320919054362 (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.45 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4446e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.818865621608775 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014702987377621391, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 245.82 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (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.3850e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.767632866370425 (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     : 6.76 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 290.45 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4112e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.790191971566276 (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     : 6.81 us    (2.5%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 247.48 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (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.4202e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7978957257041097 (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     : 6.43 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 261.67 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.4635e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.835062602225101 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 263.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4670e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.838065114001681 (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     : 6.24 us    (2.3%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.5%)
   LB compute        : 246.77 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5137e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.878218631748963 (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     : 6.41 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 245.25 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (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.4826e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8515220856502324 (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     : 6.17 us    (1.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 295.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4728e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8431189389929767 (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     : 6.62 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 251.20 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4324e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8084117703328273 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 259.93 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5091e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8742376013994395 (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     : 6.31 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 250.22 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (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.4842e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8529027252132333 (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     : 7.10 us    (2.5%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1333.00 ns (0.5%)
   LB compute        : 264.15 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4154e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7937463234271265 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016579964489658157, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 249.65 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.5269e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8896067219180246 (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     : 6.10 us    (2.3%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 237.56 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.4971e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.863956506340376 (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     : 6.11 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 241.66 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.4823e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8512508651555257 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017049208767667346, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 327.56 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2889e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6851155289692907 (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.62 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 289.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5274e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8899826916873232 (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     : 6.66 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 282.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (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.4627e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8344372469194177 (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     : 6.81 us    (2.4%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.5%)
   LB compute        : 260.42 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (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.4335e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8093252038800696 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01767486780501293, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 279.22 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4929e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8603442301603783 (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.59 us    (2.4%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 249.14 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.4586e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8308616317067408 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017987697323685724, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.5%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 236.67 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4697e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8404070087950513 (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.88 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 301.19 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (61.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4299e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.806261802266265 (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     : 6.18 us    (1.8%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.4%)
   LB compute        : 318.36 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4646e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8360736406979212 (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     : 6.44 us    (1.9%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 320.65 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (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.6365e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9837607283735688 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 259.68 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.6086e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9597720899471436 (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     : 6.61 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 292.07 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.6459e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.991805502537623 (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     : 6.54 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 278.39 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (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.6822e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.023033994551894 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0190826006390405, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 261.74 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (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.5977e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9504241444212935 (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     : 6.67 us    (2.5%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 246.60 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.5336e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.895356657566908 (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.37 us    (2.5%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 232.00 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.5889e+05 | 65536 |      2 | 1.826e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.083642636579743 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 243.36 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5156e+05 | 65536 |      2 | 1.864e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0206349573931393 (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     : 6.53 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 278.72 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.0458e+05 | 65536 |      2 | 1.620e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.476202364356549 (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.86 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 258.09 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (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.3462e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.734286459254697 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020021089195058878, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 264.30 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (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.3509e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.738319947001856 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020177503954395274, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 250.31 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.1928e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6025378529143044 (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     : 7.13 us    (2.5%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 259.92 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.5016e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8678006676150667 (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.65 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 264.79 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (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.2820e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.679164318964211 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020646748232404463, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 292.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4536e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.826543525153085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02080316299174086, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 308.45 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.4409e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8156915796352195 (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     : 6.65 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 286.90 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.5432e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9036095040361114 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 263.53 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (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.4877e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8558544578794014 (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     : 7.01 us    (2.4%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 272.86 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3881e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7703200775697168 (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     : 6.89 us    (2.5%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 249.60 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3262e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.717153880257451 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02158523678842284, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.3%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 249.08 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.3535e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7406175509446555 (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.09 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.5%)
   LB compute        : 244.46 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.6954e+05 | 65536 |      2 | 1.773e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.175157101065679 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.021898066307095634, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 276.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.5947e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.947782363606234 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02205448106643203, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 269.88 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.5011e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.867359301771744 (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.51 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 251.58 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.5525e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9115958119741903 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022367310585104824, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 263.63 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6098e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.96080950740808 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02252372534444122, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 241.72 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1373.00 ns (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.5462e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9061663824009636 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022680140103777616, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.5%)
   LB compute        : 278.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9344e+05 | 65536 |      2 | 1.666e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3804628406002313 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022836554863114013, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 247.11 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.98 us   (94.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.5236e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8867275045139595 (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.49 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.5%)
   LB compute        : 243.15 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 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.5196e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.88332973600409 (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.26 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 252.99 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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.5035e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.869431579623836 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023305799141123202, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 299.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (68.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2003e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.608978663959364 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0234622139004596, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 341.38 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2805e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6778404095963126 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.023618628659795995, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 286.39 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.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    | 4.3921e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7737067865581526 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02377504341913239, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.5%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 240.68 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (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.4292e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.80557882904954 (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     : 6.19 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.5%)
   LB compute        : 240.82 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 3.2060e+05 | 65536 |      2 | 2.044e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.754638592591515 (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.54 us    (1.9%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1653.00 ns (0.5%)
   LB compute        : 325.90 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3857e+05 | 65536 |      2 | 1.936e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9090508821936445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02424428769714158, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 1793.00 ns (0.5%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 307.24 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2982e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6930602401088457 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024400702456477977, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1533.00 ns (0.5%)
   LB compute        : 270.99 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (63.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0981e+05 | 65536 |      2 | 2.115e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.661913406173132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024557117215814373, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 318.28 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (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.5505e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.909808984727232 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02471353197515077, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 289.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (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.0278e+05 | 65536 |      2 | 1.627e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.460712439708251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024869946734487166, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.2%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 296.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (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.4804e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8496457408399696 (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     : 6.36 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 253.24 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2500e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6516392838004057 (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     : 6.26 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 267.21 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5045e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.870300727552768 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025339191012496355, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 312.26 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (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.5476e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9073132744904493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02549560577183275, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1592.00 ns (0.5%)
   LB compute        : 314.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5474e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.907169933760424 (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.09 us    (2.1%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 274.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.4508e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8242159055366503 (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.96 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 295.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 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    | 3.0819e+05 | 65536 |      2 | 2.127e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6479776897660137 (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.66 us    (1.7%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 364.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4544e+05 | 65536 |      2 | 1.897e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.968082355433052 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1592.00 ns (0.5%)
   LB compute        : 284.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2703e+05 | 65536 |      2 | 2.004e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8099229124653298 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.026277679568514734, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 1932.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 285.80 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3651e+05 | 65536 |      2 | 1.948e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8913530304690522 (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.11 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 284.05 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.5814e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9363916485166905 (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     : 6.55 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 288.82 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5150e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8793781133691523 (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     : 6.51 us    (2.0%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 310.21 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (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.5044e+05 | 65536 |      2 | 1.870e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.011055846430747 (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     : 6.41 us    (0.9%)
   patch tree reduce : 2.48 us    (0.3%)
   gen split merge   : 1062.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.2%)
   LB compute        : 706.62 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7702e+05 | 65536 |      2 | 1.738e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2394126371679812 (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     : 6.50 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 273.77 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (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.5343e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.895891633660832 (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.91 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 276.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9849e+05 | 65536 |      2 | 1.645e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4238608703708304 (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     : 7.00 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 277.00 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.2864e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6829487883554517 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027528997643205905, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 280.47 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5290e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.891353317932836 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0276854124025423, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 268.85 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5959e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9488304549287774 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 266.02 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (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.6328e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.980577862897693 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 246.59 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.7134e+05 | 65536 |      2 | 1.765e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.190609889491765 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 284.37 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5042e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8701002676170293 (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.39 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 249.84 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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.4801e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.849320945193597 (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.37 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 243.64 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 7.23 us    (2.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.75 us    (75.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.5063e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8718736859279526 (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.44 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 265.91 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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.4947e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8618682096612718 (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     : 6.21 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 302.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (65.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7269e+05 | 65536 |      2 | 1.758e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2021773889548646 (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.32 us    (2.3%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.5%)
   LB compute        : 248.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8925e+05 | 65536 |      2 | 1.684e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3444779492900247 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02909314523656987, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 284.34 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2936e+05 | 65536 |      2 | 1.990e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.82986475569698 (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.41 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 259.91 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3563e+05 | 65536 |      2 | 1.953e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.883803358098246 (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     : 6.59 us    (2.4%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 250.27 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (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.2065e+05 | 65536 |      2 | 2.044e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.755021690597875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029562389514579058, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 312.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.4522e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8253489298537833 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.029718804273915454, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 283.97 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 25.55 us   (7.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3355e+05 | 65536 |      2 | 1.965e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8659279822096706 (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     : 6.65 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 251.70 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.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    | 3.1366e+05 | 65536 |      2 | 2.089e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6949916064945687 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030031633792588247, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 312.17 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.4819e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8508848992168625 (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.11 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 258.37 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 3.4171e+05 | 65536 |      2 | 1.918e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.93599160248731 (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.34 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 258.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (60.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4097e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9296699446507337 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030500878070597436, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 291.92 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4417e+05 | 65536 |      2 | 1.904e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.957147001848486 (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     : 6.41 us    (2.1%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 276.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.4836e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8523912706159673 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03081370758927023, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 329.57 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3490e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.73671982454464 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030970122348606625, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 248.11 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.6432e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9894941162783826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.031126537107943022, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 232.29 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (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.6348e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.9822981373213806 (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     : 6.60 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 246.79 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.4026e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.782739713251205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03143936662661582, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.6%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 228.01 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.7134e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.049813949098917 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 265.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (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.6650e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.00819428126866 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 265.50 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.9866e+05 | 65536 |      2 | 1.644e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4253551959697 (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     : 7.06 us    (2.5%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 257.07 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5085e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8737842653744736 (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     : 6.10 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 254.18 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 20.56 us   (7.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4374e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8126375017197627 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03222144042329782, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 270.48 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2506e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.65220517571606 (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     : 6.89 us    (2.6%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 240.95 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.5067e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8722317760055387 (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     : 6.26 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 286.56 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.4398e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8147703354654245 (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     : 6.26 us    (2.1%)
   patch tree reduce : 1862.00 ns (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 269.74 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5167e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.880773049294071 (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     : 6.86 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 270.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.4104e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.789510570168337 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 264.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.4356e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8111617952397143 (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     : 6.33 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 290.84 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (61.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7183e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.194780576129457 (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     : 6.37 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 275.58 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.3922e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.773819914006466 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.033472758497989016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 268.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.4239e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.801074805389525 (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.52 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 287.36 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (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.4894e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8573558684146736 (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.40 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 261.77 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4894e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8573447439268063 (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     : 6.94 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 247.88 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4727e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.843016909555882 (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.67 us    (2.1%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 296.16 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.3799e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7632594852723957 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.034254832294671016, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 263.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (65.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4773e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8469161058461463 (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     : 6.85 us    (1.8%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 348.24 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.3776e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.761305118193601 (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     : 6.18 us    (2.0%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 281.26 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.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    | 3.9804e+05 | 65536 |      2 | 1.646e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.419995224405419 (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     : 6.15 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 266.79 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.0774e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5033306224509015 (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.65 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 266.15 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9414e+05 | 65536 |      2 | 1.663e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.587472555070045 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 423.959142175 (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.17 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.12 us    (55.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     : 1032.00 ns (0.3%)
   patch tree reduce : 1322.00 ns (0.4%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 288.91 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 3.48 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 : 424.124195233 (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.31 us    (2.6%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 292.95 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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.3725e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 288.42 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (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    | 3.9598e+05 | 65536 |      2 | 1.655e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.402346319568839 (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     : 6.46 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 273.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (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.1944e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6039156705132718 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00031282951867279523, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 277.88 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (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.3140e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.706663108755706 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0004692442780091929, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 274.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (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.2012e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.609690766765307 (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.43 us    (1.8%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1221.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 331.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (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.2448e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.647153107813145 (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     : 6.70 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 281.05 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2326e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1605896192601444 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 425.284898623 (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.94 us    (2.1%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 354.30 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3139e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.706529256368888 (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     : 7.16 us    (2.8%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1142.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 229.27 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.2530e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.654256840026946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0011878295186727955, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 234.68 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.0858e+05 | 65536 |      2 | 1.604e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.510538208796774 (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     : 6.30 us    (2.3%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 256.18 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2663e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6656144313974948 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 255.72 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.2584e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.658836476663924 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0016570737966819886, dt = 9.292620331801164e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 242.86 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (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.3627e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2269645949290324 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 426.27904722600005 (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     : 9.07 us    (2.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 306.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (64.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2061e+05 | 65536 |      2 | 1.558e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.613888831323166 (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     : 6.21 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 262.26 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (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.2496e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6512930566591977 (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     : 6.26 us    (1.8%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 322.07 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2382e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.641502820501725 (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     : 6.51 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 262.29 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.3447e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7330138084547397 (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     : 6.72 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 276.29 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (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.3346e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.72433806432574 (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     : 6.51 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 247.34 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3461e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.218501952262689 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 427.28772773000003 (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     : 8.45 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 358.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2645e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.664132152607918 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0027814147593363983, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 263.24 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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    | 3.1621e+05 | 65536 |      2 | 2.073e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7168886871439653 (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     : 6.19 us    (1.8%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 317.95 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (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    | 3.5908e+05 | 65536 |      2 | 1.825e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0852880707727546 (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     : 6.42 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 241.04 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (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.3319e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.722030837041477 (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     : 6.54 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 265.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (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.2514e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.652836880589969 (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     : 6.21 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 276.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2939e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.191838722128388 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 428.362697189 (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.45 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 329.07 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 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.3513e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7387214267405264 (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     : 6.65 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.3%)
   LB compute        : 328.07 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (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.2849e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6816100948288106 (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     : 6.96 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 279.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (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.4480e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8218012864636695 (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     : 6.75 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 270.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8235e+05 | 65536 |      2 | 1.714e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.285196576757937 (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     : 6.71 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 289.65 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (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.4569e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.829406761492971 (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.91 us    (1.2%)
   patch tree reduce : 1892.00 ns (0.3%)
   gen split merge   : 1052.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.2%)
   LB compute        : 539.29 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (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.2713e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1803370695338296 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 429.35908395200005 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.004375, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.88 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 361.88 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4601e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8321436480197812 (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     : 6.26 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 233.04 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.87 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (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.4639e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8354686204302406 (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     : 6.24 us    (2.2%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 260.04 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.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    | 3.4744e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.985217730928486 (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     : 6.37 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.6%)
   LB compute        : 237.34 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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.2163e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.622709823150103 (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     : 6.16 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 312.50 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7108e+05 | 65536 |      2 | 1.766e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1883695422720724 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 262.35 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (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.4109e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.251573814403383 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 430.397896844 (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     : 8.06 us    (2.4%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 310.61 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4849e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8534530272755427 (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     : 6.23 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 280.63 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4508e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8241964266725943 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005562829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 299.50 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6950e+05 | 65536 |      2 | 1.774e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.174777384618587 (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.71 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 289.63 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3692e+05 | 65536 |      2 | 1.945e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8948267202017433 (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     : 6.36 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 297.48 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (70.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3553e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.742129245343427 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 265.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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    | 3.8720e+05 | 65536 |      2 | 1.693e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9764861863161531 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 431.454233536 (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     : 8.53 us    (2.5%)
   patch tree reduce : 3.42 us    (1.0%)
   gen split merge   : 1452.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 2.48 us    (0.7%)
   LB compute        : 310.13 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4592e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.831412172602952 (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     : 6.30 us    (2.0%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 293.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4572e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.829687650518856 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 258.31 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4258e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.802679631369316 (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     : 10.67 us   (3.6%)
   patch tree reduce : 3.92 us    (1.3%)
   gen split merge   : 1412.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1613.00 ns (0.5%)
   LB compute        : 265.97 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.4429e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.817415939174524 (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     : 6.43 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.8%)
   gen split merge   : 1141.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.5%)
   LB compute        : 231.92 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.5085e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.873770514231739 (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     : 6.12 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 294.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (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.4685e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.281010825963138 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 432.40409563000003 (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     : 8.14 us    (2.2%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 346.32 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.2319e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.63612839241989 (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     : 6.40 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 260.37 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.4178e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7958690963380968 (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     : 6.74 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 260.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.3901e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.77199482031361 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007469244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 270.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9317e+05 | 65536 |      2 | 1.667e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3781784457986186 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 263.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.3742e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.758361253423565 (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     : 6.65 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 243.29 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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.2073e+05 | 65536 |      2 | 1.558e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1476388504708686 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 433.40195775100005 (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     : 8.47 us    (2.3%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 345.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (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.4097e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7888714530188428 (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     : 6.75 us    (2.5%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1251.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 245.55 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (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.3818e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7649000938116193 (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     : 6.27 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 245.79 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.4463e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8203102108756313 (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     : 6.64 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 241.79 us  (86.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3361e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.725647031145018 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 257.04 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.3842e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.766972277549188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008657073796681992, dt = 9.292620331800838e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 266.71 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.3909e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2413681806408956 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 434.37065988300003 (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     : 8.70 us    (2.5%)
   patch tree reduce : 2.61 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 326.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (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.3355e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.725084003527722 (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     : 6.32 us    (2.4%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 243.01 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (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.2881e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.684346407762492 (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     : 6.57 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 249.25 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.3178e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7099070663274536 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009219244278009195, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 261.15 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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.2497e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6513644419870026 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009375659037345593, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.0%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 285.46 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2610e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6610624287675826 (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     : 6.32 us    (1.0%)
   patch tree reduce : 2.36 us    (0.4%)
   gen split merge   : 1061.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.2%)
   LB compute        : 594.76 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.2208e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1545363131488644 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 435.36373740500005 (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     : 8.45 us    (1.3%)
   patch tree reduce : 2.02 us    (0.3%)
   gen split merge   : 982.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 642.92 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (70.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.3227e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7141311611979324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0097814147593364, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 243.58 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5663e+05 | 65536 |      2 | 1.838e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.0642318198002028 (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     : 6.76 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 242.71 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (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.2391e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.642245203898435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010094244278009196, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.6%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 244.42 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.2655e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6649473136150865 (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     : 6.19 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1412.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 235.92 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.3092e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7025265255695445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010407073796681992, dt = 9.292620331801012e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 267.75 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2923e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1910499988596337 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 436.38295891 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 0.010500000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.66 us    (2.3%)
   patch tree reduce : 2.51 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 359.58 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (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.2452e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.647545426962456 (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     : 6.78 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 251.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.1257e+05 | 65536 |      2 | 1.588e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5448107446219237 (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     : 7.07 us    (2.7%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 243.57 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 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.2435e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6460644544709546 (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     : 6.62 us    (2.3%)
   patch tree reduce : 2.62 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 268.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.2029e+05 | 65536 |      2 | 1.559e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.611187954627197 (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     : 6.52 us    (2.4%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 250.76 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.2842e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.681019317147825 (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     : 6.75 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 268.50 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3191e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.204731062012576 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 437.399102926 (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     : 8.48 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 336.68 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 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.2903e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6862994474380635 (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     : 6.50 us    (2.5%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 239.55 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (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.2125e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.619429698135891 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 281.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (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.1795e+05 | 65536 |      2 | 2.061e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7318284719682184 (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     : 6.11 us    (1.7%)
   patch tree reduce : 1962.00 ns (0.6%)
   gen split merge   : 1171.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 332.31 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.1215e+05 | 65536 |      2 | 1.590e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5412335522193574 (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     : 6.47 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 240.36 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (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.3430e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7315743309183196 (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     : 6.55 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 242.63 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2876e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.188627406124088 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 438.45208939500003 (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     : 8.59 us    (2.4%)
   patch tree reduce : 2.56 us    (0.7%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 328.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9984e+05 | 65536 |      2 | 1.639e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4355078409423534 (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     : 6.27 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 284.69 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (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.1082e+05 | 65536 |      2 | 1.595e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5297716494550833 (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     : 6.64 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 277.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1666e+05 | 65536 |      2 | 2.070e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7207613919213514 (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     : 6.35 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 302.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0795e+05 | 65536 |      2 | 2.128e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.6459703879975525 (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     : 6.85 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 289.16 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4796e+05 | 65536 |      2 | 1.883e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.9897488306973172 (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     : 6.55 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 328.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.4110e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2516169136409796 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 439.60584250100004 (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     : 8.57 us    (2.5%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 324.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2087e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6161499341669754 (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     : 6.75 us    (2.0%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 312.48 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1867e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5972250702636916 (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     : 7.05 us    (2.4%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 274.24 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1485e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.56440248416519 (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     : 6.75 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 257.90 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2274e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.632270311260343 (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     : 6.26 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 267.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.2102e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6174277266646206 (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     : 7.05 us    (2.3%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 287.19 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (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.2923e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.191017237395719 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 440.614189348 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.014000000000000002, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.61 us    (2.4%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 335.27 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2951e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6903977269692985 (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     : 6.55 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 304.60 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3961e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7771437716308442 (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     : 6.72 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 234.30 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.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    | 4.4452e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8193385242222333 (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     : 6.14 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 280.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (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    | 2.8063e+05 | 65536 |      2 | 2.335e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.4112047443488946 (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     : 6.80 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 340.81 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (64.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0302e+05 | 65536 |      2 | 2.163e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.603595036684812 (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     : 6.37 us    (1.8%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.4%)
   LB compute        : 325.34 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (60.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8066e+05 | 65536 |      2 | 1.722e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9430907209708739 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 441.756500107 (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     : 8.90 us    (2.3%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 358.47 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (69.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.0126e+05 | 65536 |      2 | 1.633e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.4476881555346424 (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     : 6.71 us    (2.1%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 302.19 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5340e+05 | 65536 |      2 | 1.854e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.036436602971207 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.015187829518672799, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.9%)
   patch tree reduce : 1782.00 ns (0.6%)
   gen split merge   : 1392.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 289.01 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1189e+05 | 65536 |      2 | 1.591e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5389835964886505 (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     : 6.66 us    (2.1%)
   patch tree reduce : 1942.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 291.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0337e+05 | 65536 |      2 | 1.625e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.465844529581983 (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     : 7.01 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 251.51 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3732e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.757465826386022 (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     : 6.95 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 280.36 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.3449e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.217905957555471 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 442.79725596300005 (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     : 9.30 us    (2.4%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 356.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0943e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.517865508924935 (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     : 6.64 us    (2.5%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 245.79 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.3614e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7473334852362736 (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     : 6.80 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 266.35 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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.3375e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7268230269736353 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016219244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.5%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 244.37 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.3777e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.761384739322481 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01637565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.4%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 252.90 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.3870e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.769343902389895 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016532073796681986, dt = 9.292620331801532e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 279.17 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4010e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.24654611317739 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 443.7812038 (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     : 8.48 us    (2.5%)
   patch tree reduce : 2.75 us    (0.8%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 311.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (48.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.4588e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8310602627755075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016781414759336397, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.5%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 226.47 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.5017e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8679313301658045 (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     : 6.40 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 242.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (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.4873e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8555096593747575 (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     : 6.38 us    (2.6%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 222.92 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (63.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3989e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7795772126600546 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017250659037345586, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 281.99 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3588e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8859532878191003 (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     : 6.35 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 263.21 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6246e+05 | 65536 |      2 | 1.808e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8502314216401554 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 444.82455620800005 (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     : 9.25 us    (2.5%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.3%)
   LB compute        : 348.10 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3662e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7515076158567346 (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     : 6.39 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.4%)
   LB compute        : 245.17 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3708e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.755463519825737 (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     : 6.35 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 268.02 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.1990e+05 | 65536 |      2 | 1.561e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6078006329984955 (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     : 6.52 us    (2.6%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 232.93 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3342e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.723969295012876 (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     : 6.95 us    (2.6%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 245.96 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (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.3696e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7544275572704464 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 261.02 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.1317e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1090547555918975 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 445.810523756 (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     : 9.69 us    (2.6%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 347.60 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9118e+05 | 65536 |      2 | 1.675e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.3611033149324845 (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     : 6.27 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 240.78 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (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.3290e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.719543168018077 (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     : 6.32 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 293.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4209e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.798464325158605 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 262.79 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (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.4007e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.781091368900902 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019000659037345588, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.3%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 248.63 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (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.3963e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7773299788255055 (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     : 6.02 us    (1.9%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 295.94 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1858e+05 | 65536 |      2 | 1.566e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1366538398299206 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 446.81843942700004 (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.92 us    (2.2%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 330.77 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1932.00 ns (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.2620e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6619487385374527 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 249.79 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (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.3163e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.708600072554244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019562829518672796, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 248.28 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.2424e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6451194150181436 (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     : 6.31 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 273.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (60.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2241e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.629380247509293 (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     : 6.24 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 264.20 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.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.1092e+05 | 65536 |      2 | 1.595e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5306398639597423 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 270.10 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.2391e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.163871943265592 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 447.82846900000004 (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.78 us    (2.7%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 298.73 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2321e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.636262468193012 (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     : 6.29 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 298.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1801e+05 | 65536 |      2 | 2.061e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.7323460216827637 (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     : 6.27 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 299.57 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8057e+05 | 65536 |      2 | 1.722e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.269936766868995 (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     : 6.58 us    (2.6%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.5%)
   LB compute        : 228.25 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.4536e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.826608119127354 (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     : 6.28 us    (2.2%)
   patch tree reduce : 1822.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 269.93 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6924e+05 | 65536 |      2 | 1.775e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1725313422482424 (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     : 6.00 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 280.28 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (61.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7795e+05 | 65536 |      2 | 1.734e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9292652721077 (tsim/hr)                              [amr::RAMSES][rank=0]
Info: time since start : 448.930251498 (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.97 us    (2.1%)
   patch tree reduce : 2.06 us    (0.5%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 357.52 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2724e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6708720140637205 (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     : 6.52 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.4%)
   LB compute        : 238.34 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.2429e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6455885927710208 (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     : 6.66 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 250.37 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (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.3934e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.77485026000717 (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     : 6.74 us    (2.5%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 246.52 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1099e+05 | 65536 |      2 | 2.107e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.672095036798089 (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     : 6.14 us    (1.9%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 307.90 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (8.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.3124e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7052933232164498 (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     : 6.37 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 258.54 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (67.0%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3140e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2021177020643115 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 449.97122899500005 (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     : 8.60 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 351.32 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 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.2569e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.657601919180519 (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     : 6.09 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 273.78 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 5.98 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.2142e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6208812149872727 (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.44 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 267.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3255e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7165430802198336 (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     : 6.57 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 265.78 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.2787e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.676316785839051 (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     : 6.05 us    (2.2%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 251.44 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2651e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.664584272841859 (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     : 6.06 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 292.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (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.2239e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.156122892688296 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 450.96464939500004 (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.96 us    (2.4%)
   patch tree reduce : 2.36 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 343.39 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2063e+05 | 65536 |      2 | 1.558e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.614104220516057 (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     : 6.39 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 273.07 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.4078e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7872702853070805 (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     : 6.36 us    (2.1%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 280.47 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4026e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.78276403234659 (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     : 6.22 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 288.80 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.4617e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8335389788562018 (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     : 6.40 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 259.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.4055e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7852292263285756 (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     : 6.19 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 260.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.4551e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2741698126290504 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 451.935091956 (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.07 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 342.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.25 us    (88.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.4665e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8376703941050763 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 264.13 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.4532e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8262092263785665 (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     : 6.17 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 263.93 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.3477e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.735592293713026 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024094244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.3%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 250.26 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7625e+05 | 65536 |      2 | 1.742e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.232768828392694 (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.66 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 252.07 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.3509e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7383142636109685 (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.57 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 240.67 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.2979e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.193891628107438 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 452.929072333 (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     : 8.64 us    (2.6%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 311.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4766e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.846378599003764 (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     : 6.99 us    (2.7%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 236.48 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.4496e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8231196581318834 (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     : 6.33 us    (2.3%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 255.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (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.4731e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8433774990254848 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.024969244278009194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.1%)
   patch tree reduce : 2.20 us    (0.4%)
   gen split merge   : 1282.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 533.65 us  (96.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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.4667e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8378102762684 (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     : 6.14 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 270.08 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.4050e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7848370816539947 (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     : 6.74 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 264.38 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (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.3996e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2458232474321105 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 453.887115814 (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.11 us    (2.1%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 357.77 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4144e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.792870593511205 (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     : 6.09 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 273.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.4265e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.803283418537318 (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     : 6.36 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 251.99 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 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.4720e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.84241247660009 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.025844244278009194, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 233.20 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3043e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6982857531194733 (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     : 6.71 us    (2.6%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 238.90 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.4797e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.849049403155139 (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     : 6.56 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 245.23 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.4694e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.281433525780555 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 454.84795361600004 (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     : 9.14 us    (2.5%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 347.56 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (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.2166e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6229117897918575 (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     : 6.98 us    (2.7%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 240.37 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.4044e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.784289848355933 (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     : 6.45 us    (2.6%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1251.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 229.28 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.7%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7110e+05 | 65536 |      2 | 1.766e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1885006689253115 (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     : 6.76 us    (2.4%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 257.25 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (62.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4442e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8185463872617014 (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     : 6.35 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 256.50 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (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.4621e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8338649537319593 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1392.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 262.67 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.3834e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2375231005224094 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 455.849241672 (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     : 8.14 us    (2.1%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 357.61 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3616e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7475660979192558 (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     : 6.80 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 288.87 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.3232e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7145579199393 (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     : 6.56 us    (2.1%)
   patch tree reduce : 2.56 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 281.84 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (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.0078e+05 | 65536 |      2 | 1.635e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.443572858044389 (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     : 6.62 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 273.21 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (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.3938e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7751751885075113 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02775065903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 259.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (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.9058e+05 | 65536 |      2 | 1.678e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.35590714659083 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027907073796681985, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 244.87 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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    | 3.4942e+05 | 65536 |      2 | 1.876e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7836485133299416 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 456.891203457 (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     : 8.64 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 371.72 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.41 us    (69.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.4711e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8416212765336577 (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     : 6.75 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 296.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (62.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6945e+05 | 65536 |      2 | 1.774e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1743977947719606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028312829518672797, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 265.14 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.4433e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.817723310881972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028469244278009193, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 301.86 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.3805e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.763792073980407 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.5%)
   LB compute        : 267.60 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.3969e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7779042987475098 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028782073796681986, dt = 9.292620331801879e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 278.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4475e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.270256760352149 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 457.882309575 (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     : 8.84 us    (2.7%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 298.09 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4402e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8150980631459572 (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     : 6.29 us    (2.4%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 235.50 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.4423e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.816904314919116 (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     : 6.30 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 261.38 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.4356e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8111284942617005 (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     : 6.86 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 260.17 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4590e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8312129054992585 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 263.14 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.4100e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.789106829076801 (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     : 6.49 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 274.15 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4547e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.273964771756368 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 458.84095635200003 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.029750000000000006, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.89 us    (2.1%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 348.56 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (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.4228e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.800096567300284 (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     : 6.59 us    (2.6%)
   patch tree reduce : 2.18 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 228.77 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.4298e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.806165913985181 (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     : 6.29 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 228.26 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (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.1564e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.571242754619134 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030219244278009195, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 288.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3538e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7408036532786606 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03037565903734559, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 241.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.4590e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8312421529834357 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030532073796681988, dt = 9.292620331801532e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 271.98 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (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.3869e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.239349946039582 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 459.81354797100005 (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     : 9.14 us    (2.4%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 362.06 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (63.3%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8664e+05 | 65536 |      2 | 1.695e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.32206664640776 (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     : 6.62 us    (1.9%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 321.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (68.8%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3673e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.75244849157549 (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.47 us    (2.3%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 261.78 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.4375e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8127497224840354 (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.48 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 232.13 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.3481e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7359374911785843 (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     : 6.51 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 258.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.3967e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7777126366164873 (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     : 6.34 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.5%)
   LB compute        : 235.86 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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.4726e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.283063426915076 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 460.81448080700005 (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     : 8.58 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 335.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (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.2953e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6905531776793 (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     : 6.05 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 268.69 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.4317e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8077390457939218 (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     : 6.35 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 263.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (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.3765e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.760345683632012 (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.43 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 247.91 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (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.2072e+05 | 65536 |      2 | 1.558e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6149158137793207 (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     : 6.51 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 243.05 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (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.3381e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7273865310958505 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 275.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (47.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.5899e+05 | 65536 |      2 | 1.826e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8325205990593763 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 461.82894950800005 (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     : 9.63 us    (2.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.3%)
   LB compute        : 309.40 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (69.5%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0752e+05 | 65536 |      2 | 1.608e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.501418630401016 (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     : 7.02 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 294.14 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4684e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.8392790266365444 (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     : 6.24 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.5%)
   LB compute        : 295.92 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.6%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3253e+05 | 65536 |      2 | 1.971e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.857142911708247 (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.92 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 241.62 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.2092e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.616633053991308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03300065903734561, dt = 0.00015641475933639762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 263.80 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (60.4%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3621e+05 | 65536 |      2 | 1.949e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.8887891748830645 (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     : 6.15 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 290.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (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.6405e+05 | 65536 |      2 | 1.800e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8583086780601659 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 462.934262799 (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     : 9.14 us    (2.6%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 331.98 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 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.4554e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.82816584770519 (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.87 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 251.44 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6580e+05 | 65536 |      2 | 1.792e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.1429737296326294 (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     : 6.62 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 243.88 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.4755e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.845429558779766 (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     : 6.33 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 280.31 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.1647e+05 | 65536 |      2 | 1.574e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.5783555616215015 (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     : 6.59 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 239.14 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.2%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4016e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7819153360681534 (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     : 6.36 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 290.39 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.4286e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2606398814311337 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 463.931302775 (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     : 8.63 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 302.46 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.85 us    (70.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.2714e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.6700385480041904 (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     : 6.77 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 281.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (60.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1340e+05 | 65536 |      2 | 2.091e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.692798709995635 (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     : 6.82 us    (1.9%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 326.55 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.9%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1276e+05 | 65536 |      2 | 2.095e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.687301077693085 (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     : 6.22 us    (1.7%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 336.43 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 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    | 3.7338e+05 | 65536 |      2 | 1.755e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.2081535610857945 (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.74 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 248.15 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (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.3063e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7000182684373013 (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     : 6.46 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 305.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (67.1%)
Info: cfl dt = 0.00015641475933639762                                    [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3255e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.2080109607009315 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 465.05693817400004 (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     ])}]}
354 plot, anim = run_and_plot(cases, 5, "minmod_hllc")
  • Test 5 - t=0.012 (Last Step)
running none hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  15.98 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.77 us    (53.2%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1222.00 ns (0.2%)
   patch tree reduce : 1212.00 ns (0.2%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.2%)
   LB compute        : 509.20 us  (97.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 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.05 us    (2.0%)
   patch tree reduce : 2.29 us    (0.5%)
   gen split merge   : 1002.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.2%)
   LB compute        : 422.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.6619e+05 | 65536 |      2 | 2.462e-01 | 0.0% |   1.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (1.4%)
   patch tree reduce : 1903.00 ns (0.4%)
   gen split merge   : 1051.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.3%)
   LB compute        : 454.42 us  (95.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2232e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9073306393608154 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 341.79 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4399e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0051678247346065 (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.39 us    (1.7%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 352.74 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (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.3968e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9857457662723443 (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     : 6.70 us    (2.0%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 310.87 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2678e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9274643028928833 (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     : 6.79 us    (1.9%)
   patch tree reduce : 2.36 us    (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 340.50 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3407e+05 | 65536 |      2 | 1.962e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5087612034282336 (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     : 6.85 us    (1.8%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.3%)
   LB compute        : 361.12 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4798e+05 | 65536 |      2 | 1.883e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.57155898249993 (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     : 6.45 us    (1.8%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1261.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.3%)
   LB compute        : 341.42 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 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    | 3.4380e+05 | 65536 |      2 | 1.906e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5526824655102622 (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     : 7.00 us    (1.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.3%)
   LB compute        : 344.96 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.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.4832e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024762847991475 (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     : 6.60 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 321.38 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4418e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0060618027045054 (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     : 6.08 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 266.80 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (60.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1039e+05 | 65536 |      2 | 1.597e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8534387798629162 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0008221661412416739, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 264.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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    | 3.9520e+05 | 65536 |      2 | 1.658e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7848287029909784 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.1%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 982.00 ns  (0.3%)
   LB compute        : 302.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.3283e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.954787856258069 (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     : 6.94 us    (2.4%)
   patch tree reduce : 2.59 us    (0.9%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 270.14 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (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.3766e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.976607081635164 (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     : 6.99 us    (2.5%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 252.19 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (65.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4124e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9927586616231792 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 264.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (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.3971e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9858666618506282 (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     : 6.32 us    (2.3%)
   patch tree reduce : 2.38 us    (0.9%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 249.03 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (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    | 4.3712e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9741719004377647 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (0.9%)
   patch tree reduce : 2.28 us    (0.3%)
   gen split merge   : 981.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.2%)
   LB compute        : 695.48 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.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.3272e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9542957224045912 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 283.31 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3112e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9470476435324273 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 273.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (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.3662e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9718945279392377 (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     : 6.76 us    (2.0%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 309.16 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.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.6178e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.085527825932191 (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     : 7.11 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 259.77 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5337e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.04753427990891 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 270.94 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5678e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0629632054058296 (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     : 21.97 us   (8.0%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 235.90 us  (86.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (61.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5307e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.046181702399394 (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     : 6.81 us    (2.2%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 290.16 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5427e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0516069295158372 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.4%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 239.85 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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.2703e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9285851515294814 (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     : 7.22 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 272.30 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (63.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5585e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0587405765555604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 271.82 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5558e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.057522985347237 (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     : 6.68 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 311.93 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3753e+05 | 65536 |      2 | 1.942e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5243988480887654 (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     : 6.79 us    (1.0%)
   patch tree reduce : 2.07 us    (0.3%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 650.73 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.54 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (68.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2585e+05 | 65536 |      2 | 2.011e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.471650577836538 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 324.98 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2162e+05 | 65536 |      2 | 2.038e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4525223915318104 (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     : 6.51 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 324.40 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (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.3523e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9656323386891916 (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     : 6.41 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 303.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (61.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3379e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9591051974039195 (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     : 6.54 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 264.07 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4362e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.003500983451033 (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     : 6.47 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 302.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (69.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.3718e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9744541495804309 (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     : 6.60 us    (0.9%)
   patch tree reduce : 1983.00 ns (0.3%)
   gen split merge   : 1081.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.2%)
   LB compute        : 677.85 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (69.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4946e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0298877943245057 (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     : 6.63 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 244.62 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.4092e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9913212492009449 (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     : 6.52 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 252.88 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (60.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3443e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5103677404217337 (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.72 us    (2.4%)
   patch tree reduce : 2.49 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 258.43 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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    | 3.2213e+05 | 65536 |      2 | 2.034e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4548380575016313 (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     : 6.51 us    (2.0%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 309.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (66.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3178e+05 | 65536 |      2 | 1.975e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4984291232547922 (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     : 6.36 us    (1.7%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 352.67 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (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    | 3.2202e+05 | 65536 |      2 | 2.035e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4543539381402333 (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     : 6.59 us    (2.0%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 313.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (67.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3780e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5256204890942138 (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     : 7.07 us    (2.5%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 259.02 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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    | 3.3702e+05 | 65536 |      2 | 1.945e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.522062076326862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 294.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3329e+05 | 65536 |      2 | 1.966e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.505232684782153 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003535314407339195, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 308.75 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (64.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3464e+05 | 65536 |      2 | 1.958e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5113139823286879 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.0%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 308.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3246e+05 | 65536 |      2 | 1.971e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5014850337032446 (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.94 us    (2.5%)
   patch tree reduce : 2.57 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 257.45 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3487e+05 | 65536 |      2 | 1.957e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5123857041136557 (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     : 6.66 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 281.92 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3564e+05 | 65536 |      2 | 1.953e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5158393241810706 (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     : 7.14 us    (2.6%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.4%)
   LB compute        : 256.89 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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    | 3.2878e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4848789149251809 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 289.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (62.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3447e+05 | 65536 |      2 | 1.959e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5105766453544938 (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.34 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 284.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2525e+05 | 65536 |      2 | 2.015e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4689412227743077 (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     : 6.28 us    (1.7%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 347.47 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.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.4764e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.021659949632661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004193047320332535, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.5%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 248.92 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7083e+05 | 65536 |      2 | 1.767e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6747572058656268 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.5%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 243.12 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5365e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.048815180367928 (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     : 6.61 us    (2.5%)
   patch tree reduce : 2.45 us    (0.9%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 247.05 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.6138e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.083748530457569 (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.81 us    (2.6%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 236.01 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.6068e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.08056550342869 (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     : 6.23 us    (2.4%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 238.57 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (62.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4415e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.00593105386643 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 263.24 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (64.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3151e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.948829201472173 (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     : 6.84 us    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 266.97 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (61.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.4999e+05 | 65536 |      2 | 2.622e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.129028256023378 (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     : 7.25 us    (1.8%)
   patch tree reduce : 2.49 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 374.50 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8803e+05 | 65536 |      2 | 1.689e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7524402432001303 (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     : 7.09 us    (2.1%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 321.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (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.4987e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0317504968638276 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 305.23 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (68.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.5835e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.070065103211447 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 282.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6076e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0809497627766556 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00509743007569838, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.49 us    (0.9%)
   gen split merge   : 1261.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 266.99 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5084e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.036132905829553 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.3%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 279.65 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3182e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9502157968529483 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 260.22 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (58.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0492e+05 | 65536 |      2 | 1.618e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8287547860387199 (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     : 6.73 us    (2.5%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 250.17 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (61.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4637e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5642989008047694 (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     : 7.02 us    (2.5%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 254.38 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (55.7%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1866e+05 | 65536 |      2 | 2.057e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4391438741028206 (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     : 6.09 us    (1.8%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 701.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 309.53 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.5%)
Info: cfl dt = 8.221661412416744e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2584e+05 | 65536 |      2 | 2.011e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4715801235020487 (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.74 us    (1.7%)
   patch tree reduce : 1922.00 ns (0.6%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 317.66 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (3.9%)
Info: cfl dt = 8.221661412416758e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2559e+05 | 65536 |      2 | 2.013e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4704613904052635 (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     : 7.29 us    (0.6%)
   patch tree reduce : 2.15 us    (0.2%)
   gen split merge   : 1111.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.1%)
   LB compute        : 1147.67 us (97.9%)
   LB move op cnt    : 0
   LB apply          : 5.05 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (70.2%)
Info: cfl dt = 8.221661412416794e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5628e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.060677034326713 (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     : 6.58 us    (2.5%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 245.42 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.5%)
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    | 4.5039e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.034071851294069 (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     : 6.39 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 267.14 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (65.3%)
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.4446e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.007320633765797 (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     : 6.78 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 312.61 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.3%)
Info: cfl dt = 8.221661412417637e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3172e+05 | 65536 |      2 | 1.976e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4981533638227111 (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     : 6.60 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 265.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.9%)
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    | 3.1571e+05 | 65536 |      2 | 2.076e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4258531252655016 (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     : 6.34 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 297.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.0%)
Info: cfl dt = 8.221661412421604e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8487e+05 | 65536 |      2 | 1.703e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7382012633807773 (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     : 6.28 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 257.35 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.7%)
Info: cfl dt = 8.221661412427566e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4426e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0063951622348775 (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     : 6.37 us    (2.4%)
   patch tree reduce : 2.38 us    (0.9%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.5%)
   LB compute        : 247.50 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.0%)
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.7763e+05 | 65536 |      2 | 1.735e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7054943415639363 (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     : 6.26 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 250.61 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.7%)
Info: cfl dt = 8.221661412466151e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6386e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0949191711807496 (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     : 6.73 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 249.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (63.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    | 4.6006e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0777561228210697 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006495112515810149, dt = 8.221661412518349e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 266.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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    | 3.6287e+05 | 65536 |      2 | 1.806e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6388284229189338 (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     : 6.71 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 312.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.7%)
Info: cfl dt = 8.221661412817336e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7088e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1266539480326747 (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     : 6.85 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 271.33 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.4%)
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.4132e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.993110443906909 (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     : 7.01 us    (2.4%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 274.41 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.9%)
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.4355e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0031948458795847 (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     : 6.96 us    (2.6%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 244.56 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (62.7%)
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.5159e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0395154187316136 (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     : 13.50 us   (5.0%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 241.47 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (59.4%)
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.5482e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0541181781429683 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069884122006111295, dt = 8.221661417257232e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 270.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.1%)
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.4917e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0285863698048856 (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     : 6.73 us    (2.6%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 240.47 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.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.5382e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0495735156437402 (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     : 6.81 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 296.83 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.3%)
Info: cfl dt = 8.221661438272913e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5403e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050546803397419 (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     : 6.39 us    (1.7%)
   patch tree reduce : 2.42 us    (0.6%)
   gen split merge   : 1272.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 363.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (69.9%)
Info: cfl dt = 8.221661456149165e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5816e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0691851979173603 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 262.24 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (64.0%)
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.5011e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.032827460540917 (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     : 6.14 us    (2.1%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 271.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.4%)
Info: cfl dt = 8.22166153192759e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5776e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0673843783163126 (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     : 6.43 us    (2.3%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 261.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.7%)
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    | 3.8483e+05 | 65536 |      2 | 1.703e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7380053183265673 (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     : 6.59 us    (2.1%)
   patch tree reduce : 2.59 us    (0.8%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 294.13 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (62.3%)
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.5758e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.066572972421617 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 262.95 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (56.8%)
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    | 3.6351e+05 | 65536 |      2 | 1.803e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6416976201317715 (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     : 6.61 us    (2.2%)
   patch tree reduce : 2.59 us    (0.9%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 281.35 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.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    | 4.0134e+05 | 65536 |      2 | 1.633e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8125581689266577 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.44 us    (0.9%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 251.51 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.8%)
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.4834e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0248158496341433 (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     : 6.49 us    (1.7%)
   patch tree reduce : 2.48 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 369.58 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.1%)
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.5418e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0512175693756443 (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     : 6.15 us    (2.3%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 245.31 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.7%)
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.5677e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.062906434448504 (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     : 7.01 us    (2.6%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 242.33 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.8%)
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.5580e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0585060285344787 (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     : 6.72 us    (2.5%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 246.37 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (57.5%)
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.5643e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0613696923285736 (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     : 7.03 us    (2.6%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 250.52 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (57.2%)
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.5605e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0596520557759934 (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     : 6.24 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 243.72 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.3%)
Info: cfl dt = 8.22167330962201e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5941e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.074853601855145 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00838609489550171, dt = 8.22167330962201e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.7%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 231.85 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.6%)
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.5679e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0629833014983694 (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     : 6.71 us    (2.6%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.5%)
   LB compute        : 237.87 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (61.7%)
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.5715e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.064624666176042 (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     : 6.54 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 276.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (62.0%)
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.5755e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0664372931262602 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 254.88 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.8%)
Info: cfl dt = 8.221707253058221e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6857e+05 | 65536 |      2 | 1.778e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6645725655936627 (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     : 7.02 us    (2.4%)
   patch tree reduce : 2.52 us    (0.9%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 267.15 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (61.1%)
Info: cfl dt = 8.221724183555953e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6818e+05 | 65536 |      2 | 1.780e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6628272863121638 (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     : 6.20 us    (2.4%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 234.28 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (57.8%)
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.5652e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0617720113921636 (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     : 6.81 us    (2.5%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 247.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.7%)
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.5644e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.061434055474239 (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     : 6.51 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 248.62 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (60.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    | 3.8342e+05 | 65536 |      2 | 1.709e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7316528474890314 (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     : 6.38 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 257.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (60.7%)
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.0271e+05 | 65536 |      2 | 1.627e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8187992636390653 (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     : 6.60 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 260.80 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.0%)
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.0657e+05 | 65536 |      2 | 1.612e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8362159795856956 (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     : 6.26 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 258.09 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.3%)
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.5840e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.070313509730557 (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     : 6.75 us    (2.5%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 249.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (61.7%)
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    | 3.7004e+05 | 65536 |      2 | 1.771e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6712737926494372 (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     : 7.34 us    (2.4%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 280.19 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.3%)
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.6385e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0949868773772993 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454929030931229, dt = 8.222240395595671e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 240.09 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (59.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    | 3.9715e+05 | 65536 |      2 | 1.650e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7937928326417174 (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     : 6.59 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 266.63 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.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.0741e+05 | 65536 |      2 | 1.609e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8401364969890899 (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     : 6.37 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 259.53 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.0%)
Info: cfl dt = 8.222841781014156e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5585e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.058975920087744 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 266.65 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.6%)
Info: cfl dt = 8.223138475737504e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4881e+05 | 65536 |      2 | 1.879e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5755378963652724 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783829843948735, dt = 8.223138475737504e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.3%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.4%)
   LB compute        : 272.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.1%)
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.7604e+05 | 65536 |      2 | 1.743e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6986263082902742 (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.51 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 256.06 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.0%)
Info: cfl dt = 8.223931163930775e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9568e+05 | 65536 |      2 | 1.656e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.787392015736529 (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.46 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 245.76 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.3%)
Info: cfl dt = 8.224449519393963e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4926e+05 | 65536 |      2 | 1.876e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.577805479986189 (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     : 6.01 us    (2.3%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 241.13 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.5%)
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.6553e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.103201946808719 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010112780016321965, dt = 8.225066182056098e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.8%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 338.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.3%)
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.5795e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.069091897855041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010195030678142526, dt = 8.225795464796984e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1291.00 ns (0.4%)
   LB compute        : 289.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.6%)
Info: cfl dt = 8.226652964058996e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5899e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0739949063148972 (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     : 6.39 us    (2.4%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 245.83 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (58.6%)
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.6581e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1050179893201135 (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     : 6.15 us    (2.3%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 248.70 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.9%)
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.3906e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9843567642881033 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 249.18 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.6%)
Info: cfl dt = 8.230169630766204e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7609e+05 | 65536 |      2 | 1.743e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7000323211337456 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010524119931286777, dt = 8.230169630766204e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 292.46 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.5%)
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.6330e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.094543182093414 (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     : 6.48 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 309.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (67.6%)
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.6664e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1100561803459774 (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     : 6.55 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 263.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.5%)
Info: cfl dt = 8.235518971778913e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0435e+05 | 65536 |      2 | 1.621e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8287867315333015 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010771073801438545, dt = 8.235518971778913e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 299.16 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.2%)
Info: cfl dt = 8.237811431250033e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8828e+05 | 65536 |      2 | 1.688e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.756558642376769 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010853428991156334, dt = 8.237811431250033e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 279.85 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.4%)
Info: cfl dt = 8.240397751834099e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6761e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.116007840192294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010935807105468834, dt = 8.240397751834099e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 273.60 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
Info: cfl dt = 8.243302296144367e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5619e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.064967656569099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011018211082987174, dt = 8.243302296144367e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 288.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.7%)
Info: cfl dt = 8.246549767725602e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5746e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0714568660774866 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011100644105948618, dt = 8.246549767725602e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 301.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.1%)
Info: cfl dt = 8.250165039112761e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5732e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0716213621335324 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011183109603625873, dt = 8.250165039112761e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 249.02 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.3%)
Info: cfl dt = 8.254172975792788e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5957e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0827678865443753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011265611254017, dt = 8.254172975792788e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 271.88 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (63.0%)
Info: cfl dt = 8.258598259313787e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4923e+05 | 65536 |      2 | 1.877e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.583480681361493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011348152983774928, dt = 8.258598259313787e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (1.9%)
   patch tree reduce : 2.65 us    (0.8%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 301.27 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (59.9%)
Info: cfl dt = 8.26346521273775e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7381e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   2.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.149499598630492 (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     : 6.23 us    (1.6%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 373.16 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.4%)
Info: cfl dt = 8.268797631486431e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6549e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.112956938084744 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011513373618495444, dt = 8.268797631486431e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.6%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 255.60 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.7%)
Info: cfl dt = 8.274618622395014e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6044e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0914068613453294 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011596061594810308, dt = 8.274618622395014e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.5%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 258.27 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.0%)
Info: cfl dt = 8.280950453479284e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6161e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0981938001694234 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011678807781034257, dt = 8.280950453479284e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 286.85 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.3%)
Info: cfl dt = 8.287814416555488e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4832e+05 | 65536 |      2 | 1.881e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5844520017395411 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01176161728556905, dt = 8.287814416555488e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 274.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (59.3%)
Info: cfl dt = 8.295230704445567e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7918e+05 | 65536 |      2 | 1.728e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7262749961963655 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011844495429734604, dt = 8.295230704445567e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 262.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.2%)
Info: cfl dt = 8.303218304072293e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6627e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1246446385572164 (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     : 6.28 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 297.89 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (62.6%)
Info: cfl dt = 8.310710031172254e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0342e+05 | 65536 |      2 | 1.625e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6077892255393824 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 512.2472971110001 (s)                                    [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.10 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.66 us    (59.3%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1031.00 ns (0.3%)
   patch tree reduce : 1502.00 ns (0.4%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 337.99 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 3.44 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     : 12.79 us   (3.4%)
   patch tree reduce : 2.64 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 349.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4989e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.6%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 379.89 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5030e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0336871850086538 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.6%)
   LB compute        : 246.48 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5844e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0704416842742757 (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.50 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 303.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.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.5163e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.03968608721087 (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     : 6.58 us    (2.3%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 257.86 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4741e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.02064802702213 (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     : 6.61 us    (2.4%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 251.19 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6123e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0830711898937193 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 261.56 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5322e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.046878264510316 (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     : 6.32 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 263.58 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (62.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3865e+05 | 65536 |      2 | 1.935e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5294458976279814 (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     : 6.79 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 288.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3997e+05 | 65536 |      2 | 1.928e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5353927625280268 (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     : 6.81 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 300.20 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (67.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3931e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.532402790301321 (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     : 6.19 us    (2.2%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 261.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (62.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4310e+05 | 65536 |      2 | 1.910e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.549557084111175 (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     : 21.53 us   (6.8%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 281.86 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (60.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3669e+05 | 65536 |      2 | 1.946e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5205763104365255 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 302.58 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3561e+05 | 65536 |      2 | 1.953e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5157235750187095 (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     : 7.03 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 291.22 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4008e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5359188529463528 (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     : 6.35 us    (2.0%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 288.42 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3941e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.532869585420103 (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     : 6.15 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 314.33 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (68.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2953e+05 | 65536 |      2 | 1.989e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4882471908210244 (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     : 6.27 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 259.64 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3472e+05 | 65536 |      2 | 1.958e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5116787130158538 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 258.41 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (61.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3334e+05 | 65536 |      2 | 1.966e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5054495285795697 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.4%)
   LB compute        : 270.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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    | 3.2589e+05 | 65536 |      2 | 2.011e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4718352808451407 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 315.51 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4636e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0159055776890242 (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     : 6.49 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 276.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4900e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0278332302185333 (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     : 6.09 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 283.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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    | 4.4459e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.007921307174583 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 253.37 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4356e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.003261700677157 (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     : 7.06 us    (2.5%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 254.97 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (64.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2958e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9401121440793732 (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     : 6.26 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 235.29 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.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.5826e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.069625893148209 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 268.00 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5674e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.062777175646603 (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     : 6.19 us    (2.3%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 252.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6147e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084121536591883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 267.09 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6065e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0804195253001048 (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     : 6.34 us    (2.4%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 241.99 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.6304e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0912039414351633 (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     : 6.42 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 244.95 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.6074e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0808575065228614 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 256.32 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (62.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3664e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9720075675289264 (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     : 6.68 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 280.08 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3981e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9863272764182303 (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     : 6.36 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 251.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (63.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3436e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9617015072403126 (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     : 6.17 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 286.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3587e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9685007151731846 (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     : 6.97 us    (2.6%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 242.27 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.3652e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9714705741609817 (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     : 6.09 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 264.61 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4051e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9894746977985296 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 262.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8749e+05 | 65536 |      2 | 1.691e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7500381448427438 (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     : 7.08 us    (2.5%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.85 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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    | 4.6263e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0893717059937895 (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.41 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 281.91 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4492e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0094027238850343 (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     : 6.34 us    (1.8%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 324.71 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8723e+05 | 65536 |      2 | 1.692e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7488597238648265 (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     : 6.25 us    (2.1%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 280.96 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4968e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0308674542990377 (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     : 6.47 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 247.36 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (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.2381e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9140374615938678 (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     : 6.40 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 233.44 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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    | 4.4414e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.005883174444255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 268.12 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.7639e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.151502813441751 (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     : 7.39 us    (2.7%)
   patch tree reduce : 3.59 us    (1.3%)
   gen split merge   : 2.35 us    (0.9%)
   split / merge op  : 0/0
   apply split merge : 1873.00 ns (0.7%)
   LB compute        : 241.56 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (62.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6487e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0994942643437233 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 243.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (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    | 4.5923e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.073996678218723 (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.45 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 260.07 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3760e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.976313237361618 (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     : 6.59 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 248.99 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.5220e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0422637982683853 (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     : 7.09 us    (2.7%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.5%)
   LB compute        : 244.21 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5565e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.057857086281102 (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     : 6.66 us    (2.1%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 290.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (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.4397e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.00511628697563 (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.36 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 279.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.4411e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0057204939288256 (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     : 6.54 us    (2.3%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 263.58 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (60.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3776e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.977061970792598 (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     : 7.07 us    (2.6%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 245.75 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5278e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0448838321534577 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.1%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 303.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (67.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4938e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0295394439885497 (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     : 6.73 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 264.99 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4624e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0153337242190084 (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.42 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 261.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.4327e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.001919355084511 (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     : 6.48 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 268.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 4.4623e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0153127976904472 (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     : 6.30 us    (2.4%)
   patch tree reduce : 1952.00 ns (0.7%)
   gen split merge   : 1271.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 242.89 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.5387e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0497957384443906 (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     : 6.71 us    (2.6%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 233.95 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5351e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0481650621347542 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004768563619201709, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 262.81 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.5506e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.055195147507442 (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.45 us    (2.2%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 277.13 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5419e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0512628847813295 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 298.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (63.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5371e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0490658104241324 (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     : 6.68 us    (2.6%)
   patch tree reduce : 1923.00 ns (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.5%)
   LB compute        : 233.53 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.7175e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.130554337919901 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00509743007569838, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 251.11 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6796e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1134585419221956 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 267.40 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.3068e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9450723828677363 (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     : 6.88 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 248.65 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.9599e+05 | 65536 |      2 | 1.655e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.788386421229673 (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     : 7.00 us    (2.6%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 243.72 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (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    | 3.7578e+05 | 65536 |      2 | 1.744e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6971520771482234 (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.70 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 237.98 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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    | 3.7824e+05 | 65536 |      2 | 1.733e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.708249680461948 (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     : 6.23 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 229.64 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.7287e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.135637706365217 (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     : 6.19 us    (2.4%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 241.06 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3377e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9590424630568724 (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     : 6.45 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 259.70 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7213e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1322767789745196 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005755162988691722, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 281.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6144e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.084002336769575 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.38 us    (0.9%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 249.91 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (65.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0794e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8423620012650577 (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     : 6.74 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 233.16 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.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.7173e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1304491354800064 (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     : 6.55 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 256.57 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 32.53 us   (96.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.5294e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.045601579526406 (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     : 6.73 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 286.22 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.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    | 4.7523e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1462829362022284 (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.92 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1532.00 ns (0.5%)
   LB compute        : 273.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6856e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.116143650018548 (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     : 6.47 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 253.54 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4593e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0139608500880053 (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     : 6.44 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 313.54 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (61.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7390e+05 | 65536 |      2 | 1.753e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.688627987211961 (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     : 6.28 us    (2.3%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 253.67 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.6128e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.083289271671403 (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     : 6.28 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 266.94 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (67.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4153e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.994070287155417 (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     : 6.12 us    (2.3%)
   patch tree reduce : 2.30 us    (0.9%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 240.09 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5452e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.052727990043885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006659545744057567, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 253.74 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.5692e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0635889710699713 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006741762358181734, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 279.80 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.5%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6179e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.08555993502363 (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     : 7.13 us    (2.8%)
   patch tree reduce : 1922.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 235.20 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (61.3%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6626e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1057782273249215 (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     : 6.30 us    (2.1%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 278.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (63.7%)
Info: cfl dt = 8.221661412416744e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6360e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.093751033043064 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0069884122005542375, dt = 8.221661412416744e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.8%)
   patch tree reduce : 2.15 us    (0.9%)
   gen split merge   : 1191.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.5%)
   LB compute        : 228.90 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.6%)
Info: cfl dt = 8.221661412416748e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6669e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1077265499640663 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814678405, dt = 8.221661412416748e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 232.56 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.6%)
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.6454e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0980157374885366 (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     : 6.36 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1261.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 241.75 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.0%)
Info: cfl dt = 8.221661412416778e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6753e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.111480603111977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062042926741, dt = 8.221661412416778e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.6%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.5%)
   LB compute        : 233.90 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.7%)
Info: cfl dt = 8.221661412416824e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7247e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.133808468146688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073172786570509084, dt = 8.221661412416824e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 296.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.9%)
Info: cfl dt = 8.221661412416916e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6290e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0905839548801266 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 261.87 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.4%)
Info: cfl dt = 8.2216614124171e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4443e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0071933415269188 (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     : 7.04 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 293.50 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.3%)
Info: cfl dt = 8.221661412417461e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4506e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.010005818121111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007563928499423418, dt = 8.221661412417461e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 276.30 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (67.4%)
Info: cfl dt = 8.221661412418163e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5534e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0564386026790817 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007646145113547592, dt = 8.221661412418163e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 260.88 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.3%)
Info: cfl dt = 8.221661412419503e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4986e+05 | 65536 |      2 | 1.873e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.580058344361908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007728361727671774, dt = 8.221661412419503e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 328.06 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.9%)
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    | 3.7885e+05 | 65536 |      2 | 1.730e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7110158357287673 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007810578341795969, dt = 8.221661412422036e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 296.97 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (62.1%)
Info: cfl dt = 8.221661412426749e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6558e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.10267477940935 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007892794955920188, dt = 8.221661412426749e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 271.33 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.8%)
Info: cfl dt = 8.221661412435402e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6287e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0904362427617356 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007975011570044457, dt = 8.221661412435402e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.6%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 229.22 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (57.0%)
Info: cfl dt = 8.221661412451093e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6176e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0854317543866454 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00805722818416881, dt = 8.221661412451093e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 250.40 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (60.5%)
Info: cfl dt = 8.221661412479193e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5481e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.054037835461064 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444798293321, dt = 8.221661412479193e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.6%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 241.78 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (60.8%)
Info: cfl dt = 8.221661412528907e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5430e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0517486503096225 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008221661412418113, dt = 8.221661412528907e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 246.44 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.3%)
Info: cfl dt = 8.221661412615832e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4594e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.014007115094984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008303878026543402, dt = 8.221661412615832e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 259.60 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.5%)
Info: cfl dt = 8.221661412766083e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4629e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.015578356742615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00838609464066956, dt = 8.221661412766083e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.4%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 253.68 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.3%)
Info: cfl dt = 8.221661413022904e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5001e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0323872622919184 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00846831125479722, dt = 8.221661413022904e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 262.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (61.5%)
Info: cfl dt = 8.221661413457113e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5300e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0458930141655096 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00855052786892745, dt = 8.221661413457113e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.08 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 288.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.8%)
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    | 3.1916e+05 | 65536 |      2 | 2.053e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4414148771722939 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00863274448306202, dt = 8.221661414183454e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 293.04 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.6%)
Info: cfl dt = 8.22166141538588e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4406e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0054895002048676 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714961097203855, dt = 8.22166141538588e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 303.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.9%)
Info: cfl dt = 8.22166141735631e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5510e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0553821108955237 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008797177711357714, dt = 8.22166141735631e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 235.93 us  (86.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (61.5%)
Info: cfl dt = 8.221661420553325e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6630e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.105958190027942 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879394325531276, dt = 8.221661420553325e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 235.54 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.4%)
Info: cfl dt = 8.221661425690268e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6730e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1104732644117914 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00896161093973681, dt = 8.221661425690268e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 239.16 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (57.2%)
Info: cfl dt = 8.221661433866073e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4955e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0302962910222826 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009043827553993711, dt = 8.221661433866073e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.4%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.5%)
   LB compute        : 233.40 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (58.6%)
Info: cfl dt = 8.221661446757714e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6498e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0999788790092944 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009126044168332372, dt = 8.221661446757714e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 315.26 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.6%)
Info: cfl dt = 8.221661466900497e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6234e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.088051136948571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00920826078279995, dt = 8.221661466900497e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 248.31 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.5%)
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    | 3.8058e+05 | 65536 |      2 | 1.722e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7188051408718317 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290477397468954, dt = 8.221661498092464e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.3%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 249.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (55.6%)
Info: cfl dt = 8.221661545972298e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5493e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0545846945167634 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372694012449879, dt = 8.221661545972298e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 310.56 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.49 us    (67.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    | 4.5343e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0478091974144004 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454910627909601, dt = 8.221661618837543e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 261.70 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.3%)
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.4093e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.991381589329845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537127244097977, dt = 8.221661728792332e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 258.88 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.0%)
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.6233e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0880205252055823 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0096193438613859, dt = 8.221661893342678e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 259.45 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.9%)
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.5852e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0708066720224667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701560480319327, dt = 8.221662137593678e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (1.6%)
   patch tree reduce : 2.18 us    (0.5%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 437.30 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.2%)
Info: cfl dt = 8.221662497248537e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4875e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.026687437017749 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783777101695264, dt = 8.221662497248537e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 269.52 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.0%)
Info: cfl dt = 8.221663022665312e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5777e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.067410770315543 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009865993726667749, dt = 8.221663022665312e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 249.89 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.2%)
Info: cfl dt = 8.221663784295375e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3944e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9846405650663455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009948210356894402, dt = 8.221663784295375e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 278.60 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.5%)
Info: cfl dt = 8.221664879909285e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6201e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0865614254003693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030426994737355, dt = 8.221664879909285e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 270.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (64.0%)
Info: cfl dt = 8.221666444111895e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5906e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0732718563058397 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010112643643536447, dt = 8.221666444111895e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1512.00 ns (0.5%)
   LB compute        : 287.17 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (63.4%)
Info: cfl dt = 8.221668660760116e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9682e+05 | 65536 |      2 | 1.652e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7921595384849873 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010194860307977567, dt = 8.221668660760116e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 243.30 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.5%)
Info: cfl dt = 8.221671779023681e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6155e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0844998758467455 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277076994585169, dt = 8.221671779023681e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.9%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 224.68 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.97 us   (94.5%)
Info: cfl dt = 8.221676133970351e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6275e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0899337964549685 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359293712375406, dt = 8.221676133970351e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.57 us    (0.9%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 263.60 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (56.7%)
Info: cfl dt = 8.221682172710613e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6054e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0799590110032753 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01044151047371511, dt = 8.221682172710613e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.6%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 234.56 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1353.00 ns (58.5%)
Info: cfl dt = 8.2216904872983e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5870e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.071638175612545 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010523727295442216, dt = 8.2216904872983e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 277.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (63.5%)
Info: cfl dt = 8.221701855747675e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6674e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1079525054902093 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0106059442003152, dt = 8.221701855747675e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.6%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 240.69 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.4%)
Info: cfl dt = 8.221717292685503e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6701e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1091574209907815 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688161218872677, dt = 8.221717292685503e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 272.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.4%)
Info: cfl dt = 8.221738111297747e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6448e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0977378698879408 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010770378391799533, dt = 8.221738111297747e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 264.62 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.0%)
Info: cfl dt = 8.221765998341059e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6568e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1031469578662056 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01085259577291251, dt = 8.221765998341059e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 265.24 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (58.3%)
Info: cfl dt = 8.22180310405221e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5533e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.056413154800908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01093481343289592, dt = 8.22180310405221e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 231.99 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.0%)
Info: cfl dt = 8.221852148784643e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7130e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.128574279507611 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011017031463936443, dt = 8.221852148784643e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 268.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.3%)
Info: cfl dt = 8.221916548108689e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6519e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.100997533624853 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01109924998542429, dt = 8.221916548108689e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 254.41 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.2%)
Info: cfl dt = 8.222000557907168e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7386e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1401795517743016 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011181469150905376, dt = 8.222000557907168e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 233.13 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (61.5%)
Info: cfl dt = 8.222109440657938e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6724e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.110294327367064 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011263689156484447, dt = 8.222109440657938e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 263.24 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (67.4%)
Info: cfl dt = 8.2222496535974e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7122e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.128294135719898 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011345910250891027, dt = 8.2222496535974e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 233.56 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.2%)
Info: cfl dt = 8.222429058786043e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6530e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.101579741781082 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011428132747427001, dt = 8.222429058786043e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.3%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 239.05 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.5%)
Info: cfl dt = 8.222657154237282e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6943e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1202617460050748 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011510357038014861, dt = 8.222657154237282e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 282.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (62.5%)
Info: cfl dt = 8.222945324222079e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4527e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.01123515425196 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011592583609557235, dt = 8.222945324222079e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.5%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 240.37 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.8%)
Info: cfl dt = 8.223307105634716e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3508e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9652579042858496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011674813062799456, dt = 8.223307105634716e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.7%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 228.56 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.7%)
Info: cfl dt = 8.223758465925945e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7005e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.123315519724048 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011757046133855803, dt = 8.223758465925945e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 310.97 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.9%)
Info: cfl dt = 8.224318086622746e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6339e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0933608697453034 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011839283718515062, dt = 8.224318086622746e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 294.56 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (66.2%)
Info: cfl dt = 8.225007644922805e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0042e+05 | 65536 |      2 | 1.637e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8089780009206504 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01192152689938129, dt = 7.847310061871032e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 286.30 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.2%)
Info: cfl dt = 8.225804765303368e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5774e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9731653785430157 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 534.6274242200001 (s)                                    [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.36 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.38 us    (57.7%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1032.00 ns (0.3%)
   patch tree reduce : 1232.00 ns (0.4%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.3%)
   LB compute        : 290.32 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 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     : 12.04 us   (2.9%)
   patch tree reduce : 2.63 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.2%)
   LB compute        : 385.84 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.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.3485e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.9%)
   patch tree reduce : 14.66 us   (4.1%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 321.31 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3059e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9446680856682 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.5%)
   LB compute        : 250.84 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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    | 4.3386e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9594172171713862 (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.86 us    (2.4%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 268.88 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.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.4835e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0248823351739738 (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     : 6.52 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 251.17 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4430e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.006601224950917 (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     : 7.01 us    (2.6%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.5%)
   LB compute        : 244.65 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.4821e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024259040371085 (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     : 6.93 us    (2.2%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 287.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4036e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.988804770687314 (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     : 6.45 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 302.06 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4376e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0041375591050326 (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     : 7.10 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 270.59 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3890e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9821912933621784 (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     : 7.06 us    (2.7%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 242.08 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (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.4925e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0289602615834648 (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     : 6.40 us    (2.4%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 242.42 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4598e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0141641796983643 (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     : 7.42 us    (2.6%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 258.61 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4642e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.016172831141647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0009043827553658413, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 276.08 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4144e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9936729628391903 (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     : 6.56 us    (2.4%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 246.58 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (60.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4477e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0086903830978575 (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     : 6.28 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 254.04 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (60.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4291e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0003259053710924 (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     : 6.71 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 248.44 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.89 us    (62.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4832e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024743151829356 (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     : 6.63 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 256.57 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4950e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.030068676880409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013154658259866777, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 246.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.4695e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0185530971531667 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001397682440110845, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.4%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 240.30 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.3269e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9541700988371942 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0014798990542350123, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 270.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.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.1987e+05 | 65536 |      2 | 1.561e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8962519813549228 (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     : 6.75 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 242.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.4312e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.001244973190667 (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     : 6.74 us    (2.6%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 240.67 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4434e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.006754850757344 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0017265488966075142, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 282.75 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4426e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0064243232025216 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0018087655107316815, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 262.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.17 us    (76.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.4426e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0063977600281433 (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     : 6.13 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 275.83 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3692e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.973275341528775 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0019731987389800163, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 255.41 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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    | 3.5741e+05 | 65536 |      2 | 1.834e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6141643225075246 (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     : 6.55 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 286.02 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1177e+05 | 65536 |      2 | 2.102e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4080445686351641 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002137631967228351, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.7%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 357.58 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.1659e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.88144212362053 (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     : 6.40 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 293.08 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.2785e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9322955083188513 (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     : 6.10 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 262.07 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (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    | 3.8998e+05 | 65536 |      2 | 1.681e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7612504262814443 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0023842818096008528, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 282.70 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.3544e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9665875175059992 (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     : 6.32 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1502.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 258.23 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (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.3005e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9422453560174007 (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     : 6.54 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 236.02 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (60.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5941e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.074825998705196 (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     : 6.57 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 235.90 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (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.5156e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.039396614979819 (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     : 6.42 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 252.63 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4671e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.017492119414333 (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     : 6.66 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 242.16 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4994e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.032040076424216 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 260.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (56.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.3711e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9741316214581757 (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     : 6.46 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 260.66 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 19.64 us   (6.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (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    | 4.3949e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9848794768179638 (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.84 us    (2.4%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 267.64 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6169e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0851494539963307 (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     : 6.41 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 285.48 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (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.3081e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9456621458204866 (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     : 6.53 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1702.00 ns (0.6%)
   LB compute        : 255.08 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4662e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0170856274386253 (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     : 7.15 us    (2.2%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 295.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3658e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9717302862768777 (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     : 6.32 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 241.84 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2961e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.94023053573978 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0034530977932150275, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 244.47 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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    | 4.3997e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9870532158340122 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003535314407339195, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 242.83 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3943e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.984588637164065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003617531021463362, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.5%)
   patch tree reduce : 2.30 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 241.50 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4088e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9911622079553064 (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.77 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 261.39 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4728e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.020042721678656 (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     : 6.46 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 249.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (59.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3029e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.943310506787002 (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     : 6.80 us    (2.6%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 237.93 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 4.4988e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.031784709262341 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 275.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (62.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3837e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9797987412490856 (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.28 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 311.26 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3478e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9635731072509621 (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     : 12.23 us   (4.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 273.05 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4623e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0152954255713027 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004193047320332535, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 240.05 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4646e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0163442583433264 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004275263934456703, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 267.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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    | 4.4030e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9885059929798432 (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     : 6.85 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 320.39 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.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.2829e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.934279184872367 (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.65 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 283.43 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4086e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9910346396591114 (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     : 6.94 us    (2.4%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 268.63 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (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.4268e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.999292343051972 (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     : 6.55 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 266.96 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (61.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4383e+05 | 65536 |      2 | 1.906e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.552817679912429 (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     : 6.15 us    (2.0%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 279.85 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (60.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6048e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.079644131522704 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004768563619201709, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 300.82 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3753e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9760344933872238 (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.56 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 295.35 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (64.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5430e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0517464315339065 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004932996847450044, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 278.50 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.73 us    (63.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5189e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.040880753119008 (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     : 7.13 us    (2.7%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 245.13 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (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.5702e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0640501060513117 (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     : 7.07 us    (2.6%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 246.97 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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    | 4.5140e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0386561975839084 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005179646689822548, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 253.40 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.4998e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0322526128209044 (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     : 6.64 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 254.29 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3771e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9768382695602607 (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     : 6.78 us    (2.2%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 291.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (61.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4998e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.03226394339052 (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.52 us    (1.8%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.3%)
   LB compute        : 336.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5495e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0546856828510616 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.4%)
   LB compute        : 240.88 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.5942e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.074864789833283 (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     : 6.92 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 252.52 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6103e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0821315444319617 (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     : 6.38 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 240.01 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5333e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0473672377993632 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005755162988691722, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 261.85 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4920e+05 | 65536 |      2 | 1.877e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5770694974071768 (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     : 6.48 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 267.10 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.4314e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.001348925772691 (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     : 6.79 us    (2.7%)
   patch tree reduce : 2.13 us    (0.9%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 227.24 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (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.4362e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0035371940861495 (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     : 6.50 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.5%)
   LB compute        : 230.00 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 4.3921e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9836067367517982 (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     : 6.87 us    (2.7%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1342.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 230.23 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (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.4817e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.024060311530849 (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.39 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 247.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4760e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.021484441946301 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 252.83 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5411e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050876180187406 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1593.00 ns (0.6%)
   LB compute        : 264.87 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5902e+05 | 65536 |      2 | 1.825e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6214210002212925 (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     : 6.63 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 287.35 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4774e+05 | 65536 |      2 | 1.885e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5704807397908316 (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     : 6.60 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 267.62 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4639e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5644120009441793 (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     : 6.38 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 265.00 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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    | 3.4456e+05 | 65536 |      2 | 1.902e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.556125103258717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006659545744057567, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.5%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 247.85 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2833e+05 | 65536 |      2 | 1.996e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4828513742498597 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.006741762358181734, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.1%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 290.62 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (62.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4028e+05 | 65536 |      2 | 1.926e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.536821900058393 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 277.82 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.3%)
Info: cfl dt = 8.221661412416739e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2298e+05 | 65536 |      2 | 2.029e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4586599875146082 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00690619558643007, dt = 8.221661412416739e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 339.85 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.06 us   (93.9%)
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    | 3.6546e+05 | 65536 |      2 | 1.793e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6505260925461833 (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     : 6.94 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 276.37 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.4%)
Info: cfl dt = 8.221661412416745e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3746e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.975713347900692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007070628814678405, dt = 8.221661412416745e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.6%)
   patch tree reduce : 2.53 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 245.76 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.7%)
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.4530e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0111000102165604 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 290.90 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.8%)
Info: cfl dt = 8.22166141241678e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4773e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.022088318524704 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007235062042926741, dt = 8.22166141241678e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.5%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.5%)
   LB compute        : 241.90 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (63.3%)
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.4787e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0227279984161783 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0073172786570509084, dt = 8.221661412416828e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 241.93 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.8%)
Info: cfl dt = 8.221661412416922e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4880e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.026928602924945 (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     : 6.40 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 255.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (56.6%)
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.4773e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0220746145395374 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 261.53 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.6%)
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    | 3.3164e+05 | 65536 |      2 | 1.976e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4977907640276964 (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     : 6.36 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 287.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (60.6%)
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    | 3.5104e+05 | 65536 |      2 | 1.867e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.585421821419808 (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     : 6.29 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 281.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.5%)
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.1415e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8704088022327117 (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     : 6.33 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 288.65 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.0%)
Info: cfl dt = 8.221661412422248e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3080e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9456329337500198 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007810578341795971, dt = 8.221661412422248e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 317.21 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.0%)
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.3615e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9697814570546301 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 256.55 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.7%)
Info: cfl dt = 8.221661412436144e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3423e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.961105867280789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007975011570044465, dt = 8.221661412436144e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 279.38 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.4%)
Info: cfl dt = 8.221661412452451e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2217e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9066347268601724 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008057228184168827, dt = 8.221661412452451e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 261.98 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.7%)
Info: cfl dt = 8.221661412481648e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4665e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.01720403148746 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008139444798293352, dt = 8.221661412481648e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.5%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 255.40 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.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.4351e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.003005842837281 (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     : 6.24 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 289.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (65.3%)
Info: cfl dt = 8.221661412623577e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4354e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0031792138762445 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008303878026543502, dt = 8.221661412623577e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 242.88 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.3%)
Info: cfl dt = 8.2216614127796e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3174e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.949848664323817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008386094640669738, dt = 8.2216614127796e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 308.03 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.9%)
Info: cfl dt = 8.221661413046229e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3982e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9863362878213024 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008468311254797535, dt = 8.221661413046229e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 266.86 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (67.8%)
Info: cfl dt = 8.221661413496921e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4962e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0306158090249014 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008550527868927998, dt = 8.221661413496921e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 307.31 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.3%)
Info: cfl dt = 8.221661414250668e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0545e+05 | 65536 |      2 | 1.616e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8311423080218496 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008632744483062968, dt = 8.221661414250668e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.0%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 318.27 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (60.4%)
Info: cfl dt = 8.221661415498194e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4135e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.993260722555009 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008714961097205475, dt = 8.221661415498194e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 294.36 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.9%)
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.5397e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.050263554128911 (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     : 6.71 us    (2.3%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 272.46 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.1%)
Info: cfl dt = 8.22166142085755e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4306e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0009864659424617 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008879394325535877, dt = 8.22166142085755e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 282.57 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.3%)
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    | 4.4604e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0144549941614374 (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     : 6.41 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 271.13 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (61.3%)
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    | 3.8527e+05 | 65536 |      2 | 1.701e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7399751115008368 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00904382755400629, dt = 8.221661434658597e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.3%)
   LB compute        : 268.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.4%)
Info: cfl dt = 8.221661448018937e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5730e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.065300431539835 (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     : 6.59 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 265.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.3%)
Info: cfl dt = 8.22166146888932e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6113e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0825827845911498 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009208260782833065, dt = 8.22166146888932e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 277.43 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.0%)
Info: cfl dt = 8.221661501200618e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5131e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.03824172279874 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009290477397521958, dt = 8.221661501200618e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 269.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.2%)
Info: cfl dt = 8.221661550787187e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5289e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.045402490918828 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009372694012533964, dt = 8.221661550787187e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 270.79 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.3%)
Info: cfl dt = 8.221661626232199e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0699e+05 | 65536 |      2 | 1.610e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8380887818693927 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009454910628041836, dt = 8.221661626232199e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.1%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 298.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (64.0%)
Info: cfl dt = 8.221661740053047e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2483e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9186483185249554 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009537127244304158, dt = 8.221661740053047e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 314.51 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.4%)
Info: cfl dt = 8.221661910348403e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1273e+05 | 65536 |      2 | 1.588e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8640291189378735 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00961934386170469, dt = 8.221661910348403e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 275.11 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (61.2%)
Info: cfl dt = 8.221662163065925e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5386e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.049773390921365 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009701560480808172, dt = 8.221662163065925e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 269.02 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (60.1%)
Info: cfl dt = 8.221662535096405e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5065e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0352633244245983 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009783777102438832, dt = 8.221662535096405e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 280.00 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.1%)
Info: cfl dt = 8.221663078457541e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5218e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0421621855517347 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009865993727789795, dt = 8.221663078457541e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 2.58 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 278.27 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 8.221663865900575e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5208e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.041743869834994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00994821035857437, dt = 8.221663865900575e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 268.42 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.3%)
Info: cfl dt = 8.221664998356479e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5811e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.068941716046752 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010030426997233376, dt = 8.221664998356479e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 291.15 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.8%)
Info: cfl dt = 8.221666614737061e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5268e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.044446629224555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01011264364721694, dt = 8.221666614737061e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 294.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.9%)
Info: cfl dt = 8.221668904720291e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2893e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9371758394478378 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010194860313364312, dt = 8.221668904720291e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.22 us   (7.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 275.96 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (64.5%)
Info: cfl dt = 8.22167212527877e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1403e+05 | 65536 |      2 | 1.583e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8699028526405224 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010277077002411514, dt = 8.22167212527877e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 282.44 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.0%)
Info: cfl dt = 8.221676621854156e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5398e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0503072702542156 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010359293723664302, dt = 8.221676621854156e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.1%)
   patch tree reduce : 2.37 us    (0.4%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.2%)
   LB compute        : 563.31 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (59.7%)
Info: cfl dt = 8.221682855236433e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7507e+05 | 65536 |      2 | 1.747e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6939072761313185 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010441510489882844, dt = 8.221682855236433e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 277.41 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.6%)
Info: cfl dt = 8.221691435370798e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4938e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.029534967780572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010523727318435209, dt = 8.221691435370798e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 277.31 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.6%)
Info: cfl dt = 8.22170316348068e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5490e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0544880525115286 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010605944232788917, dt = 8.22170316348068e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 2.53 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 290.48 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.2%)
Info: cfl dt = 8.221719084054263e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5481e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.054056020789861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010688161264423724, dt = 8.221719084054263e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 272.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (59.9%)
Info: cfl dt = 8.221740548382683e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1385e+05 | 65536 |      2 | 1.584e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.869071787824747 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010770378455264266, dt = 8.221740548382683e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 327.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.9%)
Info: cfl dt = 8.221769291446321e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5265e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.044320323659293 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010852595860748092, dt = 8.221769291446321e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 292.36 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.8%)
Info: cfl dt = 8.221807524004319e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3813e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9787318363941693 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010934813553662555, dt = 8.221807524004319e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 294.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (62.4%)
Info: cfl dt = 8.221858041731437e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5273e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0446813798410046 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011017031628902598, dt = 8.221858041731437e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.5%)
   patch tree reduce : 2.44 us    (0.9%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 248.34 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.3%)
Info: cfl dt = 8.221924353143362e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2200e+05 | 65536 |      2 | 2.035e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4542855763725695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011099250209319914, dt = 8.221924353143362e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 300.69 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.9%)
Info: cfl dt = 8.222010827833035e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2083e+05 | 65536 |      2 | 2.043e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4490218660580474 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011181469452851348, dt = 8.222010827833035e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.05 us    (1.6%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 352.79 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
Info: cfl dt = 8.222122866182599e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3716e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9744228805447195 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011263689561129678, dt = 8.222122866182599e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 305.40 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (60.8%)
Info: cfl dt = 8.222267091196441e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5985e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0769310826896357 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011345910789791504, dt = 8.222267091196441e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 264.34 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (56.2%)
Info: cfl dt = 8.222451562402441e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8002e+05 | 65536 |      2 | 1.725e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7163870866134523 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011428133460703468, dt = 8.222451562402441e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.9%)
   patch tree reduce : 18.04 us   (5.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 282.53 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.1%)
Info: cfl dt = 8.222686010880407e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4498e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0098522807686128 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011510357976327493, dt = 8.222686010880407e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 307.26 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.8%)
Info: cfl dt = 8.222982093397195e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4058e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9900276759031101 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011592584836436298, dt = 8.222982093397195e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (0.5%)
   patch tree reduce : 2.36 us    (0.2%)
   gen split merge   : 1192.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.1%)
   LB compute        : 1354.22 us (97.0%)
   LB move op cnt    : 0
   LB apply          : 22.54 us   (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.65 us    (69.6%)
Info: cfl dt = 8.223353662370028e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5155e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.039643346487604 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01167481465737027, dt = 8.223353662370028e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 267.74 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.3%)
Info: cfl dt = 8.223817046970688e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8314e+05 | 65536 |      2 | 2.315e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.278990036916558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01175704819399397, dt = 8.223817046970688e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.9%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 329.86 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.5%)
Info: cfl dt = 8.22439133917082e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5803e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.069145437502454 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011839286364463675, dt = 8.22439133917082e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 259.13 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.3%)
Info: cfl dt = 8.225098676978775e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6274e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0905421000330677 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011921530277855384, dt = 7.846972214461609e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 276.09 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (60.5%)
Info: cfl dt = 8.225915943778646e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5643e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.967444941323162 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 557.492238187 (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  1951.67 us                          [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.27 us    (61.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     : 1062.00 ns (0.3%)
   patch tree reduce : 1332.00 ns (0.4%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 291.83 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 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 : 557.67006805 (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.14 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 306.82 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (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.4644e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.5%)
   LB compute        : 275.64 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4257e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9987571126808148 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 8.221661412416737e-05, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.7%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 329.52 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3385e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.959404803480189 (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     : 7.06 us    (2.1%)
   patch tree reduce : 2.40 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 306.19 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3427e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.961285498604394 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.66 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 281.13 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (59.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6489e+05 | 65536 |      2 | 1.796e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0693615284056017 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 558.521494277 (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     : 9.13 us    (2.3%)
   patch tree reduce : 2.14 us    (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 370.87 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (65.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3489e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9641081654992556 (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     : 6.06 us    (1.9%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 292.76 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.4%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9438e+05 | 65536 |      2 | 1.662e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7811552346683301 (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     : 6.26 us    (2.1%)
   patch tree reduce : 2.57 us    (0.9%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 275.03 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2985e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.94132376869915 (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     : 6.72 us    (2.3%)
   patch tree reduce : 2.52 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 266.49 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6669e+05 | 65536 |      2 | 1.787e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0746346526249952 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 559.242378206 (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     : 9.34 us    (2.5%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 342.72 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 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    | 4.1795e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8875632654049221 (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     : 7.09 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 278.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2422e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9159078696357823 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 266.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.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    | 3.8578e+05 | 65536 |      2 | 1.699e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7422927607101022 (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     : 6.81 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 270.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.3673e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2798974470972264 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 559.942084839 (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     : 8.80 us    (2.3%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 362.89 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8932e+05 | 65536 |      2 | 1.683e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7582950634328758 (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     : 6.46 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1482.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 268.97 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3733e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9751079836961498 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.66 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 273.44 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (61.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3964e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9855523160096111 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 254.45 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (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.3525e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.275560700178563 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 560.630973622 (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.66 us    (1.9%)
   patch tree reduce : 2.41 us    (0.5%)
   gen split merge   : 1001.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 442.65 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3282e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9547357903040061 (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     : 6.74 us    (2.6%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 234.78 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (64.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2948e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.93964650104732 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0013644332282483347, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 278.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (68.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.4043e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9891219920466825 (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     : 6.35 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 302.21 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9079e+05 | 65536 |      2 | 2.254e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.8521991394349059 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 561.379467483 (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     : 8.11 us    (2.0%)
   patch tree reduce : 2.19 us    (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 383.71 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3327e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9567583682513083 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0015822166141241673, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 2.56 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 254.71 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (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    | 4.4579e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.013301517419362 (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     : 6.62 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 248.12 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 3.1450e+05 | 65536 |      2 | 2.084e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4203843328225625 (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     : 6.76 us    (2.0%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 308.04 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9280e+05 | 65536 |      2 | 1.668e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.151145106446586 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 562.120617122 (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     : 8.61 us    (2.2%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 971.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 367.89 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (69.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5807e+05 | 65536 |      2 | 1.830e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.617139948472235 (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     : 6.88 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 279.42 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (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.3711e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.974098190758345 (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     : 6.33 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 288.34 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.3742e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9755207265315675 (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     : 6.21 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 274.38 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (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.3024e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2608686077494842 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 562.835399346 (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     : 8.65 us    (2.6%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 313.38 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4050e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9894252873941183 (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     : 7.43 us    (0.6%)
   patch tree reduce : 2.61 us    (0.2%)
   gen split merge   : 1172.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.1%)
   LB compute        : 1310.52 us (98.0%)
   LB move op cnt    : 0
   LB apply          : 5.39 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (73.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.4088e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9911338505907616 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002264433228248335, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 277.71 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4134e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.993214841605197 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.002346649842372502, dt = 5.3350157627498045e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 310.34 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1155e+05 | 65536 |      2 | 2.104e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.913027835510392 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 563.5631278540001 (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.93 us    (1.9%)
   patch tree reduce : 2.32 us    (0.5%)
   gen split merge   : 1292.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.2%)
   LB compute        : 443.78 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2174e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9046806707762345 (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     : 6.14 us    (2.1%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 270.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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    | 4.3844e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9801158380347064 (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     : 6.62 us    (2.5%)
   patch tree reduce : 2.45 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 243.31 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.3226e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9522046134348616 (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     : 6.28 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 270.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (60.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3070e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2622032331720234 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 564.2388296500001 (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     : 9.02 us    (2.5%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 320.80 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (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.3991e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9867624723393429 (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     : 6.41 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 274.80 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1794e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8875552002281197 (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     : 6.55 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 308.79 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1776e+05 | 65536 |      2 | 2.062e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4350971439735318 (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     : 6.53 us    (1.8%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 333.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (63.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2467e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2445328048540092 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 564.97540976 (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     : 8.21 us    (2.2%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 351.34 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (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.2949e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9397179781884317 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 277.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3203e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9511880628548137 (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     : 6.18 us    (1.9%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 303.55 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.3%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2991e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9416004727424456 (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     : 6.50 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 307.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.2159e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2355123399919883 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 565.670369153 (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     : 8.28 us    (2.4%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 313.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (65.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2515e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9201241022386002 (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     : 6.11 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 296.26 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3188e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9504900802016658 (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     : 6.64 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 249.86 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.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.2978e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.940993999460252 (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     : 6.61 us    (2.2%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 274.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.2%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3359e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2706850332951307 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 566.3492556450001 (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     : 8.60 us    (2.5%)
   patch tree reduce : 2.25 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 323.96 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (63.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7938e+05 | 65536 |      2 | 1.727e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7133787722295597 (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     : 6.65 us    (2.3%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 266.13 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.7%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4654e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.016703634459597 (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     : 6.81 us    (2.1%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 296.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.1%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4320e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.001623405987926 (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     : 6.30 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 249.28 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.3141e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2642874806859061 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 567.0468522350001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0039000000000000003, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.49 us    (2.6%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 308.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.5%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3700e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9735998665742318 (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     : 6.53 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 286.13 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1952.00 ns (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    | 3.7159e+05 | 65536 |      2 | 1.764e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6782077924956516 (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     : 6.96 us    (2.7%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 238.74 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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.2417e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9156569630728797 (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     : 6.71 us    (2.4%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 253.05 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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.1820e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2255934309495988 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 567.7553659710001 (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     : 8.14 us    (2.3%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 328.20 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.0%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4445e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0072511934465025 (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     : 6.59 us    (2.5%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 245.93 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.6%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2802e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.933066626268495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004364433228248336, dt = 8.221661412416737e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.67 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 292.72 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.2897e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.937361871138795 (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     : 6.74 us    (2.6%)
   patch tree reduce : 2.63 us    (1.0%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 239.20 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (64.9%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3749e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2821174013464158 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 568.428432573 (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.86 us    (2.0%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 373.37 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.8%)
Info: cfl dt = 8.221661412416737e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2270e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.909018750364754 (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     : 6.65 us    (2.4%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1231.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 250.82 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.5%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1902e+05 | 65536 |      2 | 1.564e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8923997904011647 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004664433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 278.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.6%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4266e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9991631367739542 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 260.68 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2638e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2495398814203313 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 569.112429561 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0048000000000000004, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.19 us    (2.2%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 340.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1962.00 ns (63.2%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4752e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.569490425283035 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004882216614124168, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.51 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 293.27 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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    | 4.3459e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9627335353636899 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004964433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 274.40 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (56.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    | 3.6607e+05 | 65536 |      2 | 1.790e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6532984137005637 (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     : 7.06 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 266.69 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (60.2%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3971e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2886085253553292 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 569.860103124 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0051, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.43 us    (2.3%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 345.19 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.3%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4200e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9961865168258512 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005182216614124168, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 269.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.7%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4360e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.003424633480124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.005264433228248336, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 267.21 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (62.7%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2005e+05 | 65536 |      2 | 2.048e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4454622460481816 (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     : 6.04 us    (1.7%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 330.76 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (58.3%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4781e+05 | 65536 |      2 | 1.884e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0192850186178353 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 570.620170907 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0054, dt = 8.22166141241674e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.90 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 342.31 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.6%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4035e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9887357770126444 (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     : 6.69 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 266.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (57.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.4283e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9999684635287034 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 262.49 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.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.4412e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0057600877843007 (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     : 6.61 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 253.97 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (58.4%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2244e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2380114643608857 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 571.287013468 (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.83 us    (2.1%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 352.79 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (65.0%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4872e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0265600650315627 (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     : 6.32 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 238.03 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (61.5%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4907e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.028132589571426 (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.52 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 236.02 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (60.9%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4866e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0262593663690445 (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     : 6.32 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 308.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4740e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3111562895112208 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 571.9425989780001 (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.36 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 336.10 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (66.4%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3342e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9574597447531348 (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     : 6.78 us    (2.6%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 243.37 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.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.3415e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9607263365376502 (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     : 6.01 us    (2.3%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 243.38 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.0%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3273e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9543408868368726 (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     : 7.04 us    (2.6%)
   patch tree reduce : 2.56 us    (1.0%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 245.72 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2539e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.246658378044287 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 572.621839654 (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     : 8.15 us    (2.5%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 308.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.3%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2542e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9213141748474694 (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     : 6.33 us    (2.4%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 238.67 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (60.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.3407e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9603977987801364 (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     : 6.83 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 241.26 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (63.2%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3144e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9484995714029112 (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     : 6.13 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 261.99 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (61.5%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3080e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2624961090011722 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 573.300497959 (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.24 us    (2.0%)
   patch tree reduce : 1592.00 ns (0.4%)
   gen split merge   : 14.91 us   (4.1%)
   split / merge op  : 0/0
   apply split merge : 3.50 us    (1.0%)
   LB compute        : 329.25 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (68.4%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0454e+05 | 65536 |      2 | 1.620e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.827021320922831 (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     : 6.17 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 261.33 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.9%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4528e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0110268512072 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.53 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 281.17 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.6%)
Info: cfl dt = 8.22166141241674e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9935e+05 | 65536 |      2 | 1.641e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8035986614861828 (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     : 6.45 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1462.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1753.00 ns (0.6%)
   LB compute        : 284.79 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (57.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.4341e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2994520258187368 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 573.991479777 (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     : 9.18 us    (2.6%)
   patch tree reduce : 2.54 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 327.31 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 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    | 4.3715e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.974302676902817 (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     : 6.57 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 263.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (62.2%)
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.2907e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9378118909642665 (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     : 6.71 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 258.98 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.6%)
Info: cfl dt = 8.221661412416774e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3409e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9604877857221064 (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     : 6.46 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 280.03 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.6%)
Info: cfl dt = 8.221661412416797e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3000e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2601739171276904 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 574.675251453 (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.78 us    (2.1%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 346.51 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.6%)
Info: cfl dt = 8.221661412416859e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1878e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8913509188461537 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007282216614124168, dt = 8.221661412416859e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 246.04 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (58.5%)
Info: cfl dt = 8.221661412416983e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3168e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9495962765902193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007364433228248337, dt = 8.221661412416983e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 297.84 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (60.4%)
Info: cfl dt = 8.221661412417222e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1181e+05 | 65536 |      2 | 2.102e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4082060988495055 (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     : 6.35 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 312.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.9%)
Info: cfl dt = 8.2216614124175e-05                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1280e+05 | 65536 |      2 | 1.588e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.209743465661272 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 575.424160535 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.007500000000000001, dt = 8.2216614124175e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.95 us    (2.2%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 338.29 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.05 us    (68.5%)
Info: cfl dt = 8.221661412418221e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4340e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.002522571454084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007582216614124175, dt = 8.221661412418221e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 280.47 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.2%)
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    | 3.2297e+05 | 65536 |      2 | 2.029e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4586249150388193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007664433228248358, dt = 8.221661412419575e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.6%)
   patch tree reduce : 2.15 us    (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 370.39 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.0%)
Info: cfl dt = 8.221661412422092e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1551e+05 | 65536 |      2 | 2.077e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.4249288062165522 (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     : 6.32 us    (1.5%)
   patch tree reduce : 2.12 us    (0.5%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 406.27 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.3%)
Info: cfl dt = 8.22166141242484e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0803e+05 | 65536 |      2 | 2.128e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.9027041429885638 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 576.265239614 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0078000000000000005, dt = 8.22166141242484e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.65 us    (2.3%)
   patch tree reduce : 2.60 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 392.48 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.8%)
Info: cfl dt = 8.221661412431759e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1086e+05 | 65536 |      2 | 1.595e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8555480373049666 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007882216614124249, dt = 8.221661412431759e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 266.52 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (57.6%)
Info: cfl dt = 8.221661412444174e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2183e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9050989205613231 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007964433228248566, dt = 8.221661412444174e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 273.22 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.6%)
Info: cfl dt = 8.221661412466216e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4744e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5691529278292267 (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     : 6.72 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1412.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 275.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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    | 3.6858e+05 | 65536 |      2 | 1.778e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0801540278286876 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 577.019398784 (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     : 8.37 us    (2.4%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 326.81 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.1%)
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.3039e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9437546655731421 (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     : 6.58 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 283.12 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.8%)
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    | 3.4686e+05 | 65536 |      2 | 1.889e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.5665303523899115 (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     : 6.40 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 280.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.3%)
Info: cfl dt = 8.221661412807881e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3270e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9542016064892604 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008346649842376777, dt = 5.335015762322412e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 237.18 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (55.1%)
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    | 4.2379e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.241958791259171 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 577.735627825 (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     : 9.03 us    (2.5%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 334.55 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (62.2%)
Info: cfl dt = 8.221661413369184e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0351e+05 | 65536 |      2 | 1.624e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.82238954117347 (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     : 22.07 us   (7.8%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 245.97 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (57.1%)
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    | 4.2337e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9120712367038957 (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     : 6.50 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 279.37 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.6%)
Info: cfl dt = 8.221661415098693e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3093e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9462045449846401 (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     : 6.83 us    (2.2%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 291.83 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.1%)
Info: cfl dt = 8.221661416141767e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4586e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3066427453201277 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 578.420970184 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.008700000000000001, dt = 8.221661416141767e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.83 us    (2.1%)
   patch tree reduce : 2.37 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 355.99 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.4%)
Info: cfl dt = 8.221661418557305e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4300e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0007246698675685 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008782216614161419, dt = 8.221661418557305e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.6%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 241.41 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (66.6%)
Info: cfl dt = 8.221661422422239e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4757e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0213459614977736 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008864433228346992, dt = 8.221661422422239e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 261.17 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.8%)
Info: cfl dt = 8.221661428554604e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4695e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0185558528800196 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 266.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.6%)
Info: cfl dt = 8.221661434307755e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2687e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.250976352660626 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 579.084838257 (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.80 us    (2.2%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 337.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.3%)
Info: cfl dt = 8.221661447329104e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3042e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9439139782188048 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 247.51 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.7%)
Info: cfl dt = 8.221661467494495e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2584e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9232107309680915 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00916443322881637, dt = 8.221661467494495e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1412.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 239.39 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.5%)
Info: cfl dt = 8.221661498481748e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4072e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9903985557395996 (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     : 6.57 us    (2.6%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1251.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 226.64 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (64.7%)
Info: cfl dt = 8.221661526653278e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4509e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.304395396382516 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 579.75643369 (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     : 9.37 us    (2.8%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 312.93 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (61.5%)
Info: cfl dt = 8.221661589079605e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4365e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0036383473949573 (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     : 6.28 us    (1.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 314.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.99 us    (65.4%)
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.3984e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9864534716266729 (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     : 6.73 us    (2.5%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 251.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.6%)
Info: cfl dt = 8.221661822686468e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4265e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9991345087961003 (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     : 6.45 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 262.66 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.4%)
Info: cfl dt = 8.221661946123446e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4473e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3033413084280012 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 580.431081024 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.009600000000000001, dt = 8.221661946123446e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.01 us    (2.0%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 367.50 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.2%)
Info: cfl dt = 8.221662214317213e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4089e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.991186395392743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009682216619461236, dt = 8.221662214317213e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 291.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (67.0%)
Info: cfl dt = 8.22166260577189e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9366e+05 | 65536 |      2 | 1.665e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7778690889457531 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009764433241604408, dt = 8.22166260577189e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 241.91 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
Info: cfl dt = 8.22166317326734e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3316e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9562887092791479 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009846649867662127, dt = 5.335013233787392e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 269.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (60.5%)
Info: cfl dt = 8.221663660463793e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3609e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.277996291613078 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 581.1179559990001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0099, dt = 8.221663660463793e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.47 us    (2.5%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 319.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.2%)
Info: cfl dt = 8.221664699651166e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4558e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.012365423534553 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.00998221663660464, dt = 8.221664699651166e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.5%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 235.46 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (56.8%)
Info: cfl dt = 8.221666175779364e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4606e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.014555422928453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01006443328360115, dt = 8.221666175779364e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 283.26 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.2%)
Info: cfl dt = 8.22166825914724e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4046e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.989250173737181 (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     : 6.55 us    (2.5%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 241.38 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (57.0%)
Info: cfl dt = 8.221670001062295e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1947e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2292907065033059 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 581.786363744 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0102, dt = 8.221670001062295e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.71 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 312.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (63.6%)
Info: cfl dt = 8.221673652452565e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4542e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0116652069440617 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010282216700010624, dt = 8.221673652452565e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.34 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 289.53 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
Info: cfl dt = 8.221678706520262e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3274e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9543758902424038 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01036443343653515, dt = 8.221678706520262e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 262.36 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.8%)
Info: cfl dt = 8.22168565951049e-05                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3021e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9429477986576087 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010446650223600352, dt = 5.334977639964884e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 295.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.7%)
Info: cfl dt = 8.221691327777472e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2155e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2353800846706264 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 582.4614820710001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0105, dt = 8.221691327777472e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.24 us    (2.2%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 348.72 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (61.1%)
Info: cfl dt = 8.221703014816065e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2216e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9065948090814873 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010582216913277775, dt = 8.221703014816065e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 266.20 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.2%)
Info: cfl dt = 8.221718794449508e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3328e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9568305864145923 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010664433943425936, dt = 8.221718794449508e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 261.69 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.9%)
Info: cfl dt = 8.221739975523554e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2376e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9138487006356015 (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     : 6.63 us    (2.4%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 250.15 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.0%)
Info: cfl dt = 8.221756827208893e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2917e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.25769889217304 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 583.1456772260001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0108, dt = 8.221756827208893e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.03 us    (2.7%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 312.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (67.6%)
Info: cfl dt = 8.221791028250544e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4118e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9925423520136663 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010882217568272089, dt = 8.221791028250544e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.4%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 245.97 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (57.2%)
Info: cfl dt = 8.221836110819141e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4813e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.0239173178279706 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010964435478554593, dt = 8.221836110819141e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.76 us    (1.0%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 262.93 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.5%)
Info: cfl dt = 8.221895202229865e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3548e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9667956738529448 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 258.79 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.8%)
Info: cfl dt = 8.221941115122871e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5373e+05 | 65536 |      2 | 1.853e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.0365687926755458 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 583.8461236320001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0111, dt = 8.221941115122871e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.42 us    (2.5%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 315.74 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (67.6%)
Info: cfl dt = 8.222032894483579e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1428e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8710776716043334 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01118221941115123, dt = 8.222032894483579e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 249.42 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (61.1%)
Info: cfl dt = 8.222151083568567e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3699e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9736813677935423 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011264439740096065, dt = 8.222151083568567e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.4%)
   patch tree reduce : 2.55 us    (1.0%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 246.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (47.8%)
Info: cfl dt = 8.222302447867297e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2710e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9290125139087622 (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     : 6.99 us    (2.5%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 257.10 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.6%)
Info: cfl dt = 8.222417351668559e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2926e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2577165382167426 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 584.528168477 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.0114, dt = 8.222417351668559e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.61 us    (2.6%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 305.37 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (68.9%)
Info: cfl dt = 8.222643719360103e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2358e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.913165623225916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011482224173516686, dt = 8.222643719360103e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.6%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 231.98 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.6%)
Info: cfl dt = 8.222928642163885e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2327e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9118553647629413 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011564450610710287, dt = 8.222928642163885e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.5%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 235.93 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.0%)
Info: cfl dt = 8.223285343814189e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2291e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9102606762211622 (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     : 6.23 us    (2.3%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 244.56 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (55.8%)
Info: cfl dt = 8.223549926029232e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2900e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2565185164753971 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 585.2158178760001 (s)                                    [Godunov][rank=0]
amr::Godunov: t = 0.0117, dt = 8.223549926029232e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.40 us    (2.2%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 363.81 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (65.0%)
Info: cfl dt = 8.224063974063606e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2308e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.911186766705266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011782235499260293, dt = 8.224063974063606e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 258.26 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.7%)
Info: cfl dt = 8.224696627570122e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2912e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9385855923746116 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01186447613900093, dt = 8.224696627570122e-05
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 294.77 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.3%)
Info: cfl dt = 8.225471153671995e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3255e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.9542493200517472 (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     : 6.49 us    (2.0%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 301.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.7%)
Info: cfl dt = 8.226032306387038e-05                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2629e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.2475661308602064 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 585.8990402420001 (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])}]}
357 plot, anim = run_and_plot(cases, 6, "minmod_hllc")
  • Test 6 - t=2.0 (Last Step)
running none hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  16.10 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.38 us    (57.4%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1112.00 ns (0.2%)
   patch tree reduce : 1332.00 ns (0.2%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.2%)
   LB compute        : 567.70 us  (98.1%)
   LB move op cnt    : 0
   LB apply          : 2.95 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     : 12.34 us   (2.6%)
   patch tree reduce : 1632.00 ns (0.3%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 440.90 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.21 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.2505e+05 | 65536 |      2 | 2.912e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (1.5%)
   patch tree reduce : 1923.00 ns (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.2%)
   LB compute        : 452.91 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (67.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7783e+05 | 65536 |      2 | 1.735e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.22359443483265 (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     : 6.38 us    (1.8%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 336.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1611e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.55418087489403 (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     : 6.77 us    (1.9%)
   patch tree reduce : 1812.00 ns (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 339.67 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4838e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5762643185364 (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.49 us    (2.1%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1382.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 287.13 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4278e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.35894151846247 (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     : 6.97 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 295.14 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6099e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.32129134271236 (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     : 6.85 us    (1.6%)
   patch tree reduce : 1843.00 ns (0.4%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 397.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5329e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64440473400717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.0%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 312.90 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6259e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.66809888146443 (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     : 6.85 us    (2.1%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 304.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5033e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.00155439791219 (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     : 6.62 us    (0.9%)
   patch tree reduce : 1903.00 ns (0.3%)
   gen split merge   : 1172.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.2%)
   LB compute        : 678.17 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (68.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.5084e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.11109739236245 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.6%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1412.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.5%)
   LB compute        : 237.50 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.6225e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.59474742359201 (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     : 6.60 us    (2.7%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 226.61 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (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.6152e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.43582361444858 (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     : 7.05 us    (2.5%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 264.40 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6141e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.41219083701876 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 289.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6279e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7126326449359 (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.13 us    (2.2%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 253.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.6384e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.94065445856425 (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     : 6.62 us    (2.3%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 262.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.5259e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49342499122447 (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     : 6.81 us    (2.7%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.5%)
   LB compute        : 230.81 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.6565e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.33513508085043 (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     : 7.18 us    (2.5%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 265.67 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.5816e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.70433828102169 (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     : 6.54 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 293.19 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (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.4801e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49521106534831 (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     : 6.35 us    (2.5%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 237.20 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.5880e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.84468288261799 (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     : 6.49 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 279.02 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5518e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.05689831262208 (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     : 6.57 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 298.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5603e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.24241878671283 (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     : 6.89 us    (2.6%)
   patch tree reduce : 1832.00 ns (0.7%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.5%)
   LB compute        : 243.53 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2422e+05 | 65536 |      2 | 2.021e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.55727344618647 (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     : 6.29 us    (1.8%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 329.60 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3516e+05 | 65536 |      2 | 1.955e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.93712143344032 (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     : 22.16 us   (7.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 273.88 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (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.4999e+05 | 65536 |      2 | 1.873e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.16542138455384 (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     : 6.56 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 261.15 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (58.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4903e+05 | 65536 |      2 | 1.878e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.95517061915119 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.5%)
   LB compute        : 252.97 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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    | 3.4347e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.74531262546977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 258.93 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4168e+05 | 65536 |      2 | 1.918e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.35572453020669 (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     : 6.67 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 327.12 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5719e+05 | 65536 |      2 | 1.835e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.7327105267487 (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     : 6.55 us    (2.0%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 300.28 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4873e+05 | 65536 |      2 | 1.879e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.89037324740349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 300.61 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3707e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.1150164103248 (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     : 6.41 us    (1.8%)
   patch tree reduce : 1912.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.4%)
   LB compute        : 327.02 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (67.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4777e+05 | 65536 |      2 | 1.884e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.68158476645964 (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     : 6.33 us    (1.8%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 338.95 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4788e+05 | 65536 |      2 | 1.884e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.70532675136407 (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     : 7.28 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1613.00 ns (0.5%)
   LB compute        : 304.76 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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    | 3.3233e+05 | 65536 |      2 | 1.972e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.3218596496146 (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     : 6.92 us    (1.8%)
   patch tree reduce : 2.30 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 367.24 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6433e+05 | 65536 |      2 | 1.799e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.28629135046059 (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     : 7.11 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 296.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (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.3730e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.16574010296279 (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     : 6.65 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 244.47 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (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.6129e+05 | 65536 |      2 | 1.814e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.62364314905979 (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     : 6.48 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 282.83 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.5741e+05 | 65536 |      2 | 1.834e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.78076364850106 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 263.66 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.4044e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.84924126756735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 245.30 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2783e+05 | 65536 |      2 | 1.999e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.34343842448612 (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     : 6.57 us    (1.9%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 319.52 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (62.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3232e+05 | 65536 |      2 | 1.972e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.31862770605592 (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     : 6.56 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 269.68 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (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.5124e+05 | 65536 |      2 | 1.866e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.4374189350834 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.8%)
   patch tree reduce : 1812.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 321.66 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4048e+05 | 65536 |      2 | 1.925e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.09648760829785 (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     : 6.75 us    (2.4%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 261.75 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (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.2494e+05 | 65536 |      2 | 2.017e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.71330471906137 (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     : 6.82 us    (1.9%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 329.29 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3579e+05 | 65536 |      2 | 1.952e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.07478814142294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.4%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 259.22 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.3882e+05 | 65536 |      2 | 1.934e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.73461966101925 (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     : 6.68 us    (2.2%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 287.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (61.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4082e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.17048103788179 (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.42 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 260.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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    | 3.5307e+05 | 65536 |      2 | 1.856e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.83622550196372 (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     : 6.70 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 262.41 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (60.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4811e+05 | 65536 |      2 | 1.883e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.75623664652832 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.6%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.4%)
   LB compute        : 386.64 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4708e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.53193147263462 (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     : 6.13 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 280.35 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.6840e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.93306068432594 (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     : 7.14 us    (2.7%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1563.00 ns (0.6%)
   LB compute        : 240.54 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5011e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.95374132970325 (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     : 6.40 us    (2.4%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 243.50 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (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.6185e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.50870399206443 (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     : 6.70 us    (2.5%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 249.83 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.7%)
Info: cfl dt = 0.0039616605690399225                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5822e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.71866699152812 (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     : 6.48 us    (2.2%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 267.98 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (59.1%)
Info: cfl dt = 0.003961660569039923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5374e+05 | 65536 |      2 | 1.853e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.98024965908832 (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     : 7.00 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 262.67 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (61.5%)
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.5422e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.84778286822042 (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     : 6.39 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 263.78 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (62.6%)
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.4341e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.49601697931786 (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     : 6.38 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 250.51 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.3%)
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    | 4.5948e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.99191726231538 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2258146524352757, dt = 0.003961660569039934
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 301.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.4%)
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    | 4.5315e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.61423313506643 (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     : 6.37 us    (2.2%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.5%)
   LB compute        : 272.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (61.8%)
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    | 4.5018e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96928799287596 (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     : 6.12 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 247.30 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.1%)
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    | 3.5734e+05 | 65536 |      2 | 1.834e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.76431645501653 (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     : 6.60 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 295.34 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
Info: cfl dt = 0.0039616605690400136                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8955e+05 | 65536 |      2 | 1.682e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.77312975900881 (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.40 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 292.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.2%)
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    | 3.4737e+05 | 65536 |      2 | 1.887e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.59440418078114 (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.67 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 296.55 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.7%)
Info: cfl dt = 0.003961660569040146                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9968e+05 | 65536 |      2 | 1.640e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97879695260906 (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     : 6.37 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 278.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
Info: cfl dt = 0.003961660569040265                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3667e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.02748021151973 (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     : 6.48 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 251.83 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (63.8%)
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    | 4.5563e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.15414300390249 (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     : 6.16 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 268.77 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.7%)
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    | 3.4647e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.39975225653257 (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     : 6.83 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 262.05 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.0%)
Info: cfl dt = 0.0039616605690410474                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6342e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.84937514195606 (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     : 6.45 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.4%)
   LB compute        : 262.91 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.3%)
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    | 3.5662e+05 | 65536 |      2 | 1.838e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.60716746853029 (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     : 6.35 us    (2.1%)
   patch tree reduce : 1732.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1503.00 ns (0.5%)
   LB compute        : 277.29 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
Info: cfl dt = 0.003961660569042265                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3474e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.60793163386037 (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     : 6.40 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 247.88 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.8%)
Info: cfl dt = 0.00396166056904325                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2191e+05 | 65536 |      2 | 2.036e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.05425838153634 (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     : 6.57 us    (1.8%)
   patch tree reduce : 1922.00 ns (0.5%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1592.00 ns (0.4%)
   LB compute        : 341.13 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (60.0%)
Info: cfl dt = 0.003961660569044601                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3878e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.4868056913203 (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     : 6.89 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 287.67 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (58.9%)
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    | 2.9616e+05 | 65536 |      2 | 2.213e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.45002953833438 (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     : 7.29 us    (1.9%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1201.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 7.30 us    (1.9%)
   LB compute        : 353.86 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.45 us    (67.5%)
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    | 3.4318e+05 | 65536 |      2 | 1.910e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.6831296733009 (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     : 6.38 us    (2.0%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 292.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.4%)
Info: cfl dt = 0.00396166056905222                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3928e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.59549319827222 (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     : 6.60 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 277.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (58.2%)
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    | 3.8022e+05 | 65536 |      2 | 1.724e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.7441332137109 (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     : 6.94 us    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 275.50 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.5%)
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    | 4.4412e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.65017217509755 (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     : 6.49 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 293.05 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.8%)
Info: cfl dt = 0.0039616605690698985                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4778e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.44607098555123 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 281.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.7%)
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    | 3.8766e+05 | 65536 |      2 | 1.691e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.36351764900363 (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     : 6.43 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 309.37 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.2%)
Info: cfl dt = 0.003961660569092218                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4692e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.25914184275956 (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     : 6.39 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 296.42 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.5%)
Info: cfl dt = 0.0039616605691082845                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4058e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.88007902496402 (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     : 6.91 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 281.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.5%)
Info: cfl dt = 0.003961660569128702                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6477e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.14267893023293 (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     : 6.86 us    (2.4%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 259.63 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (62.6%)
Info: cfl dt = 0.003961660569154493                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5442e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8905070504722 (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     : 6.59 us    (2.0%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 302.71 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (68.6%)
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    | 3.4265e+05 | 65536 |      2 | 1.913e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.56745684079553 (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     : 6.52 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 280.52 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (61.1%)
Info: cfl dt = 0.003961660569227325                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5190e+05 | 65536 |      2 | 1.862e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.57964129880139 (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     : 7.09 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1392.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 288.51 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.7%)
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    | 3.4563e+05 | 65536 |      2 | 1.896e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.21629278973973 (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     : 6.58 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 265.85 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (62.5%)
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    | 3.4020e+05 | 65536 |      2 | 1.926e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.03459776422125 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089384815, dt = 0.003961660569339608
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1483.00 ns (0.5%)
   LB compute        : 261.33 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.5%)
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    | 3.2982e+05 | 65536 |      2 | 1.987e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.77664804823878 (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     : 6.39 us    (2.0%)
   patch tree reduce : 1952.00 ns (0.6%)
   gen split merge   : 1342.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 303.15 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.5%)
Info: cfl dt = 0.003961660569509195                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3927e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.5950568518807 (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     : 6.35 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 303.91 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (60.7%)
Info: cfl dt = 0.0039616605696227965                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5801e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.6733679432882 (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     : 6.15 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 281.95 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.9%)
Info: cfl dt = 0.003961660569760479                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4475e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.78718739965196 (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     : 6.01 us    (2.0%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 283.78 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (60.6%)
Info: cfl dt = 0.003961660569926615                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4630e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.12307254302966 (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     : 6.66 us    (2.2%)
   patch tree reduce : 1822.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.5%)
   LB compute        : 278.37 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (60.2%)
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.4786e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.4633244763519 (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     : 6.22 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 271.09 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.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.6112e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.34922352191708 (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     : 6.32 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 263.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.5%)
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.6621e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.4560361679901 (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     : 6.83 us    (2.5%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.5%)
   LB compute        : 245.29 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
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.5197e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35710387233978 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 243.27 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.8%)
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.4878e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.66309464402714 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 262.76 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (64.1%)
Info: cfl dt = 0.003961660571859057                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5419e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.84153315274226 (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     : 6.28 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 238.93 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.6%)
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.7161e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.63234714971036 (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     : 6.37 us    (2.3%)
   patch tree reduce : 2.58 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 249.85 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.1%)
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.6387e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.94732407842356 (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     : 6.67 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 64.30 us   (18.0%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 270.66 us  (75.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
Info: cfl dt = 0.003961660573816728                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4901e+05 | 65536 |      2 | 1.878e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.95235820568853 (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     : 7.22 us    (2.6%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 260.13 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (55.9%)
Info: cfl dt = 0.0039616605746960794                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4711e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.53767068286609 (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     : 6.43 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 258.88 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (59.6%)
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    | 3.9996e+05 | 65536 |      2 | 1.639e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.04034026872476 (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     : 6.32 us    (2.4%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 237.39 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.2%)
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.5994e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.0920253796793 (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     : 6.72 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 255.58 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (56.3%)
Info: cfl dt = 0.003961660578252845                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7391e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.13288700741832 (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     : 6.43 us    (1.8%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.3%)
   LB compute        : 333.64 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (63.4%)
Info: cfl dt = 0.0039616605798143655                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2884e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.56212363668031 (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     : 6.91 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 275.39 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.1%)
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    | 3.2112e+05 | 65536 |      2 | 2.041e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.88321653453612 (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     : 6.33 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 306.78 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
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.0880e+05 | 65536 |      2 | 1.603e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9632442244999 (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     : 6.98 us    (2.4%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 263.86 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.9%)
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.3000e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.57769494032614 (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     : 6.66 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 284.83 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.4%)
Info: cfl dt = 0.003961660588637555                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4344e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.74045422719487 (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     : 6.37 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.5%)
   LB compute        : 280.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.7%)
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    | 3.4274e+05 | 65536 |      2 | 1.912e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.58722530517593 (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     : 6.54 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 267.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.5%)
Info: cfl dt = 0.003961660595056887                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1222e+05 | 65536 |      2 | 2.099e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.94620105659025 (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     : 6.66 us    (1.7%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 362.15 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.1%)
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.4927e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7703710501967 (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     : 6.45 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 284.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.3%)
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.3694e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.08808266249409 (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     : 6.51 us    (2.2%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 270.33 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (62.8%)
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.5834e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.74491483514112 (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     : 6.37 us    (0.8%)
   patch tree reduce : 2.05 us    (0.3%)
   gen split merge   : 1032.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.1%)
   LB compute        : 796.78 us  (97.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.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    | 3.7264e+05 | 65536 |      2 | 1.759e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.09409180265318 (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     : 6.49 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 283.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.2%)
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.6430e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.04228663649889 (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     : 6.76 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 293.39 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.3%)
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.5977e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.05525308257559 (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     : 7.00 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 273.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.0%)
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.5807e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.685712428106 (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     : 6.30 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 252.47 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.1%)
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.5001e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.93118231081452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4714376082169916, dt = 0.003961660642680472
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 286.78 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.7%)
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.5812e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.69731810206228 (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     : 6.39 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 239.34 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.5%)
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.5528e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.07849322220375 (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     : 6.08 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 263.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.4%)
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.4884e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67727702896535 (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     : 6.79 us    (2.3%)
   patch tree reduce : 1713.00 ns (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 272.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.7%)
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.5764e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.59232048171359 (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.45 us    (2.1%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 281.33 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (61.8%)
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.5316e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.61683677818385 (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     : 6.39 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 239.77 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.9%)
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.4240e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.27503110764594 (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     : 6.45 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 245.06 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (61.3%)
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.3610e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.90449962397275 (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     : 6.58 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 235.83 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.0%)
Info: cfl dt = 0.003961660752468113                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5215e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39642251361398 (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     : 6.51 us    (2.5%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 240.21 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.7%)
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.5612e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.26176481351435 (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     : 6.51 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 280.00 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.1%)
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.5757e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.57762242512582 (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     : 6.24 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 312.29 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (66.0%)
Info: cfl dt = 0.003961660820142447                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5095e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.13491681540523 (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.89 us    (2.2%)
   patch tree reduce : 1812.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 245.34 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (64.4%)
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    | 4.5645e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.3336725614563 (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     : 6.15 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 271.68 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.5%)
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.4392e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6050217693796 (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     : 6.49 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 290.05 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (61.5%)
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.5220e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.40835299539435 (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.66 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.5%)
   LB compute        : 259.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (56.1%)
Info: cfl dt = 0.003961660942680681                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9124e+05 | 65536 |      2 | 1.675e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.141580284738 (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     : 6.18 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 311.82 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.5%)
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    | 4.1142e+05 | 65536 |      2 | 1.593e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.53293948817235 (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     : 6.21 us    (1.8%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 322.92 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.5%)
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.5748e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.55719482392146 (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     : 6.58 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 264.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.6%)
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    | 4.5157e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.27159148989782 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5427475024032263, dt = 0.003961661065029497
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 298.58 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.3%)
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    | 4.4678e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.22905019222766 (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     : 6.40 us    (2.0%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 286.69 us  (88.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.3%)
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    | 4.5470e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.95173118280911 (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     : 6.76 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 321.20 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.8%)
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    | 4.5741e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54253636768438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5546324857451262, dt = 0.0039616612197145365
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.5%)
   patch tree reduce : 2.54 us    (1.0%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.5%)
   LB compute        : 240.04 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.2%)
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    | 4.4275e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.35112733184697 (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     : 6.60 us    (2.2%)
   patch tree reduce : 1733.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 283.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.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    | 4.6517e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.23051390818182 (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     : 6.80 us    (2.5%)
   patch tree reduce : 1732.00 ns (0.6%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 247.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.8%)
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    | 4.7364e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.07281519016742 (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     : 7.20 us    (2.6%)
   patch tree reduce : 1942.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 252.65 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.5%)
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    | 4.7293e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.9192117514292 (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     : 7.18 us    (2.8%)
   patch tree reduce : 1862.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 233.12 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.5%)
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    | 4.7045e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.3799548448785 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 260.65 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (58.6%)
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    | 4.6645e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.50902768022834 (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     : 7.03 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 290.61 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.3%)
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    | 4.6689e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.60488655558257 (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     : 6.82 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 296.30 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.0%)
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    | 4.7810e+05 | 65536 |      2 | 1.371e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.04532156608252 (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     : 6.48 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.4%)
   LB compute        : 228.84 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (61.7%)
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    | 4.7211e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.7407547652683 (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     : 6.70 us    (2.6%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 232.80 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.9%)
Info: cfl dt = 0.003961662059074746                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9843e+05 | 65536 |      2 | 1.645e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.70741419564445 (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     : 6.53 us    (1.6%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 1231.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 375.98 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.2%)
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    | 4.7002e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.28624667058551 (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     : 6.20 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 295.11 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.0%)
Info: cfl dt = 0.00396166230539791                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6173e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.48197897805193 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6021724254815317, dt = 0.00396166230539791
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 285.25 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (64.2%)
Info: cfl dt = 0.00396166244070417                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7545e+05 | 65536 |      2 | 1.378e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.46796533324914 (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.22 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.6%)
   LB compute        : 239.44 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.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    | 4.7461e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.28585659773339 (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     : 6.39 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 270.12 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (60.4%)
Info: cfl dt = 0.003961662737642322                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3641e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.97208718553078 (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     : 6.25 us    (2.0%)
   patch tree reduce : 1912.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.4%)
   LB compute        : 295.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.8%)
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    | 4.2590e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.68429052105121 (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     : 6.36 us    (2.0%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 302.03 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (64.8%)
Info: cfl dt = 0.0039616630725495625                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4896e+05 | 65536 |      2 | 1.878e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.94141858098288 (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     : 6.40 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 309.05 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.6%)
Info: cfl dt = 0.003961663255367088                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3690e+05 | 65536 |      2 | 1.945e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.31624121169301 (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     : 6.42 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 289.36 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.8%)
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    | 3.3938e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.85635772911006 (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     : 6.16 us    (2.4%)
   patch tree reduce : 1763.00 ns (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.5%)
   LB compute        : 235.29 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.4%)
Info: cfl dt = 0.00396166365409871                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5085e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.11479455831403 (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     : 6.42 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 270.89 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.1%)
Info: cfl dt = 0.0039616638710010844                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6056e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.2273286763034 (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     : 7.25 us    (2.4%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 278.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.7%)
Info: cfl dt = 0.003961664100276162                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3990e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.73049436843526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6417890557521204, dt = 0.003961664100276162
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.4%)
   patch tree reduce : 1942.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 248.59 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.0%)
Info: cfl dt = 0.003961664342452378                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5844e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7649901366356 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 260.64 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.1%)
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    | 4.6088e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.29762033754903 (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     : 6.30 us    (2.1%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 273.97 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.82 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.0%)
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    | 4.5875e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.83371296268724 (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     : 6.61 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 252.86 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.4%)
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    | 4.6094e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.30932607911623 (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     : 6.72 us    (2.4%)
   patch tree reduce : 16.77 us   (5.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 245.26 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (62.6%)
Info: cfl dt = 0.003961665451221288                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4119e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.01207769903445 (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     : 6.34 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1622.00 ns (0.6%)
   LB compute        : 266.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.9%)
Info: cfl dt = 0.003961665766314029                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5891e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8673967860939 (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     : 7.10 us    (2.5%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 258.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.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    | 4.5524e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.0703800719816 (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     : 6.51 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 238.92 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.1%)
Info: cfl dt = 0.00396166644621284                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0153e+05 | 65536 |      2 | 1.632e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.38049053981842 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6734823761277964, dt = 0.00396166644621284
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 252.96 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (61.0%)
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    | 3.5467e+05 | 65536 |      2 | 1.848e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.18336992129176 (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     : 6.86 us    (2.3%)
   patch tree reduce : 1892.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 275.92 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.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    | 3.8144e+05 | 65536 |      2 | 1.718e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.00831700714227 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6814057093862931, dt = 0.003961667196635386
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 274.39 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.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    | 4.4288e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.37943951712452 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 266.85 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.2%)
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.5484e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.98229649620652 (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     : 6.50 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 239.25 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (62.5%)
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.0669e+05 | 65536 |      2 | 1.611e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.50420767987703 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 261.67 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.7%)
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    | 3.3347e+05 | 65536 |      2 | 1.965e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.5694800708307 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.63 us    (0.9%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 246.66 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (65.1%)
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    | 3.1738e+05 | 65536 |      2 | 2.065e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.06777243655168 (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     : 6.39 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 332.34 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.96 us    (72.0%)
Info: cfl dt = 0.003961669924950518                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3157e+05 | 65536 |      2 | 1.977e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.15682864058743 (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     : 6.75 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 251.02 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (59.7%)
Info: cfl dt = 0.003961670456708782                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5188e+05 | 65536 |      2 | 1.862e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.57550730934878 (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     : 6.81 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 293.07 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.2%)
Info: cfl dt = 0.003961671012465266                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5483e+05 | 65536 |      2 | 1.847e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.21776674267328 (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     : 6.99 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 290.54 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (65.9%)
Info: cfl dt = 0.003961671592995069                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5225e+05 | 65536 |      2 | 1.860e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.65691078317614 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 259.71 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.9%)
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    | 3.4430e+05 | 65536 |      2 | 1.903e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.92749129728014 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.721022402005781, dt = 0.0039616721990863935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 277.39 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.6%)
Info: cfl dt = 0.003961672831540442                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8365e+05 | 65536 |      2 | 1.708e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.48974320518583 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249840742048674, dt = 0.003961672831540442
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 283.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.1%)
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    | 4.6524e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.24558779695396 (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     : 6.81 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 302.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (65.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    | 4.6523e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.24391277146047 (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     : 6.37 us    (0.9%)
   patch tree reduce : 1793.00 ns (0.3%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1573.00 ns (0.2%)
   LB compute        : 668.02 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 9.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.63 us    (70.3%)
Info: cfl dt = 0.00396167489528324                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4114e+05 | 65536 |      2 | 1.921e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.23995065348585 (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     : 6.42 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 306.08 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (52.0%)
Info: cfl dt = 0.003961675641455678                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2368e+05 | 65536 |      2 | 2.025e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.43898550913582 (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.44 us    (1.8%)
   patch tree reduce : 1633.00 ns (0.5%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 289.87 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.6%)
Info: cfl dt = 0.003961676418187273                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2372e+05 | 65536 |      2 | 2.024e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.4473161257984 (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.83 us    (1.7%)
   patch tree reduce : 1712.00 ns (0.5%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 319.48 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (66.3%)
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    | 3.2024e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.68998614229218 (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.91 us    (1.6%)
   patch tree reduce : 1703.00 ns (0.5%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 342.60 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.5%)
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    | 3.1347e+05 | 65536 |      2 | 2.091e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.21717427632537 (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     : 6.08 us    (1.7%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 330.43 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (62.5%)
Info: cfl dt = 0.003961678940560756                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3860e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44882633948345 (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     : 6.39 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 310.66 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (67.1%)
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.4317e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.44356226047782 (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     : 6.54 us    (2.1%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 291.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (62.9%)
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    | 4.7650e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.6966025659931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7646008357434838, dt = 0.00396168079132298
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1502.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 258.73 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (60.7%)
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    | 4.7166e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.64378521670004 (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     : 6.51 us    (2.5%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 233.72 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.7%)
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    | 4.7366e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.07838478377676 (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     : 6.95 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 251.25 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.5%)
Info: cfl dt = 0.003961683839815404                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7413e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.18198825922128 (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     : 6.58 us    (2.6%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 230.74 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (60.3%)
Info: cfl dt = 0.00396168493242198                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7302e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.93905033064355 (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     : 6.71 us    (2.6%)
   patch tree reduce : 1802.00 ns (0.7%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.6%)
   LB compute        : 231.31 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.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    | 4.6670e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.56327503661785 (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     : 6.98 us    (2.4%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 268.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.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.5107e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.16279971829599 (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     : 6.59 us    (2.5%)
   patch tree reduce : 1773.00 ns (0.7%)
   gen split merge   : 1342.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 244.50 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.6%)
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.5150e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25557073603153 (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     : 7.02 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 273.32 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (62.0%)
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.5827e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.73043862215249 (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     : 6.70 us    (2.6%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.5%)
   LB compute        : 230.97 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.3%)
Info: cfl dt = 0.003961691013013162                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6888e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0379355574309 (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     : 7.00 us    (2.8%)
   patch tree reduce : 1903.00 ns (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 230.08 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.6%)
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.7055e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.40184666578264 (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     : 6.05 us    (2.2%)
   patch tree reduce : 2.53 us    (0.9%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 251.39 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
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.4966e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.85564216127683 (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     : 6.81 us    (2.4%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 264.48 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.5%)
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.5091e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.12732287650455 (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     : 6.46 us    (2.4%)
   patch tree reduce : 1763.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 245.16 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (59.9%)
Info: cfl dt = 0.003961696679486361                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5625e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.28978719296569 (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     : 6.51 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 279.69 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (58.8%)
Info: cfl dt = 0.003961698216170712                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5852e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.78490189015884 (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     : 6.14 us    (2.1%)
   patch tree reduce : 1733.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 275.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.1%)
Info: cfl dt = 0.003961699803012554                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6696e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.62026731057979 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 243.52 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (51.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    | 4.4555e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.96128374064988 (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     : 6.34 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1191.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 236.57 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (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.5417e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8371818772376 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 242.24 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (60.6%)
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.5212e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39143402614076 (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     : 6.29 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 239.84 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (59.9%)
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.5566e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.16167373585742 (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     : 6.45 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 243.94 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.7%)
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.5908e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.90613545052709 (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     : 6.64 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 241.40 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (58.4%)
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.6043e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.19957715104414 (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     : 6.52 us    (2.4%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 250.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (58.5%)
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.6022e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.15544623606347 (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     : 6.37 us    (2.1%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 280.18 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (61.5%)
Info: cfl dt = 0.0039617144346209806                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7005e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.29312961538261 (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     : 6.65 us    (2.7%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 228.68 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (62.3%)
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.7710e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.8283309929206 (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     : 6.34 us    (2.5%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 233.93 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.4%)
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.7696e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.79789536709683 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 256.91 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.6%)
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.7427e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.21201695394542 (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     : 6.57 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1423.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 230.16 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.1%)
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.6582e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.37285395976004 (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     : 6.18 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 231.37 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.6%)
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.8013e+05 | 65536 |      2 | 1.365e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.48714969013298 (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     : 6.37 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1392.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 260.32 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
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.7333e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.00853616942845 (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     : 6.48 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 300.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.6%)
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.5491e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.00017994682702 (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     : 7.44 us    (2.9%)
   patch tree reduce : 2.52 us    (1.0%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 228.46 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (59.0%)
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.7192e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.7022000196204 (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     : 6.71 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 261.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.1%)
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.5851e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.78377885904375 (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     : 6.26 us    (2.5%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 232.17 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (63.7%)
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.7359e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.0641355567101 (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     : 6.81 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 257.04 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.9%)
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    | 3.8645e+05 | 65536 |      2 | 1.696e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.10140653945561 (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     : 6.63 us    (2.3%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 264.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.2%)
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.2108e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6380784670026 (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     : 6.26 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 264.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.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.6323e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.80990677135986 (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     : 6.46 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 264.45 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.6%)
Info: cfl dt = 0.003961749663198826                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7068e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.4317392356744 (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.67 us    (2.6%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 238.94 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.0%)
Info: cfl dt = 0.003961752715204182                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7449e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.26117836952113 (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     : 6.65 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 262.63 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (60.9%)
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.7730e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.872700301374 (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     : 6.46 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 257.49 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (57.5%)
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.5373e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74425667768449 (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     : 6.53 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 254.54 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.4%)
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.4814e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.52659659943895 (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     : 6.56 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 235.88 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.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.8057e+05 | 65536 |      2 | 1.364e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.58397254519001 (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     : 6.74 us    (2.7%)
   patch tree reduce : 1932.00 ns (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 229.71 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (57.7%)
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.1079e+05 | 65536 |      2 | 1.595e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.39931565918363 (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     : 6.76 us    (2.1%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 303.83 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.4%)
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.4339e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.49283071697982 (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     : 6.95 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 258.52 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.1%)
Info: cfl dt = 0.003961776324411435                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6462e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.11330360218642 (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     : 12.37 us   (3.9%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 286.12 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (65.0%)
Info: cfl dt = 0.00396178003239627                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6603e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.41957569107873 (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     : 6.50 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 306.64 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.3%)
Info: cfl dt = 0.003961783827826645                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6547e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.29792449266617 (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     : 6.38 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 231.69 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (59.9%)
Info: cfl dt = 0.003961787711916316                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7421e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.20067761792501 (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     : 6.34 us    (2.1%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 282.57 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.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    | 4.7702e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.81362998341505 (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     : 6.77 us    (2.4%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 260.39 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (61.5%)
Info: cfl dt = 0.003961795750929895                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7091e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.48287334834149 (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     : 6.78 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 257.95 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.3%)
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.7249e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.82799127058755 (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     : 6.21 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 254.54 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (60.5%)
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.5723e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.50705109758802 (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     : 6.22 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 240.49 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (58.1%)
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.5517e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.05741048618746 (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     : 6.41 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 246.35 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.0%)
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.2862e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28000071655805 (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     : 6.79 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 265.30 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (65.4%)
Info: cfl dt = 0.003961817484969728                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4978e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88607115213598 (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.98 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 250.76 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (57.6%)
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.7451e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.26611395713168 (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     : 6.48 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 236.10 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.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.6975e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.23059186598118 (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     : 6.30 us    (2.5%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 230.58 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (58.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.6964e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.20696409543869 (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     : 6.08 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 257.49 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.3%)
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.7234e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.79461121917687 (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.70 us    (2.0%)
   patch tree reduce : 1762.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 316.05 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.6%)
Info: cfl dt = 0.003961841677998846                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7145e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.60271451120676 (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     : 6.42 us    (2.5%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 942.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 239.61 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.9%)
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.7293e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.92291887152138 (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     : 6.53 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 259.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (60.8%)
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.7147e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.60598701265154 (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     : 6.70 us    (2.7%)
   patch tree reduce : 2.15 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 226.38 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (60.9%)
Info: cfl dt = 0.003961857436840524                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7719e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.85123158307387 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 267.20 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1373.00 ns (59.3%)
Info: cfl dt = 0.003961862904151339                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6351e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.87353157910118 (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     : 6.86 us    (2.6%)
   patch tree reduce : 1902.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 239.40 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.1%)
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.6879e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0226636817001 (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     : 6.22 us    (2.0%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 284.37 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.5%)
Info: cfl dt = 0.003961874167467658                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5136e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.23050181522623 (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     : 6.20 us    (2.5%)
   patch tree reduce : 1883.00 ns (0.8%)
   gen split merge   : 1132.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.5%)
   LB compute        : 228.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (61.4%)
Info: cfl dt = 0.003961879965845504                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7044e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.38376799410536 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.48 us    (0.9%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 257.91 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.7%)
Info: cfl dt = 0.003961885876945777                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6863e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.98872437447844 (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     : 7.07 us    (2.8%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 232.03 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1393.00 ns (58.4%)
Info: cfl dt = 0.00396189190194601                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6986e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.25605923070515 (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     : 6.26 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 254.08 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.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    | 4.7391e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.13748451682943 (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     : 6.37 us    (2.6%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 227.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (61.0%)
Info: cfl dt = 0.003961904298337512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6723e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.68416233599251 (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     : 6.24 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 283.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.1%)
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.6494e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.18708684472774 (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     : 6.52 us    (2.6%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 1142.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 227.66 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.1%)
Info: cfl dt = 0.003961917164362151                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7429e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.22077037171016 (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     : 6.93 us    (2.8%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 228.04 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (61.4%)
Info: cfl dt = 0.003961923776387904                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7334e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.01494671511938 (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     : 6.55 us    (2.6%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1231.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 230.00 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.2%)
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    | 4.6292e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.74816156600298 (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     : 6.30 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 282.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.9%)
Info: cfl dt = 0.003961937364229031                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6876e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.01938168683678 (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     : 6.51 us    (2.6%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 231.45 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.4%)
Info: cfl dt = 0.003961944342335331                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7220e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.7679798296891 (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     : 6.34 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 237.99 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.3%)
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    | 4.7353e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.05641529566773 (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     : 6.78 us    (2.6%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 236.38 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.0%)
Info: cfl dt = 0.003961958672609534                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7322e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.99024793978734 (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     : 6.32 us    (2.3%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 251.43 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.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    | 4.6416e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.01848922376986 (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     : 6.25 us    (2.5%)
   patch tree reduce : 2.39 us    (1.0%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.5%)
   LB compute        : 229.75 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.1%)
Info: cfl dt = 0.003961973509158932                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1470e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.25320951039832 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 251.17 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (63.2%)
Info: cfl dt = 0.003961981120088983                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4933e+05 | 65536 |      2 | 1.459e-01 | 0.7% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.79075173922112 (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     : 6.28 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 285.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.4%)
Info: cfl dt = 0.0039619888609392535                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3974e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.70511732947804 (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     : 7.09 us    (2.7%)
   patch tree reduce : 1783.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 236.70 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.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.5673e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.40240401410125 (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     : 6.47 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 273.10 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.6%)
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.4904e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72820542216935 (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     : 7.35 us    (2.7%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 247.31 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (64.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.5782e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.64063727329487 (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     : 7.03 us    (2.7%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 237.04 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 0.003962021145558951                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5463e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.94509099811381 (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     : 6.89 us    (2.5%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 251.34 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.7%)
Info: cfl dt = 0.003962029552469688                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5552e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13987156350707 (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     : 6.80 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 245.92 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.2%)
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.5601e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.24629743795008 (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     : 6.42 us    (2.4%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 243.73 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 0.003962046776742136                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5482e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.98862118605253 (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     : 6.20 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 290.82 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.51 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.4%)
Info: cfl dt = 0.003962055596233445                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5547e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12949962163636 (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     : 6.67 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 261.36 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.1%)
Info: cfl dt = 0.003962064555370124                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4827e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.56165660750327 (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     : 6.73 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1251.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 250.56 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.2%)
Info: cfl dt = 0.0039620736552002                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5118e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.19634959223036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1330493114134628, dt = 0.0039620736552002
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 263.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (60.4%)
Info: cfl dt = 0.003962082896764802                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5357e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.71535364454861 (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     : 6.46 us    (2.5%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 234.99 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (59.9%)
Info: cfl dt = 0.003962092281098084                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4880e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67812245222294 (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     : 6.70 us    (2.4%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 252.10 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.0%)
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    | 4.5073e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.09900136943587 (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     : 6.49 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 238.27 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.8%)
Info: cfl dt = 0.0039621114821718146                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5435e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.88593410574366 (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     : 6.71 us    (2.1%)
   patch tree reduce : 17.13 us   (5.3%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 286.16 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (64.6%)
Info: cfl dt = 0.003962121300944826                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5053e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05627719927669 (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     : 6.53 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 300.53 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.0%)
Info: cfl dt = 0.00396213126655147                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5379e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76654917368137 (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     : 6.29 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 280.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (67.3%)
Info: cfl dt = 0.0039621413799896445                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4783e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.46927463814413 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 285.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.1%)
Info: cfl dt = 0.003962151642249748                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4348e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.52211076754482 (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     : 6.72 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 294.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.6%)
Info: cfl dt = 0.003962162054314604                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4632e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.14023964182432 (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     : 6.68 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 249.42 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.2%)
Info: cfl dt = 0.003962172617159386                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4840e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59432290411297 (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     : 6.15 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 263.34 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.9%)
Info: cfl dt = 0.003962183331751545                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5254e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49578278075353 (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     : 6.16 us    (1.8%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 312.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.55 us    (72.2%)
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    | 3.9109e+05 | 65536 |      2 | 1.676e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.12150518489321 (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     : 6.22 us    (2.4%)
   patch tree reduce : 1763.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 236.64 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.4%)
Info: cfl dt = 0.003962205220008788                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6073e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.27825596645029 (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     : 6.87 us    (2.6%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 243.19 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.0%)
Info: cfl dt = 0.003962216395569559                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6792e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.84227200425207 (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     : 6.35 us    (2.3%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 249.41 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.2%)
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.6644e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.52061958451509 (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     : 6.84 us    (2.5%)
   patch tree reduce : 1813.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 246.90 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.6%)
Info: cfl dt = 0.003962239214234835                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6976e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.24465642856427 (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.62 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 271.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (61.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    | 3.7269e+05 | 65536 |      2 | 1.758e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.11673270051865 (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     : 6.30 us    (2.1%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 272.73 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (55.9%)
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.5332e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66548831342938 (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     : 6.67 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 257.93 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.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    | 4.6733e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.71679775921884 (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     : 6.30 us    (2.3%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 247.78 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
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    | 4.5554e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.14978273943237 (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     : 6.52 us    (2.5%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 241.22 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (70.5%)
Info: cfl dt = 0.0039622990309663994                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5833e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.75762167581684 (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     : 6.27 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1442.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 249.39 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.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    | 4.5739e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.55434876343975 (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     : 6.51 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 245.69 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
Info: cfl dt = 0.003962324084482998                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4988e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.91884858163729 (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     : 6.76 us    (2.6%)
   patch tree reduce : 1743.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 242.67 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.8%)
Info: cfl dt = 0.003962336856200572                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5672e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.40898268462412 (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     : 6.38 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 244.57 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (60.3%)
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.5249e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.48713515061966 (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.60 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 249.02 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.1%)
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.5528e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.09612951214376 (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     : 6.11 us    (2.2%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 257.42 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (58.9%)
Info: cfl dt = 0.003962376161402739                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5278e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.55161502325015 (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     : 6.87 us    (2.3%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 283.02 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (61.8%)
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.6296e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.76773056779889 (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     : 6.32 us    (2.5%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 233.79 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.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.6119e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.38281749988828 (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     : 6.71 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 260.61 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.5%)
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.6127e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.39959320107236 (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     : 6.70 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 244.88 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (63.0%)
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.4982e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90973328890503 (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     : 6.85 us    (2.6%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 238.34 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (60.2%)
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.5814e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.72027485092427 (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     : 6.40 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 240.59 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.49 us   (93.9%)
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.5711e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49582413470752 (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     : 7.17 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 251.08 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.4%)
Info: cfl dt = 0.0039624737544693015                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5790e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.66900317510239 (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     : 6.79 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 267.09 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (61.9%)
Info: cfl dt = 0.003962488380134269                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4639e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.16450382377027 (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     : 6.29 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1382.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 249.00 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (65.2%)
Info: cfl dt = 0.003962503179061921                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3293e+05 | 65536 |      2 | 1.968e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.46811890501894 (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     : 6.70 us    (2.0%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.4%)
   LB compute        : 305.77 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (61.1%)
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    | 3.3097e+05 | 65536 |      2 | 1.980e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.04207979617232 (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     : 6.71 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 298.05 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.1%)
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    | 3.4822e+05 | 65536 |      2 | 1.882e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.7953873715797 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.283615883535592, dt = 0.003962533299692865
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 294.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.2%)
Info: cfl dt = 0.003962548622867913                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4883e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69688818126819 (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     : 6.76 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 304.64 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.3%)
Info: cfl dt = 0.003962564122249132                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5971e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.06442584487192 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2915409654581527, dt = 0.003962564122249132
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 292.38 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.2%)
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.6619e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.47531076708948 (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     : 6.80 us    (2.6%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 242.07 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (62.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.4809e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5351212336876 (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     : 6.74 us    (2.6%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 241.53 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (59.9%)
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.5636e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.33572049620278 (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     : 6.95 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 279.49 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (62.6%)
Info: cfl dt = 0.003962627895978629                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4775e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.46394128823066 (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     : 6.71 us    (2.5%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 245.34 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (61.6%)
Info: cfl dt = 0.003962644286920375                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5382e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7840927630254 (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     : 6.57 us    (2.5%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 245.91 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.0%)
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.4111e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.01817684721813 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3153165888990508, dt = 0.003962660858218128
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 271.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.2%)
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    | 4.4958e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.86334128562363 (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.75 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 270.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (59.2%)
Info: cfl dt = 0.00396269454451522                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4704e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.31068512735762 (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     : 6.47 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 241.11 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
Info: cfl dt = 0.003962711660809177                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6486e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.18875135270656 (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     : 6.40 us    (2.3%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 253.87 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.0%)
Info: cfl dt = 0.003962728960048383                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5913e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.94244266553 (tsim/hr)                               [amr::RAMSES][rank=0]
amr::Godunov: t = 1.331167333573126, dt = 0.003962728960048383
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1191.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 239.31 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.4%)
Info: cfl dt = 0.0039627464428579956                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5105e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.18490757128235 (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     : 6.58 us    (2.5%)
   patch tree reduce : 1752.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.5%)
   LB compute        : 238.43 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.7%)
Info: cfl dt = 0.003962764109854326                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6795e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.8629870461743 (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     : 6.55 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 248.80 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.7%)
Info: cfl dt = 0.0039627819616448404                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5361e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74239433479148 (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     : 6.71 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 246.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.1%)
Info: cfl dt = 0.003962799998828178                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5660e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39471540135114 (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     : 6.01 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 263.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.7%)
Info: cfl dt = 0.0039628182219941495                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5610e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.28502789883507 (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     : 6.37 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 255.71 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.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    | 4.5758e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.60770909703423 (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     : 6.30 us    (2.1%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 284.06 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.5%)
Info: cfl dt = 0.003962855228589221                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5339e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.69563318714967 (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     : 6.94 us    (2.1%)
   patch tree reduce : 1892.00 ns (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 310.80 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.6%)
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.6855e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.99739631404226 (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     : 6.44 us    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 301.38 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (63.7%)
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    | 4.6832e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.94826322998476 (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     : 6.59 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 285.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.0%)
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    | 4.3189e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0164131403512 (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     : 6.25 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1132.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 227.96 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (60.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    | 3.6570e+05 | 65536 |      2 | 1.792e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.60989045260321 (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     : 6.39 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 258.12 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (57.8%)
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    | 3.9075e+05 | 65536 |      2 | 1.677e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.06209640830754 (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     : 6.45 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 259.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.5%)
Info: cfl dt = 0.003962970770573712                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6592e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.42610443299047 (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     : 6.88 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 270.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.6%)
Info: cfl dt = 0.00396299069267618                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6239e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.65892311842782 (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     : 6.85 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 268.24 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (57.9%)
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.5626e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.32570820057836 (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     : 6.45 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 235.21 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.7%)
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    | 3.9497e+05 | 65536 |      2 | 1.659e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.98393794573066 (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     : 6.81 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 292.43 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.6%)
Info: cfl dt = 0.003963051609342553                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4913e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.77311333035952 (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     : 6.86 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 278.96 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (59.7%)
Info: cfl dt = 0.0039630722999683295                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5524e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.10494876947848 (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     : 6.63 us    (2.1%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 289.56 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.0%)
Info: cfl dt = 0.003963093183916485                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5373e+05 | 65536 |      2 | 1.853e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.00733436779029 (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     : 6.49 us    (2.3%)
   patch tree reduce : 1882.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 261.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (56.6%)
Info: cfl dt = 0.003963114261646537                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0308e+05 | 65536 |      2 | 1.626e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.74968930003688 (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     : 6.04 us    (2.1%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 270.42 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.8%)
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    | 4.6676e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.61337775696475 (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     : 6.37 us    (2.5%)
   patch tree reduce : 1812.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 233.72 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (60.6%)
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.6594e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.43601203222963 (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     : 6.19 us    (2.1%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 268.06 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.2%)
Info: cfl dt = 0.003963178661995871                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6456e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.13612867864211 (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     : 6.42 us    (2.3%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 252.21 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (60.9%)
Info: cfl dt = 0.003963200519279039                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6202e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.58319296820986 (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     : 6.46 us    (1.9%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 311.46 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.7%)
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    | 4.6320e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.84023317353358 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4302412332643029, dt = 0.0039632225725147055
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 287.13 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.7%)
Info: cfl dt = 0.003963244822111799                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6060e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.27641840050707 (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     : 6.38 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 270.72 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (60.5%)
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.5917e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.96522480239753 (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     : 6.88 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 260.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (61.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    | 4.6487e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.2054176621033 (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     : 6.76 us    (2.7%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1442.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 230.32 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (60.8%)
Info: cfl dt = 0.003963312753036255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7129e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.60405946279472 (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     : 6.42 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 263.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (61.8%)
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    | 4.7436e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.27416495137277 (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     : 6.05 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.5%)
   LB compute        : 227.89 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.9%)
Info: cfl dt = 0.003963359029250299                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7003e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.33044132305236 (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     : 7.15 us    (2.8%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 231.42 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.0%)
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.6970e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.2593303261421 (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     : 6.51 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 241.82 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.6%)
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.6011e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.17298141905896 (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     : 6.97 us    (0.8%)
   patch tree reduce : 1933.00 ns (0.2%)
   gen split merge   : 1212.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.2%)
   LB compute        : 817.59 us  (97.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (67.4%)
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.5660e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4089578512212 (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     : 7.13 us    (2.5%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 261.20 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (58.8%)
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.5984e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.11589432691383 (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     : 6.32 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.38 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.0%)
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.7141e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.63453040480557 (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     : 6.34 us    (2.4%)
   patch tree reduce : 1994.00 ns (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 238.56 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (65.1%)
Info: cfl dt = 0.003963502636222012                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7062e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.4638777029574 (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     : 6.79 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 280.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.4%)
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.5287e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.59957674338807 (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     : 6.76 us    (2.3%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 270.60 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.6%)
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.5315e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66078872082868 (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     : 7.08 us    (2.3%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 286.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.6%)
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.5625e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.33743461161338 (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     : 6.56 us    (2.0%)
   patch tree reduce : 17.19 us   (5.3%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 285.00 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.5%)
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.6286e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.77747936863159 (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     : 6.23 us    (2.3%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 249.99 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.4%)
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.6547e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.3459989740647 (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     : 6.70 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.4%)
   LB compute        : 317.12 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (65.2%)
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.0163e+05 | 65536 |      2 | 1.632e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.44683278571667 (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     : 6.53 us    (2.5%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 241.19 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.1%)
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.2585e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.72128035354629 (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     : 6.18 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 260.32 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (57.3%)
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    | 4.5531e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13533930823515 (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     : 6.55 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1181.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 239.53 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.6%)
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.5510e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.09118815743449 (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     : 6.77 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 260.81 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
Info: cfl dt = 0.003963758060368932                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5554e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.18666891721489 (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     : 6.37 us    (2.4%)
   patch tree reduce : 1722.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 240.69 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.0%)
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.5245e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.51496605521433 (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     : 6.13 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 258.58 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.0%)
Info: cfl dt = 0.003963811576974585                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6320e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.85557303701012 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 260.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.6%)
Info: cfl dt = 0.003963838640809422                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0859e+05 | 65536 |      2 | 1.604e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.966041605014 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5293289295392476, dt = 0.003963838640809422
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.6%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 234.91 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (59.9%)
Info: cfl dt = 0.00396386590861734                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6591e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.44638434398924 (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     : 6.50 us    (2.5%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 233.30 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (61.9%)
Info: cfl dt = 0.003963893380602954                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6224e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.64997883885353 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 271.67 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.45 us    (70.5%)
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.5739e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.5936761993594 (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     : 6.46 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 259.90 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (60.2%)
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.6959e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.25010166937378 (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     : 6.51 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 263.01 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (59.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.6591e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.44946032158393 (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     : 6.56 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 295.90 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (62.7%)
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.6086e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.35199973690037 (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     : 6.26 us    (2.1%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 277.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.5%)
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.7100e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.56023528866902 (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     : 6.52 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 271.01 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.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.6258e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.72785116264717 (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     : 6.58 us    (1.9%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 316.03 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.9%)
Info: cfl dt = 0.003964091417144193                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0715e+05 | 65536 |      2 | 1.610e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.6584489714986 (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     : 6.83 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 259.89 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (60.0%)
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    | 3.4076e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.201550741077 (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     : 6.22 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 298.49 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.7%)
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.7351e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.10867796016039 (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     : 6.27 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 270.41 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (59.6%)
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.7047e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.44753922498157 (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     : 7.02 us    (2.5%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.5%)
   LB compute        : 254.82 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.6%)
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.6645e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.57357130276785 (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     : 6.51 us    (2.1%)
   patch tree reduce : 1872.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 290.65 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (61.5%)
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.6817e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.94863436954938 (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     : 6.43 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 234.40 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1353.00 ns (57.5%)
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.4982e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.95372847942468 (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     : 6.83 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 271.18 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (61.2%)
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.0305e+05 | 65536 |      2 | 1.626e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76942211573164 (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     : 6.53 us    (2.3%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 260.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.2%)
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.6225e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.66120925757575 (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     : 6.33 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 282.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1942.00 ns (66.6%)
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.6908e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.14983787978005 (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     : 6.23 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1552.00 ns (0.6%)
   LB compute        : 250.50 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.1%)
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.6392e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.02637817474104 (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     : 6.68 us    (2.5%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1432.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 239.61 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.3%)
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.7503e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.44707980130177 (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     : 6.44 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 295.30 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.7%)
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.7082e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.53124912100934 (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     : 6.25 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 262.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (56.7%)
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.9009e+05 | 65536 |      2 | 1.680e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.95116194417953 (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     : 6.42 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 280.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.2%)
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.5277e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.60137717390666 (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     : 6.82 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 272.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.8%)
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.5910e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9815289698561 (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     : 6.52 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 241.75 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (55.5%)
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.5105e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22837243446692 (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.60 us    (2.5%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 245.75 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.0%)
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.5757e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.65105490092861 (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     : 7.05 us    (2.6%)
   patch tree reduce : 1812.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.6%)
   LB compute        : 249.56 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (60.3%)
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.6536e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.34780288412128 (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     : 6.35 us    (2.1%)
   patch tree reduce : 1822.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 277.48 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.1%)
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.7134e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.65007174088744 (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     : 6.87 us    (2.5%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 256.09 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.7%)
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.6080e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.35632011486808 (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     : 6.56 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 266.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (58.2%)
Info: cfl dt = 0.00396474610124457                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7082e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.53813325730559 (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     : 6.39 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 268.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (43.8%)
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.7045e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.45890534291618 (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     : 6.27 us    (2.2%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 260.88 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (56.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.1450e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.27573831466391 (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     : 6.80 us    (2.4%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.76 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.2%)
Info: cfl dt = 0.003964847075011834                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7158e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.7062497758131 (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     : 6.33 us    (2.5%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 233.27 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.1%)
Info: cfl dt = 0.003964881147190456                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4500e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91901334134546 (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     : 6.46 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 254.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (68.1%)
Info: cfl dt = 0.003964915426482819                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7129e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.64645678918572 (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     : 6.76 us    (2.6%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 233.12 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.6%)
Info: cfl dt = 0.003964949912871672                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5965e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.11203708268611 (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     : 6.55 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 304.88 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (63.8%)
Info: cfl dt = 0.0039649846063340806                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2382e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30852481830834 (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     : 6.08 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 316.74 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.6%)
Info: cfl dt = 0.003965019506841468                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7142e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.67589485477606 (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     : 6.08 us    (2.4%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 230.27 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.0%)
Info: cfl dt = 0.00396505461435967                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6706e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.72748384955347 (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     : 6.11 us    (2.4%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 232.58 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (60.6%)
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.6690e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.69371862350329 (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     : 6.57 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 260.85 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (57.6%)
Info: cfl dt = 0.003965125450264176                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6213e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.65628428368301 (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.23 us    (2.4%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.5%)
   LB compute        : 234.99 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.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    | 4.7046e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.47096691048417 (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     : 6.63 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 269.38 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1373.00 ns (59.1%)
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.6320e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.8908214203035 (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     : 6.43 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 279.50 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (63.0%)
Info: cfl dt = 0.0039652332555316794                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7261e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.94219248997473 (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     : 6.46 us    (2.1%)
   patch tree reduce : 1752.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1291.00 ns (0.4%)
   LB compute        : 288.24 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (58.3%)
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.7636e+05 | 65536 |      2 | 1.376e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.75822258558354 (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     : 6.36 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 270.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.1%)
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.7040e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.46120485800067 (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     : 6.41 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 267.23 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (55.1%)
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.6176e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.58038499362105 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7156621574651003, dt = 0.003965342920987307
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 228.16 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.4%)
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.7716e+05 | 65536 |      2 | 1.373e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.93604404097418 (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     : 22.62 us   (7.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 274.98 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (62.9%)
Info: cfl dt = 0.0039654170637176715                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7299e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.02933373485806 (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     : 6.34 us    (2.3%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 259.26 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (61.8%)
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.5386e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.86253715548597 (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     : 6.62 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 238.47 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.7%)
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.6148e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.52318455241961 (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.37 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 256.34 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.8%)
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.6456e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.1962710407129 (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     : 6.26 us    (2.0%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 289.18 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.6%)
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.5961e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.11847501344718 (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     : 6.17 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 292.97 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.3%)
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.6785e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.91389698258926 (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     : 6.38 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.6%)
   LB compute        : 234.10 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.3%)
Info: cfl dt = 0.003965644439309516                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6760e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.86157728043106 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7473859474920967, dt = 0.003965644439309516
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.5%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 234.88 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (58.6%)
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    | 3.3655e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.31408025033382 (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     : 6.60 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 297.92 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.8%)
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    | 3.2577e+05 | 65536 |      2 | 2.012e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.96517518439516 (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     : 6.19 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 293.38 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.8%)
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    | 3.2355e+05 | 65536 |      2 | 2.026e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.48412733790231 (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     : 6.59 us    (1.9%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 328.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.3%)
Info: cfl dt = 0.00396580013689265                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2851e+05 | 65536 |      2 | 1.995e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.56382887943519 (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     : 6.37 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 294.63 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.7%)
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    | 3.3492e+05 | 65536 |      2 | 1.957e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.96082990581948 (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     : 6.95 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1622.00 ns (0.5%)
   LB compute        : 273.97 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (63.3%)
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    | 3.2657e+05 | 65536 |      2 | 2.007e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.14328138476299 (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     : 6.18 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 279.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.1%)
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.3673e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.14270033946782 (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     : 6.50 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 262.93 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.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    | 4.3827e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.47914662787841 (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     : 6.83 us    (2.2%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 292.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
Info: cfl dt = 0.003965999372059742                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4962e+05 | 65536 |      2 | 1.874e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.16705487262884 (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     : 6.35 us    (2.3%)
   patch tree reduce : 1962.00 ns (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 257.15 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.2%)
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    | 3.4579e+05 | 65536 |      2 | 1.895e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.33294448072057 (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     : 6.60 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 259.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (56.4%)
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    | 3.4123e+05 | 65536 |      2 | 1.921e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.34094535347286 (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     : 6.69 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 263.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (63.9%)
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    | 3.5022e+05 | 65536 |      2 | 1.871e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.29992235116919 (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     : 7.21 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 275.84 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (62.1%)
Info: cfl dt = 0.0039661624387239336                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4468e+05 | 65536 |      2 | 1.901e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.09298356631466 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 262.91 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (61.6%)
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    | 3.4559e+05 | 65536 |      2 | 1.896e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.29222081174056 (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     : 6.61 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 303.27 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (64.2%)
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    | 3.4499e+05 | 65536 |      2 | 1.900e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.16339100847135 (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     : 6.85 us    (2.3%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 277.85 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (63.8%)
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    | 3.3961e+05 | 65536 |      2 | 1.930e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.99188033225202 (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     : 6.56 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 285.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (61.5%)
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    | 3.4406e+05 | 65536 |      2 | 1.905e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.9617591923823 (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     : 6.69 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 272.02 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (64.0%)
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    | 3.4636e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.4646408266048 (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     : 6.56 us    (2.3%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 259.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.9%)
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    | 3.3571e+05 | 65536 |      2 | 1.952e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.1431637625866 (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     : 6.25 us    (2.0%)
   patch tree reduce : 1942.00 ns (0.6%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 293.10 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.6%)
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    | 3.4343e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.82625713571596 (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     : 6.78 us    (2.0%)
   patch tree reduce : 1812.00 ns (0.5%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.4%)
   LB compute        : 324.68 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.2%)
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    | 3.4711e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.63067724918878 (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     : 6.44 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 303.95 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.5%)
Info: cfl dt = 0.003966541231530505                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4293e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.71965205630245 (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     : 6.73 us    (2.4%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 260.77 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.1%)
Info: cfl dt = 0.0039665843314954504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4565e+05 | 65536 |      2 | 1.896e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.31422416817801 (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     : 6.80 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 289.22 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.3%)
Info: cfl dt = 0.003966627633057796                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4719e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.64876516287868 (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     : 6.60 us    (2.0%)
   patch tree reduce : 1782.00 ns (0.5%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1291.00 ns (0.4%)
   LB compute        : 303.15 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.5%)
Info: cfl dt = 0.00396667113599405                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4809e+05 | 65536 |      2 | 1.883e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.84621482079612 (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     : 6.02 us    (1.8%)
   patch tree reduce : 1852.00 ns (0.5%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 316.42 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.2%)
Info: cfl dt = 0.0039667148400770276                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4566e+05 | 65536 |      2 | 1.896e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.31851687341785 (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     : 6.51 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.4%)
   LB compute        : 266.06 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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    | 3.5025e+05 | 65536 |      2 | 1.871e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.31868154621299 (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     : 6.56 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 282.75 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.2%)
Info: cfl dt = 0.003966802850756208                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3402e+05 | 65536 |      2 | 1.962e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.78379511450535 (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     : 6.79 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1542.00 ns (0.5%)
   LB compute        : 259.99 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (57.1%)
Info: cfl dt = 0.003966847156879954                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1970e+05 | 65536 |      2 | 2.050e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.66268666890663 (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     : 6.22 us    (1.5%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 371.55 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 6.66 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.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    | 4.5513e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.17473130577716 (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     : 6.76 us    (1.7%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.4%)
   LB compute        : 365.23 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.1%)
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    | 4.4231e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.38222755796515 (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     : 6.28 us    (2.1%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 273.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.9%)
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    | 4.5094e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.26550421816002 (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     : 6.60 us    (2.3%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 263.09 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.1%)
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    | 4.5313e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74225202182471 (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     : 6.55 us    (2.1%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 282.69 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.6%)
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    | 4.5311e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74032508669619 (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     : 7.02 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1573.00 ns (0.5%)
   LB compute        : 278.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (60.9%)
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    | 4.4527e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.03280645960334 (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     : 6.31 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 238.46 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (60.0%)
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.5278e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66981376342233 (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     : 6.23 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 265.98 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1393.00 ns (59.7%)
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    | 4.4929e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90975995892167 (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     : 6.62 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 243.64 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.1%)
Info: cfl dt = 0.003967254890961529                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7032e+05 | 65536 |      2 | 1.770e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.70109982689657 (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     : 6.65 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 271.52 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.3%)
Info: cfl dt = 0.003967301187672596                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2225e+05 | 65536 |      2 | 2.034e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.22695415886284 (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     : 6.69 us    (1.8%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 345.00 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (63.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    | 3.6909e+05 | 65536 |      2 | 1.776e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.4364742223259 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 268.30 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.3%)
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    | 4.0769e+05 | 65536 |      2 | 1.608e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.84807451711288 (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     : 6.37 us    (2.0%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 297.38 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.9%)
Info: cfl dt = 0.003967441262299228                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4350e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.86164258780809 (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     : 6.53 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 300.24 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.1%)
Info: cfl dt = 0.003967488347736667                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3582e+05 | 65536 |      2 | 1.952e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.18686975773142 (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     : 6.92 us    (2.0%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 332.95 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.4%)
Info: cfl dt = 0.0039675356296462305                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2909e+05 | 65536 |      2 | 1.991e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.72274585452183 (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.84 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 264.52 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.1%)
Info: cfl dt = 0.003967583107738185                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2081e+05 | 65536 |      2 | 2.043e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.91800740356874 (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     : 6.38 us    (1.6%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 383.61 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (63.9%)
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    | 4.3864e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.59878572780829 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9298486515535502, dt = 0.0039676307817198865
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 278.28 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.42 us    (71.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    | 3.2626e+05 | 65536 |      2 | 2.009e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.10831661586225 (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     : 6.70 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 280.39 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.4%)
Info: cfl dt = 0.003967726716167648                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2134e+05 | 65536 |      2 | 2.039e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.03582651822278 (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     : 7.05 us    (2.0%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 324.88 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (65.0%)
Info: cfl dt = 0.0039677749760342095                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3106e+05 | 65536 |      2 | 1.980e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.15492876007616 (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     : 7.67 us    (2.4%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 292.82 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.9%)
Info: cfl dt = 0.003967823430591601                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2965e+05 | 65536 |      2 | 1.988e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.84957012143052 (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.49 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1301.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 271.42 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.0%)
Info: cfl dt = 0.003967872079533182                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2038e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.8295030427243 (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     : 6.30 us    (1.7%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 348.63 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.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    | 3.3857e+05 | 65536 |      2 | 1.936e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.79631373917002 (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     : 6.56 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 307.07 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (59.7%)
Info: cfl dt = 0.003967969959328953                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4296e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.7533296944574 (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     : 6.57 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 295.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.4%)
Info: cfl dt = 0.003968019189556551                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3862e+05 | 65536 |      2 | 1.935e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.80885022486933 (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     : 6.27 us    (2.1%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 280.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
Info: cfl dt = 0.003968068612915233                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4492e+05 | 65536 |      2 | 1.900e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.18159208926608 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9655590682603277, dt = 0.003968068612915233
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 267.30 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (56.5%)
Info: cfl dt = 0.003968118229085255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3341e+05 | 65536 |      2 | 1.966e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.67453093142674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.969527136873243, dt = 0.003968118229085255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.1%)
   patch tree reduce : 1823.00 ns (0.3%)
   gen split merge   : 1081.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.2%)
   LB compute        : 631.18 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (67.7%)
Info: cfl dt = 0.003968168037744358                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4001e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.11278975318547 (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     : 6.78 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 264.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.5%)
Info: cfl dt = 0.0039682180385678                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4258e+05 | 65536 |      2 | 1.913e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.67480598393784 (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     : 6.27 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 279.28 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.5%)
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    | 3.2837e+05 | 65536 |      2 | 1.996e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.57763038182846 (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     : 6.35 us    (2.0%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 293.78 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.3%)
Info: cfl dt = 0.0039683186153965195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3567e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.96792331926488 (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     : 6.81 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 244.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.0%)
Info: cfl dt = 0.003968369190740202                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4162e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.26785484677845 (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     : 6.51 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1523.00 ns (0.5%)
   LB compute        : 298.11 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.3%)
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    | 3.5498e+05 | 65536 |      2 | 1.846e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.3813032485355 (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     : 7.06 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 300.50 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (64.0%)
Info: cfl dt = 0.003968470913614561                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4487e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.97870376862421 (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     : 6.19 us    (2.2%)
   patch tree reduce : 1673.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 265.86 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1291.00 ns (53.3%)
Info: cfl dt = 0.003968505647441307                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0577e+05 | 65536 |      2 | 1.615e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.06993701810939 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 687.6174720930001 (s)                                    [Godunov][rank=0]
running minmod rusanov
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.22 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.28 us    (56.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     : 1092.00 ns (0.3%)
   patch tree reduce : 1302.00 ns (0.4%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 326.19 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.29 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     : 13.30 us   (3.4%)
   patch tree reduce : 2.85 us    (0.7%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 365.23 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (68.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.1060e+05 | 65536 |      2 | 1.596e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 274.92 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.6408e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.99385591115792 (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     : 6.28 us    (2.4%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 244.20 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.6060e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.2367427148377 (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     : 6.24 us    (2.2%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 262.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.7863e+05 | 65536 |      2 | 1.731e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.39703124659296 (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     : 7.08 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 266.23 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.7104e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.50843418185956 (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     : 21.06 us   (6.7%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 276.31 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.7001e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.28324384128861 (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     : 6.24 us    (2.5%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 229.63 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (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.6562e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.32834725299165 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 285.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (67.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5502e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02112206367305 (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     : 6.52 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 252.52 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (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.6201e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.54292663697132 (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     : 6.43 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 242.34 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.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    | 4.4564e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.98122751810402 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (1.0%)
   patch tree reduce : 2.05 us    (0.3%)
   gen split merge   : 1212.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.2%)
   LB compute        : 630.05 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (70.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.5942e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.97938683311591 (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     : 6.90 us    (2.6%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 242.83 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4317e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.44308828300903 (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.76 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 258.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (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.5369e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.73223003030422 (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     : 6.55 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 246.10 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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.5531e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.08414655622255 (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.41 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 241.44 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.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    | 4.4592e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04212896077591 (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     : 6.43 us    (2.3%)
   patch tree reduce : 1672.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 262.43 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (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.5170e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.30015493666465 (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     : 6.54 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 257.51 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5991e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08559042437336 (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     : 6.80 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1452.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 256.45 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6378e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.9273644592218 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 269.95 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (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.7322e+05 | 65536 |      2 | 1.756e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.22096545932587 (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     : 6.45 us    (2.5%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 241.29 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (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.4038e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.835485795097 (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     : 6.57 us    (2.4%)
   patch tree reduce : 1812.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 248.10 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.4817e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.53061664633351 (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     : 6.51 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 270.28 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.3722e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.38530783917564 (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     : 6.25 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 270.25 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (61.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6999e+05 | 65536 |      2 | 1.771e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.5178267857541 (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     : 7.05 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 264.63 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5860e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.80078333829387 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 267.27 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.5577e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.18566405776198 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 262.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4966e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.85569752429176 (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     : 6.66 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 246.67 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (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    | 3.4063e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.12821765034414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (0.9%)
   patch tree reduce : 1893.00 ns (0.3%)
   gen split merge   : 1122.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.2%)
   LB compute        : 681.40 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.8384e+05 | 65536 |      2 | 1.707e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.53137635926463 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 258.92 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.5457e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9237427623577 (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     : 6.43 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 283.34 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.3660e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.013950080903 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 303.15 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 10.62 us   (3.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (66.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3319e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.27184340236686 (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     : 6.47 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 277.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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.4298e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4008088767864 (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     : 6.85 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 267.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7059e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.40955247605608 (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     : 6.60 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 265.80 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.6320e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.80182631918757 (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     : 6.28 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 282.63 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6550e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.30325285901715 (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     : 6.25 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 253.68 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.4001e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.75412226792811 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1712.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 271.63 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.7313e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.96173361247435 (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     : 6.70 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 261.39 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.6827e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.90505330048137 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.6%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1342.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 239.68 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (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.7508e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.3865808284428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.9%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 300.43 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6924e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.1162764397663 (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     : 6.66 us    (2.6%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1162.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 233.35 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.55 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.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.7357e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.05857129631924 (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     : 6.26 us    (2.1%)
   patch tree reduce : 1733.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 277.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.5635e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.3116460412154 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.5%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 250.47 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4876e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.65905000142646 (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     : 6.38 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 304.99 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6771e+05 | 65536 |      2 | 1.782e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.0207363466735 (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     : 6.47 us    (0.9%)
   patch tree reduce : 2.07 us    (0.3%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.2%)
   LB compute        : 691.72 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (69.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.5312e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.60750834306205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 301.40 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1952.00 ns (67.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.5183e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32686297784264 (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     : 6.26 us    (2.2%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 267.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.3497e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65875157939033 (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.35 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 267.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (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.4079e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.92477893426543 (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     : 6.72 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 282.14 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.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.4627e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.11803290876179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 282.24 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (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.4784e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45972928365087 (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     : 6.23 us    (1.9%)
   patch tree reduce : 1772.00 ns (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 306.11 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5049e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03487915171061 (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     : 6.47 us    (2.0%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 298.79 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4153e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.08603976124675 (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     : 6.38 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 245.55 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0238e+05 | 65536 |      2 | 1.629e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.56601636229416 (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.39 us    (2.6%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 266.84 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3580e+05 | 65536 |      2 | 1.952e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.07671381794253 (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     : 6.22 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1582.00 ns (0.5%)
   LB compute        : 283.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.1549e+05 | 65536 |      2 | 2.077e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.6566631088114 (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     : 6.36 us    (1.7%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.4%)
   LB compute        : 343.51 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2836e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.21887370017147 (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     : 6.88 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 275.79 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.1377e+05 | 65536 |      2 | 2.089e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.2835895501286 (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     : 6.56 us    (1.8%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.4%)
   LB compute        : 338.49 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.2944e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.45503935840412 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 255.28 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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    | 3.8217e+05 | 65536 |      2 | 1.715e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.16710072225925 (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.93 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 257.16 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.5062e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.06483343140326 (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     : 7.12 us    (2.1%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 313.25 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6032e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.17572535406428 (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     : 6.53 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 273.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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    | 3.3623e+05 | 65536 |      2 | 1.949e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.17079965368495 (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     : 7.68 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 342.34 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.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.9401e+05 | 65536 |      2 | 1.663e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.74463051708113 (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     : 6.19 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 270.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4794e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.48192594031819 (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     : 6.69 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 261.78 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.3973e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.6948737652282 (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     : 6.47 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 279.37 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4645e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.15567467736523 (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     : 6.63 us    (2.4%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 259.40 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.5406e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81262438838527 (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     : 6.52 us    (1.9%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 1372.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 316.48 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4421e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.67019108214905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2654312581256749, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 248.25 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4470e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.77560549457827 (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     : 6.71 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 242.61 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (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.5369e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.7329818853548 (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     : 6.42 us    (2.0%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 303.33 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2751e+05 | 65536 |      2 | 2.001e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.27364937385322 (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     : 6.40 us    (2.0%)
   patch tree reduce : 1733.00 ns (0.5%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 302.38 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.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.3221e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.2955933038023 (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     : 6.81 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 275.35 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3606e+05 | 65536 |      2 | 1.950e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.13333989567217 (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     : 6.33 us    (1.8%)
   patch tree reduce : 1822.00 ns (0.5%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 320.39 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4431e+05 | 65536 |      2 | 1.903e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.92935891968256 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 269.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4462e+05 | 65536 |      2 | 1.902e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.9964506439207 (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     : 7.39 us    (2.6%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 261.12 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5000e+05 | 65536 |      2 | 1.872e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.1680414019376 (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     : 6.17 us    (2.0%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 292.09 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5052e+05 | 65536 |      2 | 1.870e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.28118993161259 (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     : 6.11 us    (2.0%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 287.89 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (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.5043e+05 | 65536 |      2 | 1.870e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.26096484879423 (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     : 6.59 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 260.73 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4304e+05 | 65536 |      2 | 1.910e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.65319709453055 (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     : 6.62 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 259.41 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (58.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2792e+05 | 65536 |      2 | 1.999e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.36152280211921 (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     : 6.88 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 303.79 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (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.4410e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.6441978513724 (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     : 6.19 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 266.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (63.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5692e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43479472106624 (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.34 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 246.23 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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.3385e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.41452019799407 (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     : 6.19 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 250.59 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (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.5556e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.1388672166761 (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     : 6.39 us    (2.2%)
   patch tree reduce : 1902.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 262.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5194e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.35111263707626 (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     : 6.77 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 272.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (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.4782e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45393414418783 (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     : 6.74 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 257.75 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 19.01 us   (6.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6123e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.37274045685432 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089374331, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1552.00 ns (0.6%)
   LB compute        : 255.29 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5998e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.10032050010003 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.344664469506473, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 271.33 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.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.6304e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.76625961550171 (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     : 6.32 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 263.90 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0066e+05 | 65536 |      2 | 1.636e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.19120070907131 (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     : 6.29 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 268.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.2864e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28100167692655 (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     : 7.09 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1662.00 ns (0.5%)
   LB compute        : 303.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4055e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.11019856655169 (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.95 us    (1.7%)
   patch tree reduce : 1822.00 ns (0.5%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 333.73 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4127e+05 | 65536 |      2 | 1.920e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.26764139378152 (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     : 6.37 us    (0.9%)
   patch tree reduce : 1883.00 ns (0.3%)
   gen split merge   : 1152.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.2%)
   LB compute        : 696.47 us  (96.7%)
   LB move op cnt    : 0
   LB apply          : 5.09 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3291e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.44897983324893 (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     : 6.67 us    (1.9%)
   patch tree reduce : 1753.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.4%)
   LB compute        : 330.06 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.3766e+05 | 65536 |      2 | 1.941e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.48203802464684 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37239609348975233, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.8%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.4%)
   LB compute        : 334.30 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3900e+05 | 65536 |      2 | 1.933e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.77408179444518 (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     : 6.65 us    (1.8%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 355.82 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4001e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.99399273145502 (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     : 6.43 us    (1.7%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 357.27 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.3839e+05 | 65536 |      2 | 1.937e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.63967997775232 (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     : 6.47 us    (1.6%)
   patch tree reduce : 1852.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 373.84 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (66.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4018e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.02922001731241 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38824273576591195, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (1.7%)
   patch tree reduce : 1802.00 ns (0.5%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 355.73 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4051e+05 | 65536 |      2 | 1.925e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.1024280155853 (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     : 6.95 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 324.54 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (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.4021e+05 | 65536 |      2 | 1.926e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.03658281068758 (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     : 6.89 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 320.66 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4289e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.6209126677169 (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     : 6.42 us    (1.8%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 327.21 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (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.4079e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.16290493469256 (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     : 6.47 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 308.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (52.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.3914e+05 | 65536 |      2 | 1.932e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.8033390030709 (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     : 6.21 us    (1.8%)
   patch tree reduce : 1793.00 ns (0.5%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 324.35 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3935e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.84902617048812 (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     : 6.58 us    (2.3%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 261.82 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1222.00 ns (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    | 3.6254e+05 | 65536 |      2 | 1.808e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.89642751560302 (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     : 6.99 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 272.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.6823e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.89602304713915 (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     : 6.28 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 276.92 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4778e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.44580532839647 (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.49 us    (2.3%)
   patch tree reduce : 1832.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 256.90 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.4566e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.98431328029433 (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     : 6.71 us    (2.6%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 236.44 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8420e+05 | 65536 |      2 | 1.706e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.61004634434101 (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     : 7.09 us    (2.5%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 260.54 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.7%)
Info: cfl dt = 0.0039616605690399225                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6430e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0420227812614 (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     : 7.82 us    (2.4%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 297.22 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (66.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    | 4.5958e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.01403472520204 (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     : 6.27 us    (1.8%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 326.67 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (66.1%)
Info: cfl dt = 0.003961660569039923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6462e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.111139892275 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4437059837324706, dt = 0.003961660569039923
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 268.23 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.7%)
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.6595e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.40124080943173 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4476676443015105, dt = 0.003961660569039923
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 267.78 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.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    | 4.5743e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54510669922027 (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     : 6.48 us    (2.5%)
   patch tree reduce : 1812.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.6%)
   LB compute        : 239.55 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (63.6%)
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.6477e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.14328431701621 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4555909654395903, dt = 0.003961660569039924
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.5%)
   LB compute        : 268.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.0%)
Info: cfl dt = 0.003961660569039926                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2913e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.38758103649903 (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     : 6.18 us    (2.2%)
   patch tree reduce : 1632.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 264.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.2%)
Info: cfl dt = 0.003961660569039926                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8187e+05 | 65536 |      2 | 1.716e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.10209836001953 (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     : 6.63 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 282.47 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.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    | 4.5186e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.33470824393787 (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     : 6.50 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 263.25 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.3%)
Info: cfl dt = 0.003961660569039928                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6918e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.10376350343493 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47143760771574994, dt = 0.003961660569039928
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.30 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (54.9%)
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.6821e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.89303685579222 (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     : 6.25 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 262.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (60.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    | 3.6984e+05 | 65536 |      2 | 1.772e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.48561222118931 (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.29 us    (2.0%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 299.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.1%)
Info: cfl dt = 0.003961660569039933                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7257e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.84159322614332 (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     : 6.50 us    (2.0%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 295.65 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (65.2%)
Info: cfl dt = 0.003961660569039935                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5571e+05 | 65536 |      2 | 1.842e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.40986249488212 (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     : 6.85 us    (2.5%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 249.57 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (61.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    | 4.7237e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.79801571229049 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4912459105609496, dt = 0.003961660569039937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.6%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 247.31 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.6%)
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.5533e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.08973307923496 (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     : 6.41 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 261.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.8%)
Info: cfl dt = 0.003961660569039943                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8335e+05 | 65536 |      2 | 1.710e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.4243101454581 (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     : 6.55 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 259.67 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.8%)
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    | 4.4188e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.16292644007437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5031308922680694, dt = 0.003961660569039947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 244.92 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (65.1%)
Info: cfl dt = 0.00396166056903995                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5743e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.545503431839 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5070925528371093, dt = 0.00396166056903995
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 247.55 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.9%)
Info: cfl dt = 0.003961660569039955                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4360e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.53581976205272 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5110542134061492, dt = 0.003961660569039955
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 269.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.5%)
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.5790e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.64886158122874 (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     : 6.42 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 268.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.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.4572e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9978589267134 (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     : 6.71 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 291.24 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.0%)
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.4912e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.73829353956339 (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     : 6.26 us    (2.3%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 251.24 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.5%)
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.6027e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.16368414974824 (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     : 6.66 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 285.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.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    | 4.5135e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.22371043401687 (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     : 6.48 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 303.87 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.6%)
Info: cfl dt = 0.003961660569039999                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4314e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4365030952024 (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     : 6.12 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 263.63 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (60.1%)
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.4282e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.36754961994859 (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     : 6.17 us    (2.0%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.3%)
   LB compute        : 287.06 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (63.1%)
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.6264e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.6799240762928 (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     : 6.51 us    (2.4%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 245.76 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.1%)
Info: cfl dt = 0.003961660569040035                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5958e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.01361250716032 (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     : 6.35 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 274.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.5%)
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.6148e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.42836084476906 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5506708190965492, dt = 0.003961660569040051
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.4%)
   patch tree reduce : 1802.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 245.22 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.0%)
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.6436e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.05334456082109 (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     : 6.28 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 236.36 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.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.5985e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.07231325839956 (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     : 6.47 us    (2.1%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.5%)
   LB compute        : 292.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (67.2%)
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.5741e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.54182318077399 (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     : 7.29 us    (2.8%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 240.99 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (57.4%)
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.6043e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.19887384318768 (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     : 6.24 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 287.16 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.0%)
Info: cfl dt = 0.00396166056904016                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7423e+05 | 65536 |      2 | 1.751e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.43998011578027 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5704791219417497, dt = 0.00396166056904016
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.0%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 307.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.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    | 4.5252e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.477573510957 (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     : 6.59 us    (2.6%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 234.65 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.9%)
Info: cfl dt = 0.003961660569040223                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5939e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.97227905431436 (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     : 6.22 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 259.55 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.6%)
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.5080e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10286397963871 (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     : 6.46 us    (2.5%)
   patch tree reduce : 2.46 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 238.38 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (45.8%)
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.4346e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.50653681249565 (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     : 6.61 us    (2.5%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 239.65 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.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.5410e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.82047957707346 (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     : 6.22 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 296.78 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.4%)
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.1864e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.10361860939496 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 267.32 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (57.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.4969e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.861948146368 (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     : 6.89 us    (2.5%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 255.06 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (63.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.5651e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.34598414100468 (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     : 6.08 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 229.75 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.1%)
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.5456e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9219793791804 (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     : 6.60 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 262.07 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
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.4486e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.81143262199403 (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     : 7.13 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 278.36 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (66.1%)
Info: cfl dt = 0.003961660569040728                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5556e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13880105919448 (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     : 6.54 us    (2.4%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 246.09 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (61.9%)
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.4946e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.8106353047601 (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     : 6.76 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1653.00 ns (0.6%)
   LB compute        : 241.72 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.9%)
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.5497e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01002216327652 (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     : 6.46 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 279.68 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.6%)
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.3978e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.70535386214736 (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     : 6.21 us    (2.4%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 237.17 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.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.6489e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.16954033232696 (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     : 6.41 us    (2.6%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 225.07 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.41 us   (93.2%)
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.4522e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.88935604075922 (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     : 6.81 us    (2.7%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 231.42 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (59.8%)
Info: cfl dt = 0.003961660569041399                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4056e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.11262170990749 (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     : 6.66 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 281.62 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (62.0%)
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.3495e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65464228672744 (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     : 6.59 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 252.62 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.7%)
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.5847e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.77232363215343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6457506727535224, dt = 0.003961660569041714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 246.05 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.4%)
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.4555e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.96163002765415 (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     : 6.66 us    (2.5%)
   patch tree reduce : 1922.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 239.74 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.6%)
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.5062e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.06356375950713 (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.36 us    (2.5%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.6%)
   LB compute        : 236.80 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.5%)
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    | 3.2885e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.56388370534633 (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     : 6.45 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 277.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (56.7%)
Info: cfl dt = 0.00396166056904253                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2928e+05 | 65536 |      2 | 1.990e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.65810672143515 (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     : 6.24 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 271.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (56.1%)
Info: cfl dt = 0.00396166056904278                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7174e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.89843740050394 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.665558975598733, dt = 0.00396166056904278
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.0%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 280.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (63.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    | 3.3182e+05 | 65536 |      2 | 1.975e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.21161399754472 (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     : 6.61 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 279.98 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.4%)
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    | 3.3590e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.0979415494438 (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     : 6.50 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1552.00 ns (0.5%)
   LB compute        : 271.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.6%)
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    | 3.4730e+05 | 65536 |      2 | 1.887e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.58068772859174 (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     : 6.53 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 271.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (61.3%)
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    | 3.4747e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.61709318039166 (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     : 6.62 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 294.61 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (64.4%)
Info: cfl dt = 0.003961660569044373                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4296e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.63531561620371 (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     : 6.89 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 303.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.8%)
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    | 3.3773e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.49652466886273 (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     : 6.57 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 248.63 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.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    | 3.3639e+05 | 65536 |      2 | 1.948e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.20479527030585 (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     : 6.64 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 302.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.5%)
Info: cfl dt = 0.003961660569045673                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2846e+05 | 65536 |      2 | 1.995e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.47935385232358 (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.54 us    (1.8%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.3%)
   LB compute        : 341.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (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    | 3.4874e+05 | 65536 |      2 | 1.879e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.89217758222414 (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     : 6.77 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 255.78 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (63.0%)
Info: cfl dt = 0.003961660569046716                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4867e+05 | 65536 |      2 | 1.880e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.87803273552251 (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     : 6.77 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 265.35 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.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    | 3.4122e+05 | 65536 |      2 | 1.921e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.25705240580659 (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     : 6.32 us    (2.2%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 265.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.1%)
Info: cfl dt = 0.003961660569047923                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4400e+05 | 65536 |      2 | 1.905e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.86251994910634 (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     : 7.01 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 272.99 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (62.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    | 3.4362e+05 | 65536 |      2 | 1.907e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.77862187261552 (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     : 6.65 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1512.00 ns (0.5%)
   LB compute        : 290.86 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.4%)
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.3542e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75630005840418 (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     : 6.40 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 285.04 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.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.4632e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.12831309106939 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249838841344158, dt = 0.0039616605690500906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 1722.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 288.52 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.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    | 3.4877e+05 | 65536 |      2 | 1.879e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.89933761457448 (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.42 us    (2.1%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 270.36 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.0%)
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.1034e+05 | 65536 |      2 | 1.597e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.29948210655779 (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.58 us    (1.9%)
   patch tree reduce : 1792.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 16.68 us   (4.9%)
   LB compute        : 301.86 us  (88.9%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (64.8%)
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.4445e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.7207803735542 (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.81 us    (2.2%)
   patch tree reduce : 1572.00 ns (0.5%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 293.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.7%)
Info: cfl dt = 0.003961660569053781                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9042e+05 | 65536 |      2 | 1.679e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.96256874558837 (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     : 6.60 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1382.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 284.18 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.3%)
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    | 3.4773e+05 | 65536 |      2 | 1.885e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.67233569599516 (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     : 6.59 us    (2.1%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 297.67 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (64.5%)
Info: cfl dt = 0.0039616605690560355                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3107e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.8095386687995 (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     : 6.51 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 327.39 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (59.9%)
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    | 3.6580e+05 | 65536 |      2 | 1.792e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.60557574900383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7527155081177861, dt = 0.003961660569057279
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 307.13 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.0%)
Info: cfl dt = 0.003961660569058607                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2949e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.46512461735126 (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     : 7.19 us    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 315.10 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.0%)
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.5337e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.66158831919559 (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.12 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 266.49 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (63.7%)
Info: cfl dt = 0.0039616605690615345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6729e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.69183290481745 (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     : 6.30 us    (2.1%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 273.27 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.3%)
Info: cfl dt = 0.0039616605690631435                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3857e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44142011578667 (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.60 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 262.74 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (61.4%)
Info: cfl dt = 0.003961660569064857                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7272e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.87359047746075 (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     : 6.63 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 239.20 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (59.7%)
Info: cfl dt = 0.003961660569066682                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4297e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4000654066426 (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     : 6.69 us    (2.5%)
   patch tree reduce : 1912.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1543.00 ns (0.6%)
   LB compute        : 242.93 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1373.00 ns (57.8%)
Info: cfl dt = 0.0039616605690686235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5867e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.81587189753257 (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     : 6.63 us    (2.4%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 237.47 us  (86.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.2%)
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.4603e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.06619293396123 (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     : 6.52 us    (1.9%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 325.62 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.9%)
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.4217e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.22437913947024 (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     : 6.58 us    (2.3%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 267.10 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.4%)
Info: cfl dt = 0.0039616605690752085                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4339e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.4915129126801 (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     : 6.50 us    (2.0%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 301.04 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.2%)
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.4802e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49760378638803 (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     : 6.61 us    (2.0%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 310.56 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.4%)
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.5082e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10742997959828 (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     : 6.27 us    (2.0%)
   patch tree reduce : 1772.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 286.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.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.2959e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48680913768759 (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     : 6.38 us    (2.2%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 273.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.9%)
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    | 3.7336e+05 | 65536 |      2 | 1.755e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.25095424555353 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 267.87 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1393.00 ns (57.9%)
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.2105e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6299258627163 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 269.67 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.2%)
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.6833e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.91776447678053 (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     : 6.58 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 263.91 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.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    | 4.0557e+05 | 65536 |      2 | 1.616e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2598442675664 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8200637377920142, dt = 0.003961660569095964
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 286.80 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (59.6%)
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.6475e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.1393092574896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8240253983611102, dt = 0.003961660569099666
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.2%)
   patch tree reduce : 1712.00 ns (0.5%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 293.48 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.9%)
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.6081e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.28224586843153 (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     : 6.90 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 270.49 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (58.5%)
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.5546e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.11851072570263 (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     : 6.50 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 268.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.4%)
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.6639e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.49529911570916 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8359103800684212, dt = 0.003961660569112089
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1542.00 ns (0.5%)
   LB compute        : 266.28 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (62.9%)
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.6155e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.44377206316149 (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     : 6.74 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 266.41 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.6%)
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.6298e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.75478853425788 (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     : 6.12 us    (2.2%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 255.85 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (58.9%)
Info: cfl dt = 0.003961660569126712                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4504e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.84960456166596 (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     : 6.57 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 258.72 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.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    | 4.6042e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.1962340774799 (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     : 6.34 us    (2.2%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 262.03 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.56 us    (76.5%)
Info: cfl dt = 0.003961660569137841                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6903e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0712008259812 (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     : 6.51 us    (2.5%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 243.11 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.1%)
Info: cfl dt = 0.0039616605691438584                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3475e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.61096361584731 (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.29 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 275.22 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (60.8%)
Info: cfl dt = 0.003961660569150194                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5672e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39121739548496 (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     : 6.41 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 242.24 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.0%)
Info: cfl dt = 0.003961660569156865                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5808e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.68779086923641 (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     : 6.47 us    (2.5%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 237.58 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (60.6%)
Info: cfl dt = 0.003961660569163886                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5508e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.03579903801882 (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     : 6.52 us    (2.3%)
   patch tree reduce : 1792.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 264.32 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.3%)
Info: cfl dt = 0.003961660569171269                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5419e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.84044188266971 (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     : 7.29 us    (2.8%)
   patch tree reduce : 1683.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.6%)
   LB compute        : 238.44 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.1%)
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    | 4.4667e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.20388093543977 (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     : 6.60 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 237.79 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (63.3%)
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    | 4.5050e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.03884711118332 (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     : 6.97 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 278.73 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.2%)
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    | 4.4830e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55956212362234 (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     : 6.84 us    (2.5%)
   patch tree reduce : 1822.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 256.17 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (60.8%)
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    | 4.7484e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.33407784246428 (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     : 7.08 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 273.06 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.8%)
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    | 4.7069e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.43237805504063 (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     : 6.52 us    (2.4%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 253.11 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (61.6%)
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    | 4.6498e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.18935742290242 (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     : 6.24 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 291.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.9%)
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    | 4.5315e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.61506706959813 (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.87 us    (1.6%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 344.97 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.3%)
Info: cfl dt = 0.003961660569245459                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4671e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.21271289618161 (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     : 6.71 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 300.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.6%)
Info: cfl dt = 0.003961660569256898                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6259e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.66804985770823 (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     : 6.81 us    (2.7%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 229.83 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.1%)
Info: cfl dt = 0.003961660569268885                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6159e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.45153003597521 (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     : 21.97 us   (6.8%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 285.08 us  (88.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.4%)
Info: cfl dt = 0.003961660569281443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6224e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.59250962114305 (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     : 6.47 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 278.63 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.3%)
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    | 4.4203e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19505836559632 (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     : 6.14 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 269.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (63.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    | 4.6941e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.152665893302 (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     : 6.40 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 230.21 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.0%)
Info: cfl dt = 0.003961660569322761                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6911e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.08903352438145 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 263.78 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.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    | 4.6318e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.79700039172465 (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     : 6.67 us    (2.7%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 227.81 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.8%)
Info: cfl dt = 0.003961660569353588                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6999e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.27994665181207 (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     : 6.82 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 265.24 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.3%)
Info: cfl dt = 0.003961660569370061                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4636e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.13689977328775 (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     : 6.80 us    (2.6%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 237.61 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (60.4%)
Info: cfl dt = 0.0039616605693872774                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5871e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.8240292537926 (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     : 6.77 us    (2.6%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.6%)
   LB compute        : 240.10 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (53.8%)
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.5572e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.1750941331722 (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     : 6.29 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 243.93 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (55.5%)
Info: cfl dt = 0.003961660569424049                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5116e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1807648334584 (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     : 7.16 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1553.00 ns (0.5%)
   LB compute        : 265.31 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.9%)
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    | 4.5315e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.61366037998135 (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     : 6.66 us    (2.4%)
   patch tree reduce : 1633.00 ns (0.6%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 255.50 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.7%)
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    | 4.4325e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.46134214116415 (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     : 6.47 us    (2.1%)
   patch tree reduce : 1832.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1483.00 ns (0.5%)
   LB compute        : 291.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
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    | 4.3639e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9664858418907 (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     : 6.22 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 279.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (58.1%)
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.3833e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.39024334453569 (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     : 6.49 us    (2.2%)
   patch tree reduce : 1643.00 ns (0.6%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 269.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.4%)
Info: cfl dt = 0.003961660569531013                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0773e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.72950930600842 (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     : 6.47 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 246.69 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.3%)
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    | 4.4977e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87819518418806 (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     : 7.09 us    (2.7%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 242.60 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.8%)
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    | 4.5001e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.93205827271896 (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     : 6.76 us    (2.1%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 301.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.8%)
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    | 4.4656e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.17985461163913 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 269.14 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.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.5377e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.75048900562989 (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     : 6.77 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 262.87 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (64.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.4992e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.91136617729275 (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     : 6.50 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 266.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.9%)
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    | 4.4926e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76859430170246 (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     : 6.48 us    (2.4%)
   patch tree reduce : 1712.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 243.79 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.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    | 4.5858e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.79643127701293 (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     : 6.49 us    (2.5%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 236.36 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (62.9%)
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    | 4.6011e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.12898173740561 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 262.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (61.2%)
Info: cfl dt = 0.0039616605697889214                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5297e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57638840080018 (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     : 6.43 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 262.64 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.1%)
Info: cfl dt = 0.003961660569823703                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5770e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.60425824461421 (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     : 6.46 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 253.60 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.8%)
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    | 4.5329e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64491169309635 (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     : 6.63 us    (1.1%)
   patch tree reduce : 1813.00 ns (0.3%)
   gen split merge   : 1182.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.2%)
   LB compute        : 578.76 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.33 us    (67.5%)
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    | 4.4461e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.75645862224575 (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     : 6.29 us    (2.1%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 282.78 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (65.5%)
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    | 4.5596e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.22585797577513 (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     : 6.40 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 284.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.2%)
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    | 3.3441e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.77387316865655 (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     : 6.35 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 262.58 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.7%)
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    | 3.2933e+05 | 65536 |      2 | 1.990e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.66983876586836 (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     : 6.19 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 271.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (56.4%)
Info: cfl dt = 0.003961660570062915                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1662e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.6658312077118 (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     : 6.37 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 253.47 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.4%)
Info: cfl dt = 0.003961660570108313                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5693e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43661389785127 (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     : 6.44 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.5%)
   LB compute        : 260.91 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (64.3%)
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    | 4.4968e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.85920717431861 (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     : 6.57 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 295.73 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.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    | 4.3987e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.72527818102314 (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     : 6.39 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 237.40 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.9%)
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.5722e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49965280578387 (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     : 6.13 us    (2.2%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 252.95 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (58.9%)
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.6432e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.0450123059298 (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     : 6.78 us    (2.6%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 239.43 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (56.6%)
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.5384e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76424256291033 (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     : 6.81 us    (2.4%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 266.05 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.9%)
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.5699e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.4494351232954 (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     : 6.68 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 255.14 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.0%)
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.5576e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.18259116487647 (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     : 6.01 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 245.24 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (61.0%)
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.5823e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.71972961045037 (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     : 6.68 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 302.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1932.00 ns (65.6%)
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.0997e+05 | 65536 |      2 | 1.599e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.21850706927928 (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     : 6.24 us    (1.9%)
   patch tree reduce : 1692.00 ns (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 315.73 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.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    | 3.3767e+05 | 65536 |      2 | 1.941e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.48364790352342 (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     : 6.27 us    (2.2%)
   patch tree reduce : 1812.00 ns (0.6%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 262.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (56.7%)
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.5395e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.78867494361 (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     : 6.43 us    (2.2%)
   patch tree reduce : 1723.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 270.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.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.6723e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.67957821517037 (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     : 6.54 us    (2.2%)
   patch tree reduce : 1673.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 271.62 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.0%)
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.5993e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08929137107638 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 264.21 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.5%)
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.6904e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.07203073798179 (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     : 7.13 us    (2.7%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 238.73 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.9%)
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.6473e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.13392460689226 (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     : 6.84 us    (2.7%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1132.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1533.00 ns (0.6%)
   LB compute        : 228.19 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (61.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.7191e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.69806016514306 (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     : 6.53 us    (2.4%)
   patch tree reduce : 1643.00 ns (0.6%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 246.76 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.68 us    (64.0%)
Info: cfl dt = 0.003961660571189174                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7152e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.61340200280742 (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     : 6.38 us    (2.0%)
   patch tree reduce : 1994.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 300.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.5%)
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.6625e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.46515970312043 (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.39 us    (2.4%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 240.71 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.3%)
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.7443e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.24479336609652 (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     : 6.28 us    (2.2%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 263.32 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.3%)
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.5993e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.0899741399164 (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     : 6.29 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 237.15 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.4%)
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.6965e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.20483996368012 (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     : 6.67 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 300.11 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (64.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.6583e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.37401996219205 (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     : 6.21 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 264.62 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.7%)
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.6275e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.70334039554804 (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.56 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 268.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (64.7%)
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.7484e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.3348011574766 (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     : 6.48 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 245.21 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (65.6%)
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.6889e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.03984239605683 (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     : 6.36 us    (2.2%)
   patch tree reduce : 1692.00 ns (0.6%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 261.10 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.7%)
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.7039e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.36597296311335 (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     : 6.43 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 246.93 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.7%)
Info: cfl dt = 0.003961660572181376                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7279e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.88848844813273 (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     : 6.79 us    (2.2%)
   patch tree reduce : 1672.00 ns (0.5%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 288.79 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (61.5%)
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.6710e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.65100284586862 (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     : 6.67 us    (2.3%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 269.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.9%)
Info: cfl dt = 0.00396166057242048                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6688e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.60159148057772 (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     : 6.46 us    (2.5%)
   patch tree reduce : 1743.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 239.93 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (60.3%)
Info: cfl dt = 0.0039616605725456945                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6700e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.62818740079693 (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     : 7.85 us    (3.0%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 242.01 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (61.6%)
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.5208e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.3824862484844 (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     : 6.22 us    (2.3%)
   patch tree reduce : 1663.00 ns (0.6%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 250.36 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (65.0%)
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.7085e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.46692012644823 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 267.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.8%)
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.7532e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.43966770639973 (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     : 6.41 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1612.00 ns (0.6%)
   LB compute        : 261.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (61.4%)
Info: cfl dt = 0.003961660573086566                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6493e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.17815167041526 (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     : 6.79 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 282.77 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.4%)
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.6775e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.79186404622637 (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     : 6.54 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 255.39 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (50.7%)
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.6754e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.74640796450183 (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     : 6.69 us    (2.7%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 229.94 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.6%)
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.6761e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.76124762604309 (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     : 6.42 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 236.17 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.6%)
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.7521e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.41511177386272 (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     : 6.63 us    (2.6%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 231.70 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.5%)
Info: cfl dt = 0.003961660573860322                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8865e+05 | 65536 |      2 | 1.686e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.57816327298545 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1964214919691465, dt = 0.003961660573860322
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 250.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (49.2%)
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.6077e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.27354122670276 (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     : 6.52 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.54 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (65.5%)
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.7445e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.24948661321868 (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     : 6.41 us    (2.2%)
   patch tree reduce : 1782.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1553.00 ns (0.5%)
   LB compute        : 265.63 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.1%)
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.2822e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.18873441167028 (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     : 6.47 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 267.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.6%)
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.4597e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.05275777362785 (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     : 6.60 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1512.00 ns (0.5%)
   LB compute        : 258.71 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (46.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.5016e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.96390528328767 (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     : 7.07 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1833.00 ns (0.6%)
   LB compute        : 274.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
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.5906e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9003493471912 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 272.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.5%)
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.5737e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53263743722083 (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     : 6.33 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 268.14 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (58.0%)
Info: cfl dt = 0.003961660575356561                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4958e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.83761370950464 (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     : 6.47 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 235.19 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (58.2%)
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.5415e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.83254874534629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.232076437140399, dt = 0.003961660575568436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 287.21 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.6%)
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    | 3.7729e+05 | 65536 |      2 | 1.737e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.10664862946493 (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     : 6.62 us    (2.5%)
   patch tree reduce : 1882.00 ns (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.5%)
   LB compute        : 246.73 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.4%)
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    | 3.7093e+05 | 65536 |      2 | 1.767e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.72300022796567 (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     : 6.47 us    (1.7%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 15.78 us   (4.3%)
   LB compute        : 333.72 us  (90.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (59.2%)
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.5673e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39466086935975 (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     : 6.39 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 258.29 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.6%)
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.6444e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.07117521100612 (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     : 6.71 us    (2.5%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 246.21 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.3%)
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.6666e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.55503755890972 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2518847400204807, dt = 0.003961660576719635
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 287.08 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.2%)
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.7239e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.80182380166089 (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     : 6.18 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 296.40 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.3%)
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.7097e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.49269544093575 (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     : 6.24 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 240.84 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.6%)
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.7490e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.34891565691498 (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     : 6.32 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 271.50 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.9%)
Info: cfl dt = 0.003961660577759055                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7289e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.90982248460935 (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     : 6.19 us    (2.4%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 239.40 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.1%)
Info: cfl dt = 0.003961660578036562                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7334e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.0090563238062 (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     : 6.63 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1392.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 234.56 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.0%)
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.1560e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44324762105973 (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     : 6.49 us    (2.6%)
   patch tree reduce : 1903.00 ns (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 227.74 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.4%)
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.6542e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.28446167529235 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 262.17 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.1%)
Info: cfl dt = 0.003961660578913863                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9153e+05 | 65536 |      2 | 1.674e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.20542806972169 (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     : 6.36 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 280.52 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.6%)
Info: cfl dt = 0.003961660579221745                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5489e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.99361874776478 (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     : 10.66 us   (3.6%)
   patch tree reduce : 3.68 us    (1.2%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 269.61 us  (90.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1343.00 ns (58.0%)
Info: cfl dt = 0.003961660579537616                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6205e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.55198262205174 (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     : 6.61 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 251.21 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (55.6%)
Info: cfl dt = 0.003961660579861641                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4185e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.15565750793128 (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     : 6.09 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 281.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.1%)
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.7243e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.81087755390867 (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     : 6.44 us    (2.4%)
   patch tree reduce : 1813.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 249.44 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (64.1%)
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.6647e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.51361349827594 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3033863275393436, dt = 0.003961660580534812
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 260.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (62.4%)
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    | 4.6649e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.51723217393473 (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     : 6.20 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 261.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (60.9%)
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    | 4.6732e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.6992782604877 (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.55 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.6%)
   LB compute        : 238.32 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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    | 3.7378e+05 | 65536 |      2 | 1.753e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.34268178537948 (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     : 6.51 us    (2.4%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 251.47 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.9%)
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    | 4.4371e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.56053443701283 (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     : 6.63 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 258.21 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (60.6%)
Info: cfl dt = 0.003961660582372272                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4934e+05 | 65536 |      2 | 1.876e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.02410128242012 (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.99 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 241.12 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.2%)
Info: cfl dt = 0.003961660582767668                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4495e+05 | 65536 |      2 | 1.900e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.06836258969709 (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     : 6.54 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 263.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.9%)
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    | 4.1569e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46214446775663 (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     : 6.53 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 226.92 us  (85.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.2%)
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    | 4.7705e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.81577346194442 (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     : 6.78 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 293.37 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.7%)
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    | 4.5781e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.62893648535997 (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     : 6.82 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.3%)
   LB compute        : 285.67 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.1%)
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    | 4.6429e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.03871745870447 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 265.92 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (57.6%)
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    | 4.6367e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.90427122389681 (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     : 6.39 us    (2.1%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 284.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.9%)
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    | 4.7398e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.14845636976742 (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     : 6.58 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 267.63 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (56.0%)
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    | 4.6696e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.62065967900912 (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     : 7.22 us    (2.8%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 231.49 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
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.6993e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.26722020322049 (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     : 6.24 us    (1.8%)
   patch tree reduce : 1742.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 326.81 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.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    | 4.6058e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.23144849289856 (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     : 6.63 us    (2.2%)
   patch tree reduce : 1752.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 277.45 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.0%)
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    | 4.6312e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7848112465338 (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     : 6.28 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 256.89 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.2%)
Info: cfl dt = 0.003961660587801355                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7667e+05 | 65536 |      2 | 1.740e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.97016410327757 (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     : 6.56 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 282.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.7%)
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    | 4.4637e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.13972992705837 (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     : 6.18 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 263.98 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (60.1%)
Info: cfl dt = 0.003961660588863509                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7069e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.43148984384985 (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     : 6.77 us    (2.1%)
   patch tree reduce : 1792.00 ns (0.5%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 307.09 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.5%)
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    | 4.6934e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.13889369606999 (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     : 6.44 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 264.08 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (58.0%)
Info: cfl dt = 0.003961660589975087                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6588e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.38595006737026 (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     : 21.28 us   (7.0%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 265.25 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.8%)
Info: cfl dt = 0.003961660590549962                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2841e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.23122259149551 (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     : 6.64 us    (2.5%)
   patch tree reduce : 1673.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 244.38 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.7%)
Info: cfl dt = 0.0039616605911378605                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5636e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.3127551398337 (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     : 6.41 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 244.39 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1383.00 ns (59.5%)
Info: cfl dt = 0.003961660591739012                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5212e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.39041891434799 (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     : 6.25 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 235.44 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.6%)
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    | 3.6857e+05 | 65536 |      2 | 1.778e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.20933222591817 (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     : 6.74 us    (2.6%)
   patch tree reduce : 1763.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 234.09 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.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    | 4.7419e+05 | 65536 |      2 | 1.382e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.19408193024378 (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     : 6.66 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 285.21 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.4%)
Info: cfl dt = 0.003961660593624308                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5853e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.78470018433401 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4103511633655412, dt = 0.003961660593624308
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 262.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (55.6%)
Info: cfl dt = 0.003961660594280809                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6102e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.32747196659936 (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     : 6.36 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 262.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.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    | 3.7995e+05 | 65536 |      2 | 1.725e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.68442438905605 (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     : 6.69 us    (2.1%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 293.37 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.9%)
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.6810e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.86793481149502 (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     : 6.25 us    (2.1%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.5%)
   LB compute        : 271.12 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.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.6520e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.2370397600707 (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     : 6.27 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 244.20 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.8%)
Info: cfl dt = 0.003961660597053631                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5896e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.87835541972754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4301594663403734, dt = 0.003961660597053631
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 262.52 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.5%)
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    | 3.7985e+05 | 65536 |      2 | 1.725e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.66369944022338 (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     : 6.75 us    (2.6%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 237.68 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (58.9%)
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.6804e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.85566458894861 (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     : 6.14 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 286.40 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.6%)
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.6614e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.44221904528207 (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     : 6.49 us    (2.0%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 310.58 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.7%)
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.5903e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.89473604057295 (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     : 6.36 us    (2.2%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 264.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (60.8%)
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.7069e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.43218978124156 (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     : 7.01 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 261.87 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.7%)
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.6895e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.05373592614433 (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     : 6.51 us    (2.3%)
   patch tree reduce : 1623.00 ns (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 259.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (60.7%)
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.6857e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9706174887453 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 261.64 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (56.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.7498e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.36589024938515 (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     : 7.04 us    (2.6%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 246.44 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
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    | 3.7814e+05 | 65536 |      2 | 1.733e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.29184875997865 (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     : 6.77 us    (2.5%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 245.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.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.5990e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08264497541178 (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     : 6.49 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 240.75 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.5%)
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.6112e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.34818720054086 (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     : 6.98 us    (2.7%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.6%)
   LB compute        : 239.73 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.1%)
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.5621e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.28060767350037 (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     : 6.43 us    (2.3%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 259.97 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.9%)
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.3361e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.36277735205273 (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     : 6.30 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 272.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (63.1%)
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.6392e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.95887496933639 (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     : 6.38 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 243.65 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (59.6%)
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.5819e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.71230552011905 (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     : 6.71 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 288.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
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.5192e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.34812408937033 (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     : 6.28 us    (2.0%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 297.20 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (64.9%)
Info: cfl dt = 0.003961660611799673                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7385e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.11931710487467 (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     : 6.69 us    (2.6%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 231.68 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.9%)
Info: cfl dt = 0.003961660612834685                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6971e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.21937877886491 (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     : 6.71 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 293.87 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.6%)
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    | 3.9419e+05 | 65536 |      2 | 1.663e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.78322881905187 (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     : 6.68 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 240.15 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (59.4%)
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.5920e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.93089195810724 (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     : 6.85 us    (2.6%)
   patch tree reduce : 1792.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 245.01 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.4%)
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    | 4.5904e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.89551939459034 (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     : 6.50 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.5%)
   LB compute        : 242.15 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.7%)
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.3735e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.17666976303757 (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     : 6.82 us    (2.7%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 232.19 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.5%)
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.7208e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.73357682993665 (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     : 6.26 us    (2.4%)
   patch tree reduce : 1802.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 235.85 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1393.00 ns (59.4%)
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.6871e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.0008614942368 (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     : 6.45 us    (2.3%)
   patch tree reduce : 1683.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 255.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (58.9%)
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.7241e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.80502838130842 (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.45 us    (2.4%)
   patch tree reduce : 1752.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 242.48 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.2%)
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.1792e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.94739330238392 (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     : 6.45 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 228.77 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (62.0%)
Info: cfl dt = 0.003961660623109145                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7194e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.70468053468353 (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     : 6.84 us    (2.5%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 250.06 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (62.3%)
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.5137e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2275752856104 (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     : 6.35 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 253.50 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (59.5%)
Info: cfl dt = 0.003961660625641012                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6711e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.65181419191502 (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     : 6.43 us    (1.8%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.4%)
   LB compute        : 335.72 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.3%)
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.0481e+05 | 65536 |      2 | 1.619e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.09454109260291 (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     : 6.83 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 273.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.2%)
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.6612e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.43642905924003 (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     : 6.44 us    (2.1%)
   patch tree reduce : 1662.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 282.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.1%)
Info: cfl dt = 0.003961660629620002                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5297e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.57645662846743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5569326058964448, dt = 0.003961660629620002
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 251.40 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.5%)
Info: cfl dt = 0.003961660630996026                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6858e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9720843924602 (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     : 6.62 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 238.72 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.0%)
Info: cfl dt = 0.003961660632397482                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5656e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.35775148834087 (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     : 6.48 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 258.05 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.7%)
Info: cfl dt = 0.003961660633824723                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3817e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3540897254263 (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     : 6.58 us    (2.6%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 234.85 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.0%)
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    | 4.3426e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.50496450183508 (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     : 6.20 us    (2.0%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.4%)
   LB compute        : 291.06 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.5%)
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    | 4.5719e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49486145442361 (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     : 6.37 us    (2.3%)
   patch tree reduce : 1722.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 260.10 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (63.1%)
Info: cfl dt = 0.003961660638264752                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6923e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.11439403043862 (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     : 6.35 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 237.35 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
Info: cfl dt = 0.003961660639798743                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6137e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.40409363609844 (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     : 6.52 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 246.90 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.8%)
Info: cfl dt = 0.00396166064136034                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6898e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.06036885923932 (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     : 6.63 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 247.87 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.2%)
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    | 4.4108e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.9878014468593 (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     : 6.43 us    (2.0%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 305.59 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.3%)
Info: cfl dt = 0.003961660644567847                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3225e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.30345675443523 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.596549212257693, dt = 0.003961660644567847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 304.82 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.3%)
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.4150e+05 | 65536 |      2 | 1.919e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.31694391818871 (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     : 6.80 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 249.18 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.8%)
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.4752e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.62705126556907 (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.33 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 253.84 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.1%)
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.4195e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.4161303338728 (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     : 6.52 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 285.01 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.6%)
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.5089e+05 | 65536 |      2 | 1.868e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.36031317169278 (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     : 6.30 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 247.64 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (61.2%)
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.5026e+05 | 65536 |      2 | 1.871e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.2239609214026 (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     : 7.02 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 275.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (61.6%)
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.0773e+05 | 65536 |      2 | 2.130e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.96792111571892 (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     : 6.54 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 270.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.8%)
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    | 4.7333e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.00641869642433 (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     : 6.83 us    (2.2%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 288.01 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.6%)
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    | 4.5746e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.55338674818753 (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     : 6.28 us    (1.9%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1261.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 306.23 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (60.4%)
Info: cfl dt = 0.003961660660468945                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6406e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.98973396856194 (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     : 6.18 us    (2.0%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 293.88 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (64.2%)
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.8880e+05 | 65536 |      2 | 1.686e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.61078214527423 (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     : 6.27 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 243.46 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (63.4%)
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.3384e+05 | 65536 |      2 | 1.963e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.64963880544032 (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     : 6.54 us    (2.2%)
   patch tree reduce : 1692.00 ns (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 279.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.7%)
Info: cfl dt = 0.003961660666336191                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3258e+05 | 65536 |      2 | 1.971e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.37714874693226 (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     : 6.74 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 244.45 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.2%)
Info: cfl dt = 0.003961660668358467                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6032e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.17472444593861 (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     : 6.71 us    (2.5%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 250.98 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
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.4704e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.52348789373114 (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     : 6.58 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 302.21 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.1%)
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.4077e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.15770130397922 (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     : 6.63 us    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 298.85 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.7%)
Info: cfl dt = 0.003961660674630781                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6743e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.72138434311532 (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     : 6.22 us    (2.2%)
   patch tree reduce : 1782.00 ns (0.6%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 264.17 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (58.4%)
Info: cfl dt = 0.003961660676791472                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6691e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.60885583055008 (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     : 6.38 us    (2.5%)
   patch tree reduce : 1702.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 235.21 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.3%)
Info: cfl dt = 0.0039616606789878465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7322e+05 | 65536 |      2 | 1.385e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.98267162979076 (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     : 6.43 us    (2.1%)
   patch tree reduce : 1832.00 ns (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 286.55 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.9%)
Info: cfl dt = 0.00396166068122034                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5826e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.72622407084535 (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     : 6.82 us    (2.6%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 240.96 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.7%)
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.4353e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.75994641594616 (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     : 6.88 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.5%)
   LB compute        : 259.46 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (58.8%)
Info: cfl dt = 0.003961660685795451                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4798e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.49061672288028 (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     : 6.60 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 262.79 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.7%)
Info: cfl dt = 0.003961660688138962                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6362e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.89356282437448 (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     : 6.43 us    (2.4%)
   patch tree reduce : 1753.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 244.93 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 0.003961660690520374                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6474e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.1368838042408 (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     : 6.15 us    (2.3%)
   patch tree reduce : 1753.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 243.97 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.9%)
Info: cfl dt = 0.003961660692940144                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6301e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.76060087174616 (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.98 us    (2.1%)
   patch tree reduce : 1722.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 269.45 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.1%)
Info: cfl dt = 0.003961660695398729                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6878e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.01669830737374 (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     : 6.29 us    (2.4%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1171.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 236.78 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (8.0%)
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    | 4.7452e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.26568185317028 (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     : 21.34 us   (7.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 257.64 us  (87.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.0%)
Info: cfl dt = 0.003961660700434182                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3620e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.92652888868295 (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     : 6.28 us    (2.2%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 263.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.6%)
Info: cfl dt = 0.003961660703011983                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4931e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.77895356317515 (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     : 6.47 us    (2.3%)
   patch tree reduce : 1772.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.5%)
   LB compute        : 263.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.7%)
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.6153e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.4391556281364 (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     : 6.71 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 264.55 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.5%)
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.7212e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.74270367413457 (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     : 6.67 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 269.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.5%)
Info: cfl dt = 0.003961660710991336                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7030e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.34598380855904 (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     : 7.46 us    (3.0%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 228.04 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
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.7442e+05 | 65536 |      2 | 1.381e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.24285528302858 (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     : 6.10 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.37 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.1%)
Info: cfl dt = 0.0039616607165206385                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7537e+05 | 65536 |      2 | 1.379e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.44965491121222 (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     : 6.43 us    (2.2%)
   patch tree reduce : 1653.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 266.06 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.0%)
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.5849e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.77791146603697 (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     : 6.89 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 296.65 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.2%)
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.7266e+05 | 65536 |      2 | 1.387e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.86025569213241 (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     : 6.55 us    (2.6%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 230.39 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.5%)
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.6736e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.70784355992372 (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     : 6.30 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 278.51 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.0%)
Info: cfl dt = 0.003961660728100096                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6933e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.1350417231439 (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     : 6.45 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 283.06 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (62.6%)
Info: cfl dt = 0.003961660731106353                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5777e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.61970961349203 (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     : 6.45 us    (2.3%)
   patch tree reduce : 1722.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 256.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (60.9%)
Info: cfl dt = 0.003961660734158168                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6157e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.44816083933256 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 260.83 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (57.6%)
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.6755e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.74866306800376 (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     : 6.54 us    (1.8%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 333.58 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (65.6%)
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.6988e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.25657449112776 (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     : 6.78 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1532.00 ns (0.6%)
   LB compute        : 250.54 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (60.8%)
Info: cfl dt = 0.003961660743592042                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5989e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.08088701693596 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7629389611275574, dt = 0.003961660743592042
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 237.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.7%)
Info: cfl dt = 0.003961660746831186                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3918e+05 | 65536 |      2 | 1.932e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.81243956212602 (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     : 6.93 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 267.06 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (55.4%)
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.6319e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.80009390913403 (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     : 6.88 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.5%)
   LB compute        : 282.09 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.9%)
Info: cfl dt = 0.003961660753454363                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7014e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.31128511391695 (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     : 6.57 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 263.26 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.5%)
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    | 3.9657e+05 | 65536 |      2 | 1.653e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.30110174053223 (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     : 7.05 us    (2.6%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 246.95 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (61.0%)
Info: cfl dt = 0.003961660760274228                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6172e+05 | 65536 |      2 | 1.812e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.7171855018668 (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     : 6.35 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 257.99 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (58.6%)
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    | 3.3482e+05 | 65536 |      2 | 1.957e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.86263952210957 (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     : 6.20 us    (2.5%)
   patch tree reduce : 1703.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 229.02 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (59.3%)
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.4553e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.95680042961048 (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     : 6.68 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 265.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.6%)
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.5153e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.261536167572 (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     : 6.16 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 269.75 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (66.7%)
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.5218e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.40290356183463 (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     : 6.63 us    (2.6%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 229.53 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.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.4529e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.90398501669893 (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     : 6.64 us    (2.6%)
   patch tree reduce : 1783.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 230.71 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.1%)
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.5150e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25639693921461 (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     : 6.68 us    (2.3%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 269.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.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    | 4.6209e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.5611734653491 (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     : 6.24 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 240.38 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (66.0%)
Info: cfl dt = 0.003961660789606294                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3819e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35984681152738 (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     : 6.50 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 288.13 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 9.77 us    (3.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (61.7%)
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.5033e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.00010326776311 (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     : 7.25 us    (2.6%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 250.70 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (58.4%)
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    | 4.4454e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.74111947593349 (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     : 6.70 us    (2.6%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 237.96 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.0%)
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.5300e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.58217287933542 (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     : 6.46 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 276.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (60.2%)
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.5373e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74113373731042 (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     : 6.50 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 276.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.3%)
Info: cfl dt = 0.003961660809695901                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5880e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.84493349034565 (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     : 6.30 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 289.28 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
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.6157e+05 | 65536 |      2 | 1.813e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.68512620454842 (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     : 6.96 us    (2.7%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.6%)
   LB compute        : 237.47 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.2%)
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    | 4.6497e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.18604903824307 (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     : 6.76 us    (2.7%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 231.61 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (59.8%)
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.4815e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.52577219277846 (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     : 6.48 us    (2.3%)
   patch tree reduce : 1713.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 264.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (57.6%)
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    | 4.5893e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.87236990301689 (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     : 6.97 us    (2.5%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 257.23 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (58.0%)
Info: cfl dt = 0.003961660831221997                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6542e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.28511395724256 (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     : 6.32 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 256.45 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1222.00 ns (56.8%)
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    | 4.6235e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.61756213206536 (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     : 6.29 us    (2.0%)
   patch tree reduce : 1733.00 ns (0.5%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 294.55 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.8%)
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    | 4.6517e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.23026473471997 (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     : 6.49 us    (2.1%)
   patch tree reduce : 1713.00 ns (0.5%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.5%)
   LB compute        : 290.43 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.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    | 4.5504e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02502715018916 (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     : 6.49 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 280.19 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.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    | 4.6110e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.34427269613525 (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     : 6.32 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 229.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1212.00 ns (56.0%)
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.4098e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.20479849085204 (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     : 6.10 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.6%)
   LB compute        : 235.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     : 1682.00 ns (62.0%)
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    | 4.6524e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.24664588280254 (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     : 6.36 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 273.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (65.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.5183e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32711964310118 (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     : 6.68 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.5%)
   LB compute        : 298.20 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (65.6%)
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.4354e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.52334940655612 (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     : 6.71 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 260.92 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (58.8%)
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.4907e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72683317381868 (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     : 6.39 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 259.32 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1212.00 ns (55.0%)
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    | 3.1889e+05 | 65536 |      2 | 2.055e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.397912454822 (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     : 6.64 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 338.44 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.6%)
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.2386e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.24139355697174 (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     : 6.45 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 258.39 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (57.7%)
Info: cfl dt = 0.0039616608891870795                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3860e+05 | 65536 |      2 | 1.936e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.68626887233111 (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     : 6.33 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 247.10 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.5%)
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    | 3.6364e+05 | 65536 |      2 | 1.802e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.13489180140178 (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     : 6.41 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 235.04 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.6%)
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.5683e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.41653811225433 (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     : 6.81 us    (2.6%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 235.09 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
Info: cfl dt = 0.003961660905160171                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9548e+05 | 65536 |      2 | 1.657e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.06407588495385 (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     : 7.05 us    (2.5%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1442.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1812.00 ns (0.7%)
   LB compute        : 251.88 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.7%)
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.2099e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6151702106386 (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     : 6.40 us    (2.0%)
   patch tree reduce : 1822.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 294.81 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.4%)
Info: cfl dt = 0.003961660916155992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4857e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.6187692010474 (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     : 6.87 us    (2.5%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 257.19 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (61.4%)
Info: cfl dt = 0.003961660921759955                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5795e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.65996280307427 (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     : 6.76 us    (2.5%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 245.78 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.4%)
Info: cfl dt = 0.0039616609274354874                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6196e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.53174418371233 (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     : 6.21 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 244.44 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.7%)
Info: cfl dt = 0.0039616609331832395                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4829e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55607410646851 (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     : 6.31 us    (2.2%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 262.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.9%)
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.0820e+05 | 65536 |      2 | 1.605e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.83304508515057 (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     : 6.31 us    (2.3%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 247.28 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.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.4309e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.42631980970324 (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     : 6.39 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 267.88 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.7%)
Info: cfl dt = 0.003961660950866375                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3367e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.37526262927811 (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     : 6.58 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 254.11 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (59.6%)
Info: cfl dt = 0.003961660956909586                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3634e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.95601295917051 (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     : 6.35 us    (2.3%)
   patch tree reduce : 1882.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1301.00 ns (0.5%)
   LB compute        : 255.84 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (59.1%)
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.5423e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8498992742507 (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     : 6.91 us    (2.6%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 245.12 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
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.6120e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.36662489575097 (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     : 6.54 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 243.08 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (61.9%)
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.5206e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.37820440510617 (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     : 6.46 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 265.00 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (64.2%)
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.7133e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.57193130805159 (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     : 6.72 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 298.53 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.3%)
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    | 3.7052e+05 | 65536 |      2 | 1.769e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.63240600490718 (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     : 6.69 us    (2.5%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 243.97 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.5%)
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    | 3.5438e+05 | 65536 |      2 | 1.849e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.12060907707404 (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     : 6.43 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 275.85 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (62.4%)
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.3628e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.9436431661723 (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     : 9.45 us    (3.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 261.43 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.7%)
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.0620e+05 | 65536 |      2 | 1.613e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.39771185903672 (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     : 6.55 us    (2.1%)
   patch tree reduce : 1782.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 294.36 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.8%)
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.5393e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.78418143212318 (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     : 6.49 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 237.05 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (59.9%)
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    | 3.4291e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.62424531900129 (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     : 6.59 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 284.00 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (62.3%)
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    | 3.9131e+05 | 65536 |      2 | 1.675e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.15745573178701 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 246.52 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (59.5%)
Info: cfl dt = 0.003961661035513251                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7712e+05 | 65536 |      2 | 1.738e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.06911330951124 (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     : 6.24 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 241.13 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (61.4%)
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.3833e+05 | 65536 |      2 | 1.937e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.75940295960416 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 765.608902972 (s)                                        [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.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.84 us    (56.8%)
Info: Summary (strategy = parallel sweep):                                    [LoadBalance][rank=0]
 - strategy "psweep"      : max = 0.0 min = 0.0 factor = 1
 - strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 0
    max = 0
    avg = 0
    efficiency = ???%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1161.00 ns (0.4%)
   patch tree reduce : 1332.00 ns (0.4%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 289.73 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 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     : 13.39 us   (3.5%)
   patch tree reduce : 2.51 us    (0.7%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 351.66 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (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.4480e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 285.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5823e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.72069107778485 (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     : 6.65 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 289.73 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5321e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.62772844047383 (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     : 6.82 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 336.25 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4776e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.44186925292249 (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.65 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 277.74 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (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.5798e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.6660222133118 (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     : 6.57 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 285.45 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6065e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.24783752874822 (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     : 6.34 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 259.90 us  (90.3%)
   LB move op cnt    : 0
   LB apply          : 6.75 us    (2.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.6391e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.95525927801614 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 263.15 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.5607e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.24979267286072 (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     : 6.74 us    (2.7%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.5%)
   LB compute        : 231.47 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.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.6693e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.61263713002522 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.85 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6125e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.37837997930153 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 256.18 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.6911e+05 | 65536 |      2 | 1.776e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.32596446258131 (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     : 6.51 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 297.01 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (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.1757e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87157409779539 (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.54 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 229.69 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (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.2124e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.66982066447467 (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     : 6.10 us    (2.1%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 262.80 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6165e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.46363417622078 (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.40 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 262.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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.6150e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.43289834815035 (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     : 6.46 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 243.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.2482e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.44940371594487 (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     : 6.57 us    (2.5%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.5%)
   LB compute        : 235.38 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3022e+05 | 65536 |      2 | 1.985e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.86186047440388 (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     : 6.41 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 270.42 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3091e+05 | 65536 |      2 | 1.981e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.01181569460665 (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     : 6.14 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 319.37 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2779e+05 | 65536 |      2 | 1.999e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.3329964269212 (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     : 6.29 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 294.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3161e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.92647288812807 (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     : 6.68 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 271.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.5092e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.12850075990681 (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     : 6.95 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 259.40 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.4827e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55349886739553 (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     : 9.19 us    (3.1%)
   patch tree reduce : 4.73 us    (1.6%)
   gen split merge   : 1673.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 2.00 us    (0.7%)
   LB compute        : 270.21 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.5330e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64746691938853 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 261.42 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.4143e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.06438811096167 (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     : 6.65 us    (2.6%)
   patch tree reduce : 1792.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 229.56 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6558e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.32083548075924 (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     : 7.18 us    (2.5%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 266.51 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.6033e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.17722270411947 (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     : 6.53 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 252.67 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8820e+05 | 65536 |      2 | 1.688e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.48090870122368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1030031747950379, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 297.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.5636e+05 | 65536 |      2 | 1.839e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.55216733597366 (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     : 6.33 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 262.53 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5893e+05 | 65536 |      2 | 1.826e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.11128852882052 (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     : 6.55 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 261.96 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.5246e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.46465018372687 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11488815650215765, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 259.50 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 4.2245e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.93318246141732 (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     : 6.36 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 270.73 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2596e+05 | 65536 |      2 | 2.011e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.93644920737108 (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     : 6.53 us    (1.9%)
   patch tree reduce : 1892.00 ns (0.5%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 328.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (65.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3148e+05 | 65536 |      2 | 1.977e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.13583947313968 (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     : 6.68 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 283.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3501e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.9056710784568 (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     : 6.48 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 280.47 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.4992e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.91230588114868 (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     : 6.29 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 312.23 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (61.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1669e+05 | 65536 |      2 | 2.069e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.91753783334968 (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     : 6.42 us    (1.7%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1221.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 345.41 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (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.4173e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12922268190576 (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     : 6.48 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 268.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (67.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9967e+05 | 65536 |      2 | 1.640e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97629275540531 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14658144105447707, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 274.99 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (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.5892e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.87014094668858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.150543101623517, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 281.98 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.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    | 4.6083e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.28578150644873 (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     : 6.57 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 264.31 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (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.4194e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.4134171455712 (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     : 6.76 us    (2.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 260.95 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.3447e+05 | 65536 |      2 | 1.959e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.78681700893306 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1624280833306368, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 294.64 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3785e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.52216066107545 (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     : 6.71 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 296.87 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6242e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.6319455194638 (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     : 6.53 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 322.07 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (67.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6443e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.06857361298381 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1743130650377566, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 258.92 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.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    | 4.7195e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.70493728816736 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 262.40 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.7287e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.90637317094475 (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.22 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 259.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1242.00 ns (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.6301e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.7608533445969 (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     : 6.44 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 239.66 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1242.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.6786e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.8149223065617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19015970731391632, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.4%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 261.85 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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.7279e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.88866205774276 (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     : 6.43 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 230.88 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.6988e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.25646603965701 (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     : 6.65 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 257.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (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.4098e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.96734430229061 (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     : 6.75 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 259.29 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.6323e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.80794453594986 (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     : 6.26 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 276.49 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5462e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.93502441319285 (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     : 6.42 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 259.22 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (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.4947e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.81341651640662 (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     : 6.47 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 265.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.6303e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.76436799542763 (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     : 6.58 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 273.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.5689e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.42968980645429 (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     : 6.42 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 290.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5751e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.56458229042647 (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     : 6.06 us    (1.8%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 307.35 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (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.6507e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.20976618935245 (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     : 6.62 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 257.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (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.6672e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.56872321554309 (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.10 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 257.66 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.5849e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.77668966223976 (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     : 6.54 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 245.17 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.5500e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01663904589995 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24166129471143544, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 285.01 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5932e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.95780381239815 (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     : 6.17 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 259.67 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6585e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.37764519358772 (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     : 6.16 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 287.49 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (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.5243e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.45769972321288 (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     : 6.79 us    (2.2%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1342.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 285.53 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.5880e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.84402304169858 (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     : 6.87 us    (2.4%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 265.32 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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    | 3.8584e+05 | 65536 |      2 | 1.699e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.96608031565006 (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     : 7.43 us    (2.7%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 252.77 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2882e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.55811173629054 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2654312581256749, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 293.27 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (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    | 3.4401e+05 | 65536 |      2 | 1.905e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.8630909252205 (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     : 6.29 us    (2.2%)
   patch tree reduce : 1802.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 259.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3762e+05 | 65536 |      2 | 1.941e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.47253634939152 (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     : 6.56 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 276.10 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.3441e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.77532697559633 (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     : 6.34 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 291.57 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3458e+05 | 65536 |      2 | 1.959e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.81223974788463 (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     : 6.17 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 309.09 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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.5871e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.82467764281388 (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     : 6.65 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 263.29 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.5938e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.96957202866218 (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     : 6.42 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 291.05 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.2939e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.44331240177016 (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     : 6.52 us    (2.6%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.6%)
   LB compute        : 228.96 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.6104e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.33247334823096 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 285.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5367e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.72853107020948 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 263.15 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.1223e+05 | 65536 |      2 | 1.590e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.71029254050421 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 262.61 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5055e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05001005453263 (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     : 6.22 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 266.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.6085e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.2905854113914 (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     : 6.90 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 264.34 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.5489e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.99398680046019 (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     : 6.35 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 261.30 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0368e+05 | 65536 |      2 | 1.623e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.84912619609055 (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.98 us    (2.6%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 245.81 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.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    | 4.0051e+05 | 65536 |      2 | 1.636e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15839015470044 (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     : 6.63 us    (2.6%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.5%)
   LB compute        : 235.81 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.6472e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.13165194016833 (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     : 6.32 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 302.54 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2302e+05 | 65536 |      2 | 2.029e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.29500609226156 (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     : 6.49 us    (1.9%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 323.84 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6929e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.12692903467702 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 269.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.5500e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01629601310721 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3407028089374331, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.2%)
   patch tree reduce : 2.54 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 288.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4896e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70257372995925 (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     : 21.61 us   (7.2%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 261.50 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.6352e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.87089761730802 (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     : 6.69 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 259.77 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (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.5828e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.73138251687095 (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     : 6.46 us    (1.9%)
   patch tree reduce : 1703.00 ns (0.5%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 314.19 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5019e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97148396563347 (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     : 6.18 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 283.14 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (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.7007e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.29711787105438 (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     : 6.51 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 249.49 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.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.6682e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.58978100497335 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 246.02 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.5353e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.69804024811319 (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     : 6.42 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 264.79 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.6289e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.73493067035017 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37239609348975233, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.4%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 258.19 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4672e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.21584255955077 (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     : 6.73 us    (2.6%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 241.91 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (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.5871e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.82572152433116 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 289.65 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5843e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.7644999361359 (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     : 6.93 us    (2.6%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 240.38 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (42.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.6289e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.73433300630565 (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.88 us    (1.7%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 319.49 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (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.5927e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.94678991043604 (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     : 6.88 us    (2.4%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 268.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4847e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59706412184691 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 261.15 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.5177e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.31376704746398 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 264.58 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (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.1394e+05 | 65536 |      2 | 1.583e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.08216823036749 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 267.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.2466e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.41510357579429 (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     : 6.21 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 283.44 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6616e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.44530150507386 (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     : 6.67 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 312.52 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5708e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.46974390723668 (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     : 6.17 us    (1.1%)
   patch tree reduce : 2.20 us    (0.4%)
   gen split merge   : 1081.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.2%)
   LB compute        : 553.44 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6011e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.12933953564975 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 260.05 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.5739e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53639119115203 (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.96 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 225.48 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (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.6263e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.67691705814309 (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     : 6.27 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1162.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 234.27 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6626e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.46771654736828 (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     : 6.31 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 300.43 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.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    | 3.9515e+05 | 65536 |      2 | 1.658e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.99355868872075 (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     : 6.54 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 239.93 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (61.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    | 4.5102e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.15023781713785 (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     : 6.92 us    (2.4%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 266.07 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.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.5533e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.08835618204236 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4437059837324706, dt = 0.003961660569039923
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.6%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1142.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.5%)
   LB compute        : 229.10 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (62.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    | 4.3378e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.39971503807462 (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     : 8.78 us    (3.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 247.66 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.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.4693e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.26145201685436 (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     : 6.36 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 270.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (59.8%)
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.6078e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.27615745099135 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4555909654395903, dt = 0.003961660569039924
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.6%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 233.90 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.5%)
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.6693e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.61281088116658 (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     : 6.66 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 249.59 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.7%)
Info: cfl dt = 0.003961660569039926                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5692e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43587622056198 (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     : 6.27 us    (2.4%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 239.26 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.6%)
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.5717e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.48948011911698 (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     : 6.54 us    (2.6%)
   patch tree reduce : 2.48 us    (1.0%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 232.00 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (57.8%)
Info: cfl dt = 0.003961660569039928                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6549e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.29935874994935 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47143760771574994, dt = 0.003961660569039928
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.5%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.4%)
   LB compute        : 227.72 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.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.4533e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91314014648121 (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     : 6.49 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 293.83 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.7%)
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.4899e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70847278211441 (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.52 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 289.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.5%)
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.4191e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.16812809727493 (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     : 6.23 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 258.58 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.1%)
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.4138e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.0529067427194 (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     : 7.03 us    (2.2%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 298.54 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (60.4%)
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.4053e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.86769050280284 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4912459105609496, dt = 0.003961660569039937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 262.64 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (56.8%)
Info: cfl dt = 0.00396166056903994                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3968e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.68338682558881 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 257.83 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.0%)
Info: cfl dt = 0.003961660569039943                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3282e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.42750458039812 (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     : 6.65 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 281.83 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (61.7%)
Info: cfl dt = 0.003961660569039947                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3576e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.83083925278154 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5031308922680694, dt = 0.003961660569039947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 258.32 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1221.00 ns (56.4%)
Info: cfl dt = 0.00396166056903995                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3998e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.74780116933347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5070925528371093, dt = 0.00396166056903995
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 287.94 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (64.2%)
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.3073e+05 | 65536 |      2 | 1.982e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.97362562016635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5110542134061492, dt = 0.003961660569039955
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1311.00 ns (0.5%)
   LB compute        : 262.77 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (60.3%)
Info: cfl dt = 0.00396166056903996                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1348e+05 | 65536 |      2 | 2.091e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.2200575062383 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 285.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (63.8%)
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.6020e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.14891994956322 (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     : 6.77 us    (2.4%)
   patch tree reduce : 2.69 us    (0.9%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 264.36 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (55.2%)
Info: cfl dt = 0.003961660569039973                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5173e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.30640554994812 (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     : 6.34 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 262.25 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.7%)
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.5666e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.37922830833104 (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     : 6.61 us    (2.5%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 243.95 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.8%)
Info: cfl dt = 0.003961660569039988                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6672e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.5669684321509 (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     : 6.49 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 235.61 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.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.5236e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.44388736406054 (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     : 6.37 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 235.68 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.8%)
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.6257e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.66576899190548 (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     : 6.65 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 280.01 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.8%)
Info: cfl dt = 0.003961660569040021                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6347e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.85989984999654 (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     : 6.19 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 276.69 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.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    | 3.6698e+05 | 65536 |      2 | 1.786e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.8633102708999 (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     : 6.25 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.20 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.2%)
Info: cfl dt = 0.003961660569040051                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5592e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.21833853066852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5506708190965492, dt = 0.003961660569040051
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.02 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 284.63 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.2%)
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.4203e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19437580352935 (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.94 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 261.03 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.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    | 3.3529e+05 | 65536 |      2 | 1.955e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.9653410338588 (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     : 6.44 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 262.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.2%)
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.3541e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75354392914008 (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     : 6.35 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 276.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.5%)
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.0254e+05 | 65536 |      2 | 1.628e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.59990346763475 (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     : 6.15 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 258.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (59.9%)
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.3505e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.6765812836941 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5704791219417497, dt = 0.00396166056904016
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 274.50 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (69.2%)
Info: cfl dt = 0.00396166056904019                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5804e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.67965716117125 (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     : 6.41 us    (2.4%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 247.30 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.1%)
Info: cfl dt = 0.003961660569040223                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3552e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.77800655724117 (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     : 6.30 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 266.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.6%)
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    | 3.9538e+05 | 65536 |      2 | 1.658e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.04317909743837 (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     : 6.47 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 251.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.8%)
Info: cfl dt = 0.003961660569040299                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4546e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9410296555106 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 288.61 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.4%)
Info: cfl dt = 0.003961660569040344                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3856e+05 | 65536 |      2 | 1.936e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.67772393644347 (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     : 6.59 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 299.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.8%)
Info: cfl dt = 0.003961660569040394                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4014e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.02147181613195 (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     : 6.96 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 264.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.5%)
Info: cfl dt = 0.003961660569040448                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3426e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.74277079499758 (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     : 6.90 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 252.05 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (59.8%)
Info: cfl dt = 0.003961660569040509                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3749e+05 | 65536 |      2 | 1.942e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.4448308563025 (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     : 6.28 us    (1.8%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 330.45 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.6%)
Info: cfl dt = 0.003961660569040575                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1562e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4470008934292 (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     : 6.72 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 265.12 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.2%)
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.6347e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.8600068414481 (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     : 6.15 us    (0.8%)
   patch tree reduce : 1933.00 ns (0.3%)
   gen split merge   : 1101.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.2%)
   LB compute        : 716.68 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (68.5%)
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.6678e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.58040065151107 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.53 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.3%)
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.4885e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67923417819212 (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     : 6.34 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 234.40 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (61.5%)
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.3768e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.24844149345417 (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     : 6.60 us    (2.2%)
   patch tree reduce : 1743.00 ns (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 277.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (60.3%)
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.0570e+05 | 65536 |      2 | 1.615e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.28833854757985 (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     : 6.55 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 254.03 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.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.6994e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.2679200948839 (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.97 us    (2.1%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 264.08 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (63.4%)
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.6863e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.98445120544979 (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     : 6.54 us    (2.6%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1181.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.5%)
   LB compute        : 230.46 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.8%)
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.6298e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.75406464753384 (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     : 6.61 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 295.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (59.3%)
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.4923e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76134636780453 (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     : 6.34 us    (1.9%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 309.66 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.8%)
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.5690e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.43108244508407 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6457506727535224, dt = 0.003961660569041714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 266.55 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (61.4%)
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.6193e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.52525866686081 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.5%)
   LB compute        : 258.58 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (57.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    | 3.7350e+05 | 65536 |      2 | 1.755e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.28099436701561 (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.39 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 256.35 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.5%)
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.6941e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.1538278037327 (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     : 6.63 us    (2.4%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 250.55 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.0%)
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.6487e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.16418757671134 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 262.99 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (64.4%)
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.6355e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.87801174008469 (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.97 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 253.99 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.8%)
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.6986e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.25178719403016 (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     : 6.35 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 243.94 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.4%)
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    | 3.4635e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.37265896269908 (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     : 6.29 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 247.06 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.2%)
Info: cfl dt = 0.003961660569043659                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4226e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.24567884820421 (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     : 6.38 us    (2.0%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 301.80 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.6%)
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.4896e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70255030394104 (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     : 6.48 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 280.66 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (61.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.5553e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.13312080239042 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 257.22 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (65.3%)
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.4330e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.47017082571918 (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     : 6.56 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.5%)
   LB compute        : 229.97 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (59.8%)
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.6176e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.48862013989786 (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     : 6.41 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 240.14 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.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.6341e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.84657120608838 (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.83 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 250.30 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (66.4%)
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.6650e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.52086670284291 (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     : 6.61 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 253.68 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.4%)
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.5581e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.19323027185516 (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     : 6.24 us    (2.3%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 254.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.8%)
Info: cfl dt = 0.003961660569047297                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5519e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.05762828826965 (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     : 6.73 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 246.23 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.1%)
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.5884e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.85273448324672 (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     : 6.55 us    (2.6%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 951.00 ns  (0.4%)
   LB compute        : 233.16 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.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.6370e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.91098411011482 (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     : 6.35 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 271.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.2%)
Info: cfl dt = 0.003961660569049316                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5964e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.02785626890164 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.5%)
   LB compute        : 262.68 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.4%)
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.6419e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.01805881961214 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7249838841344158, dt = 0.0039616605690500906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 285.57 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (66.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    | 4.0418e+05 | 65536 |      2 | 1.621e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.9578117161794 (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.59 us    (2.5%)
   patch tree reduce : 2.50 us    (1.0%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 238.55 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (61.0%)
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.4219e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.22974262683036 (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.38 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 260.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.8%)
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.5562e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.15122988201112 (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.22 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 251.61 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.9%)
Info: cfl dt = 0.003961660569053781                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5261e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.49711859979467 (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     : 6.70 us    (2.6%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.5%)
   LB compute        : 236.59 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (57.0%)
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    | 3.3380e+05 | 65536 |      2 | 1.963e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.64080453066218 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 284.60 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.2%)
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.4318e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.44490983545131 (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     : 6.63 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 284.48 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (63.3%)
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    | 3.2328e+05 | 65536 |      2 | 2.027e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.35265062109951 (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.77 us    (1.9%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 290.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.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    | 3.3024e+05 | 65536 |      2 | 1.984e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.86804297795305 (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     : 6.62 us    (2.0%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 301.83 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (64.1%)
Info: cfl dt = 0.003961660569060024                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3260e+05 | 65536 |      2 | 1.970e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.38046756743077 (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.57 us    (2.3%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 261.06 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.4%)
Info: cfl dt = 0.0039616605690615345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3311e+05 | 65536 |      2 | 1.967e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.49127695911935 (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     : 6.54 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 283.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (56.3%)
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.3357e+05 | 65536 |      2 | 1.965e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.591108425643 (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.80 us    (2.3%)
   patch tree reduce : 1743.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 273.18 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.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    | 3.3268e+05 | 65536 |      2 | 1.970e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.39883349587045 (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     : 6.70 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 266.22 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.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    | 3.1642e+05 | 65536 |      2 | 2.071e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.85888275635824 (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     : 6.58 us    (2.1%)
   patch tree reduce : 1872.00 ns (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 292.78 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (61.9%)
Info: cfl dt = 0.0039616605690686235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5238e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4462596016403 (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     : 6.86 us    (2.2%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1552.00 ns (0.5%)
   LB compute        : 283.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.8%)
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.5382e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.76108965688475 (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     : 6.37 us    (2.2%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 260.89 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (59.5%)
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.5418e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.83831500590439 (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     : 6.68 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 298.63 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.5%)
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.4902e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.71525827656512 (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     : 6.97 us    (2.5%)
   patch tree reduce : 1882.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 259.96 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.0%)
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.5345e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.68082621310211 (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     : 6.52 us    (2.6%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1171.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 230.26 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (61.3%)
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.5284e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.54792054225274 (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     : 6.59 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 280.22 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.0%)
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.4652e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.1710868702207 (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     : 6.42 us    (2.6%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 229.03 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (56.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.5548e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12155970494804 (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     : 6.47 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 262.13 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.0%)
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.5335e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.65924254868885 (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     : 6.50 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 274.70 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.9%)
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.5618e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.27378109432803 (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     : 6.59 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 262.99 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (60.2%)
Info: cfl dt = 0.003961660569095964                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5499e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01502976966133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8200637377920142, dt = 0.003961660569095964
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 258.53 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (60.4%)
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    | 3.7762e+05 | 65536 |      2 | 1.735e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.17811196128386 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8240253983611102, dt = 0.003961660569099666
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 270.76 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.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    | 4.5550e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12704572354131 (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     : 6.49 us    (2.6%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 230.40 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.9%)
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.0447e+05 | 65536 |      2 | 1.620e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.02175907635304 (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     : 6.28 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 284.70 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (59.9%)
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.4334e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.47991356265722 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8359103800684212, dt = 0.003961660569112089
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 279.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.9%)
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.3860e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44740571017907 (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     : 6.33 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 257.37 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.0%)
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.3935e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.6116155059387 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 263.87 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (61.8%)
Info: cfl dt = 0.003961660569126712                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1598e+05 | 65536 |      2 | 2.074e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.76406242832627 (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     : 6.35 us    (1.7%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 344.86 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.1%)
Info: cfl dt = 0.00396166056913213                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1421e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.14062115829628 (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     : 6.48 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 287.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.2%)
Info: cfl dt = 0.003961660569137841                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2853e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.25626348579493 (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     : 6.30 us    (2.0%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 297.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (60.9%)
Info: cfl dt = 0.0039616605691438584                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1319e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.9186360486802 (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.13 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 263.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (56.5%)
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.3845e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.41622192216221 (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     : 6.85 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 256.12 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1222.00 ns (54.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    | 4.3694e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.08756272527334 (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     : 6.19 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.4%)
   LB compute        : 288.74 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.6%)
Info: cfl dt = 0.003961660569163886                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4029e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.8168287984682 (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     : 6.37 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 290.10 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.3%)
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.5141e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.23594333744539 (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     : 6.17 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 273.41 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.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    | 3.3799e+05 | 65536 |      2 | 1.939e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.5533725537616 (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     : 6.68 us    (2.4%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 258.76 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (64.7%)
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    | 3.4135e+05 | 65536 |      2 | 1.920e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.28462085890219 (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     : 6.39 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 292.17 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.0%)
Info: cfl dt = 0.003961660569195767                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4405e+05 | 65536 |      2 | 1.905e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.87270334151319 (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     : 6.75 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 259.81 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (59.0%)
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    | 3.3725e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.3926303460795 (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     : 6.41 us    (1.9%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 310.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.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    | 3.3702e+05 | 65536 |      2 | 1.945e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.3417263292681 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8953352886057211, dt = 0.003961660569214222
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 285.24 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (62.0%)
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    | 3.4264e+05 | 65536 |      2 | 1.913e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.56561202662462 (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     : 6.96 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 271.62 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (59.7%)
Info: cfl dt = 0.003961660569234548                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5455e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.91977901672234 (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     : 6.36 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1171.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 236.16 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.5%)
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    | 4.6614e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.44137482709968 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9072202703133939, dt = 0.00396166056924546
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 268.65 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.1%)
Info: cfl dt = 0.0039616605692569                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7004e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.28995919643988 (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     : 6.30 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 269.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.0%)
Info: cfl dt = 0.003961660569268886                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6681e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.58811884538108 (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     : 6.10 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 277.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (66.0%)
Info: cfl dt = 0.003961660569281443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2938e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.44148370319239 (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     : 6.14 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 227.77 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.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    | 4.7060e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.41213366791075 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9230669125904466, dt = 0.003961660569294593
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.4%)
   LB compute        : 243.65 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.3%)
Info: cfl dt = 0.003961660569308358                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6071e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.25945142713161 (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     : 6.36 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 242.21 us  (86.2%)
   LB move op cnt    : 0
   LB apply          : 20.53 us   (7.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.9%)
Info: cfl dt = 0.003961660569322762                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4957e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.83646587956979 (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     : 6.33 us    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 285.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (61.5%)
Info: cfl dt = 0.00396166056933783                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6388e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.9495390371799 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 265.76 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.3%)
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.9352e+05 | 65536 |      2 | 1.665e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.63849041876443 (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     : 6.48 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 247.54 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.9%)
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    | 3.8212e+05 | 65536 |      2 | 1.715e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.15628321390302 (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     : 6.36 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 277.18 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (53.5%)
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    | 4.2456e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.39331776533261 (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     : 6.33 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 256.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.8%)
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    | 3.8295e+05 | 65536 |      2 | 1.711e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.33802731196346 (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     : 6.74 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 279.15 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (62.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.6622e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.45800506676848 (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     : 6.21 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 288.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.8%)
Info: cfl dt = 0.003961660569443664                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6449e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.08345190984288 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9587218577146503, dt = 0.003961660569443664
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 292.16 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.1%)
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.5416e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.83532795577761 (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     : 6.21 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 280.96 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.9%)
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.5834e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.74420593339126 (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     : 7.12 us    (2.8%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.6%)
   LB compute        : 228.89 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (59.6%)
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.7403e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.15893476878288 (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     : 6.58 us    (2.6%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.5%)
   LB compute        : 229.24 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (59.7%)
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    | 3.3282e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.42843112219029 (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     : 6.37 us    (1.8%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 322.43 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (66.3%)
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    | 3.2395e+05 | 65536 |      2 | 2.023e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.49891410057738 (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     : 6.66 us    (2.1%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 290.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (60.5%)
Info: cfl dt = 0.003961660569580483                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3230e+05 | 65536 |      2 | 1.972e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.3144977171809 (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.52 us    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 275.29 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.7%)
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.7701e+05 | 65536 |      2 | 1.374e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.80767116935431 (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     : 6.77 us    (2.5%)
   patch tree reduce : 1922.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.5%)
   LB compute        : 242.49 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.7%)
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.6657e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.53501899274067 (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     : 6.86 us    (2.7%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1642.00 ns (0.7%)
   LB compute        : 230.11 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (69.9%)
Info: cfl dt = 0.003961660569662711                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7486e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.33872523887666 (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     : 6.50 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 229.42 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (59.7%)
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.4840e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.58075674127254 (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     : 6.84 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 292.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.3%)
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.5879e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.84239096791015 (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     : 7.02 us    (2.4%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 274.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.3%)
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.6107e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.33792835603356 (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     : 6.68 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 266.53 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.2%)
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.6453e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.09224197944462 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.010223445119293, dt = 0.003961660569788922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 269.27 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (65.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.6844e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.94302002022695 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014185105689082, dt = 0.0039616605698237035
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1372.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 302.97 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.2%)
Info: cfl dt = 0.003961660569859862                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3065e+05 | 65536 |      2 | 1.982e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.95538873744334 (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     : 7.03 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 268.76 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 20.35 us   (6.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.9%)
Info: cfl dt = 0.003961660569897443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3037e+05 | 65536 |      2 | 1.984e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.89433657412938 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0221084268287655, dt = 0.003961660569897443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 270.97 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (56.3%)
Info: cfl dt = 0.003961660569936492                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9616e+05 | 65536 |      2 | 1.654e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.21258836920752 (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     : 6.54 us    (2.1%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 286.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.9%)
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.5577e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.1851895056996 (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     : 6.60 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 272.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.3%)
Info: cfl dt = 0.003961660570019179                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4987e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90015481261408 (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     : 7.22 us    (2.5%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 265.12 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.3%)
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.6179e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.49529453466573 (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     : 6.45 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 261.31 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.7%)
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.6289e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.73350414094655 (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     : 6.53 us    (2.6%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 229.19 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.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.5872e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.82740620127323 (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     : 7.14 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 274.57 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (58.2%)
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.6744e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.72481640599946 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0498400508189223, dt = 0.003961660570204304
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.5%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 255.56 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.6%)
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    | 3.4170e+05 | 65536 |      2 | 1.918e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.36168178631891 (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     : 6.55 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 282.27 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (60.0%)
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.1762e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.8828688664922 (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     : 6.41 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 245.59 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.7%)
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.4504e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.85037737314786 (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     : 6.55 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 275.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.1%)
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.3514e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.6956595093637 (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     : 6.65 us    (2.3%)
   patch tree reduce : 2.57 us    (0.9%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.5%)
   LB compute        : 272.27 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (56.2%)
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.5961e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.01964105942653 (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     : 6.79 us    (2.6%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 242.44 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.4%)
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.5750e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.56095487631607 (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     : 6.62 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 332.12 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.2%)
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.5980e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.06190035644927 (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     : 6.24 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 261.23 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (61.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.5265e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.50592455589491 (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     : 6.91 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 276.47 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.7%)
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.1308e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89469757495307 (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     : 6.77 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 247.08 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (63.2%)
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.5286e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.55234355158531 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 246.52 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.6%)
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.5388e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.77267083624223 (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     : 6.34 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 247.87 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.9%)
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.0875e+05 | 65536 |      2 | 1.603e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.95206901352424 (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     : 6.38 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 286.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.1%)
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    | 3.5926e+05 | 65536 |      2 | 1.824e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.18152698261655 (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     : 7.12 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 298.70 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.4%)
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.3348e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3350520548541 (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     : 6.55 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 265.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (56.9%)
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.6188e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.51538887533232 (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     : 6.42 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 246.87 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.1%)
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.3832e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.38831599334472 (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     : 6.57 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 263.32 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.9%)
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.4478e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.79266640695764 (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     : 6.42 us    (1.8%)
   patch tree reduce : 2.21 us    (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.3%)
   LB compute        : 338.92 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.2%)
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    | 3.8324e+05 | 65536 |      2 | 1.710e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.40005273886621 (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     : 6.48 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 266.45 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.9%)
Info: cfl dt = 0.0039616605715481305                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5344e+05 | 65536 |      2 | 1.854e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.91488235712139 (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.88 us    (2.1%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 262.78 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.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    | 3.3986e+05 | 65536 |      2 | 1.928e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.96095680843713 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1290732622350728, dt = 0.003961660571645427
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.5%)
   LB compute        : 267.23 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (64.2%)
Info: cfl dt = 0.003961660571745906                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4090e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.18685079961286 (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     : 6.41 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 259.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.3%)
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    | 3.4038e+05 | 65536 |      2 | 1.925e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.07455798183396 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 260.60 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.9%)
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    | 3.3614e+05 | 65536 |      2 | 1.950e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.15061881589226 (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     : 6.77 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 266.00 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.7%)
Info: cfl dt = 0.003961660572067303                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2725e+05 | 65536 |      2 | 2.003e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.21633126434972 (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.89 us    (1.6%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 358.67 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.3%)
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    | 2.3475e+05 | 65536 |      2 | 2.792e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.08579825175794 (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     : 6.64 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 276.78 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.0%)
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.3828e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.37788354848726 (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     : 7.03 us    (2.7%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 237.44 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (60.7%)
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.7653e+05 | 65536 |      2 | 1.375e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.70185553078038 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.156804886238818, dt = 0.003961660572420481
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 247.27 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.4%)
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.7916e+05 | 65536 |      2 | 1.368e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 104.27565698161861 (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     : 6.76 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 304.36 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.7%)
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.6139e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.40828231166485 (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     : 6.14 us    (2.3%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 241.47 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.6%)
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    | 3.3653e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.23574920032148 (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     : 6.46 us    (2.0%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 304.11 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.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    | 3.2490e+05 | 65536 |      2 | 2.017e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.70558628041682 (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     : 6.28 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 288.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.3%)
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    | 3.1201e+05 | 65536 |      2 | 2.100e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.90016116054503 (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     : 6.28 us    (1.8%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 331.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.2%)
Info: cfl dt = 0.003961660573232288                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5052e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.04201075077218 (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     : 6.52 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 300.33 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.0%)
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.5816e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.70473638938935 (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     : 6.60 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 285.92 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.0%)
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    | 3.9967e+05 | 65536 |      2 | 1.640e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97609659482264 (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     : 6.63 us    (2.1%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 285.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.9%)
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.5245e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.46224862200218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1924598313954502, dt = 0.0039616605736963245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 2.49 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 260.75 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (57.4%)
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.4922e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.75949094704572 (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     : 6.44 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 243.46 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.7%)
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.5429e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.86359283393794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2003831525430069, dt = 0.003961660574029167
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 271.85 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (61.6%)
Info: cfl dt = 0.0039616605742029696                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3648e+05 | 65536 |      2 | 1.948e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.22431214840647 (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     : 6.29 us    (1.9%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 308.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (56.6%)
Info: cfl dt = 0.003961660574381847                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2627e+05 | 65536 |      2 | 2.009e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.004043259475 (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     : 6.11 us    (1.8%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 319.42 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (60.7%)
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    | 3.3177e+05 | 65536 |      2 | 1.975e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.2003294205827 (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     : 6.79 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 305.42 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.003961660574755303                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3533e+05 | 65536 |      2 | 1.954e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.97454068494908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2162297948401866, dt = 0.003961660574755303
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 293.61 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.8%)
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    | 3.1787e+05 | 65536 |      2 | 2.062e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.17411431749117 (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     : 6.32 us    (1.7%)
   patch tree reduce : 2.03 us    (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.3%)
   LB compute        : 353.89 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.7%)
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    | 4.5232e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.43424820444659 (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     : 6.42 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 271.88 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (58.8%)
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    | 4.7070e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.43376426715238 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2281147765650424, dt = 0.003961660575356562
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 291.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.3%)
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    | 3.3204e+05 | 65536 |      2 | 1.974e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.25810016617272 (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     : 6.51 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 271.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.6%)
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    | 3.3305e+05 | 65536 |      2 | 1.968e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.47749593437253 (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     : 6.79 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 262.37 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (61.6%)
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    | 3.3409e+05 | 65536 |      2 | 1.962e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.70454901077936 (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     : 6.91 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 265.71 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (60.3%)
Info: cfl dt = 0.003961660576240255                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4708e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.29407962320778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2439614188677637, dt = 0.003961660576240255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.0%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1321.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 309.95 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
Info: cfl dt = 0.003961660576476705                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5292e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.56422808309489 (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     : 6.34 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 314.50 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.9%)
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    | 4.4436e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.70107376880169 (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     : 7.09 us    (2.3%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 281.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (63.1%)
Info: cfl dt = 0.003961660576969195                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0648e+05 | 65536 |      2 | 1.612e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.45930581103046 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2558464005972003, dt = 0.003961660576969195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.2%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 284.12 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.9%)
Info: cfl dt = 0.0039616605772255205                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2729e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.98772852249674 (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     : 6.48 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 305.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.9%)
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    | 3.9645e+05 | 65536 |      2 | 1.653e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.27642852913297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.263769721751395, dt = 0.003961660577488759
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1583.00 ns (0.5%)
   LB compute        : 282.83 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.1%)
Info: cfl dt = 0.003961660577759057                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3312e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.25584288955372 (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     : 6.76 us    (1.9%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 328.86 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.8%)
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    | 3.5210e+05 | 65536 |      2 | 1.861e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.6233458989435 (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     : 6.46 us    (2.0%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 302.50 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (65.9%)
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    | 3.2104e+05 | 65536 |      2 | 2.041e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.86469277459496 (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     : 6.74 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 352.07 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.7%)
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.3413e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.47508672803868 (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     : 6.19 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 277.66 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (56.6%)
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.3699e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.0986929378025 (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     : 6.27 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 278.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (59.1%)
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    | 3.2909e+05 | 65536 |      2 | 1.991e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.61721708710245 (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     : 6.43 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 311.90 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.1%)
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    | 3.4057e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.11419402437926 (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     : 6.47 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 263.42 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1211.00 ns (53.0%)
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    | 3.4551e+05 | 65536 |      2 | 1.897e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.19098437273261 (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     : 6.44 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 263.68 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.57 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.5%)
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    | 3.4395e+05 | 65536 |      2 | 1.905e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.84949223711074 (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     : 6.38 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 258.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.0%)
Info: cfl dt = 0.003961660580534814                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3121e+05 | 65536 |      2 | 1.979e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.07746535569144 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 250.66 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (59.1%)
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    | 3.2691e+05 | 65536 |      2 | 2.005e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.14240344631317 (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     : 7.16 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 285.30 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.5%)
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    | 4.0997e+05 | 65536 |      2 | 1.599e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.2176483588239 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 248.95 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (56.8%)
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    | 3.2884e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.56216067555884 (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     : 6.01 us    (2.1%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 269.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.8%)
Info: cfl dt = 0.00396166058198642                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4723e+05 | 65536 |      2 | 1.887e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.56449775329708 (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     : 6.32 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 253.56 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.6%)
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.2566e+05 | 65536 |      2 | 2.012e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.87084875689479 (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     : 6.16 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 286.45 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.9%)
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    | 4.0630e+05 | 65536 |      2 | 1.613e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.42018806324751 (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     : 6.16 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 273.62 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (63.1%)
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.4777e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.44318113655913 (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     : 6.09 us    (2.4%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.5%)
   LB compute        : 228.16 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (60.6%)
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    | 4.5288e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.55621215555752 (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     : 6.22 us    (2.1%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 271.05 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.3%)
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.1511e+05 | 65536 |      2 | 2.080e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.57421873768928 (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     : 6.40 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 304.72 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (62.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    | 4.4530e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.90614200011797 (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     : 6.60 us    (2.6%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 229.22 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (56.9%)
Info: cfl dt = 0.003961660584894329                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5549e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.1236757479457 (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     : 6.02 us    (2.3%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 237.90 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.8%)
Info: cfl dt = 0.003961660585350938                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5531e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.08534199578237 (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     : 6.90 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 285.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (66.1%)
Info: cfl dt = 0.003961660585818434                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5971e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.04171221999378 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 263.60 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (60.2%)
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    | 4.2254e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.95418539734581 (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     : 12.35 us   (4.7%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 233.11 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.6%)
Info: cfl dt = 0.003961660586786895                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5807e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.6846063587055 (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     : 6.22 us    (2.4%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 235.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.5%)
Info: cfl dt = 0.0039616605872882715                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3941e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.86327873917573 (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     : 6.84 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 269.85 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.7%)
Info: cfl dt = 0.003961660587801358                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3586e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.09077208387501 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 263.09 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
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.3598e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.11702313988094 (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     : 6.28 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 256.86 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.5%)
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.2886e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.56609865437922 (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     : 7.11 us    (2.1%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1563.00 ns (0.5%)
   LB compute        : 308.29 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.6%)
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.4212e+05 | 65536 |      2 | 1.916e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.4521670163805 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3826195392273908, dt = 0.003961660589413012
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (1.9%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 309.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.3%)
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.4087e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.17962085400308 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 263.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.6%)
Info: cfl dt = 0.003961660590549964                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4184e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.390552553865 (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     : 6.60 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 261.44 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.8%)
Info: cfl dt = 0.003961660591137862                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4134e+05 | 65536 |      2 | 1.920e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.28310612268878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3945045209973288, dt = 0.003961660591137862
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 302.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (67.6%)
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.3602e+05 | 65536 |      2 | 1.950e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.12519321509096 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 258.67 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (59.4%)
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.3405e+05 | 65536 |      2 | 1.962e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.6957682290026 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4024278421802057, dt = 0.00396166059235365
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 261.44 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.9%)
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.3481e+05 | 65536 |      2 | 1.957e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.86155395854456 (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     : 6.62 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 254.69 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.2%)
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.2961e+05 | 65536 |      2 | 1.988e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.73037917754135 (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     : 6.23 us    (1.9%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 302.82 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (68.1%)
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.3711e+05 | 65536 |      2 | 1.944e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.36250045220226 (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     : 6.40 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 251.54 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (57.8%)
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.3377e+05 | 65536 |      2 | 1.963e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.63569552024657 (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     : 6.54 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 277.82 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.6%)
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.3732e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.4074162358373 (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     : 6.43 us    (2.3%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 257.45 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (63.0%)
Info: cfl dt = 0.003961660596337911                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3479e+05 | 65536 |      2 | 1.957e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.8581802380017 (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     : 6.46 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.5%)
   LB compute        : 258.85 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.5%)
Info: cfl dt = 0.0039616605970536345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2362e+05 | 65536 |      2 | 2.025e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.42645772703162 (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     : 6.49 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 348.96 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (66.5%)
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    | 3.3217e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.28642102008148 (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     : 6.82 us    (2.3%)
   patch tree reduce : 1972.00 ns (0.7%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 270.66 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.6%)
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    | 3.3826e+05 | 65536 |      2 | 1.937e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.61207035010966 (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.52 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 275.53 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (61.9%)
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    | 3.3305e+05 | 65536 |      2 | 1.968e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.47762232051289 (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     : 6.51 us    (2.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 251.35 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.0%)
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    | 3.3278e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.4192571267735 (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     : 6.94 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 258.07 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
Info: cfl dt = 0.0039616606008688925                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3333e+05 | 65536 |      2 | 1.966e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.53950283613165 (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     : 6.07 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 258.79 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
Info: cfl dt = 0.003961660601681104                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2704e+05 | 65536 |      2 | 2.004e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.17154223397998 (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     : 6.38 us    (1.9%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 321.66 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.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    | 4.6085e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.28943317391615 (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     : 6.62 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 241.79 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (56.4%)
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.5512e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.04413147856472 (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     : 9.94 us    (4.0%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 225.55 us  (89.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (61.7%)
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.5377e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.74918868357075 (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     : 6.52 us    (2.5%)
   patch tree reduce : 1892.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.5%)
   LB compute        : 236.27 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.9%)
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.6021e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.15012341927732 (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     : 6.30 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 231.08 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.7%)
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.4980e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88588591443688 (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     : 6.44 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 266.04 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.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    | 4.4873e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.65363925008944 (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.65 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 228.94 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.5%)
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.5795e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.6586520680368 (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     : 6.60 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 303.16 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.7%)
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.3608e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.90098773760639 (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     : 6.30 us    (2.4%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 244.31 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.9%)
Info: cfl dt = 0.003961660609789881                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6309e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.77826413825692 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 265.88 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.3%)
Info: cfl dt = 0.003961660610784842                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2178e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.78833119743904 (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     : 6.07 us    (2.0%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 283.92 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.0%)
Info: cfl dt = 0.003961660611799676                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7336e+05 | 65536 |      2 | 1.384e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 103.01255929443201 (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     : 6.37 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.6%)
   LB compute        : 230.60 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (55.3%)
Info: cfl dt = 0.003961660612834687                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6663e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.54825946699964 (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     : 6.48 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 241.77 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (59.4%)
Info: cfl dt = 0.0039616606138901805                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6428e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.03610127148887 (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     : 6.47 us    (2.3%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1432.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 252.55 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (62.6%)
Info: cfl dt = 0.003961660614966465                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5784e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.63615777521223 (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     : 6.63 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 241.71 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.3%)
Info: cfl dt = 0.0039616606160638515                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5879e+05 | 65536 |      2 | 1.827e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.07965394882062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5133543390545146, dt = 0.0039616606160638515
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 246.46 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.3%)
Info: cfl dt = 0.0039616606171826545                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9032e+05 | 65536 |      2 | 1.679e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.9420737758705 (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     : 6.41 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 290.36 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.0%)
Info: cfl dt = 0.003961660618323192                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9526e+05 | 65536 |      2 | 1.658e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.01732259473124 (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     : 6.40 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 255.67 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.4%)
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    | 3.3575e+05 | 65536 |      2 | 1.952e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.06680211470203 (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     : 6.60 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 293.38 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.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    | 3.5589e+05 | 65536 |      2 | 1.841e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.44819373506162 (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.12 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 257.53 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (56.0%)
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.5148e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25027331566676 (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     : 6.36 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 274.37 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.7%)
Info: cfl dt = 0.003961660623109147                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4599e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.0564886078147 (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     : 21.27 us   (6.3%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 300.13 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (64.1%)
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    | 3.7524e+05 | 65536 |      2 | 1.747e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.65891877124363 (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     : 7.15 us    (2.5%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 260.74 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
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    | 3.3005e+05 | 65536 |      2 | 1.986e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.82630694280085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.545047624015592, dt = 0.003961660625641014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 276.41 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (61.6%)
Info: cfl dt = 0.003961660626942844                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2093e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6023630562344 (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     : 6.42 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 239.07 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.7%)
Info: cfl dt = 0.003961660628269058                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4094e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.95744085888215 (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     : 6.76 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 245.85 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.56 us    (69.3%)
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    | 3.7712e+05 | 65536 |      2 | 1.738e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.06997681613768 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 273.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.9%)
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    | 3.3942e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.86375121320704 (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     : 6.78 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 264.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (59.6%)
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    | 3.2674e+05 | 65536 |      2 | 2.006e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.10454498723263 (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     : 6.08 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 277.93 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (67.5%)
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.6280e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.71529917037884 (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     : 6.37 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 262.15 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.7%)
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.6151e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.4330711450313 (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     : 6.27 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 252.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (53.1%)
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.5919e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.92878355110301 (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     : 6.82 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 250.99 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.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    | 3.4722e+05 | 65536 |      2 | 1.887e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.56150499614944 (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     : 6.82 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 292.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (55.8%)
Info: cfl dt = 0.003961660639798747                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7385e+05 | 65536 |      2 | 1.753e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.35850807637941 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 277.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.6%)
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.2795e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.13049441139775 (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     : 6.93 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 315.40 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (69.8%)
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.3855e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.43817675476497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5925875516147432, dt = 0.0039616606429499195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.4%)
   LB compute        : 320.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (66.8%)
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    | 3.3649e+05 | 65536 |      2 | 1.948e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.22641203898114 (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     : 6.69 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1301.00 ns (0.4%)
   LB compute        : 284.06 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.6%)
Info: cfl dt = 0.003961660646214517                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5320e+05 | 65536 |      2 | 1.855e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.86338160656516 (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     : 7.98 us    (2.3%)
   patch tree reduce : 2.80 us    (0.8%)
   gen split merge   : 1712.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 323.18 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.0%)
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    | 3.3323e+05 | 65536 |      2 | 1.967e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.5184964974472 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 264.63 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (59.5%)
Info: cfl dt = 0.0039616606495955905                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2878e+05 | 65536 |      2 | 1.993e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.54977516221629 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6084341941963658, dt = 0.0039616606495955905
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.5%)
   LB compute        : 256.92 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.4%)
Info: cfl dt = 0.0039616606513307746                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3173e+05 | 65536 |      2 | 1.976e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.19213297991358 (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     : 6.36 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 260.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (60.3%)
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    | 3.3412e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.71146001285402 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 266.99 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.0%)
Info: cfl dt = 0.003961660654892396                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7177e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.90505397511254 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 261.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (59.1%)
Info: cfl dt = 0.003961660656719628                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9484e+05 | 65536 |      2 | 1.660e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.9259018747282 (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     : 6.42 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 239.52 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.2%)
Info: cfl dt = 0.003961660658578344                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5330e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.64699829974882 (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     : 6.86 us    (2.6%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 245.33 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.3%)
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.4911e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.73507877092695 (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     : 6.29 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.5%)
   LB compute        : 242.92 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.7%)
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.5044e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0260328428962 (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     : 6.98 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 252.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (62.2%)
Info: cfl dt = 0.00396166066434746                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4699e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.2751219392813 (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     : 7.11 us    (2.5%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 263.71 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (65.1%)
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    | 3.2833e+05 | 65536 |      2 | 1.996e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.45218004328798 (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     : 6.47 us    (1.9%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 324.94 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.0%)
Info: cfl dt = 0.003961660668358471                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5008e+05 | 65536 |      2 | 1.872e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.18410412259081 (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.26 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 258.59 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (58.5%)
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    | 3.4308e+05 | 65536 |      2 | 1.910e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.6618769397675 (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     : 6.83 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 281.99 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.5%)
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    | 3.4909e+05 | 65536 |      2 | 1.877e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.9692235728679 (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     : 6.32 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 275.50 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (63.0%)
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    | 3.4415e+05 | 65536 |      2 | 1.904e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.89433969663756 (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.9%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 297.22 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.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    | 3.4312e+05 | 65536 |      2 | 1.910e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.66899368107227 (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     : 6.49 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 283.59 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.9%)
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    | 3.4974e+05 | 65536 |      2 | 1.874e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.11002999818403 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 261.58 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.1%)
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    | 3.3947e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.87648926518006 (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     : 6.56 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 281.39 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (64.8%)
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    | 3.4666e+05 | 65536 |      2 | 1.891e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.44014395745319 (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     : 6.34 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 257.90 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.7%)
Info: cfl dt = 0.003961660685795454                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4498e+05 | 65536 |      2 | 1.900e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.07536716295878 (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     : 6.54 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 260.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.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    | 3.3041e+05 | 65536 |      2 | 1.983e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.90380700460516 (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.81 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 261.51 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.8%)
Info: cfl dt = 0.0039616606905203775                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1992e+05 | 65536 |      2 | 2.048e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.62204310680187 (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     : 6.52 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1572.00 ns (0.5%)
   LB compute        : 305.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1912.00 ns (65.6%)
Info: cfl dt = 0.003961660692940148                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3725e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.15483858529427 (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     : 6.41 us    (1.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 318.39 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (72.7%)
Info: cfl dt = 0.0039616606953987304                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1700e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.74852049581861 (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     : 6.39 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 289.78 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.5%)
Info: cfl dt = 0.003961660697896588                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4382e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58487766784502 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 263.19 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.3%)
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    | 4.6371e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.91231758836572 (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     : 6.20 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 262.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.5%)
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    | 4.3564e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.80443917012809 (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     : 6.57 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 259.97 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1393.00 ns (60.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    | 3.8947e+05 | 65536 |      2 | 1.683e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.75653669485848 (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     : 6.93 us    (2.6%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 247.63 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (60.9%)
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.5907e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.90289497036824 (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     : 6.30 us    (2.4%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 243.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (60.0%)
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.5820e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.71362144612861 (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     : 6.56 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 268.27 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.1%)
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    | 4.5552e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.12989207356704 (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     : 6.59 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 293.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
Info: cfl dt = 0.00396166071652064                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3076e+05 | 65536 |      2 | 1.981e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.98018238279867 (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     : 6.10 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 258.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.3%)
Info: cfl dt = 0.003961660719349663                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7150e+05 | 65536 |      2 | 1.764e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.84590233994369 (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     : 6.26 us    (2.1%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 270.36 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.2%)
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    | 3.8720e+05 | 65536 |      2 | 1.693e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.26365536864031 (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     : 6.34 us    (2.1%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 278.39 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.6%)
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.0689e+05 | 65536 |      2 | 1.611e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.54710790816823 (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     : 6.58 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1422.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 241.70 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.003961660728100099                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5921e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.9330759231789 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 259.73 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.7%)
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    | 3.3034e+05 | 65536 |      2 | 1.984e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.88898693224591 (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     : 6.43 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 311.20 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.2%)
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    | 3.7774e+05 | 65536 |      2 | 1.735e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.20479937942766 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 264.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.6%)
Info: cfl dt = 0.00396166073725605                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6582e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.3720447678258 (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.46 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 275.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (60.0%)
Info: cfl dt = 0.0039616607404005045                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6377e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.92491328152038 (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.28 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 270.20 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.1%)
Info: cfl dt = 0.003961660743592044                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5528e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.07915758109814 (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.34 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.5%)
   LB compute        : 231.68 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.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.7208e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.73491512634254 (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.43 us    (2.6%)
   patch tree reduce : 2.19 us    (0.9%)
   gen split merge   : 1132.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 227.12 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.1%)
Info: cfl dt = 0.003961660750118454                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6361e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.89064878742109 (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     : 6.31 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 262.59 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.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    | 4.6542e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.28398198553128 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 269.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (57.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    | 4.5750e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.56103245207038 (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     : 6.49 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 294.93 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.1%)
Info: cfl dt = 0.00396166076027423                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4955e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.83186862867127 (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.43 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 257.71 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (60.7%)
Info: cfl dt = 0.0039616607637592465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6945e+05 | 65536 |      2 | 1.396e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.16240378671674 (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     : 6.49 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 282.78 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (60.4%)
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    | 4.2655e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.82542275858788 (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     : 7.00 us    (2.8%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 231.47 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.4%)
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    | 4.6488e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.16733719810429 (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     : 6.52 us    (2.6%)
   patch tree reduce : 2.18 us    (0.9%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 233.12 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.8%)
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    | 4.6228e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.60222942388535 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 265.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.3%)
Info: cfl dt = 0.003961660778212403                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6161e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.45620573977013 (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     : 6.70 us    (2.6%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 236.09 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.0%)
Info: cfl dt = 0.0039616607819566866                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5274e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.52483197363279 (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     : 6.68 us    (2.6%)
   patch tree reduce : 2.24 us    (0.9%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 229.72 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (60.0%)
Info: cfl dt = 0.0039616607857544655                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6682e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.58961351608059 (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     : 6.79 us    (2.6%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1162.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 235.90 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (60.6%)
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    | 4.6596e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.40146768935463 (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     : 6.80 us    (2.6%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 237.90 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (59.1%)
Info: cfl dt = 0.003961660793512739                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7943e+05 | 65536 |      2 | 1.727e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.57226238765786 (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     : 6.91 us    (2.7%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 234.84 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.3%)
Info: cfl dt = 0.0039616607974743544                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7294e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.9207278629747 (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     : 6.64 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 288.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.9%)
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    | 4.6478e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.14468816527793 (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     : 6.34 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1483.00 ns (0.5%)
   LB compute        : 260.55 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.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    | 3.9624e+05 | 65536 |      2 | 1.654e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.2292176084782 (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     : 6.12 us    (1.9%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 292.47 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.6%)
Info: cfl dt = 0.003961660809695905                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6875e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 102.00935772401036 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 264.39 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.0%)
Info: cfl dt = 0.003961660813883895                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2907e+05 | 65536 |      2 | 1.992e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.61284951180775 (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     : 6.42 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 280.77 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.0%)
Info: cfl dt = 0.003961660818129917                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2091e+05 | 65536 |      2 | 2.042e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.8370203672563 (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     : 6.52 us    (1.8%)
   patch tree reduce : 1882.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.4%)
   LB compute        : 338.59 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.8%)
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.4595e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04806623391073 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 283.22 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.3%)
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    | 3.6869e+05 | 65536 |      2 | 1.778e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.2339287764264 (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     : 6.96 us    (2.0%)
   patch tree reduce : 1902.00 ns (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 317.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.0%)
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.0508e+05 | 65536 |      2 | 1.618e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.15330063592778 (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     : 6.67 us    (2.1%)
   patch tree reduce : 3.19 us    (1.0%)
   gen split merge   : 1883.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 1833.00 ns (0.6%)
   LB compute        : 285.00 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.7%)
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.4305e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.41661916688278 (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     : 6.38 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 235.58 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (62.0%)
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.5854e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.78756739495543 (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     : 6.45 us    (2.2%)
   patch tree reduce : 1892.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 265.21 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (64.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.5671e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.39049275995399 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 261.78 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.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.6434e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.04955972727835 (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     : 6.36 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 291.22 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (66.2%)
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.6577e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.3615383276655 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 256.75 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.3%)
Info: cfl dt = 0.0039616608590525276                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6231e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.60768609655828 (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     : 6.63 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 246.29 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.7%)
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    | 3.6429e+05 | 65536 |      2 | 1.799e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.27736718726695 (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     : 6.29 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 249.54 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.6%)
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    | 3.4704e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.523285258194 (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     : 7.11 us    (2.5%)
   patch tree reduce : 4.44 us    (1.5%)
   gen split merge   : 1863.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 1623.00 ns (0.6%)
   LB compute        : 261.04 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (56.7%)
Info: cfl dt = 0.0039616608738235045                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4823e+05 | 65536 |      2 | 1.882e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.78111679949035 (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     : 6.75 us    (2.4%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 264.60 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (62.5%)
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    | 3.3136e+05 | 65536 |      2 | 1.978e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.11140716892196 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 283.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.9%)
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    | 3.3692e+05 | 65536 |      2 | 1.945e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.32175910313633 (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.87 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 292.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (61.6%)
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    | 3.4381e+05 | 65536 |      2 | 1.906e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.8195229884706 (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     : 6.11 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 298.41 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.8%)
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    | 3.3955e+05 | 65536 |      2 | 1.930e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.89360052649653 (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     : 6.58 us    (2.2%)
   patch tree reduce : 1722.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 279.21 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.9%)
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    | 3.5089e+05 | 65536 |      2 | 1.868e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.36050391470957 (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     : 6.31 us    (1.9%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 309.82 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.8%)
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    | 3.5253e+05 | 65536 |      2 | 1.859e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.71807225633628 (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     : 6.78 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 267.82 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.0%)
Info: cfl dt = 0.003961660910622948                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4298e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.63922950650051 (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.96 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 260.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (57.5%)
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    | 3.5246e+05 | 65536 |      2 | 1.859e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.70270025274557 (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     : 6.22 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1572.00 ns (0.6%)
   LB compute        : 250.75 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (70.9%)
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    | 3.4740e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.60161134059305 (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     : 6.55 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 251.53 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.8%)
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    | 3.3424e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.73678538477411 (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     : 6.41 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 279.09 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.8%)
Info: cfl dt = 0.003961660933183242                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4344e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.73972235891588 (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     : 6.69 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 259.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1363.00 ns (59.4%)
Info: cfl dt = 0.003961660939003867                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4053e+05 | 65536 |      2 | 1.925e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.10605035655091 (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     : 6.47 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 268.82 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.3%)
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    | 3.4148e+05 | 65536 |      2 | 1.919e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.31393401675913 (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     : 6.48 us    (2.1%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 282.95 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.2%)
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.4364e+05 | 65536 |      2 | 1.907e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.78348206171705 (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     : 6.25 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 293.28 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.2%)
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.3968e+05 | 65536 |      2 | 1.929e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.92054800052097 (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     : 6.93 us    (2.5%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 259.47 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (63.3%)
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.6620e+05 | 65536 |      2 | 1.790e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.69266060871107 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 265.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.0%)
Info: cfl dt = 0.0039616609692232595                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4977e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87892097127029 (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     : 6.65 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 272.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.9%)
Info: cfl dt = 0.003961660975495065                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6309e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.77822559436615 (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     : 6.35 us    (2.5%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 232.87 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.7%)
Info: cfl dt = 0.003961660981844419                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4812e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.51926158121859 (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.51 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 313.04 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (66.7%)
Info: cfl dt = 0.003961660988272                                         [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5278e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.53350563461163 (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     : 6.94 us    (2.3%)
   patch tree reduce : 2.59 us    (0.9%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 278.05 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (60.8%)
Info: cfl dt = 0.003961660994778494                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6731e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.69604429044631 (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     : 6.75 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 294.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.2%)
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    | 4.6285e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.72507098562276 (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     : 6.24 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1533.00 ns (0.5%)
   LB compute        : 277.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.2%)
Info: cfl dt = 0.003961661008030965                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6850e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 101.9547226372385 (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     : 6.39 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 271.55 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.4%)
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    | 4.5075e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0934809987248 (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     : 6.99 us    (2.8%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 227.17 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.0%)
Info: cfl dt = 0.003961661021607358                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7304e+05 | 65536 |      2 | 1.757e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.18090813345385 (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     : 21.21 us   (7.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 268.22 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.3%)
Info: cfl dt = 0.003961661028518768                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0904e+05 | 65536 |      2 | 1.602e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.01516628974552 (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     : 6.55 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 277.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.5%)
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    | 4.3158e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91964154141833 (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     : 6.26 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 269.39 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (62.3%)
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    | 4.3162e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.78864532286767 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 847.792005663 (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  1884.13 us                          [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.35 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     : 1041.00 ns (0.3%)
   patch tree reduce : 1552.00 ns (0.5%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 319.79 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.27 us    (1.0%)
Info: patch count stable after 1 runs npatch = 2                      [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
running minmod hllc with only_last_step=False
Info: time since start : 847.9559444140001 (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.96 us    (2.7%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 308.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2092e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 298.81 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (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.5151e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25774562408208 (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     : 6.17 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 317.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5014e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.95887881971251 (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     : 6.91 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 280.73 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5708e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.47029752184889 (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.47 us    (2.5%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 241.31 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.5531e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.08499602508704 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 266.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.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.5756e+05 | 65536 |      2 | 1.833e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.8133923434795 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 263.72 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.5756e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.57537932429696 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02376996341423953, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 278.20 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (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.5567e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.16345359670763 (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     : 6.41 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 260.09 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.4720e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.3192573560525 (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     : 6.33 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 300.05 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (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.2274e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.99737192701303 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03565494512135929, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 276.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5866e+05 | 65536 |      2 | 1.827e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.05068667413005 (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     : 6.39 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 281.54 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.5458e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.92546366540034 (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.38 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 261.74 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.5421e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.84550907292359 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047539926828479045, dt = 0.0024600731715209573
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 278.64 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2060e+05 | 65536 |      2 | 2.044e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.32437967018284 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 850.244740522 (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     : 8.66 us    (2.2%)
   patch tree reduce : 2.44 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.3%)
   LB compute        : 366.31 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.69 us    (70.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.4368e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55486504096908 (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     : 6.64 us    (2.1%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1392.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 297.16 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (69.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.5097e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.13980501598475 (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     : 6.15 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 237.22 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.6111e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.34691469591283 (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     : 6.21 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 287.15 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (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.5167e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.29175766756124 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 267.31 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.4750e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.3846390288498 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0698083028451996, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 288.69 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (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.4927e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76932818543679 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07376996341423951, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 270.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.8647e+05 | 65536 |      2 | 1.696e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.10426352686044 (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     : 6.24 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 287.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1731e+05 | 65536 |      2 | 2.065e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.05333798788207 (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     : 6.54 us    (1.8%)
   patch tree reduce : 1893.00 ns (0.5%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 340.18 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4542e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.93201772742472 (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.62 us    (2.4%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 258.32 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (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.4881e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.67080753914958 (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     : 6.69 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 267.76 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.4852e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.60718210754884 (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     : 6.42 us    (1.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 321.06 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (67.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4851e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.60476062678748 (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     : 6.14 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 268.89 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.4879e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.6477036708454 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 852.2947558320001 (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.91 us    (2.3%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 307.75 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5054e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.04759081837909 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10396166056903992, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.3%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 254.66 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1942.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5775e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.616281492155 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 269.35 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5326e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.63793847071646 (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     : 6.54 us    (2.6%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 232.15 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.4980e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88578021777855 (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     : 6.57 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 273.83 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5308e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.598593595182 (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     : 6.42 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 252.36 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5730e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.51804602291563 (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     : 6.33 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.6%)
   LB compute        : 238.26 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.5181e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.32391963113511 (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     : 6.11 us    (2.0%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1592.00 ns (0.5%)
   LB compute        : 289.27 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3867e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.46384743688826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13169328455231938, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 227.80 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.5782e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.63088278877844 (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     : 6.59 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 238.68 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (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.5568e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.16618195575937 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13961660569039924, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.6%)
   patch tree reduce : 1773.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 231.14 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.5792e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.65299120836451 (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     : 6.59 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 257.52 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 17.94 us   (94.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.5113e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.17464911849167 (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     : 6.41 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 256.02 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.3912e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.340674876077735 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 854.263928294 (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     : 8.41 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 322.58 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (65.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3457e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.57037593163993 (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     : 6.34 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 292.62 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (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.3857e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.44100560352874 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 287.36 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2692e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.90615498194335 (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     : 6.50 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.6%)
   LB compute        : 233.46 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.3490e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.64239065841481 (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    (2.4%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 238.45 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.3490e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.6426544385832 (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     : 6.37 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 251.01 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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    | 3.6952e+05 | 65536 |      2 | 1.774e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.41568471012609 (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     : 6.20 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 257.02 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (66.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1678e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.70017731043058 (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     : 6.22 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 238.33 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.3948e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.63971195318197 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 261.04 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (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.2532e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.55757279419781 (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     : 6.41 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 260.25 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.4424e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.67542941471612 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 267.66 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8307e+05 | 65536 |      2 | 1.711e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.36405937781568 (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     : 6.36 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 262.68 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.4946e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.81256858562244 (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     : 6.27 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 263.58 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (63.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5341e+05 | 65536 |      2 | 1.854e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.7583416607302 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 856.379353755 (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     : 8.46 us    (2.2%)
   patch tree reduce : 2.40 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 365.92 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (66.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3957e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.65896088938071 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 246.81 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4768e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.42352728758313 (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     : 7.27 us    (2.6%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 251.27 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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.3112e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.81964442539298 (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     : 6.73 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 315.20 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2517e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.52473738843926 (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     : 6.52 us    (1.7%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 356.57 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (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.1869e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.11452522208619 (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     : 6.59 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 294.15 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (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.2548e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.59394692625028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2237699634142396, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 268.89 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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    | 3.1910e+05 | 65536 |      2 | 2.054e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.44342054053512 (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     : 6.79 us    (1.7%)
   patch tree reduce : 2.08 us    (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 377.83 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3985e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.72059134196937 (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     : 6.70 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 264.48 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.3226e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0696416566007 (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     : 6.51 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 280.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5021e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.97520179761703 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23961660569039933, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 250.19 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (61.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5273e+05 | 65536 |      2 | 1.858e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.76164918240276 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.33 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.5721e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.49866637636795 (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     : 6.54 us    (2.6%)
   patch tree reduce : 2.18 us    (0.9%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 226.72 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5410e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.36569248230261 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 858.491340624 (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     : 8.77 us    (2.7%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 302.84 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5722e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.50082870771824 (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     : 6.67 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 279.91 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (67.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4909e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.73104140652904 (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     : 6.19 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 268.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6558e+05 | 65536 |      2 | 1.793e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.55790664530622 (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     : 6.09 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 256.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (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.3034e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.65007055904579 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 249.97 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.1441e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.18452976130875 (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     : 6.08 us    (2.3%)
   patch tree reduce : 1942.00 ns (0.7%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 247.62 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2015e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.43284377778805 (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     : 6.43 us    (1.9%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 316.00 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9619e+05 | 65536 |      2 | 1.654e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.21972972064322 (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     : 6.59 us    (2.6%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.5%)
   LB compute        : 234.24 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5630e+05 | 65536 |      2 | 1.839e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.53802510696053 (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     : 6.23 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 282.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4595e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.04895627602126 (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     : 6.73 us    (2.1%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 292.08 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (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.1051e+05 | 65536 |      2 | 1.596e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.3359062715927 (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     : 6.62 us    (2.6%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 235.56 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.3085e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.76222005442936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29357826625943895, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 266.10 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1290e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.85524103421183 (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     : 6.41 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 240.10 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.1468e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.0376994525502 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 860.62500867 (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     : 8.10 us    (2.4%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 314.16 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4129e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.03455946201626 (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.90 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 269.64 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3740e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.18725851739707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30792332113807985, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 265.25 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3341e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.31915021782696 (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     : 6.81 us    (2.5%)
   patch tree reduce : 1862.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 246.46 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3171e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.94805888627361 (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     : 7.06 us    (2.7%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 243.93 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9555e+05 | 65536 |      2 | 1.657e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08080348136194 (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     : 6.53 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 272.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.26 us    (67.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3031e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.6437764024787 (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     : 6.45 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 268.06 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.3289e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.20469891240644 (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     : 6.45 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 288.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3603e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.889310859988 (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     : 6.59 us    (2.3%)
   patch tree reduce : 1792.00 ns (0.6%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 261.51 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.3718e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.13878769612577 (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.43 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.3%)
   LB compute        : 317.86 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.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.4541e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.93106049793865 (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     : 6.77 us    (2.6%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 239.12 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (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.4447e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.72637318577303 (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     : 6.03 us    (2.2%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 254.38 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3779e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.27282304366368 (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     : 7.02 us    (2.5%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 257.97 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1706e+05 | 65536 |      2 | 2.067e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.846086102387375 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 862.7190582630001 (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.37 us    (2.1%)
   patch tree reduce : 2.70 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 370.33 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1488e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.28555695977002 (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     : 6.62 us    (2.3%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 271.37 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.3573e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8227342272821 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1552.00 ns (0.6%)
   LB compute        : 248.35 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (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.4343e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.5005116730223 (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     : 6.64 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 272.43 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3303e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23550105456255 (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     : 7.24 us    (2.8%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 236.05 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9521e+05 | 65536 |      2 | 1.658e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.0058609179348 (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     : 6.31 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 239.61 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (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.3580e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.83837618351964 (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     : 6.28 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 281.69 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.4545e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.9397836457556 (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.83 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 255.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.3108e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.81282144306098 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 267.12 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (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.3988e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.72683945589402 (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.49 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 292.04 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (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.1865e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.10635854909393 (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.45 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 262.57 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5220e+05 | 65536 |      2 | 1.861e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.64681238811153 (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     : 6.55 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 273.36 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (66.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4193e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.17293860719143 (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     : 6.49 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 248.80 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.45 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.1141e+05 | 65536 |      2 | 1.593e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.59576213867381 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 864.8103687160001 (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     : 8.79 us    (2.6%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 310.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3065e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.71724305462273 (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     : 6.90 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 242.75 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4586e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.02824617245341 (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     : 6.72 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 306.00 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (69.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.3814e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3488754236927 (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     : 6.57 us    (1.7%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 355.14 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9884e+05 | 65536 |      2 | 1.643e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.79521402434455 (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     : 7.16 us    (2.3%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 289.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7382e+05 | 65536 |      2 | 1.753e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.3500406747619 (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     : 6.41 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.5%)
   LB compute        : 235.95 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (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.5600e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2357219795969 (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     : 6.09 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 260.74 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (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.5061e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.06192530415774 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 259.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (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.5200e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.36462896120473 (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     : 6.45 us    (2.6%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 225.16 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.5731e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.51949322089374 (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     : 6.33 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 254.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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.5605e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.24622127394333 (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     : 6.47 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 286.64 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4740e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.36382530554239 (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     : 6.29 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 284.87 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6081e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.28174099737225 (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     : 6.95 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 275.00 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4622e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.29999141537836 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 866.8316726920001 (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     : 8.50 us    (2.6%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 302.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5145e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2449882083012 (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     : 6.29 us    (2.0%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 288.62 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.5900e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.88734570250224 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 259.98 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.5446e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.89905425913169 (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     : 6.37 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 263.06 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4760e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.40655467584567 (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     : 6.68 us    (2.2%)
   patch tree reduce : 1723.00 ns (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 276.79 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5407e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.81413672151828 (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.95 us    (2.3%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 238.61 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.4656e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.17980427311144 (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     : 6.33 us    (2.4%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 241.16 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3361e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3630199432647 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 260.76 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (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.4276e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.35269394151823 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48169328455231925, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 272.57 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.3130e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.85946226779458 (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     : 6.28 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 269.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.5646e+05 | 65536 |      2 | 1.839e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.57251611501184 (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     : 6.28 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 258.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3505e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.67570830505937 (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     : 6.68 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 259.73 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (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    | 4.3752e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.21329636131912 (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     : 6.24 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 243.53 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3286e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.49519263524164 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 868.8615555890001 (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     : 8.58 us    (2.2%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 373.77 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.5113e+05 | 65536 |      2 | 1.866e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.41347436702638 (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     : 6.66 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 254.12 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9507e+05 | 65536 |      2 | 1.659e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.97596737455815 (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     : 6.72 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 291.70 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.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.4249e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.2953188502375 (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     : 6.45 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 301.08 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.1296e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.86873818529392 (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     : 6.29 us    (2.1%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 277.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (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.2055e+05 | 65536 |      2 | 1.558e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.52044067810523 (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     : 6.39 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 245.57 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.4726e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.33357893488808 (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     : 6.59 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 250.35 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (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.4575e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.00332878326839 (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     : 6.13 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 259.87 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (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.4853e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.61029380321867 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 265.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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    | 4.5093e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.13244793910614 (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     : 6.10 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 272.05 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5309e+05 | 65536 |      2 | 1.856e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.8385975326891 (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     : 6.23 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 280.87 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.5056e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05024463713744 (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     : 6.24 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 242.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 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    | 4.4194e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.17586872759814 (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     : 6.47 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 263.22 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.3214e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.39745543344594 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 870.9670514290001 (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     : 9.08 us    (2.5%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 331.07 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (65.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4054e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.8696514938115 (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     : 6.36 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 244.06 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3486e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.63337214539784 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 278.62 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.2164e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7566108886604 (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     : 6.27 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 261.07 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.2214e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.8666746248312 (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     : 6.24 us    (1.9%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 306.70 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3310e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.25236065811667 (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     : 6.50 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 229.89 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3241e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.10028102353682 (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     : 6.64 us    (2.6%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 237.94 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2702e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.92724725263915 (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     : 6.50 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 284.57 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (65.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3560e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7944440170597 (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     : 25.37 us   (8.6%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 254.99 us  (86.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.3482e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.62678879320461 (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     : 6.83 us    (2.1%)
   patch tree reduce : 22.12 us   (6.9%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 276.03 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8555e+05 | 65536 |      2 | 1.700e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.90333436519562 (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     : 6.39 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 264.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.2667e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85202892831299 (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     : 6.67 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 278.85 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.2520e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.53145953493986 (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     : 6.71 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 269.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (65.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0494e+05 | 65536 |      2 | 2.149e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 41.208830184165905 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 873.101005705 (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     : 8.41 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 343.44 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3816e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35347299046353 (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     : 6.75 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 279.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3265e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.15439131385595 (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     : 6.31 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 288.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.3187e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.98439349605987 (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     : 6.70 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 283.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.3105e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.80590690393144 (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     : 6.46 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 276.97 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.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.4695e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.26471218360119 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 254.74 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (66.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3816e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.35167904519085 (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     : 6.21 us    (2.4%)
   patch tree reduce : 1783.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 236.67 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.4169e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.1198201284414 (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     : 6.17 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 272.42 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.9024e+05 | 65536 |      2 | 1.679e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.92477446068436 (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     : 6.61 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 262.48 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.3394e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.43346039787308 (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     : 6.46 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 287.83 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2847e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.24319458831225 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 260.40 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3068e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72477461722399 (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     : 6.35 us    (2.3%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 252.24 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.2968e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.50722790311191 (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     : 6.41 us    (2.3%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 250.18 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3289e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.49906999401648 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 875.147067382 (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     : 8.37 us    (2.5%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 313.53 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3383e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.40952025785845 (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     : 6.06 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 244.71 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.4243e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.2818744484431 (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     : 21.33 us   (7.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 254.59 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (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.4861e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.62640791788841 (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     : 6.06 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 253.79 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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.4980e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88497402831267 (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     : 6.41 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 316.73 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 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.4738e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.35966455894287 (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     : 6.81 us    (2.6%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 243.77 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.0960e+05 | 65536 |      2 | 1.600e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.13782799143806 (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     : 6.30 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 253.87 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (66.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2803e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.14819422127044 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1392.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 267.75 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.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.1948e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.28699991779368 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 260.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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    | 3.7684e+05 | 65536 |      2 | 1.739e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.00741139840093 (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     : 6.31 us    (2.3%)
   patch tree reduce : 1902.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 256.79 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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.5353e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.6975594000862 (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     : 6.72 us    (2.5%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 243.60 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.4924e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76378433637724 (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     : 6.77 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 243.87 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.4354e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.52380538456066 (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     : 6.46 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 272.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4995e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.80472089764854 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 877.186781253 (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     : 8.59 us    (2.5%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 321.91 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (69.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.3246e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.11258831610093 (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     : 6.41 us    (2.4%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 241.38 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 16.98 us   (93.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3301e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.23245262135184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7079233211380799, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 258.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.3279e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.18396448470386 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 278.56 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4866e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63672983968867 (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     : 6.22 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 288.90 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7414e+05 | 65536 |      2 | 1.752e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.41991090359757 (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     : 6.58 us    (2.5%)
   patch tree reduce : 3.04 us    (1.1%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1562.00 ns (0.6%)
   LB compute        : 244.04 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.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.4315e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.43777532669678 (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     : 6.66 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 262.86 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (66.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3981e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.71195840110906 (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.99 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 237.41 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4059e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.88059275692011 (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     : 6.51 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 245.19 us  (90.0%)
   LB move op cnt    : 0
   LB apply          : 5.83 us    (2.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.4106e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.98385132507734 (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     : 6.38 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 258.33 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7176e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.90241518044157 (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     : 6.78 us    (2.4%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 254.69 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (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.1423e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.14525264670438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.743578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 245.89 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.3612e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.909213850464 (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     : 6.31 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 262.61 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8260e+05 | 65536 |      2 | 1.713e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.703142077286365 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 879.2875958290001 (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     : 9.51 us    (2.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 : 1162.00 ns (0.3%)
   LB compute        : 308.06 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (66.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4864e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.63347610016325 (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     : 6.25 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 263.34 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3459e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.57572092906973 (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     : 6.24 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 285.67 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5498e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.01321707366851 (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     : 6.46 us    (1.1%)
   patch tree reduce : 2.28 us    (0.4%)
   gen split merge   : 1082.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 551.05 us  (96.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (7.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.4780e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45106946081117 (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     : 6.43 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 287.89 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (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.4760e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.40661521526671 (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.98 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 271.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5458e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.92507940753535 (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     : 6.62 us    (2.1%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 288.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5038e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0110505433479 (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     : 6.02 us    (2.0%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 276.60 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5721e+05 | 65536 |      2 | 1.835e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.73603775079567 (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     : 6.75 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 262.42 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.4890e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.69091627777443 (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     : 6.36 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 262.22 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.4205e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.19823185424141 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 249.57 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2617e+05 | 65536 |      2 | 2.009e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.98202957177875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.793578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.8%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 337.37 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 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.4610e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.08106526167043 (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     : 6.74 us    (2.0%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 309.99 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4760e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.48740014088374 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 881.3638566420001 (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     : 13.40 us   (3.3%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 372.09 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4900e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.71199863084958 (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     : 6.60 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 298.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (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.4932e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.78221845613567 (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     : 6.56 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 274.93 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.4879e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.66624664279442 (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     : 6.71 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 261.18 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.4848e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59754298897963 (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     : 6.56 us    (2.1%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1363.00 ns (0.4%)
   LB compute        : 278.83 us  (90.5%)
   LB move op cnt    : 0
   LB apply          : 7.95 us    (2.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5323e+05 | 65536 |      2 | 1.855e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.86942862084088 (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     : 6.08 us    (1.9%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 305.97 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4691e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.25627533439663 (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     : 6.19 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 261.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8122e+05 | 65536 |      2 | 1.719e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.96023544679066 (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     : 6.30 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 308.19 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1185e+05 | 65536 |      2 | 1.591e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.62761859486815 (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     : 6.40 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 241.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1363.00 ns (58.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2089e+05 | 65536 |      2 | 2.042e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.8319487236251 (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     : 6.20 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 295.36 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (66.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1703e+05 | 65536 |      2 | 2.067e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.99283587750114 (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     : 6.54 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 299.70 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (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.4257e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.31214182841485 (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     : 6.74 us    (2.4%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 259.69 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5056e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05204785986616 (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     : 6.46 us    (2.4%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 244.81 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.2503e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.437125566697546 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 883.544515012 (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     : 8.68 us    (2.5%)
   patch tree reduce : 2.53 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.3%)
   LB compute        : 316.61 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (67.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4783e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45631751330589 (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     : 6.20 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 250.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (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.5203e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.37058177179773 (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.76 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 285.10 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 4.4381e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.58305166874611 (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     : 6.13 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 270.20 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7648e+05 | 65536 |      2 | 1.741e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.93041150651564 (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     : 6.15 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 263.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.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.3970e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.68710186699843 (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     : 6.27 us    (1.7%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 339.88 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.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.5922e+05 | 65536 |      2 | 1.824e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.17388916905136 (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     : 6.41 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 266.93 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.1356e+05 | 65536 |      2 | 1.585e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.99974656244213 (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     : 6.76 us    (2.0%)
   patch tree reduce : 1912.00 ns (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 318.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3758e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.22688968825017 (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     : 6.26 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 281.40 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (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.4096e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.96295337514591 (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     : 6.83 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 272.16 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.2666e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.84965084938368 (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.99 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 269.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4923e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.76261693766554 (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     : 6.42 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 270.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.4371e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.55999281888089 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8975399268284789, dt = 0.002460073171521082
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 248.10 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.4409e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.01242345899812 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 885.618398281 (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     : 8.74 us    (2.3%)
   patch tree reduce : 2.55 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 355.47 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (66.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5581e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.19464872036701 (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     : 6.99 us    (2.7%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 237.67 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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.4811e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.51838406622173 (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     : 6.52 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 271.78 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (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.3194e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.99809227832176 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9118849817071197, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1372.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 297.10 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0586e+05 | 65536 |      2 | 1.615e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.32297802443091 (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.01 us    (2.1%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 269.42 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.96 us    (89.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.4042e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.84371271228095 (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     : 6.76 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 265.61 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2114e+05 | 65536 |      2 | 2.041e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.8864120046896 (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     : 6.43 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 302.14 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1922.00 ns (66.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4793e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.47967990188123 (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     : 6.36 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 280.88 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.5470e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.95145397246273 (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     : 6.47 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 260.49 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (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.5309e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.60143479580658 (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     : 6.87 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 280.54 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5177e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.31449153316126 (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     : 6.58 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 302.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (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.4510e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.862848797164 (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     : 6.26 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 258.61 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (61.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7873e+05 | 65536 |      2 | 1.730e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.41879916031468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9475399268284789, dt = 0.002460073171521193
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 276.24 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5832e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.93485673123923 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 887.6924924990001 (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     : 8.80 us    (2.5%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 325.29 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5640e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.32236407440712 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 266.73 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5590e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.21406125825688 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 258.11 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.2841e+05 | 65536 |      2 | 1.996e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.46935266237888 (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     : 6.28 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1383.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 275.86 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.67 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4562e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.97662792722784 (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     : 6.23 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 288.72 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5219e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.40571897593283 (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     : 6.65 us    (2.6%)
   patch tree reduce : 2.15 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 231.53 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.5479e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.9717831063672 (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     : 6.43 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 303.92 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5588e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.2080618266241 (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     : 6.26 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 272.69 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1938e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.26570996188653 (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     : 6.42 us    (2.6%)
   patch tree reduce : 1994.00 ns (0.8%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 229.66 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (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.5580e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.19245138401759 (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     : 6.90 us    (2.5%)
   patch tree reduce : 1922.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 259.32 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.4974e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.87320651752367 (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     : 6.80 us    (2.6%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 235.06 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.4177e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.13758111557674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.993578266259439, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.89 us    (2.1%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 262.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.2196e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.82695597862084 (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.98 us    (2.3%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 243.28 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (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.3591e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.90727042540962 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 889.7322554000001 (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     : 8.57 us    (2.3%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 354.57 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (67.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4067e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.1376145149993 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1412.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 248.07 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (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.4956e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.83274715369319 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.00792332113808, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 241.85 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.3854e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.43597746053103 (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     : 6.90 us    (2.6%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 242.36 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.3823e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.36877845763034 (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     : 6.44 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 253.06 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.4024e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.80493220929911 (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     : 6.03 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 242.29 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.4475e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.78624286657566 (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     : 6.45 us    (2.0%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 307.95 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4162e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.10531336814849 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.02773162398328, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 238.03 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (44.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.1081e+05 | 65536 |      2 | 1.595e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.40072280516478 (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     : 6.23 us    (2.2%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 261.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4408e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.64049259638783 (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     : 6.55 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1212.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 324.90 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (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.4377e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.57340122389142 (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     : 6.29 us    (2.4%)
   patch tree reduce : 1762.00 ns (0.7%)
   gen split merge   : 1251.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 244.95 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4197e+05 | 65536 |      2 | 1.916e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.4196896274829 (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     : 7.31 us    (2.7%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 245.82 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.7332e+05 | 65536 |      2 | 1.756e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.2414906487791 (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.49 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 259.49 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2796e+05 | 65536 |      2 | 1.998e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.31928564096253 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 891.909331832 (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     : 8.79 us    (2.3%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 353.95 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4527e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.89973665505207 (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     : 6.63 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 317.50 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5080e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10405841364637 (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     : 6.46 us    (2.5%)
   patch tree reduce : 2.18 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 232.53 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (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.5219e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.40632870927101 (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     : 6.63 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 313.77 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 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    | 3.8147e+05 | 65536 |      2 | 1.718e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.01629145447605 (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     : 6.96 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.4%)
   LB compute        : 311.15 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 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.2258e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.9630078363392 (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     : 6.18 us    (1.9%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 295.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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    | 3.0550e+05 | 65536 |      2 | 2.145e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.48312061519309 (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     : 6.50 us    (1.8%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 329.25 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (67.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.8745e+05 | 65536 |      2 | 1.691e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.31615604230751 (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     : 6.72 us    (2.4%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 263.55 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.1666e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.67301054397842 (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     : 6.46 us    (2.4%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 246.49 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (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.4254e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.30677305362944 (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     : 6.54 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 237.63 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.4591e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.03937955219352 (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     : 6.74 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 270.77 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5151e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25739835217031 (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     : 6.78 us    (2.6%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 242.44 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8801e+05 | 65536 |      2 | 1.689e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.43822366749929 (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     : 6.41 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 260.09 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5299e+05 | 65536 |      2 | 1.857e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.70167172458384 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 894.079636649 (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     : 8.66 us    (2.7%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 301.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5737e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.53406476637348 (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     : 6.43 us    (2.2%)
   patch tree reduce : 1942.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 265.88 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.1249e+05 | 65536 |      2 | 1.589e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.76673251318428 (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     : 6.38 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 240.58 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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    | 4.4541e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.92954926014046 (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     : 6.47 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 243.71 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (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.4936e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.79094595245941 (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     : 6.26 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 252.75 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4872e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.65003780602633 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1198083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 308.46 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2159e+05 | 65536 |      2 | 2.038e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.9841266930735 (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     : 6.49 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 331.80 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4945e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.81018922545051 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1277316239832802, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 264.21 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.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    | 4.2383e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.23479336353483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1316932845523202, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 271.49 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3803e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.32416759201308 (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     : 6.27 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 264.36 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (61.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5895e+05 | 65536 |      2 | 1.826e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.1154735606633 (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     : 6.73 us    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 317.57 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1521e+05 | 65536 |      2 | 1.578e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.35913177870562 (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     : 6.52 us    (2.3%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 268.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.0580e+05 | 65536 |      2 | 1.615e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.31049890749316 (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     : 6.85 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 274.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.4931e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.71825889203112 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 896.1984626960001 (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     : 8.48 us    (2.4%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 326.18 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 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    | 4.3533e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.7375712331793 (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     : 6.54 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.5%)
   LB compute        : 260.73 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (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.2780e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.09827609067843 (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     : 6.49 us    (2.5%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 240.28 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (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.4026e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.80921922267834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1618849817071202, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.6%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 246.45 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (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.3584e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.84724395273882 (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     : 6.55 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 281.91 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (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.3184e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.97637925271754 (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     : 6.42 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 284.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.2047e+05 | 65536 |      2 | 1.559e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.50246240642119 (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     : 6.48 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 251.09 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.1316e+05 | 65536 |      2 | 2.093e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.15096684993541 (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     : 9.63 us    (2.5%)
   patch tree reduce : 4.40 us    (1.1%)
   gen split merge   : 1362.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 359.98 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 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    | 4.0930e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.07286681065689 (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     : 6.51 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 299.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2543e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.58213035642258 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 262.72 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.2596e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.69726451877669 (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     : 6.41 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 261.82 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.1923e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.23283388478715 (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     : 7.01 us    (2.6%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 242.49 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.2401e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.27279467321391 (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     : 6.28 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 254.44 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3912e+05 | 65536 |      2 | 1.933e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.82688586771923 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 898.364837221 (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     : 9.07 us    (2.1%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 414.59 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (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    | 3.1109e+05 | 65536 |      2 | 2.107e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.69915384160211 (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     : 6.44 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 300.81 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8468e+05 | 65536 |      2 | 1.704e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.71361571738947 (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     : 6.66 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 264.93 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (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.4927e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.77036303540602 (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     : 6.26 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 263.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.4489e+05 | 65536 |      2 | 1.900e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.05590454423425 (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     : 6.32 us    (2.3%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 257.45 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4277e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.35543452103886 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 274.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3925e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.58949222105106 (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     : 6.58 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 291.86 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1811e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.98961624252843 (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     : 6.37 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 282.14 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (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.4463e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.76001257721795 (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     : 6.73 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 289.33 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.5103e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.1544447944246 (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     : 6.46 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 285.34 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (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.4829e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.55763482350594 (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     : 6.57 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.4%)
   LB compute        : 308.68 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3336e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.30784648206108 (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     : 6.81 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 289.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (71.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.5241e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.4540518888425 (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     : 6.42 us    (2.0%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 294.17 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (66.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9669e+05 | 65536 |      2 | 1.652e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 53.60725943622953 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 900.517576779 (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     : 9.72 us    (2.5%)
   patch tree reduce : 2.34 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 363.71 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3444e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.54261399237824 (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.36 us    (2.0%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 292.83 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1364e+05 | 65536 |      2 | 2.090e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.25517036364421 (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     : 6.56 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 302.31 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2114e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.64855850992375 (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     : 6.15 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 260.51 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 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    | 4.3571e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.81985067295713 (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     : 6.47 us    (2.4%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 243.83 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2936e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.4366732073774 (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     : 6.11 us    (2.3%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 241.69 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.3475e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.61100440942698 (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     : 6.42 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 235.45 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3998e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.7481971375818 (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.65 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 299.34 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (67.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3580e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.83909260742243 (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     : 6.53 us    (1.5%)
   patch tree reduce : 1993.00 ns (0.4%)
   gen split merge   : 1071.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.2%)
   LB compute        : 423.92 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.5760e+05 | 65536 |      2 | 1.833e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.82139551112554 (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     : 6.35 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 272.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.3513e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.69328725041574 (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     : 6.58 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 280.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4089e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.94772771954517 (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     : 6.38 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 254.52 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3359e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.3590255598412 (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     : 6.88 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 244.63 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (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.3611e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.93389804652049 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 902.6471585380001 (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     : 8.92 us    (2.4%)
   patch tree reduce : 2.62 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 352.18 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5126e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.20435956927949 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 271.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.4845e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.59201326141957 (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     : 6.52 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 280.58 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.5193e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.34946727182128 (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     : 6.65 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 286.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 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    | 3.3522e+05 | 65536 |      2 | 1.955e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.95103913060333 (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     : 6.44 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 269.62 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.4087e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.94285322553155 (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     : 6.54 us    (2.1%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 283.72 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (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.4129e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.0338429691784 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3237699634142401, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 284.37 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4849e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.5997523838305 (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.92 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 296.29 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.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.5158e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.27282080937637 (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.97 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 258.63 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (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.4970e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.86338115471925 (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     : 6.43 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 261.23 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.5982e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 100.06538182301414 (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     : 6.10 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 261.27 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.1912e+05 | 65536 |      2 | 1.564e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.20858375870203 (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     : 6.58 us    (2.4%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 248.16 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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.4423e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.67298382778682 (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     : 6.45 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 251.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (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.8647e+05 | 65536 |      2 | 1.696e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.225784631902464 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 904.701889123 (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     : 9.00 us    (2.3%)
   patch tree reduce : 2.32 us    (0.6%)
   gen split merge   : 1201.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 368.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4861e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.62731276987901 (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     : 6.53 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 252.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.3139e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.87858392293744 (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     : 6.71 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.5%)
   LB compute        : 276.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (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.3373e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.38798344576838 (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     : 6.36 us    (2.0%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 296.49 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2962e+05 | 65536 |      2 | 1.988e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.73202387807797 (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     : 6.54 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 257.40 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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    | 4.4169e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.12091817511075 (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     : 7.24 us    (2.7%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 244.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.4505e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.8530884264131 (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     : 6.65 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 255.88 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (66.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4350e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.51513211697225 (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     : 6.99 us    (2.7%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 238.52 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.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.4335e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.48142321171753 (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.57 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 273.16 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (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.4841e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.58358096552155 (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     : 6.34 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 265.90 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8435e+05 | 65536 |      2 | 1.705e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.6417677542034 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 261.98 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (61.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3301e+05 | 65536 |      2 | 1.968e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.46902983857048 (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.53 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 261.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1498e+05 | 65536 |      2 | 2.081e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.54678444214817 (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     : 6.38 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 321.65 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2846e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.90033288609772 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 906.8884282050001 (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     : 9.68 us    (2.9%)
   patch tree reduce : 2.63 us    (0.8%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.4%)
   LB compute        : 308.12 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2988e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.55173471725381 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 259.90 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3580e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8385117734807 (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     : 6.41 us    (2.2%)
   patch tree reduce : 1702.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 266.00 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (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.3815e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3514189478545 (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     : 6.65 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 245.09 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (58.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5588e+05 | 65536 |      2 | 1.842e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.44742226427688 (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     : 6.11 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 286.23 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2599e+05 | 65536 |      2 | 2.010e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.94209520664543 (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     : 6.77 us    (2.0%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 314.62 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3147e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.89585385663734 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 268.44 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4649e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.16625940081748 (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     : 6.72 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 286.12 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (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.1357e+05 | 65536 |      2 | 2.090e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.2397331282788 (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     : 6.29 us    (1.7%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 350.98 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.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.1225e+05 | 65536 |      2 | 2.099e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.95282174666558 (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     : 6.25 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 347.48 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2441e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3602662113189 (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     : 6.89 us    (2.3%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 276.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3799e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.3160742127987 (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     : 6.49 us    (2.5%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 238.06 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.3353e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.34421033750405 (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     : 6.64 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 281.56 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.2375e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.26377025961803 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 909.1261999190001 (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     : 9.53 us    (2.5%)
   patch tree reduce : 2.59 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 358.78 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2537e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.56830280762209 (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     : 6.50 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 269.20 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (66.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2267e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.98260139866343 (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     : 6.52 us    (2.0%)
   patch tree reduce : 1742.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 298.52 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0533e+05 | 65536 |      2 | 1.617e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2089590984392 (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     : 6.29 us    (1.6%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.3%)
   LB compute        : 268.10 us  (68.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 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.4991e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.90997745563843 (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     : 6.46 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 268.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5582e+05 | 65536 |      2 | 1.842e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.43299869567228 (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     : 6.86 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 287.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (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.2587e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.67823076337748 (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     : 6.29 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 277.78 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.0582e+05 | 65536 |      2 | 1.615e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3156174455065 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 261.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.4109e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.99009703026506 (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     : 6.20 us    (1.8%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 321.18 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (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.3497e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.65839158581387 (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     : 6.59 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 286.30 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4822e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.54098303039878 (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     : 6.00 us    (2.0%)
   patch tree reduce : 1742.00 ns (0.6%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 274.06 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4898e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.70721232113902 (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.35 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 258.98 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 5.44 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.5045e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.02675150553272 (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.93 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 266.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.5192e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.07017805979057 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 911.198013485 (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.56 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 912.00 ns  (0.3%)
   LB compute        : 306.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (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.3775e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.26241200298966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.50396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 238.84 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1242.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.4456e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.7461624763178 (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     : 6.94 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 259.71 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4334e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.47980848115456 (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     : 6.82 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.4%)
   LB compute        : 302.94 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2039e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.7234107273691 (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     : 6.33 us    (1.8%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 324.43 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3608e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.89901977880879 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 981.00 ns  (0.3%)
   LB compute        : 261.66 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4981e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88769362727085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.52376996341424, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 262.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.4849e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.60155844473545 (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     : 6.37 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 287.16 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1163e+05 | 65536 |      2 | 2.103e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.81805200131758 (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     : 6.47 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 331.47 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0841e+05 | 65536 |      2 | 1.605e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.87781791112963 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 264.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5245e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.46226210556243 (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     : 6.77 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 265.24 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.5080e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.10373719576396 (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     : 6.45 us    (2.0%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 303.04 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5520e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.06006803915834 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 270.96 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.4090e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.581840476018776 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 913.321297477 (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     : 9.41 us    (2.3%)
   patch tree reduce : 2.52 us    (0.6%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 381.99 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3334e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.30305674580927 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.55396166056904, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 266.55 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (61.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1531e+05 | 65536 |      2 | 2.078e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.61707852530306 (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     : 6.26 us    (1.6%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 363.54 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0706e+05 | 65536 |      2 | 2.134e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.8231394210665 (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     : 6.50 us    (1.7%)
   patch tree reduce : 1963.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 350.47 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5362e+05 | 65536 |      2 | 1.853e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.95470982565807 (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     : 6.48 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 323.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (68.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2837e+05 | 65536 |      2 | 1.996e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.45901949969289 (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     : 6.17 us    (1.7%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 342.60 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5554e+05 | 65536 |      2 | 1.843e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.37319963766217 (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     : 6.04 us    (1.8%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 318.94 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.4082e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.93175385251449 (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     : 6.47 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 269.33 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1383.00 ns (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    | 3.1959e+05 | 65536 |      2 | 2.051e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.55042650464482 (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.51 us    (1.6%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 761.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.3%)
   LB compute        : 331.37 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 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.3646e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.98360170755575 (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     : 6.25 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 285.43 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4906e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.72475727361045 (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     : 6.54 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 264.03 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.7634e+05 | 65536 |      2 | 1.741e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.90018723796561 (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     : 6.83 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 266.66 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (61.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3342e+05 | 65536 |      2 | 1.966e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.56000147492963 (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     : 6.72 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 268.94 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.08 us   (94.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.8991e+05 | 65536 |      2 | 1.681e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 52.690583835959835 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 915.7261717260001 (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     : 8.52 us    (2.2%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 358.81 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (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.4876e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.65891157629113 (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     : 6.25 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 295.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4619e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.09983049336238 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6079233211380801, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 271.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.5046e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.0288274242914 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6118849817071201, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 264.66 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (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.4718e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.31577905009758 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 273.43 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9879e+05 | 65536 |      2 | 1.643e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.78546530309211 (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     : 6.35 us    (2.0%)
   patch tree reduce : 1713.00 ns (0.5%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 291.52 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (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.4637e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.13846511197195 (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     : 6.74 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 286.89 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4781e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.45157486342507 (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.66 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 281.37 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (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.4631e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.12631416146279 (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     : 6.09 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 271.26 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4841e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.58283583111579 (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     : 6.68 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 307.05 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0484e+05 | 65536 |      2 | 1.619e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10040234644507 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 263.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (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.0283e+05 | 65536 |      2 | 1.627e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.66365835702204 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 264.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.1607e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.54487266264083 (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     : 6.04 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 273.74 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4564e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.22200749484315 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 917.763655588 (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     : 8.66 us    (2.4%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 333.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (65.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4323e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.45511127657358 (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     : 6.22 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 273.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4751e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.38766207005378 (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     : 6.23 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 284.32 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3532e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.73467964134596 (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     : 6.06 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 263.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (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.3046e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.6765175968556 (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     : 6.32 us    (1.8%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 322.82 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.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.2959e+05 | 65536 |      2 | 1.988e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.72533233325936 (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     : 6.14 us    (2.2%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 253.63 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.3437e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.7658816885541 (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     : 6.45 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 249.64 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3408e+05 | 65536 |      2 | 1.962e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.70317275484483 (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     : 6.44 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 248.25 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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    | 3.3549e+05 | 65536 |      2 | 1.953e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.0095829015477 (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     : 6.18 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 275.97 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (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.3004e+05 | 65536 |      2 | 1.986e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.82319734686511 (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     : 6.45 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 281.74 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (70.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.2315e+05 | 65536 |      2 | 2.028e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.32436008934312 (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     : 6.21 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 285.49 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4751e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.38677628491176 (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     : 6.25 us    (2.0%)
   patch tree reduce : 1912.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 285.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5430e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.8656836672975 (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     : 6.42 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 282.29 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4127e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.63179323077607 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 920.075984133 (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     : 8.38 us    (2.2%)
   patch tree reduce : 2.01 us    (0.5%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 359.53 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5121e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.19190400339113 (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     : 6.12 us    (2.1%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 276.05 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.3626e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.93962909065294 (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     : 6.45 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 286.85 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (50.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.4533e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.91193699939562 (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     : 6.38 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 268.35 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.2915e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3917908119134 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 264.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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.5225e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.41876878305956 (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     : 6.31 us    (2.2%)
   patch tree reduce : 2.52 us    (0.9%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 266.84 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4939e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.7956338450386 (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     : 6.04 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 261.33 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7194e+05 | 65536 |      2 | 1.762e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.9428043515066 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7277316239832803, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 293.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.61 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5365e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.72433350999988 (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     : 6.75 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 277.40 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.3482e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.62641146333871 (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     : 6.57 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 316.78 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4979e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.88432908630121 (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     : 6.58 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 246.79 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4853e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.61038332251772 (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     : 6.28 us    (2.5%)
   patch tree reduce : 2.15 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 230.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (67.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4569e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.99190156869454 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 264.72 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1589e+05 | 65536 |      2 | 1.576e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.20182863272919 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 922.1036152500001 (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     : 9.04 us    (2.4%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 347.25 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5504e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.02508156385186 (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     : 6.42 us    (2.2%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.5%)
   LB compute        : 268.78 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.4650e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.16792433333444 (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     : 6.89 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 271.83 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8517e+05 | 65536 |      2 | 1.701e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.82196523682124 (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     : 6.55 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 258.44 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (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.2654e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.82382927485789 (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     : 6.49 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 292.44 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.0%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0920e+05 | 65536 |      2 | 2.120e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.28821525841617 (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     : 12.56 us   (3.9%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 296.80 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0622e+05 | 65536 |      2 | 2.140e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.64001333916126 (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     : 6.41 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 288.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.3153e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.90989847307497 (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     : 6.30 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 323.45 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (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.2788e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.11524672548107 (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     : 6.45 us    (1.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 7.01 us    (2.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 304.48 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.4256e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.31092624115911 (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     : 6.72 us    (2.3%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 272.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1477e+05 | 65536 |      2 | 2.082e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.50012735867463 (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     : 6.24 us    (1.7%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 343.22 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (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.4589e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.03560168050052 (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.98 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 267.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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.5169e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.29663868084769 (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     : 6.15 us    (2.0%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 281.75 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2244e+05 | 65536 |      2 | 2.033e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.57323738285164 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 924.3734813250001 (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     : 8.66 us    (2.4%)
   patch tree reduce : 2.70 us    (0.7%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 342.96 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4573e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.99955899576882 (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     : 6.21 us    (2.1%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 279.40 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3800e+05 | 65536 |      2 | 1.939e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.55603180113293 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 275.33 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4655e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.17753240643493 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.5%)
   LB compute        : 255.26 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (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.5436e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.87787203443294 (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     : 6.52 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 273.57 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.5137e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.2275610909199 (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     : 6.36 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 290.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0030e+05 | 65536 |      2 | 1.637e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.11414601800801 (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     : 7.03 us    (2.0%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 323.52 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (69.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.8978e+05 | 65536 |      2 | 1.681e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.82328498835027 (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     : 6.12 us    (0.9%)
   patch tree reduce : 2.40 us    (0.4%)
   gen split merge   : 962.00 ns  (0.1%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.2%)
   LB compute        : 627.56 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 5.17 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.39 us    (69.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.2352e+05 | 65536 |      2 | 2.026e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.4048186971619 (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     : 6.28 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 306.82 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4238e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.27042811606088 (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     : 6.41 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 266.84 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3989e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.72998405950152 (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     : 6.62 us    (1.9%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 320.03 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4267e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.3338012048763 (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     : 6.78 us    (2.6%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 241.93 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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.3315e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.26144811440408 (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     : 6.16 us    (1.9%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 310.24 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.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.4698e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.403457020225254 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 926.4989806460001 (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     : 8.97 us    (2.5%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 333.80 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (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.5396e+05 | 65536 |      2 | 1.852e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.02885273747806 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 256.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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    | 3.3551e+05 | 65536 |      2 | 1.953e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.01293707863545 (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     : 6.50 us    (2.6%)
   patch tree reduce : 1733.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 233.61 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.4053e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.8675178002413 (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     : 6.49 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 239.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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    | 3.2204e+05 | 65536 |      2 | 2.035e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.08193524748309 (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.78 us    (1.7%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 852.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 313.49 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1682e+05 | 65536 |      2 | 2.069e-01 | 0.0% |   0.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.9471433453041 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8698083028452002, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (1.8%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 302.47 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.3671e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.03633905160875 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8737699634142402, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 264.41 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.6%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6315e+05 | 65536 |      2 | 1.805e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.02818285841785 (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     : 6.38 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 241.28 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.4048e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.85699314030464 (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     : 6.49 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 244.45 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.4114e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.00112460922557 (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     : 6.37 us    (2.2%)
   patch tree reduce : 1994.00 ns (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 270.59 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.6177e+05 | 65536 |      2 | 1.812e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.72762345770442 (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     : 6.29 us    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.3%)
   LB compute        : 278.99 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.5323e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.63172407041647 (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     : 6.46 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 258.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     : 1443.00 ns (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.5149e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.25311756439501 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 265.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5657e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.698972931255106 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 928.761985123 (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     : 8.60 us    (2.4%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 328.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5487e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.98877177103877 (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     : 6.42 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 237.73 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.5682e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.41306641952994 (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     : 6.76 us    (2.3%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 275.98 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5897e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 99.88167937641435 (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     : 6.37 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 253.62 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2768e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.0710885634878 (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     : 7.22 us    (2.7%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 242.90 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.5468e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.94863787363059 (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     : 6.61 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 284.26 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.9%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2583e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.66836156427604 (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     : 6.31 us    (2.0%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 286.87 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.1659e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.65919237119913 (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     : 6.39 us    (0.9%)
   patch tree reduce : 1763.00 ns (0.2%)
   gen split merge   : 1101.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.2%)
   LB compute        : 687.91 us  (97.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4540e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.92823108291114 (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     : 7.10 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 262.02 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4461e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.75611201501037 (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     : 6.07 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 247.15 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3995e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.74291675896959 (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     : 6.92 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 297.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (66.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4440e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71113911178091 (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     : 6.59 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 290.79 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8357e+05 | 65536 |      2 | 1.709e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.47255571863836 (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     : 6.36 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 289.92 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.2%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4348e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.92947829395986 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 930.7841957420001 (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     : 8.86 us    (2.4%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 351.08 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (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.4349e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.5134091454731 (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     : 6.23 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 279.73 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (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.4488e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.81569648749517 (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.32 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 283.38 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (64.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5060e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 98.05896071576603 (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     : 6.21 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 270.97 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4586e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 97.02845806836628 (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.97 us    (1.9%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 291.03 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.4%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4443e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.71692691741004 (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     : 6.29 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 304.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1962.00 ns (67.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8601e+05 | 65536 |      2 | 1.698e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.0034662853508 (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     : 6.97 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 283.39 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.1%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4289e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.3814335131216 (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     : 6.45 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 270.07 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.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.3597e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.87535867636468 (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     : 6.62 us    (2.5%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1343.00 ns (0.5%)
   LB compute        : 245.83 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (63.8%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3117e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.83237969310302 (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     : 6.73 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 282.38 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.3%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1980e+05 | 65536 |      2 | 1.561e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.35659024180796 (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     : 6.61 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 287.09 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1373.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    | 3.5434e+05 | 65536 |      2 | 1.850e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.11210165265577 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9935782662594403, dt = 0.003961660569039922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 286.92 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (67.7%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2627e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.76546115379661 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 268.66 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.5%)
Info: cfl dt = 0.003961660569039922                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4840e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.59523618658685 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 932.8543595140001 (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:278: 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:283: 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)
360 plot, anim = run_and_plot(cases, 7, "minmod_hllc")
  • Test 7 - t=2.0 (Last Step)
running none hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  17.03 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.39 us    (52.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     : 1542.00 ns (0.3%)
   patch tree reduce : 1713.00 ns (0.3%)
   gen split merge   : 1252.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.2%)
   LB compute        : 596.13 us  (97.9%)
   LB move op cnt    : 0
   LB apply          : 3.31 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     : 12.64 us   (2.7%)
   patch tree reduce : 2.88 us    (0.6%)
   gen split merge   : 1101.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.2%)
   LB compute        : 436.36 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.51 us    (66.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.7649e+05 | 65536 |      2 | 2.370e-01 | 0.0% |   1.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.7%)
   patch tree reduce : 2.28 us    (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 344.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.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.1452e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.17833042922193 (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     : 6.80 us    (1.9%)
   patch tree reduce : 2.37 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 344.08 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4907e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.1107166062396 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 311.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5720e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74258572989355 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 299.07 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (61.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3757e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.80265783142421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.0%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 331.14 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5143e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.58544160884928 (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.72 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 332.75 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (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.5292e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.88322670798361 (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.65 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 265.68 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (63.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5803e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.90862759033243 (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     : 6.61 us    (2.5%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 246.82 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7402e+05 | 65536 |      2 | 1.752e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.05167364317043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 261.39 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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    | 3.7070e+05 | 65536 |      2 | 1.768e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.385851878004 (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.47 us    (2.5%)
   patch tree reduce : 2.44 us    (1.0%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.5%)
   LB compute        : 234.69 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.5612e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.52502984991351 (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     : 6.79 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 259.07 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1231.00 ns (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    | 3.9965e+05 | 65536 |      2 | 1.640e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.19512629043949 (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     : 6.89 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 297.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6972e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.25475322619666 (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     : 6.25 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 239.57 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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    | 3.4054e+05 | 65536 |      2 | 1.924e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.33352023464418 (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     : 6.53 us    (2.4%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 245.23 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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    | 3.9791e+05 | 65536 |      2 | 1.647e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.84582856641667 (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     : 6.90 us    (2.4%)
   patch tree reduce : 2.66 us    (0.9%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 264.75 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.4506e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.30636728340258 (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     : 6.16 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 276.48 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7161e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.63444439849347 (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     : 6.73 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 261.19 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.3280e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.84670781412413 (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     : 6.60 us    (2.1%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 286.16 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6576e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.46006053034623 (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     : 7.08 us    (2.5%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 265.39 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.5862e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.02657653602384 (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     : 6.42 us    (1.7%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1211.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.3%)
   LB compute        : 356.38 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (63.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4581e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.45674660027251 (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     : 6.32 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 260.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (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.2216e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.71221306282406 (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     : 6.38 us    (1.9%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 316.22 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5547e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.3954209109018 (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     : 6.12 us    (1.5%)
   patch tree reduce : 18.37 us   (4.4%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.3%)
   LB compute        : 380.28 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.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.3802e+05 | 65536 |      2 | 1.939e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.82842094859267 (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     : 6.46 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 263.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (61.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3709e+05 | 65536 |      2 | 1.944e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.6408620446443 (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     : 6.51 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 279.91 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3888e+05 | 65536 |      2 | 1.934e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.00009445248902 (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     : 6.75 us    (2.4%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 262.91 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (62.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3924e+05 | 65536 |      2 | 1.932e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.07304717485147 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 260.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3553e+05 | 65536 |      2 | 1.953e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.32873868002793 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09862915072640932, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 312.02 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0655e+05 | 65536 |      2 | 2.138e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.513189548279215 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.8%)
   patch tree reduce : 2.10 us    (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 360.44 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (66.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3208e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.63663109439459 (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.72 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 305.17 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5448e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.19632532547423 (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     : 6.65 us    (2.1%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 289.20 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3502e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.22575057171645 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 257.51 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4187e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.59949206581103 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 269.72 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2978e+05 | 65536 |      2 | 1.987e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.17513624465904 (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     : 6.41 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 296.21 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (64.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2832e+05 | 65536 |      2 | 1.996e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.8816487851921 (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.88 us    (1.7%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 691.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 891.00 ns  (0.3%)
   LB compute        : 333.98 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.29 us    (70.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3500e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.2225643196659 (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     : 6.48 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 284.74 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2696e+05 | 65536 |      2 | 2.004e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.60893203315398 (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.73 us    (1.7%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 303.91 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 20.27 us   (5.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2987e+05 | 65536 |      2 | 1.987e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.19187278235937 (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     : 6.44 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.3%)
   LB compute        : 291.41 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1618e+05 | 65536 |      2 | 2.073e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.44561188661127 (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.97 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 299.49 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5170e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.63924653426761 (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.31 us    (1.6%)
   patch tree reduce : 2.42 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 361.44 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7858e+05 | 65536 |      2 | 1.731e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.96704011563276 (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     : 6.50 us    (2.1%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 290.10 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.5992e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.28821871645555 (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     : 6.05 us    (1.8%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 308.59 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.1034e+05 | 65536 |      2 | 1.597e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.33985151905601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.1%)
   patch tree reduce : 2.42 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 288.19 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1910e+05 | 65536 |      2 | 1.564e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.09721521961444 (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     : 6.32 us    (1.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 310.14 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (65.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1898e+05 | 65536 |      2 | 2.055e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.00612730514591 (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     : 6.16 us    (1.9%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 310.21 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (65.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9599e+05 | 65536 |      2 | 1.655e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.45981389148469 (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     : 7.08 us    (2.5%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 255.42 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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    | 4.3940e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1714267781091 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 239.76 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (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.4341e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9762637907856 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 2.61 us    (1.0%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 242.28 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3801e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.89187301855051 (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     : 6.32 us    (2.4%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 242.80 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (62.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5608e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.51798459536623 (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     : 6.09 us    (2.3%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 248.92 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (62.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5954e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.21148991227308 (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.41 us    (2.5%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 237.60 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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    | 3.4992e+05 | 65536 |      2 | 1.873e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.21484957324711 (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     : 7.05 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 294.80 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (66.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5372e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.04318197987946 (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     : 6.83 us    (2.6%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 241.60 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.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    | 4.6060e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.42522033886858 (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     : 6.65 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 265.09 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.4%)
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.6542e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3913907683017 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 281.67 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.49 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.3%)
Info: cfl dt = 0.0036529315083855384                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3364e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.01483285840847 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20091123296120406, dt = 0.0036529315083855384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.4%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 247.49 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (59.9%)
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.5538e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.37780599313912 (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     : 6.24 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 262.28 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
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.5239e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.77768670531376 (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     : 7.01 us    (2.2%)
   patch tree reduce : 2.43 us    (0.8%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 293.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (62.4%)
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.4618e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.53169690159628 (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     : 6.65 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 271.03 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.0%)
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    | 4.4709e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.71422691502133 (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     : 6.98 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 318.55 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (63.2%)
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.5998e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30010938182238 (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     : 7.09 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 287.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.9%)
Info: cfl dt = 0.003652931508385694                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4675e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.64566984978073 (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     : 6.85 us    (1.1%)
   patch tree reduce : 2.44 us    (0.4%)
   gen split merge   : 1111.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.2%)
   LB compute        : 607.86 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.8%)
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.4627e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.54829254791471 (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     : 6.09 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 270.48 us  (88.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.0%)
Info: cfl dt = 0.0036529315083859404                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9354e+05 | 65536 |      2 | 1.665e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.96833947931675 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 247.84 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.0036529315083861655                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3675e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.63838279793845 (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     : 6.62 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 288.23 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.9%)
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    | 4.0219e+05 | 65536 |      2 | 1.629e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.70338373015959 (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     : 6.62 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 300.62 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.0%)
Info: cfl dt = 0.0036529315083869978                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9110e+05 | 65536 |      2 | 1.676e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.47924948081989 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2410934795534476, dt = 0.0036529315083869978
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 264.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.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.1976e+05 | 65536 |      2 | 1.561e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.2293119734985 (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     : 6.47 us    (2.4%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 252.20 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.8%)
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.5548e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.3968050147267 (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     : 6.53 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 287.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.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    | 3.9844e+05 | 65536 |      2 | 1.645e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.9511392652085 (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     : 6.77 us    (2.5%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 244.17 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.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.4930e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.158189084678 (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     : 6.47 us    (2.6%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.5%)
   LB compute        : 226.65 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.0%)
Info: cfl dt = 0.0036529315083952264                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5287e+05 | 65536 |      2 | 1.857e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.8079209385909 (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     : 6.97 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 289.63 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.4%)
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    | 3.6021e+05 | 65536 |      2 | 1.819e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.28028593220078 (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     : 6.34 us    (1.8%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 325.01 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.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    | 3.4924e+05 | 65536 |      2 | 1.877e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.07988504354184 (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     : 6.08 us    (2.0%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 277.36 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.4%)
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    | 3.4360e+05 | 65536 |      2 | 1.907e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.94727504602851 (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     : 6.58 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 290.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
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    | 3.4380e+05 | 65536 |      2 | 1.906e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.98830304170768 (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     : 6.81 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 287.25 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.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    | 3.3468e+05 | 65536 |      2 | 1.958e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.15765938289414 (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     : 6.64 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 290.69 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (69.3%)
Info: cfl dt = 0.003652931508453463                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3315e+05 | 65536 |      2 | 1.967e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.85010222078205 (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     : 6.34 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 282.42 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (59.9%)
Info: cfl dt = 0.003652931508476852                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3522e+05 | 65536 |      2 | 1.955e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.26498663072566 (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     : 7.41 us    (2.3%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 300.62 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.4%)
Info: cfl dt = 0.0036529315085073997                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3934e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.09315193630583 (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.48 us    (2.3%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 263.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (59.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    | 3.2324e+05 | 65536 |      2 | 2.027e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.86233507140291 (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     : 6.60 us    (1.8%)
   patch tree reduce : 2.63 us    (0.7%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 348.16 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.8%)
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.2839e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.9617843637433 (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     : 6.55 us    (1.9%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1181.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 315.78 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.1%)
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.5393e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.08714870976952 (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.74 us    (2.2%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1291.00 ns (0.4%)
   LB compute        : 277.77 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.8%)
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.6636e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.57986144791927 (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     : 6.51 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 268.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (62.3%)
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.6292e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.89071073489696 (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.70 us    (2.1%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 298.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.5%)
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.5423e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.14660193234106 (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     : 6.49 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 273.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.1%)
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.4870e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.03762793017012 (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     : 6.52 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 283.11 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.1%)
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.6056e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.41678754677191 (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.41 us    (1.9%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1161.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 318.36 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.5%)
Info: cfl dt = 0.003652931509612043                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6476e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.25976258796557 (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     : 7.59 us    (2.4%)
   patch tree reduce : 2.56 us    (0.8%)
   gen split merge   : 1422.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 295.20 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.1%)
Info: cfl dt = 0.0036529315099269218                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5932e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.16741000540158 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 258.25 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (49.4%)
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.4324e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.94069078833445 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.328763835761738, dt = 0.0036529315103131193
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 306.71 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.4%)
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    | 3.4718e+05 | 65536 |      2 | 1.888e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.66497155594148 (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     : 21.39 us   (7.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 266.93 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.8%)
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.5531e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.36349214744129 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.66 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 269.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.8%)
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    | 3.4916e+05 | 65536 |      2 | 1.877e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.06267325004207 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.92 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (56.9%)
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    | 3.5084e+05 | 65536 |      2 | 1.868e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.40014515087843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34337556180624473, dt = 0.0036529315128872946
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 264.86 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (56.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    | 3.3334e+05 | 65536 |      2 | 1.966e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.88884449009986 (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.70 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 267.67 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.1%)
Info: cfl dt = 0.003652931515090714                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4726e+05 | 65536 |      2 | 1.887e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.68106074086097 (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     : 6.21 us    (1.8%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 330.12 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.6%)
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    | 3.2896e+05 | 65536 |      2 | 1.992e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.00907092271045 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 281.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.3%)
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    | 3.4630e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.48988244778958 (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     : 6.44 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.80 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.7%)
Info: cfl dt = 0.0036529315202229696                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5016e+05 | 65536 |      2 | 1.872e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.26454361182992 (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     : 6.49 us    (2.2%)
   patch tree reduce : 2.49 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 275.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (60.2%)
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    | 3.4379e+05 | 65536 |      2 | 1.906e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.98570408729016 (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     : 6.33 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 259.80 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.9%)
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    | 3.4195e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.6163120590066 (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     : 10.02 us   (3.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 277.97 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (61.4%)
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    | 3.3820e+05 | 65536 |      2 | 1.938e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.86412629360977 (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     : 6.82 us    (2.2%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 286.04 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.3%)
Info: cfl dt = 0.003652931532414045                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3579e+05 | 65536 |      2 | 1.952e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.38103770313221 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 259.15 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (56.3%)
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    | 3.3829e+05 | 65536 |      2 | 1.937e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.88135969596667 (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     : 6.70 us    (2.0%)
   patch tree reduce : 2.52 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 305.76 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.0%)
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    | 3.3775e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.77334523444769 (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     : 6.46 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 262.11 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (61.6%)
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    | 3.3432e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.0846629640426 (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     : 6.78 us    (2.5%)
   patch tree reduce : 2.66 us    (1.0%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 251.90 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.2%)
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    | 3.3209e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.63736556229075 (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     : 6.60 us    (2.4%)
   patch tree reduce : 2.39 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 252.33 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (61.6%)
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    | 3.3295e+05 | 65536 |      2 | 1.968e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.80960541568841 (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     : 6.19 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 273.27 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (66.0%)
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    | 3.3594e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.41079804847921 (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     : 6.80 us    (2.3%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 269.58 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.5%)
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    | 3.2295e+05 | 65536 |      2 | 2.029e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.80299837221045 (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     : 6.84 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 296.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.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.3895e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.08017033695185 (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     : 6.59 us    (2.5%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 239.39 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.8%)
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.4443e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.17994341863933 (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     : 6.56 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 269.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.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.5043e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.38359516404277 (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     : 6.70 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 272.51 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.5%)
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.4213e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.71889383144399 (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     : 6.93 us    (2.6%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 241.99 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.8%)
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.6020e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.34477749905098 (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     : 6.48 us    (1.2%)
   patch tree reduce : 2.19 us    (0.4%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.2%)
   LB compute        : 497.99 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (56.7%)
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.6002e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30790464454402 (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     : 6.58 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 287.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.2%)
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.6186e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.67789009628511 (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     : 6.54 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 238.09 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.1%)
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.5501e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.30247188733654 (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.28 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 242.34 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.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    | 3.7334e+05 | 65536 |      2 | 1.755e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.91574523065638 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 261.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
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.0794e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.85689853384646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43835178291912735, dt = 0.0036529318004841723
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 287.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.5%)
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.4154e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.60080993318203 (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     : 6.27 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 286.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (61.5%)
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.6027e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.35758420398015 (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     : 6.40 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 241.66 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.4%)
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.6524e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.35537652844928 (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     : 6.60 us    (1.8%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 352.85 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (68.8%)
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.5977e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.25782910081708 (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     : 6.65 us    (2.5%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1261.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 239.22 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.0%)
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.5520e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34135541957214 (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     : 6.93 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 274.21 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.9%)
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.6224e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.75445078465842 (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     : 6.40 us    (1.9%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 310.89 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (62.0%)
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.5215e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.72907461057277 (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     : 6.48 us    (1.9%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 322.56 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (65.1%)
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.4597e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.48969312732441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4675752387023829, dt = 0.0036529322656798473
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 313.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.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.4599e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.49315180031273 (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     : 6.56 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 282.65 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.1%)
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.4958e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.21242925249854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47488110332266936, dt = 0.003652932452411429
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.3%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 243.35 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (65.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.6219e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.74281414623572 (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     : 6.25 us    (2.1%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 270.12 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.1%)
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.6189e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.68273021732504 (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     : 6.47 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 286.18 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.3%)
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.5649e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.60087075873605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48583990101248775, dt = 0.0036529328065437443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.4%)
   LB compute        : 263.10 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.5%)
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.5334e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.96803880254784 (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     : 6.71 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 311.41 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (68.2%)
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.5014e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.32619835769502 (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     : 6.54 us    (2.1%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 284.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.2%)
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.4456e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.2055445457983 (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     : 6.90 us    (2.1%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 306.17 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.1%)
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.4484e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.26234417086518 (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     : 6.56 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 288.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (61.5%)
Info: cfl dt = 0.0036529336509078633                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4057e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.40558011912846 (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     : 6.29 us    (2.1%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 271.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (60.9%)
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.5355e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.01048577565288 (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     : 6.35 us    (1.6%)
   patch tree reduce : 2.36 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 369.77 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.53 us    (68.6%)
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.4787e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.87121322383935 (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     : 6.54 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 245.07 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.9%)
Info: cfl dt = 0.003652934354748622                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4319e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.93152195006495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633682082472, dt = 0.003652934354748622
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 241.16 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.1%)
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.1226e+05 | 65536 |      2 | 1.590e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.72421779140761 (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     : 7.14 us    (2.2%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 300.73 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.4%)
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    | 3.9244e+05 | 65536 |      2 | 1.670e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.74863684244966 (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     : 6.39 us    (2.0%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 303.63 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.3%)
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.2256e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.79198274315047 (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     : 7.02 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 263.35 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (57.8%)
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.5692e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.68588870377332 (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     : 6.59 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 294.56 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.6%)
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    | 3.8459e+05 | 65536 |      2 | 1.704e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.17150458518068 (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     : 6.77 us    (2.1%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 306.33 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (61.5%)
Info: cfl dt = 0.0036529363650245283                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2766e+05 | 65536 |      2 | 2.000e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.74869795926435 (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.81 us    (1.9%)
   patch tree reduce : 1872.00 ns (0.6%)
   gen split merge   : 832.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.3%)
   LB compute        : 292.12 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (47.0%)
Info: cfl dt = 0.0036529367956589487                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2092e+05 | 65536 |      2 | 2.042e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.39562532493062 (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     : 6.60 us    (1.8%)
   patch tree reduce : 2.48 us    (0.7%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 338.79 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (67.7%)
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.3076e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.43614611721227 (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     : 7.07 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 343.03 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (66.0%)
Info: cfl dt = 0.003652937754190703                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3163e+05 | 65536 |      2 | 1.976e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.54533138087942 (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     : 6.79 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 302.93 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.8%)
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.2099e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.47664465732024 (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     : 6.69 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 310.62 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
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.7684e+05 | 65536 |      2 | 1.739e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.61671449198948 (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     : 7.04 us    (2.0%)
   patch tree reduce : 2.45 us    (0.7%)
   gen split merge   : 1161.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 325.12 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.4%)
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.3905e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10037070689191 (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     : 7.11 us    (2.1%)
   patch tree reduce : 2.15 us    (0.6%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 317.28 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.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.0972e+05 | 65536 |      2 | 1.600e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.21425093456601 (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     : 6.48 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 270.71 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.4%)
Info: cfl dt = 0.0036529408093665546                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1665e+05 | 65536 |      2 | 2.070e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.540179781044095 (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     : 6.26 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 300.00 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.9%)
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.3777e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.84376868538668 (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     : 6.67 us    (2.3%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 266.10 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.30 us    (64.1%)
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.4695e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.68514683133046 (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     : 6.35 us    (1.7%)
   patch tree reduce : 2.20 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.3%)
   LB compute        : 354.49 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.8%)
Info: cfl dt = 0.003652943181231555                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9368e+05 | 65536 |      2 | 1.665e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.99669196452004 (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     : 6.36 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 258.63 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (58.9%)
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.4133e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.55888253174325 (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.91 us    (1.9%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 281.42 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.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.4609e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.51361546086143 (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     : 6.23 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 264.18 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.7%)
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.5703e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.70909045198648 (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     : 6.61 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 293.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (68.6%)
Info: cfl dt = 0.003652947109992565                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0793e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.8562349752743 (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     : 6.29 us    (2.2%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 260.72 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (64.0%)
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.4334e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.96077154551647 (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     : 6.42 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 258.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (64.6%)
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.5065e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4294680113925 (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     : 6.59 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 256.40 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (61.6%)
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.4443e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.18062433973472 (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     : 6.50 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 264.62 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (60.5%)
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.2787e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.8576919171463 (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     : 6.55 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 288.37 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.3%)
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.5299e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89895602868549 (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     : 6.19 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 260.41 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.6%)
Info: cfl dt = 0.0036529550147846746                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5385e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.07045372729496 (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     : 6.51 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 260.59 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.0%)
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.5449e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.19840599595659 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 258.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (64.4%)
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.5392e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.0856484121292 (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     : 6.88 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 269.76 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.7%)
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.4471e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.23753225445077 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 263.61 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.9%)
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.4638e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.5723031342642 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 273.04 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (59.6%)
Info: cfl dt = 0.0036529638920606636                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4121e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.53385275852021 (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.50 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 267.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (63.8%)
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.6867e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.04481578133769 (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.94 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 255.75 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.3%)
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.7157e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.62606714405032 (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     : 6.41 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 268.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (65.1%)
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.7205e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.72375134715627 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 278.98 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.5%)
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.5616e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.53378010712126 (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     : 6.19 us    (2.0%)
   patch tree reduce : 2.46 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 281.81 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (65.0%)
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.5788e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.87990176598676 (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     : 6.35 us    (2.2%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 262.51 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.7%)
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.5933e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.17014905621497 (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     : 6.49 us    (2.4%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 245.14 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.6%)
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.5967e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.23864550954498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6575283744227233, dt = 0.003652980761348444
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 247.40 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.5%)
Info: cfl dt = 0.003652983666715181                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6263e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.83295658792176 (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     : 6.85 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 250.02 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (63.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    | 4.6219e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7449391916263 (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     : 6.72 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 248.04 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (56.8%)
Info: cfl dt = 0.0036529898943350922                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6530e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.36938530253967 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 246.60 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
Info: cfl dt = 0.0036529932261476663                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6788e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.88674113839575 (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     : 6.35 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 307.10 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.0%)
Info: cfl dt = 0.003652996709818882                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6722e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.75514233830184 (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     : 6.69 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 285.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (65.0%)
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    | 4.4797e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.8921510949604 (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     : 6.35 us    (1.8%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.3%)
   LB compute        : 327.25 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (63.8%)
Info: cfl dt = 0.0036530041528457214                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3946e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.11762946773375 (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     : 6.60 us    (2.3%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 270.14 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (55.8%)
Info: cfl dt = 0.003653008122477567                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8556e+05 | 65536 |      2 | 1.700e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.36777779410106 (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     : 6.84 us    (2.2%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 284.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.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    | 4.3682e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.65568119349597 (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     : 6.79 us    (1.9%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 332.12 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (67.4%)
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    | 4.4094e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.481717431104 (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     : 6.31 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 294.62 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.7%)
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    | 3.5865e+05 | 65536 |      2 | 1.827e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.96971265674273 (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     : 6.41 us    (2.0%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 290.95 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.2%)
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    | 3.6103e+05 | 65536 |      2 | 1.815e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.44736250574184 (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     : 6.46 us    (1.9%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 306.00 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.0%)
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    | 3.2450e+05 | 65536 |      2 | 2.020e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.11617702412073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.705017393731526, dt = 0.0036530306652101207
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 305.92 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (64.7%)
Info: cfl dt = 0.0036530357513656795                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6353e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.01528989653862 (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     : 6.21 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 249.38 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.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    | 4.7026e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.36529034875105 (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     : 6.42 us    (2.5%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 237.14 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (59.5%)
Info: cfl dt = 0.0036530465470171534                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6996e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.30568628080489 (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     : 6.15 us    (2.0%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 286.06 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.3%)
Info: cfl dt = 0.003653052268314374                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6595e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.500893822415 (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     : 6.19 us    (2.0%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 292.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (57.5%)
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    | 3.8960e+05 | 65536 |      2 | 1.682e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.18040885966174 (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     : 6.91 us    (2.6%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 242.33 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (57.2%)
Info: cfl dt = 0.0036530643879516206                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5862e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.03155766699125 (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     : 6.74 us    (2.6%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.6%)
   LB compute        : 236.77 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
Info: cfl dt = 0.0036530707985654018                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5666e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.63767633660612 (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     : 6.75 us    (1.9%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.3%)
   LB compute        : 329.84 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1932.00 ns (67.2%)
Info: cfl dt = 0.0036530774513522314                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6099e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.50592305079395 (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     : 6.65 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 253.57 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.5%)
Info: cfl dt = 0.003653084352637785                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4725e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.74976368654218 (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     : 6.56 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 235.86 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.5%)
Info: cfl dt = 0.003653091508820965                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5672e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.65045033179227 (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     : 6.38 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 238.46 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.4%)
Info: cfl dt = 0.003653098926372581                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5889e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.08554439341148 (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     : 6.51 us    (2.4%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 252.23 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.5%)
Info: cfl dt = 0.0036531066118339925                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5081e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46501302131989 (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.54 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 240.83 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (54.4%)
Info: cfl dt = 0.003653114571815723                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5429e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.16324225918622 (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     : 6.07 us    (1.7%)
   patch tree reduce : 2.73 us    (0.8%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 338.64 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.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    | 4.2652e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.59118301359352 (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     : 6.22 us    (1.8%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 317.40 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (64.6%)
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    | 4.5326e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.95714456278677 (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     : 6.60 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 242.04 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (7.3%)
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    | 4.5604e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.51504797130528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7634666209845069, dt = 0.0036531401659956235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 269.79 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (56.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    | 4.5209e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.72153674836105 (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     : 6.52 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 288.93 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.0%)
Info: cfl dt = 0.003653158725558412                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4611e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.52174152975704 (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     : 6.79 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1472.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 239.32 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.8%)
Info: cfl dt = 0.003653168475174567                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5686e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.68077912205548 (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     : 6.86 us    (2.5%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 253.04 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.5%)
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.5272e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.84921384340645 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 280.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.4%)
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.4704e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.7105948829587 (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     : 6.01 us    (2.3%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 239.32 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
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.6020e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3510292770578 (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     : 7.05 us    (2.7%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 239.27 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.6%)
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.4723e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.74760726677079 (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     : 6.36 us    (2.0%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 290.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.1%)
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    | 3.9973e+05 | 65536 |      2 | 1.640e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.21581838489813 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926920155987526, dt = 0.0036532222054190535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 270.71 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.7%)
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.4167e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.63244024228874 (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     : 6.66 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 270.23 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.9%)
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    | 3.5620e+05 | 65536 |      2 | 1.840e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.48235256905167 (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     : 6.52 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 266.96 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (59.8%)
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    | 3.2681e+05 | 65536 |      2 | 2.005e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.58387051017385 (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     : 6.66 us    (2.0%)
   patch tree reduce : 2.43 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 303.62 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.6%)
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.4030e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.35951461390145 (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     : 6.62 us    (2.1%)
   patch tree reduce : 2.32 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 289.59 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.3%)
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.4355e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.01096938024094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109582482538613, dt = 0.0036532849056411195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 270.98 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (67.4%)
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.0886e+05 | 65536 |      2 | 1.603e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.0504554622267 (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     : 6.62 us    (2.2%)
   patch tree reduce : 2.62 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 275.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.5%)
Info: cfl dt = 0.003653312705294072                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4152e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.60411667576997 (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     : 7.11 us    (2.5%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 266.35 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.2%)
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.3972e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.24338723093437 (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     : 6.33 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 250.06 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (61.5%)
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.5162e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.63173300956484 (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     : 6.35 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 259.75 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (64.9%)
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.5727e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.76692304265595 (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     : 6.10 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 273.88 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.7%)
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.3410e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.11674090636157 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328781713449002, dt = 0.0036533733010671913
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 244.74 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.1%)
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.4597e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.5007688111 (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     : 6.08 us    (2.1%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 263.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.0%)
Info: cfl dt = 0.0036534062206806193                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5358e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.0271721223918 (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     : 6.44 us    (2.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 297.55 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.6%)
Info: cfl dt = 0.00365342336318412                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4333e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.97059392781743 (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     : 6.68 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 284.15 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.6%)
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.5863e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.04216944305672 (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     : 6.75 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 270.06 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.7%)
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.6175e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.66855433319107 (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     : 11.99 us   (4.0%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 275.98 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (59.8%)
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.6404e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.12911806822282 (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     : 6.70 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 285.10 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.5%)
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.5434e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.18120606088603 (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     : 6.55 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 298.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.3%)
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.6163e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.64538031993827 (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     : 6.41 us    (1.9%)
   patch tree reduce : 2.39 us    (0.7%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 311.04 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.0%)
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.5248e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.8091044732421 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657591542912169, dt = 0.0036535362721897362
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 266.05 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (64.9%)
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.5440e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.19580190273471 (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     : 6.24 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 298.31 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.9%)
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.5325e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.96583599554121 (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     : 6.62 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 303.22 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (61.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    | 3.8813e+05 | 65536 |      2 | 1.689e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.89581426778037 (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     : 6.44 us    (2.6%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 225.04 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.8%)
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.6684e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.6929898749463 (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     : 6.45 us    (2.1%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 281.30 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.0%)
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.3422e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.14841165552588 (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     : 6.67 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 272.45 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.6%)
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.6678e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.6831858236569 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 257.45 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.7%)
Info: cfl dt = 0.003653691472251024                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7231e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.79320210152599 (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     : 7.18 us    (2.7%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 247.27 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.8%)
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.7052e+05 | 65536 |      2 | 1.393e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.43517723447115 (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     : 6.64 us    (2.6%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1171.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 234.93 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (8.0%)
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.4041e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.39281209557424 (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     : 6.63 us    (2.6%)
   patch tree reduce : 2.47 us    (1.0%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.5%)
   LB compute        : 231.69 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (60.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.5497e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.31425171005706 (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     : 7.22 us    (2.5%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 270.64 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.9%)
Info: cfl dt = 0.0036537925065936745                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3280e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86663474563993 (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     : 6.30 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 290.37 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.0%)
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.5913e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.15092721828964 (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     : 6.30 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 283.99 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (68.4%)
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.1757e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.80988372796203 (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     : 6.91 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 274.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (58.7%)
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.0039e+05 | 65536 |      2 | 1.637e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.36208101748603 (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     : 7.02 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 297.87 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.7%)
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.4884e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.08857399248568 (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     : 6.65 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 273.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.5%)
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.5236e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.79560553117477 (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     : 6.77 us    (2.1%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 292.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.6%)
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.3942e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.19974789727056 (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     : 6.42 us    (2.2%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 274.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.3%)
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.4938e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.19937784280482 (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     : 7.19 us    (2.5%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 266.63 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (58.1%)
Info: cfl dt = 0.003654023962047524                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6157e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.64555650150892 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351803966902205, dt = 0.003654023962047524
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 269.74 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (62.6%)
Info: cfl dt = 0.0036540558053861456                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5898e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.12704321229678 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.938834420652268, dt = 0.0036540558053861456
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 255.34 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.2%)
Info: cfl dt = 0.0036540883223154345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8437e+05 | 65536 |      2 | 1.705e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.15294779589378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424884764576541, dt = 0.0036540883223154345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.5%)
   LB compute        : 246.73 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.4%)
Info: cfl dt = 0.0036541215207774908                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9569e+05 | 65536 |      2 | 1.656e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.42510831984927 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461425647799695, dt = 0.0036541215207774908
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 270.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.4%)
Info: cfl dt = 0.0036541554086959335                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5603e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.53771727106742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.949796686300747, dt = 0.0036541554086959335
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 266.09 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 0.0036541899939745064                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5781e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.89638531741018 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534508417094429, dt = 0.0036541899939745064
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1332.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 289.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.5%)
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.6294e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.92722432912745 (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     : 6.55 us    (2.1%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.5%)
   LB compute        : 285.63 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (64.4%)
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.0735e+05 | 65536 |      2 | 1.609e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.7688738767115 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 285.11 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.6%)
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.1266e+05 | 65536 |      2 | 1.588e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.83466730044846 (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     : 6.69 us    (2.3%)
   patch tree reduce : 2.55 us    (0.9%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 269.36 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (61.4%)
Info: cfl dt = 0.003654335465992446                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4331e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9880507694133 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680678162887139, dt = 0.003654335465992446
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1543.00 ns (0.5%)
   LB compute        : 275.66 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (69.2%)
Info: cfl dt = 0.00365437365583651                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5995e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.3298654647406 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9717221517547063, dt = 0.00365437365583651
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 287.99 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.6%)
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.5926e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.19308830958087 (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     : 6.92 us    (2.2%)
   patch tree reduce : 2.51 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 295.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (66.7%)
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.7023e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.39482587207289 (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     : 6.31 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 276.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.0%)
Info: cfl dt = 0.003654492721981483                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4757e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.84829223511763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826853902766318, dt = 0.003654492721981483
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 262.91 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (51.9%)
Info: cfl dt = 0.0036545339352216785                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9484e+05 | 65536 |      2 | 1.660e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.26369434470796 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9863398829986133, dt = 0.0036545339352216785
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.0%)
   patch tree reduce : 2.72 us    (0.8%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 305.18 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.0%)
Info: cfl dt = 0.003654575923472035                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5160e+05 | 65536 |      2 | 1.864e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.5842185932104 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899944169338349, dt = 0.003654575923472035
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.8%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 318.15 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.3%)
Info: cfl dt = 0.0036546186943308364                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4701e+05 | 65536 |      2 | 1.889e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.66370392039954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.993648992857307, dt = 0.0036546186943308364
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.1%)
   patch tree reduce : 2.58 us    (0.9%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 280.03 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (64.0%)
Info: cfl dt = 0.003654662255361233                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4561e+05 | 65536 |      2 | 1.896e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.38170354489803 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9973036115516378, dt = 0.003654662255361233
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 258.89 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.5%)
Info: cfl dt = 0.003654706614090106                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3878e+05 | 65536 |      2 | 1.934e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.01135996665656 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.000958273806999, dt = 0.003654706614090106
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 255.94 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (66.7%)
Info: cfl dt = 0.003654751778006954                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3624e+05 | 65536 |      2 | 1.949e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.50373750619812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0046129804210893, dt = 0.003654751778006954
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 256.85 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (61.1%)
Info: cfl dt = 0.0036547977545627916                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3992e+05 | 65536 |      2 | 1.928e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.24266795244748 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0082677321990963, dt = 0.0036547977545627916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (1.9%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 297.93 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.3%)
Info: cfl dt = 0.003654844551169086                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4458e+05 | 65536 |      2 | 1.902e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.17994185117297 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0119225299536592, dt = 0.003654844551169086
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 275.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.9%)
Info: cfl dt = 0.0036548921751966973                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3999e+05 | 65536 |      2 | 1.928e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.25871766581027 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0155773745048282, dt = 0.0036548921751966973
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 288.82 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.2%)
Info: cfl dt = 0.003654940633974854                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3666e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.59116222773662 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0192322666800249, dt = 0.003654940633974854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 291.12 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.0%)
Info: cfl dt = 0.003654989934790144                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2667e+05 | 65536 |      2 | 2.006e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.5863535296732 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228872073139996, dt = 0.003654989934790144
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.0%)
   patch tree reduce : 2.49 us    (0.7%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 317.65 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (64.2%)
Info: cfl dt = 0.0036550400848855235                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3342e+05 | 65536 |      2 | 1.966e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.94213802994311 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0265421972487898, dt = 0.0036550400848855235
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 271.00 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (60.2%)
Info: cfl dt = 0.0036550910914593567                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7005e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.37633188617289 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0301972373336754, dt = 0.0036550910914593567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.5%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 238.06 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (60.3%)
Info: cfl dt = 0.0036551429616644665                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5046e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44355249635672 (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     : 6.99 us    (2.7%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 239.15 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (63.9%)
Info: cfl dt = 0.0036551957026072185                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6350e+05 | 65536 |      2 | 1.803e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.98541272902384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0375074713867993, dt = 0.0036551957026072185
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 303.70 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
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.4196e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.73990982777413 (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     : 6.55 us    (2.5%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 243.88 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.3%)
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.4260e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.87006973661985 (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     : 6.82 us    (2.5%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 248.83 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.1%)
Info: cfl dt = 0.003655359220209261                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3908e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.16346348811291 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0484732202356466, dt = 0.003655359220209261
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.3%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 251.31 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (54.9%)
Info: cfl dt = 0.0036554155142058944                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5721e+05 | 65536 |      2 | 1.835e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.72618751672158 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.052128579455856, dt = 0.0036554155142058944
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1382.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 249.97 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.6%)
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.1601e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.53371200739149 (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     : 6.42 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 263.85 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.0%)
Info: cfl dt = 0.003655530825633816                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3103e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.5522712355475 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0594394676838061, dt = 0.003655530825633816
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 296.20 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (58.5%)
Info: cfl dt = 0.0036555898566316097                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4480e+05 | 65536 |      2 | 1.901e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.23638168916878 (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     : 6.20 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 313.33 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.4%)
Info: cfl dt = 0.0036556498134416755                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0101e+05 | 65536 |      2 | 1.634e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.52572256792966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0667505883660715, dt = 0.0036556498134416755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 276.53 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.8%)
Info: cfl dt = 0.0036557107027142184                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4679e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.72046339008642 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0704062381795132, dt = 0.0036557107027142184
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 278.02 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.3%)
Info: cfl dt = 0.0036557725310449223                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5829e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.03130569189108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0740619488822274, dt = 0.0036557725310449223
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 238.76 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (59.5%)
Info: cfl dt = 0.0036558353049742603                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5206e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.78135817614383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0777177214132723, dt = 0.0036558353049742603
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 280.46 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (62.2%)
Info: cfl dt = 0.003655899030986823                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9557e+05 | 65536 |      2 | 1.657e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.43958657048671 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0813735567182465, dt = 0.003655899030986823
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 271.67 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.2%)
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.5682e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74145398545473 (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     : 6.64 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 263.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (57.2%)
Info: cfl dt = 0.0036560293649166736                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6503e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.39074919344087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.088685419464744, dt = 0.0036560293649166736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 323.05 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (66.5%)
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.6587e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.56234792988373 (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     : 6.27 us    (1.8%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 322.22 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.9%)
Info: cfl dt = 0.003656163583569299                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4279e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9281997411078 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0959975448151784, dt = 0.003656163583569299
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.5%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 239.50 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.5%)
Info: cfl dt = 0.003656232165266472                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5724e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.83098441402096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0996537083987477, dt = 0.003656232165266472
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 299.63 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (63.8%)
Info: cfl dt = 0.003656301736745815                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5719e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.8230890586059 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.103309940564014, dt = 0.003656301736745815
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 309.06 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.1%)
Info: cfl dt = 0.003656372304083628                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5828e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.04485045760754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.10696624230076, dt = 0.003656372304083628
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.4%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 241.22 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (65.5%)
Info: cfl dt = 0.0036564438732956794                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6018e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.42662759462576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1106226146048437, dt = 0.0036564438732956794
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1231.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 244.28 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (59.9%)
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.5838e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.06706958837192 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1142790584781395, dt = 0.003656516450336708
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 261.05 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (61.8%)
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.2826e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.01997832168381 (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     : 6.71 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 274.07 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.7%)
Info: cfl dt = 0.0036566646514166815                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5132e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.65385981640294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.121592164969576, dt = 0.0036566646514166815
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 262.12 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.9%)
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.6266e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.93361820213967 (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     : 6.52 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 243.54 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (58.0%)
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.5306e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.00584936823995 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.51 us    (0.9%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 260.02 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (60.0%)
Info: cfl dt = 0.0036568946570620657                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4301e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.989332307532 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1325623868617716, dt = 0.0036568946570620657
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.5%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 243.38 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.9%)
Info: cfl dt = 0.003656973402651325                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5372e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.14265594480814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1362192815188337, dt = 0.003656973402651325
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.6%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 239.87 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (57.4%)
Info: cfl dt = 0.0036570531960063287                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5891e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.18703683327011 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.139876254921485, dt = 0.0036570531960063287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.5%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 245.87 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (59.0%)
Info: cfl dt = 0.0036571340425780112                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6185e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7799618382508 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1435333081174912, dt = 0.0036571340425780112
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.4%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 240.03 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (60.2%)
Info: cfl dt = 0.0036572159477526547                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4267e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9287582030219 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1471904421600692, dt = 0.0036572159477526547
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 247.77 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.3%)
Info: cfl dt = 0.0036572989168515723                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6295e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.0043973644458 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1508476581078217, dt = 0.0036572989168515723
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.9%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 319.13 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (60.7%)
Info: cfl dt = 0.003657382955130808                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5858e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.12868813798292 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1545049570246733, dt = 0.003657382955130808
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 255.05 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.3%)
Info: cfl dt = 0.0036574680677808583                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1844e+05 | 65536 |      2 | 1.566e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.06656074552427 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.158162339979804, dt = 0.0036574680677808583
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 244.06 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (61.3%)
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    | 4.6428e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.2782983782327 (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     : 6.37 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 246.95 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.2%)
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    | 4.0365e+05 | 65536 |      2 | 1.624e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.0992291150367 (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     : 6.71 us    (2.6%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1352.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 234.62 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (56.4%)
Info: cfl dt = 0.003657729902872153                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4244e+05 | 65536 |      2 | 1.914e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.80366793566381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1691350038441373, dt = 0.003657729902872153
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 281.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
Info: cfl dt = 0.003657819363590478                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5056e+05 | 65536 |      2 | 1.869e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.43610748874562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1727927337470094, dt = 0.003657819363590478
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.6%)
   patch tree reduce : 2.12 us    (0.9%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.5%)
   LB compute        : 225.00 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.2%)
Info: cfl dt = 0.0036579099236401266                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5677e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.77925656487069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1764505531106, dt = 0.0036579099236401266
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 264.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (65.2%)
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    | 4.5649e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.72579253661443 (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     : 6.42 us    (2.3%)
   patch tree reduce : 2.41 us    (0.9%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 254.26 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (60.8%)
Info: cfl dt = 0.0036580943608350387                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4329e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0746892861576 (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     : 6.88 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 259.33 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (61.8%)
Info: cfl dt = 0.00365818824736328                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5513e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.4570855738679 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1874245589828887, dt = 0.00365818824736328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.4%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 263.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.3%)
Info: cfl dt = 0.003658283251988494                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2270e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.94075592665257 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1910827472302519, dt = 0.003658283251988494
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 238.91 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (62.2%)
Info: cfl dt = 0.003658379379233672                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4878e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.18548043027087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1947410304822403, dt = 0.003658379379233672
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 257.80 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.3%)
Info: cfl dt = 0.003658476633554183                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5966e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.37417225150156 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.198399409861474, dt = 0.003658476633554183
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.6%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 241.75 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.1%)
Info: cfl dt = 0.003658575019337678                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3917e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2582894795164 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2020578864950282, dt = 0.003658575019337678
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 247.16 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.7%)
Info: cfl dt = 0.0036586745409040006                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5509e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.45923090170373 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2057164615143658, dt = 0.0036586745409040006
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 280.31 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.5%)
Info: cfl dt = 0.003658775202505116                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5251e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.94457765496149 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2093751360552698, dt = 0.003658775202505116
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 276.33 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.2%)
Info: cfl dt = 0.0036588770083250508                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4988e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.41712564704221 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2130339112577748, dt = 0.0036588770083250508
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 239.58 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (60.9%)
Info: cfl dt = 0.003658979962479843                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4377e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19330447802413 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2166927882660998, dt = 0.003658979962479843
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.7%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 242.49 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.2%)
Info: cfl dt = 0.003659084069017512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5287e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02388972070614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2203517682285796, dt = 0.003659084069017512
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 243.25 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (60.6%)
Info: cfl dt = 0.0036591893319180345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5768e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.99299203637555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2240108522975972, dt = 0.0036591893319180345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.5%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 254.90 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (68.7%)
Info: cfl dt = 0.0036592957550933346                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7380e+05 | 65536 |      2 | 1.383e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.23729222372425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2276700416295152, dt = 0.0036592957550933346
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1142.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 227.36 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (61.5%)
Info: cfl dt = 0.003659403342387289                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5364e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.18644068521942 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2313293373846086, dt = 0.003659403342387289
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 261.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.1%)
Info: cfl dt = 0.0036595120975757406                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7140e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.75904611162805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.234988740726996, dt = 0.0036595120975757406
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 257.71 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (60.0%)
Info: cfl dt = 0.003659622024366522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4237e+05 | 65536 |      2 | 1.914e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.82405355300828 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2386482528245717, dt = 0.003659622024366522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 260.37 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.10 us    (69.4%)
Info: cfl dt = 0.003659733126399501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4112e+05 | 65536 |      2 | 1.921e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.57535266429842 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2423078748489382, dt = 0.003659733126399501
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 275.22 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.7%)
Info: cfl dt = 0.003659845407246617                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4106e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.56560002974206 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2459676079753377, dt = 0.003659845407246617
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.6%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 242.37 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.43 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (57.3%)
Info: cfl dt = 0.003659958870411957                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5453e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.37910012952038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2496274533825842, dt = 0.003659958870411957
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 2.61 us    (0.9%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 283.99 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (62.9%)
Info: cfl dt = 0.003660073519331811                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5838e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.15676756787181 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2532874122529962, dt = 0.003660073519331811
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 303.29 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.2%)
Info: cfl dt = 0.0036601893573747642                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5628e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.73630387189618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256947485772328, dt = 0.0036601893573747642
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.1%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 283.41 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.3%)
Info: cfl dt = 0.003660306387841783                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4576e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.62482460806268 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2606076751297026, dt = 0.003660306387841783
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.3%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 250.10 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.4%)
Info: cfl dt = 0.0036604246139663203                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4265e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.00294079054498 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2642679815175444, dt = 0.0036604246139663203
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.3%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 251.87 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (64.5%)
Info: cfl dt = 0.0036605440389144255                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4999e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.48150385802788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2679284061315108, dt = 0.0036605440389144255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 270.97 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.2%)
Info: cfl dt = 0.003660664665784865                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4267e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.01138102431017 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2715889501704252, dt = 0.003660664665784865
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1261.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 264.78 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.4%)
Info: cfl dt = 0.0036607864976092586                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6070e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.63950132686426 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27524961483621, dt = 0.0036607864976092586
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 242.70 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.6%)
Info: cfl dt = 0.003660909537352213                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1315e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.08168461598218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2789104013338193, dt = 0.003660909537352213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.5%)
   LB compute        : 269.17 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.4%)
Info: cfl dt = 0.0036610337879114762                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4837e+05 | 65536 |      2 | 1.881e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.05770103291344 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2825713108711716, dt = 0.0036610337879114762
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.6%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 252.48 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (64.6%)
Info: cfl dt = 0.003661159252118095                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4346e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.0719294129157 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.286232344659083, dt = 0.003661159252118095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 329.75 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.9%)
Info: cfl dt = 0.00366128593273658                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4236e+05 | 65536 |      2 | 1.914e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.8537278551921 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2898935039112012, dt = 0.00366128593273658
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 277.41 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.8%)
Info: cfl dt = 0.003661413832465087                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4724e+05 | 65536 |      2 | 1.887e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.83654788216361 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2935547898439377, dt = 0.003661413832465087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 310.63 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (61.8%)
Info: cfl dt = 0.0036615429539355927                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3054e+05 | 65536 |      2 | 1.983e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.48092985187625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2972162036764028, dt = 0.0036615429539355927
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 254.60 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (56.9%)
Info: cfl dt = 0.0036616732997140954                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5887e+05 | 65536 |      2 | 1.826e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.18131311153036 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3008777466303383, dt = 0.0036616732997140954
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.0%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 295.16 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.1%)
Info: cfl dt = 0.0036618048723008104                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4248e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.00178880963499 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3045394199300524, dt = 0.0036618048723008104
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 250.00 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (60.7%)
Info: cfl dt = 0.003661937674130379                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4397e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.3036365008687 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3082012248023531, dt = 0.003661937674130379
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 267.00 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (58.1%)
Info: cfl dt = 0.0036620717075720828                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4440e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.39396958727423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3118631624764836, dt = 0.0036620717075720828
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 275.45 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.6%)
Info: cfl dt = 0.0036622069749300715                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5072e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.66938501174907 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3155252341840558, dt = 0.0036622069749300715
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.1%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 304.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.5%)
Info: cfl dt = 0.003662343478443584                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5442e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.41575075222777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.319187441158986, dt = 0.003662343478443584
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 2.64 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 277.21 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.2%)
Info: cfl dt = 0.003662481220287196                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2530e+05 | 65536 |      2 | 2.015e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.44248754223773 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3228497846374294, dt = 0.003662481220287196
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (1.8%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 337.37 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.2%)
Info: cfl dt = 0.0036626202025710555                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4397e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.31973062192176 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3265122658577166, dt = 0.0036626202025710555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.4%)
   LB compute        : 303.29 us  (88.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (61.9%)
Info: cfl dt = 0.003662760427341138                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2043e+05 | 65536 |      2 | 1.559e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.58863015012568 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3301748860602878, dt = 0.003662760427341138
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (1.9%)
   patch tree reduce : 2.44 us    (0.6%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.3%)
   LB compute        : 369.35 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (60.8%)
Info: cfl dt = 0.003662901896579501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8760e+05 | 65536 |      2 | 1.691e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.98576435713187 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.333837646487629, dt = 0.003662901896579501
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.7%)
   patch tree reduce : 1993.00 ns (0.5%)
   gen split merge   : 1262.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 357.77 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (67.1%)
Info: cfl dt = 0.00366304461220455                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3991e+05 | 65536 |      2 | 1.928e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.39391831599009 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3375005483842084, dt = 0.00366304461220455
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (1.9%)
   patch tree reduce : 2.60 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 309.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.2%)
Info: cfl dt = 0.0036631885760713048                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3821e+05 | 65536 |      2 | 1.938e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.05349512992045 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.341163592996413, dt = 0.0036631885760713048
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 264.98 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (61.8%)
Info: cfl dt = 0.003663333789971679                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3708e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.95216052306883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3448267815724844, dt = 0.003663333789971679
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 267.68 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.8%)
Info: cfl dt = 0.0036634802556347553                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5473e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.50634978148001 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.348490115362456, dt = 0.0036634802556347553
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 283.58 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (63.3%)
Info: cfl dt = 0.0036636279747270777                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6356e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28655989088428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3521535956180908, dt = 0.0036636279747270777
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 251.71 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.6%)
Info: cfl dt = 0.003663776948852943                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4050e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.65119384806349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3558172235928179, dt = 0.003663776948852943
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.01 us    (2.6%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 247.24 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (60.2%)
Info: cfl dt = 0.0036639271795546944                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6207e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.99529253790233 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3594810005416709, dt = 0.0036639271795546944
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.4%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 251.67 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.3%)
Info: cfl dt = 0.0036640786683130285                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5567e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.70983175090727 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3631449277212255, dt = 0.0036640786683130285
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.72 us    (2.6%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 279.48 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (54.4%)
Info: cfl dt = 0.0036642314165473014                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3958e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.47617828789863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3668090063895386, dt = 0.0036642314165473014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.5%)
   LB compute        : 279.12 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1922.00 ns (65.3%)
Info: cfl dt = 0.003664385425615841                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5949e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.48778749178229 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.370473237806086, dt = 0.003664385425615841
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.9%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 298.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (65.4%)
Info: cfl dt = 0.0036645406968162635                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4260e+05 | 65536 |      2 | 1.913e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.96173107636136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3741376232317017, dt = 0.0036645406968162635
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 290.93 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.0%)
Info: cfl dt = 0.0036646972313857983                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6065e+05 | 65536 |      2 | 1.817e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.59833711767291 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.377802163928518, dt = 0.0036646972313857983
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 284.77 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.4%)
Info: cfl dt = 0.0036648550305016093                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5761e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.12101157387202 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.381466861159904, dt = 0.0036648550305016093
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.8%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 336.70 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (65.3%)
Info: cfl dt = 0.0036650140952811296                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5884e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.37135741596548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3851317161904055, dt = 0.0036650140952811296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 274.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (66.0%)
Info: cfl dt = 0.003665174426782391                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5565e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.73434297418635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3887967302856867, dt = 0.003665174426782391
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 2.42 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 249.51 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.7%)
Info: cfl dt = 0.0036653360260043683                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5265e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.13466273385234 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3924619047124691, dt = 0.0036653360260043683
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 294.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.4%)
Info: cfl dt = 0.003665498893887315                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0293e+05 | 65536 |      2 | 1.626e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.1265182321665 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3961272407384735, dt = 0.003665498893887315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 289.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.9%)
Info: cfl dt = 0.0036656630313131166                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4688e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.97938902814718 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3997927396323608, dt = 0.0036656630313131166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 280.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (62.4%)
Info: cfl dt = 0.0036658284391056298                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4090e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.64346728402789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.403458402663674, dt = 0.0036658284391056298
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.0%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 289.67 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.31 us    (68.1%)
Info: cfl dt = 0.003665995118031045                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0518e+05 | 65536 |      2 | 1.617e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.59076737242536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4071242311027796, dt = 0.003665995118031045
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 284.60 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (63.6%)
Info: cfl dt = 0.0036661630687982363                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5468e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.56218172783235 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4107902262208107, dt = 0.0036661630687982363
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 287.44 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.9%)
Info: cfl dt = 0.0036663322920591234                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3803e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.21426557567382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.414456389289609, dt = 0.0036663322920591234
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.4%)
   patch tree reduce : 2.52 us    (0.9%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 252.48 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (65.0%)
Info: cfl dt = 0.00366650278840903                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6300e+05 | 65536 |      2 | 1.805e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.106567455106 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.418122721581668, dt = 0.00366650278840903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 288.35 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (65.6%)
Info: cfl dt = 0.003666674558387054                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4947e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.52619625460412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4217892243700772, dt = 0.003666674558387054
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 261.43 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (55.6%)
Info: cfl dt = 0.0036668476024764307                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5826e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.30048951384713 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4254558989284642, dt = 0.0036668476024764307
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.4%)
   patch tree reduce : 2.52 us    (0.9%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 262.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (57.3%)
Info: cfl dt = 0.0036670219211049036                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4400e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.43230024667362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4291227465309406, dt = 0.0036670219211049036
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 278.41 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.5%)
Info: cfl dt = 0.0036671975146451014                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5878e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.41397936266497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4327897684520454, dt = 0.0036671975146451014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.2%)
   patch tree reduce : 2.61 us    (0.8%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 290.13 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.0%)
Info: cfl dt = 0.0036673743834149067                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3776e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18526718400477 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4364569659666906, dt = 0.0036673743834149067
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 272.04 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.2%)
Info: cfl dt = 0.0036675525276778373                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3724e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.08353524895618 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4401243403501054, dt = 0.0036675525276778373
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (1.9%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 303.50 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.4%)
Info: cfl dt = 0.003667731947643427                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6608e+05 | 65536 |      2 | 1.790e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.75127660631622 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4437918928777833, dt = 0.003667731947643427
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 296.51 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (65.4%)
Info: cfl dt = 0.0036679126434676036                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1061e+05 | 65536 |      2 | 2.110e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.58081902137684 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4474596248254268, dt = 0.0036679126434676036
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.8%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 343.05 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.0%)
Info: cfl dt = 0.0036680946152530757                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1980e+05 | 65536 |      2 | 2.049e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.43470239036817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4511275374688943, dt = 0.0036680946152530757
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (1.7%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 353.65 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.8%)
Info: cfl dt = 0.0036682778630497148                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3275e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.19683411516841 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4547956320841473, dt = 0.0036682778630497148
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 258.73 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (57.5%)
Info: cfl dt = 0.003668462386854947                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4038e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.73869693900537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.458463909947197, dt = 0.003668462386854947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.5%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 241.76 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.8%)
Info: cfl dt = 0.0036686481866141383                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6618e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.94153802977843 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.462132372334052, dt = 0.0036686481866141383
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.5%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 239.41 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (57.8%)
Info: cfl dt = 0.003668835262220985                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5665e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.02724140342346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4658010205206662, dt = 0.003668835262220985
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 294.88 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (61.4%)
Info: cfl dt = 0.003669023613517908                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6800e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.31763467335132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4694698557828871, dt = 0.003669023613517908
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 277.76 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (64.1%)
Info: cfl dt = 0.003669213240296441                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5605e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.9152095002465 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.473138879396405, dt = 0.003669213240296441
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 2.68 us    (1.0%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 255.57 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (64.5%)
Info: cfl dt = 0.0036694041422976327                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6398e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.51793080067648 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4768080926367015, dt = 0.0036694041422976327
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 247.17 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.9%)
Info: cfl dt = 0.0036695963192124336                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6592e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91468602569014 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.480477496778999, dt = 0.0036695963192124336
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 248.07 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.2%)
Info: cfl dt = 0.0036697897706820977                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6653e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.04078024025407 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4841470930982115, dt = 0.0036697897706820977
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.6%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 232.04 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.25 us    (65.8%)
Info: cfl dt = 0.00366998449629858                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6120e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97213266303862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4878168828688936, dt = 0.00366998449629858
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 16.93 us   (5.9%)
   LB compute        : 251.17 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.8%)
Info: cfl dt = 0.003670180495604932                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1049e+05 | 65536 |      2 | 1.597e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.75495507674692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4914868673651922, dt = 0.003670180495604932
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 254.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.8%)
Info: cfl dt = 0.003670377768095703                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5261e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25101589927074 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4951570478607972, dt = 0.003670377768095703
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.14 us   (7.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 246.71 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (57.4%)
Info: cfl dt = 0.0036705763132173384                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7251e+05 | 65536 |      2 | 1.759e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.10575788404118 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.498827425628893, dt = 0.0036705763132173384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 295.87 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.5%)
Info: cfl dt = 0.0036707761303685815                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5118e+05 | 65536 |      2 | 1.866e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.80833151807364 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5024980019421104, dt = 0.0036707761303685815
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.3%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 251.17 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.5%)
Info: cfl dt = 0.003670977218900875                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4867e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.47088780028812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5061687780724788, dt = 0.003670977218900875
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 246.60 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.1%)
Info: cfl dt = 0.003671179578118759                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5850e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.45794379999685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5098397552913798, dt = 0.003671179578118759
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.4%)
   patch tree reduce : 2.53 us    (0.9%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 263.51 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (60.7%)
Info: cfl dt = 0.0036713832072802753                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5647e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.05372581257043 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5135109348694986, dt = 0.0036713832072802753
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 279.02 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (60.1%)
Info: cfl dt = 0.0036715881055973715                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5294e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.3459773967598 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.517182318076779, dt = 0.0036715881055973715
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.5%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 245.74 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (61.3%)
Info: cfl dt = 0.0036717942722362994                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5288e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.33901879513307 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5208539061823763, dt = 0.0036717942722362994
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.4%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 246.99 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (59.3%)
Info: cfl dt = 0.003672001706318019                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5460e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.69139516463439 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5245257004546127, dt = 0.003672001706318019
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 236.00 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (62.6%)
Info: cfl dt = 0.0036722104069186                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1065e+05 | 65536 |      2 | 1.596e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.83109824281047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5281977021609308, dt = 0.0036722104069186
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (1.7%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 368.32 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.5%)
Info: cfl dt = 0.0036724203730696277                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5463e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7072849498313 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5318699125678494, dt = 0.0036724203730696277
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (2.3%)
   patch tree reduce : 2.44 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 237.46 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (62.0%)
Info: cfl dt = 0.003672631603758601                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5962e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.72035030025822 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.535542332940919, dt = 0.003672631603758601
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 272.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (62.8%)
Info: cfl dt = 0.003672844097929337                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5608e+05 | 65536 |      2 | 1.840e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.83723495731464 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5392149645446775, dt = 0.003672844097929337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 289.86 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.68 us    (63.1%)
Info: cfl dt = 0.003673057854482374                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5193e+05 | 65536 |      2 | 1.862e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.00472319242776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5428878086426068, dt = 0.003673057854482374
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 12.41 us   (3.8%)
   patch tree reduce : 3.63 us    (1.1%)
   gen split merge   : 1462.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.3%)
   LB compute        : 300.14 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.87 us    (79.9%)
Info: cfl dt = 0.0036732728722753713                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4513e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.81325481249822 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5465608664970891, dt = 0.0036732728722753713
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.0%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 298.58 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.0%)
Info: cfl dt = 0.003673489150123513                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5459e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.72641986959675 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5502341393693646, dt = 0.003673489150123513
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 262.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.4%)
Info: cfl dt = 0.0036737066867999057                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5231e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.27274233669074 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5539076285194882, dt = 0.0036737066867999057
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 256.58 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.4%)
Info: cfl dt = 0.0036739254810359834                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3767e+05 | 65536 |      2 | 1.941e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.1425721949691 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5575813352062882, dt = 0.0036739254810359834
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 306.90 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (67.1%)
Info: cfl dt = 0.003674145531521905                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4239e+05 | 65536 |      2 | 1.914e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.09997619313516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5612552606873242, dt = 0.003674145531521905
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 264.79 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (60.9%)
Info: cfl dt = 0.0036743668369069557                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4584e+05 | 65536 |      2 | 1.895e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.80030030016495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5649294062188461, dt = 0.0036743668369069557
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 260.37 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (62.8%)
Info: cfl dt = 0.0036745893957999434                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4788e+05 | 65536 |      2 | 1.884e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.2154761589406 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5686037730557532, dt = 0.0036745893957999434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.6%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 258.24 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (57.9%)
Info: cfl dt = 0.003674813206769599                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5444e+05 | 65536 |      2 | 1.849e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.54502551332881 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.572278362451553, dt = 0.003674813206769599
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 273.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.3%)
Info: cfl dt = 0.0036750382683449745                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5041e+05 | 65536 |      2 | 1.870e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.73469820761117 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5759531756583227, dt = 0.0036750382683449745
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 311.59 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.4%)
Info: cfl dt = 0.00367526457901584                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4742e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.1358714679437 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5796282139266677, dt = 0.00367526457901584
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 253.64 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.5%)
Info: cfl dt = 0.0036754921372330793                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4226e+05 | 65536 |      2 | 1.915e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.0987722761017 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5833034785056836, dt = 0.0036754921372330793
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.5%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 254.84 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.003675720941409082                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5624e+05 | 65536 |      2 | 1.840e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.92419319084156 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5869789706429167, dt = 0.003675720941409082
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.93 us    (1.9%)
   patch tree reduce : 2.44 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 290.57 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (62.5%)
Info: cfl dt = 0.0036759509899181426                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5016e+05 | 65536 |      2 | 1.872e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.70107875295756 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5906546915843258, dt = 0.0036759509899181426
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.0%)
   patch tree reduce : 23.16 us   (7.5%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 267.05 us  (86.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (63.5%)
Info: cfl dt = 0.0036761822810968525                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5170e+05 | 65536 |      2 | 1.863e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.01709656092814 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.594330642574244, dt = 0.0036761822810968525
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 261.31 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (62.1%)
Info: cfl dt = 0.003676414813244491                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5338e+05 | 65536 |      2 | 1.855e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.36032563462317 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.598006824855341, dt = 0.003676414813244491
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 267.24 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (60.9%)
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    | 3.4388e+05 | 65536 |      2 | 1.906e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.44796845964788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6016832396685854, dt = 0.003676648584623416
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.0%)
   patch tree reduce : 2.35 us    (0.7%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 293.78 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (60.4%)
Info: cfl dt = 0.003676883593459459                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5065e+05 | 65536 |      2 | 1.869e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.8190238160813 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6053598882532087, dt = 0.003676883593459459
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 270.05 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.4%)
Info: cfl dt = 0.0036771198379423084                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4138e+05 | 65536 |      2 | 1.920e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.95019728460936 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6090367718466683, dt = 0.0036771198379423084
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 259.96 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.5%)
Info: cfl dt = 0.0036773573162258975                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4045e+05 | 65536 |      2 | 1.925e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.76674104998678 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6127138916846107, dt = 0.0036773573162258975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 304.07 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.1%)
Info: cfl dt = 0.003677596026428797                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4374e+05 | 65536 |      2 | 1.907e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.43719683435097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6163912490008365, dt = 0.003677596026428797
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 258.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (58.2%)
Info: cfl dt = 0.003677835966634595                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4262e+05 | 65536 |      2 | 1.913e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.21427064667104 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6200688450272653, dt = 0.003677835966634595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 291.96 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (64.4%)
Info: cfl dt = 0.0036780771348922828                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5146e+05 | 65536 |      2 | 1.865e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.00525020218366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6237466809938998, dt = 0.0036780771348922828
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.24 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 272.51 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.1%)
Info: cfl dt = 0.003678319529216638                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4973e+05 | 65536 |      2 | 1.874e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.66087982099565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6274247581287922, dt = 0.003678319529216638
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.4%)
   LB compute        : 258.09 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.4%)
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    | 3.5183e+05 | 65536 |      2 | 1.863e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.08848264596715 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6311030776580089, dt = 0.0036785631475886055
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 275.36 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.4%)
Info: cfl dt = 0.0036788079879556783                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5583e+05 | 65536 |      2 | 1.842e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.90306393314714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6347816408055975, dt = 0.0036788079879556783
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 266.45 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.9%)
Info: cfl dt = 0.0036790540482322734                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4742e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.20734532269981 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6384604487935532, dt = 0.0036790540482322734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 259.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.2%)
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    | 3.5209e+05 | 65536 |      2 | 1.861e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.1563653556746 (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     : 6.39 us    (2.1%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 279.14 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.0%)
Info: cfl dt = 0.003679549820008597                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5161e+05 | 65536 |      2 | 1.864e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.06295334368467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6458188041680857, dt = 0.003679549820008597
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 261.57 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.8%)
Info: cfl dt = 0.0036797995271751795                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5105e+05 | 65536 |      2 | 1.867e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.95506881017552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6494983539880943, dt = 0.0036797995271751795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.99 us    (1.9%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 286.64 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (60.2%)
Info: cfl dt = 0.003680050445585738                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5896e+05 | 65536 |      2 | 1.826e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.56012939231186 (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     : 6.40 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 269.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.3%)
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    | 3.4650e+05 | 65536 |      2 | 1.891e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.04519605435371 (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     : 6.98 us    (2.3%)
   patch tree reduce : 2.45 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 277.53 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.8%)
Info: cfl dt = 0.0036805559071266566                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2636e+05 | 65536 |      2 | 2.008e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.97935980324259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6605385065338503, dt = 0.0036805559071266566
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1032.00 ns (0.3%)
   LB compute        : 313.32 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (64.9%)
Info: cfl dt = 0.003680810445674232                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6734e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.48547632617031 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.664219062440977, dt = 0.003680810445674232
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 264.39 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.5%)
Info: cfl dt = 0.0036810661863009514                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7492e+05 | 65536 |      2 | 1.380e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 96.02605469835801 (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     : 6.71 us    (2.2%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 287.32 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.2%)
Info: cfl dt = 0.003681323126640354                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6598e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.22500181639482 (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     : 6.46 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 286.94 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.0%)
Info: cfl dt = 0.0036815812642966073                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4343e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.67031942497864 (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     : 6.49 us    (2.1%)
   patch tree reduce : 2.48 us    (0.8%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 279.63 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.4%)
Info: cfl dt = 0.0036818405968448657                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7095e+05 | 65536 |      2 | 1.392e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.24257307155624 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.678943843463889, dt = 0.0036818405968448657
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 261.71 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (57.9%)
Info: cfl dt = 0.0036821011218316304                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6588e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.22463505525363 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6826256840607339, dt = 0.0036821011218316304
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1022.00 ns (0.4%)
   LB compute        : 259.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.6%)
Info: cfl dt = 0.0036823628367751078                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6831e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.72172305362659 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6863077851825654, dt = 0.0036823628367751078
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.6%)
   patch tree reduce : 2.54 us    (1.0%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 232.81 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.6%)
Info: cfl dt = 0.003682625739165565                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4865e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.75309605337955 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6899901480193404, dt = 0.003682625739165565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 290.89 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1912.00 ns (64.3%)
Info: cfl dt = 0.003682889826465683                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8999e+05 | 65536 |      2 | 1.680e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.89217824772294 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.693672773758506, dt = 0.003682889826465683
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 245.31 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.2%)
Info: cfl dt = 0.00368315509611091                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2611e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.20515793289792 (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     : 6.63 us    (2.5%)
   patch tree reduce : 4.07 us    (1.5%)
   gen split merge   : 1432.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 242.97 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.2%)
Info: cfl dt = 0.0036834215455098123                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2243e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.46746232258714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7010388186810825, dt = 0.0036834215455098123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.9%)
   patch tree reduce : 2.25 us    (0.9%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.5%)
   LB compute        : 227.44 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (62.5%)
Info: cfl dt = 0.0036836891720444177                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6712e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.5156050745576 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7047222402265922, dt = 0.0036836891720444177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.6%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 233.10 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.0%)
Info: cfl dt = 0.003683957973070569                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5410e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.88694811608485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7084059293986367, dt = 0.003683957973070569
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.6%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 258.22 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (57.5%)
Info: cfl dt = 0.0036842279459182617                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4502e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.05718838659195 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7120898873717072, dt = 0.0036842279459182617
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 240.18 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.1%)
Info: cfl dt = 0.003684499087891993                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5946e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.98683544319714 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7157741153176254, dt = 0.003684499087891993
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 258.26 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.2%)
Info: cfl dt = 0.0036847713962710987                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6383e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.87701433178097 (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     : 7.21 us    (2.8%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 236.27 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.7%)
Info: cfl dt = 0.0036850448683100933                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5311e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7144427078305 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7231433858017884, dt = 0.0036850448683100933
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1342.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 257.67 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.5%)
Info: cfl dt = 0.003685319501239005                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6282e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.68732865364966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7268284306700985, dt = 0.003685319501239005
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.01 us    (2.2%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 255.64 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (67.4%)
Info: cfl dt = 0.003685595292263715                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7233e+05 | 65536 |      2 | 1.388e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.61782773573037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7305137501713375, dt = 0.003685595292263715
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.2%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 284.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
Info: cfl dt = 0.0036858722385662854                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6885e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.92045645022205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.734199345463601, dt = 0.0036858722385662854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 286.36 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.6%)
Info: cfl dt = 0.0036861503373052922                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4586e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.27394508527425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7378852177021673, dt = 0.0036861503373052922
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.5%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 241.96 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (60.7%)
Info: cfl dt = 0.0036864295856161564                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4651e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.41149563528707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7415713680394727, dt = 0.0036864295856161564
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.3%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 242.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (60.5%)
Info: cfl dt = 0.0036867099806114673                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2036e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.87356236922733 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7452577976250887, dt = 0.0036867099806114673
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 265.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.9%)
Info: cfl dt = 0.00368699151938131                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4873e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87509856892424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7489445076057002, dt = 0.00368699151938131
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 264.80 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.7%)
Info: cfl dt = 0.0036872741989935867                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4493e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.11353046293516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7526314991250815, dt = 0.0036872741989935867
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 273.06 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (59.6%)
Info: cfl dt = 0.003687558016494338                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5297e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.74858692736338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.756318773324075, dt = 0.003687558016494338
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 275.12 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.4%)
Info: cfl dt = 0.003687842968908063                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7111e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.42918270349243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7600063313405694, dt = 0.003687842968908063
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 2.54 us    (0.9%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 272.46 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.5%)
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.6874e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.95764702077813 (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     : 6.78 us    (2.3%)
   patch tree reduce : 2.60 us    (0.9%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 266.85 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.6%)
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.0375e+05 | 65536 |      2 | 1.623e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.79750650323685 (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     : 6.62 us    (2.2%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 280.15 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.4%)
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    | 3.7782e+05 | 65536 |      2 | 1.735e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.55048420770608 (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     : 6.89 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 274.35 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.1%)
Info: cfl dt = 0.0036889940674463754                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1522e+05 | 65536 |      2 | 1.578e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.13427555927129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7747594242347375, dt = 0.0036889940674463754
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 244.07 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1333.00 ns (58.9%)
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    | 3.5664e+05 | 65536 |      2 | 1.838e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.27118817524128 (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     : 6.74 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 245.15 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (56.3%)
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    | 3.8158e+05 | 65536 |      2 | 1.717e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.33101499063883 (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     : 6.56 us    (2.1%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 283.31 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (63.0%)
Info: cfl dt = 0.0036898691590467945                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7104e+05 | 65536 |      2 | 1.766e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.20056281594563 (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.45 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 276.26 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.8%)
Info: cfl dt = 0.0036901630811647618                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8707e+05 | 65536 |      2 | 1.693e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.45519348575111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7895171484575911, dt = 0.0036901630811647618
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 283.54 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.7%)
Info: cfl dt = 0.0036904581104983693                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6368e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.99188449619065 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.793207311538756, dt = 0.0036904581104983693
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.8%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.5%)
   LB compute        : 235.66 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (59.2%)
Info: cfl dt = 0.0036907542438737767                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6900e+05 | 65536 |      2 | 1.397e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.07620493768493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7968977696492543, dt = 0.0036907542438737767
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 284.10 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (62.5%)
Info: cfl dt = 0.003691051478098968                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9472e+05 | 65536 |      2 | 1.660e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.02563427679475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800588523893128, dt = 0.003691051478098968
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.8%)
   patch tree reduce : 2.54 us    (0.7%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 332.93 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.9%)
Info: cfl dt = 0.003691349809964053                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8720e+05 | 65536 |      2 | 1.693e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.50635095596576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.804279575371227, dt = 0.003691349809964053
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 261.93 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (62.2%)
Info: cfl dt = 0.003691649236241552                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5800e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.86923547459946 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.807970925181191, dt = 0.003691649236241552
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.2%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 291.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.5%)
Info: cfl dt = 0.0036919497536866937                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3045e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.29013249929365 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8116625744174326, dt = 0.0036919497536866937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 267.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (59.3%)
Info: cfl dt = 0.0036922513590376942                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6559e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.42360745979737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8153545241711193, dt = 0.0036922513590376942
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 270.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (63.3%)
Info: cfl dt = 0.003692554049016049                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6016e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.32998886568889 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.819046775530157, dt = 0.003692554049016049
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 266.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.5%)
Info: cfl dt = 0.0036928578203268138                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4946e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.16747342806941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.822739329579173, dt = 0.0036928578203268138
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 275.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.4%)
Info: cfl dt = 0.0036931626696588868                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1472e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.12790623011247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8264321873994998, dt = 0.0036931626696588868
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 278.40 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.3%)
Info: cfl dt = 0.003693468593685288                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8337e+05 | 65536 |      2 | 1.709e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.77528589293925 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301253500691586, dt = 0.003693468593685288
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.47 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 294.50 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (64.8%)
Info: cfl dt = 0.0036937755890634355                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9771e+05 | 65536 |      2 | 1.648e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.68997045509865 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833818818662844, dt = 0.0036937755890634355
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 284.12 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.2%)
Info: cfl dt = 0.00369408365243542                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5938e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.20969284808764 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8375125942519073, dt = 0.00369408365243542
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.0%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 318.38 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.8%)
Info: cfl dt = 0.003694392780428279                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5912e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.16505279648528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8412066779043428, dt = 0.003694392780428279
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.5%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1201.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 368.23 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.08 us    (63.9%)
Info: cfl dt = 0.0036947029696542703                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5223e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.77413609376823 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.844901070684771, dt = 0.0036947029696542703
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.1%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 311.69 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.2%)
Info: cfl dt = 0.003695014216711135                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5965e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.28911521785041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8485957736544254, dt = 0.003695014216711135
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 2.45 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 251.72 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.5%)
Info: cfl dt = 0.0036953265181823673                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6724e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.83678354450883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8522907878711365, dt = 0.0036953265181823673
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.4%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 264.31 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (62.2%)
Info: cfl dt = 0.003695639870637481                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6998e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.401791579822 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8559861143893188, dt = 0.003695639870637481
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.39 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 261.27 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.8%)
Info: cfl dt = 0.003695954270632268                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2845e+05 | 65536 |      2 | 1.995e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.6782579189735 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8596817542599564, dt = 0.003695954270632268
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 290.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (65.6%)
Info: cfl dt = 0.0036962697147090644                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5486e+05 | 65536 |      2 | 1.847e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.04451241518167 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8633777085305887, dt = 0.0036962697147090644
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 247.95 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.1%)
Info: cfl dt = 0.003696586199397                                         [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5060e+05 | 65536 |      2 | 1.869e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.18635112957278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8670739782452979, dt = 0.003696586199397
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 262.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (61.5%)
Info: cfl dt = 0.0036969037212122658                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4344e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.7377729702215 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8707705644446948, dt = 0.0036969037212122658
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.3%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 254.66 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (57.9%)
Info: cfl dt = 0.0036972222766583577                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4507e+05 | 65536 |      2 | 1.899e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.07510854055259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.874467468165907, dt = 0.0036972222766583577
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 250.40 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (64.9%)
Info: cfl dt = 0.0036975418622263376                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4612e+05 | 65536 |      2 | 1.893e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.29425839447624 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8781646904425653, dt = 0.0036975418622263376
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (0.9%)
   patch tree reduce : 2.33 us    (0.4%)
   gen split merge   : 1101.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.2%)
   LB compute        : 638.89 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.49 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.48 us    (69.9%)
Info: cfl dt = 0.003697862474395077                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4245e+05 | 65536 |      2 | 1.914e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.55637229597146 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8818622323047915, dt = 0.003697862474395077
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 258.43 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (61.9%)
Info: cfl dt = 0.0036981841096315094                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3948e+05 | 65536 |      2 | 1.930e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.95892108190338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8855600947791866, dt = 0.0036981841096315094
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.3%)
   patch tree reduce : 2.75 us    (1.0%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 266.52 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
Info: cfl dt = 0.003698506764390874                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4611e+05 | 65536 |      2 | 1.894e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.3106078455959 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8892582788888181, dt = 0.003698506764390874
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.4%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 255.89 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.2%)
Info: cfl dt = 0.003698830435116958                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4702e+05 | 65536 |      2 | 1.889e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.50188476106155 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.892956785653209, dt = 0.003698830435116958
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 264.67 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (57.6%)
Info: cfl dt = 0.0036991551182423434                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3365e+05 | 65536 |      2 | 1.964e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.79164373543993 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.896655616088326, dt = 0.0036991551182423434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.0%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 300.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.43 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (65.2%)
Info: cfl dt = 0.003699480810188647                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4894e+05 | 65536 |      2 | 1.878e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.90403478000681 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9003547712065683, dt = 0.003699480810188647
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 268.25 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.1%)
Info: cfl dt = 0.003699807507366751                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3563e+05 | 65536 |      2 | 1.953e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.20612238971647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.904054252016757, dt = 0.003699807507366751
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.0%)
   patch tree reduce : 2.44 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 320.86 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.8%)
Info: cfl dt = 0.003700135206177046                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3239e+05 | 65536 |      2 | 1.972e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.55343631332337 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9077540595241236, dt = 0.003700135206177046
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 261.35 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.8%)
Info: cfl dt = 0.0037004639030096633                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4361e+05 | 65536 |      2 | 1.907e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.83966893388269 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9114541947303005, dt = 0.0037004639030096633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 268.78 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (56.4%)
Info: cfl dt = 0.0037007935942447046                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2760e+05 | 65536 |      2 | 2.000e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.5927199439123 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9151546586333101, dt = 0.0037007935942447046
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.8%)
   patch tree reduce : 2.17 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 336.27 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.0%)
Info: cfl dt = 0.0037011242762524754                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4749e+05 | 65536 |      2 | 1.886e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.64119558742738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.918855452227555, dt = 0.0037011242762524754
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 262.19 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.3%)
Info: cfl dt = 0.003701455945393709                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4464e+05 | 65536 |      2 | 1.902e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.06759339743968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9225565765038075, dt = 0.003701455945393709
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.3%)
   patch tree reduce : 2.19 us    (0.4%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.2%)
   LB compute        : 480.55 us  (95.4%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (69.0%)
Info: cfl dt = 0.003701788598019797                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3002e+05 | 65536 |      2 | 1.986e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.10158450190335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9262580324492011, dt = 0.003701788598019797
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.8%)
   patch tree reduce : 2.42 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 330.47 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (70.3%)
Info: cfl dt = 0.0037021222304730083                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2982e+05 | 65536 |      2 | 1.987e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.06798306862115 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9299598210472209, dt = 0.0037021222304730083
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 276.06 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.0%)
Info: cfl dt = 0.0037024568390867157                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3598e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.3264707142152 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9336619432776938, dt = 0.0037024568390867157
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 298.15 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.8%)
Info: cfl dt = 0.0037027924201856123                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3142e+05 | 65536 |      2 | 1.977e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.40580523480313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9373644001167805, dt = 0.0037027924201856123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 256.11 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.4%)
Info: cfl dt = 0.003703128970085931                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3114e+05 | 65536 |      2 | 1.979e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.35503669431904 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.941067192536966, dt = 0.003703128970085931
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 259.94 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (62.0%)
Info: cfl dt = 0.003703466485095662                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3806e+05 | 65536 |      2 | 1.939e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.76800074704653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.944770321507052, dt = 0.003703466485095662
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 259.85 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (59.3%)
Info: cfl dt = 0.0037038049615147647                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2519e+05 | 65536 |      2 | 2.015e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.15582208604157 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9484737879921477, dt = 0.0037038049615147647
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 302.12 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.41 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (63.0%)
Info: cfl dt = 0.003704144395635381                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4082e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.68667727191477 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9521775929536624, dt = 0.003704144395635381
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 267.53 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.5%)
Info: cfl dt = 0.0037044847837420475                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5094e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7548715939609 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9558817373492978, dt = 0.0037044847837420475
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 270.45 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.1%)
Info: cfl dt = 0.0037048261221118988                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5339e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.26275130859597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9595862221330398, dt = 0.0037048261221118988
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 279.43 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.2%)
Info: cfl dt = 0.00370516840701488                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4665e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89835706357398 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9632910482551518, dt = 0.00370516840701488
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 288.83 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.5%)
Info: cfl dt = 0.0037055116347139484                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5224e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0448551031447 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9669962166621666, dt = 0.0037055116347139484
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.4%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 263.07 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (56.9%)
Info: cfl dt = 0.0037058558014652744                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7152e+05 | 65536 |      2 | 1.390e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.97837623981097 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9707017282968806, dt = 0.0037058558014652744
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 268.42 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.3%)
Info: cfl dt = 0.0037062009035184473                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7025e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 95.72803195463548 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.974407584098346, dt = 0.0037062009035184473
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 272.17 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (59.7%)
Info: cfl dt = 0.0037065469371166692                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6315e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.29239230043467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9781137850018644, dt = 0.0037065469371166692
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 285.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (64.6%)
Info: cfl dt = 0.0037068938984969567                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4333e+05 | 65536 |      2 | 1.909e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.90498657020225 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.981820331938981, dt = 0.0037068938984969567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 266.81 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.7%)
Info: cfl dt = 0.0037072417838903324                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5396e+05 | 65536 |      2 | 1.851e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.0758192142325 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.985527225837478, dt = 0.0037072417838903324
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.3%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 259.74 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 59.37 us   (97.8%)
Info: cfl dt = 0.003707590589522021                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4264e+05 | 65536 |      2 | 1.913e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.77646460531018 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9892344676213685, dt = 0.003707590589522021
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 269.54 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.6%)
Info: cfl dt = 0.003707940311611637                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2802e+05 | 65536 |      2 | 1.998e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.80489385608534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9929420582108905, dt = 0.003707940311611637
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 293.57 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.7%)
Info: cfl dt = 0.003708290946373381                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3292e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.80990531480063 (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     : 6.66 us    (2.5%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 243.76 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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    | 3.4522e+05 | 65536 |      2 | 1.898e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.52862266868463 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1044.26277061 (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  1983.22 us                          [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.92 us    (59.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     : 1142.00 ns (0.3%)
   patch tree reduce : 1442.00 ns (0.4%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 319.03 us  (96.6%)
   LB move op cnt    : 0
   LB apply          : 3.19 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     : 12.74 us   (4.1%)
   patch tree reduce : 2.66 us    (0.9%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 282.79 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1972.00 ns (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.6280e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 267.95 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1122e+05 | 65536 |      2 | 1.594e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.51647198025397 (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     : 6.63 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 316.17 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5061e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.41929444116849 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 307.05 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1336e+05 | 65536 |      2 | 1.585e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.94510411984248 (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     : 7.02 us    (2.1%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 310.96 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (65.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0157e+05 | 65536 |      2 | 1.632e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.57878395487137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.7%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 341.48 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5596e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.49444713434625 (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.19 us    (1.8%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 331.00 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5970e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.24441675364982 (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.54 us    (1.9%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.3%)
   LB compute        : 324.02 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6514e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.33629690353729 (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     : 6.65 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 330.80 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6364e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.03546195729173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 271.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.6840e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.98895479845355 (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.21 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 256.00 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (68.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6444e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.19588822437876 (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     : 6.10 us    (2.2%)
   patch tree reduce : 1812.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 258.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.5960e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.22477269417749 (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     : 6.96 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 274.38 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6831e+05 | 65536 |      2 | 1.399e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.97111642519128 (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     : 6.59 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 244.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4004e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.29885034691101 (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     : 6.25 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 291.27 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (46.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.4147e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.58694942126367 (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     : 6.81 us    (2.6%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 243.88 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.5476e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.25309633489914 (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     : 6.49 us    (2.5%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 240.17 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5824e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.95186876887841 (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     : 6.48 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 247.39 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4655e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.6049277869044 (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     : 6.36 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 245.78 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (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.4549e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.39207923247147 (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.38 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 263.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (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.0782e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.83405708842045 (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     : 6.21 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 263.99 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.3463e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2140534365269 (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     : 6.52 us    (2.1%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 282.78 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (63.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3491e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.26898635204945 (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     : 6.44 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.5%)
   LB compute        : 242.62 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3529e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.34675858852778 (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     : 6.61 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 246.82 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.5051e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.40086242084665 (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     : 6.32 us    (2.4%)
   patch tree reduce : 1902.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 238.51 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.4742e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.77968991419188 (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     : 6.58 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 271.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4375e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.04308114465226 (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     : 6.73 us    (2.2%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 283.58 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9877e+05 | 65536 |      2 | 1.643e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.01831320126621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 286.72 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3944e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.17869166223694 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09862915072640932, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 290.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4216e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.72434223747244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 268.93 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5707e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.71572592566417 (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.72 us    (2.5%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 245.19 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5229e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.75775220568231 (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     : 6.19 us    (2.3%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 243.21 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (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    | 4.5736e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.77418767743322 (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     : 6.09 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 243.53 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.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.5330e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.9598557111474 (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     : 6.39 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 260.79 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5153e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.60463440073029 (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     : 6.30 us    (2.4%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 237.15 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (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.7274e+05 | 65536 |      2 | 1.386e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.8616263733648 (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.50 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.5%)
   LB compute        : 233.01 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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    | 4.0849e+05 | 65536 |      2 | 1.604e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.96802128977028 (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     : 6.38 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 257.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (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.6659e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.62725084366824 (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     : 6.28 us    (1.9%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 310.97 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6700e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.7098718538861 (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     : 6.24 us    (2.2%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 262.67 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (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.6870e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.05015437299018 (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.41 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 265.79 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 19.66 us   (6.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (68.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.6970e+05 | 65536 |      2 | 1.395e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.25151336251693 (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.43 us    (1.8%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 332.90 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6444e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.19541731557591 (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     : 6.12 us    (1.8%)
   patch tree reduce : 1663.00 ns (0.5%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 309.68 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4447e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.18761652821486 (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     : 6.27 us    (2.1%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 279.49 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4164e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.62045372239848 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.4%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 245.43 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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    | 4.5612e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.52595668639418 (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     : 7.00 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1403.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 272.96 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.5124e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.5458846381877 (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     : 6.50 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.4%)
   LB compute        : 289.30 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9129e+05 | 65536 |      2 | 1.675e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.51766458281939 (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     : 6.36 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 291.35 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7199e+05 | 65536 |      2 | 1.389e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.70931064892756 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1041.00 ns (0.3%)
   LB compute        : 284.43 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5081e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4608241608857 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 250.73 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.3947e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.18464138715373 (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     : 6.20 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 303.24 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3908e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10710901444463 (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     : 6.61 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 243.89 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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.6073e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.45039607132522 (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.27 us    (2.0%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 290.30 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4895e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.0879498160671 (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.73 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 299.84 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2763e+05 | 65536 |      2 | 2.000e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.74277030528694 (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     : 6.07 us    (1.8%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 318.91 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6418e+05 | 65536 |      2 | 1.800e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.07786426158428 (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     : 6.59 us    (1.9%)
   patch tree reduce : 2.18 us    (0.6%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 315.67 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5725e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.75337656487633 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 282.95 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6213e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.73088719633209 (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     : 6.51 us    (2.4%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1271.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 248.21 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.6333e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.97283367664845 (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     : 6.64 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 246.14 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.6274e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85362375840451 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2082170959779751, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 243.86 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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.5870e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.04442123334357 (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     : 6.89 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 244.01 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.6240e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.78669104938018 (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     : 6.51 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 248.28 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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.5365e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02966646325736 (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     : 6.91 us    (1.4%)
   patch tree reduce : 2.29 us    (0.5%)
   gen split merge   : 1012.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.2%)
   LB compute        : 459.62 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.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.3941e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.10561700969478 (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     : 6.55 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 249.22 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (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.5149e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.59700673878275 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22648175351990274, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 19.99 us   (6.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 252.44 us  (86.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5002e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.3015135420333 (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     : 6.86 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 310.91 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5070e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.43752189493387 (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     : 6.69 us    (2.3%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 271.42 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.18 us   (94.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.4979e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.25586047948069 (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     : 6.28 us    (2.3%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 245.99 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (61.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5263e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.82469607960346 (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     : 6.95 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 241.64 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (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.5773e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.84899371710115 (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     : 6.54 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 311.78 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0277e+05 | 65536 |      2 | 1.627e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.82044373834266 (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     : 6.17 us    (1.8%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 322.59 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4744e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.7849246571841 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2520522740786014, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.7%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 342.46 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6138e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.58040488155095 (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     : 6.76 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 270.13 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0602e+05 | 65536 |      2 | 1.614e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.47337505892268 (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     : 22.16 us   (7.4%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 262.11 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5000e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.29853912785812 (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     : 6.12 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 258.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4951e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.1992738433266 (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     : 21.42 us   (6.3%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 305.47 us  (89.1%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8122e+05 | 65536 |      2 | 1.719e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.49639872547306 (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.69 us    (2.4%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 254.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (61.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4561e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.41630006860977 (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     : 6.56 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 243.08 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5073e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44467920380225 (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     : 6.36 us    (2.2%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.5%)
   LB compute        : 271.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (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.4999e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.29486245974753 (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     : 6.52 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 274.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.3635e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5578647751851 (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     : 7.23 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 309.63 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2986e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.2565656616012 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2885815891624567, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 277.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5493e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.28652839966757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2922345206708422, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 255.35 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.6508e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.32312714744448 (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     : 6.52 us    (2.5%)
   patch tree reduce : 1792.00 ns (0.7%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 237.03 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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.3780e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.84960336062174 (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     : 6.54 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 247.14 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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    | 3.6021e+05 | 65536 |      2 | 1.819e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.27951442427562 (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     : 6.68 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 276.33 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0788e+05 | 65536 |      2 | 2.129e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.780140985969524 (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     : 6.36 us    (1.9%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 319.56 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (65.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6600e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.50872093671568 (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     : 6.78 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 263.16 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.4568e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.43175637793586 (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     : 6.41 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 251.83 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (64.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6556e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.42053061415338 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 258.28 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4983e+05 | 65536 |      2 | 1.873e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.19810234590271 (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     : 6.95 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 259.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.47 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1343.00 ns (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    | 3.5665e+05 | 65536 |      2 | 1.838e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.56525415419041 (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     : 6.53 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 262.29 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3905e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1003263198437 (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     : 7.18 us    (2.6%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 256.56 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (62.0%)
Info: cfl dt = 0.003652931508385533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7567e+05 | 65536 |      2 | 1.744e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.38312191906549 (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     : 6.55 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 266.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (67.1%)
Info: cfl dt = 0.003652931508385534                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6214e+05 | 65536 |      2 | 1.810e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.66819325075461 (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     : 6.37 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1231.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 237.59 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (63.7%)
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.8155e+05 | 65536 |      2 | 1.718e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.56271686386835 (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     : 6.56 us    (2.5%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 246.32 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.2%)
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.3219e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.65852383945536 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3433755617882396, dt = 0.003652931508385534
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.7%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 339.82 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.4%)
Info: cfl dt = 0.0036529315083855345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3213e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.64590761980676 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3470284932966251, dt = 0.0036529315083855345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 265.20 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.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    | 3.4360e+05 | 65536 |      2 | 1.907e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.94662654782161 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35068142480501063, dt = 0.003652931508385536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 261.93 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.3%)
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.5014e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.32507705650042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35433435631339616, dt = 0.0036529315083855367
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.4%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 245.26 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.3%)
Info: cfl dt = 0.003652931508385538                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4309e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.91092079527783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3579872878217817, dt = 0.003652931508385538
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 1813.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 246.93 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.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.2693e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.66920970293023 (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     : 6.37 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 269.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (65.4%)
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.5290e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.8799349956475 (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     : 65.26 us   (20.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 244.41 us  (75.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (64.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.5323e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.9456623724551 (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     : 6.92 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 283.38 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (60.9%)
Info: cfl dt = 0.003652931508385548                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5448e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.19742576235468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990138553238, dt = 0.003652931508385548
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 270.68 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.1%)
Info: cfl dt = 0.003652931508385552                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5204e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.70708925590961 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519453637093, dt = 0.003652931508385552
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.5%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 243.88 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.5%)
Info: cfl dt = 0.003652931508385556                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4230e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.75310682825305 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487687209484, dt = 0.003652931508385556
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.6%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 240.14 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (61.2%)
Info: cfl dt = 0.003652931508385562                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5436e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.17336956524726 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3835578083804804, dt = 0.003652931508385562
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 248.53 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.3%)
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.4826e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.9491655400331 (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     : 6.57 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 244.27 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (62.7%)
Info: cfl dt = 0.003652931508385577                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5302e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.9028996748512 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3908636713972516, dt = 0.003652931508385577
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 253.12 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.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.5024e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.34585348800202 (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     : 6.76 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 263.71 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.8%)
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    | 4.2499e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.28003803542406 (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     : 6.51 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 292.77 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (60.1%)
Info: cfl dt = 0.003652931508385613                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5698e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.69778592488845 (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     : 6.64 us    (2.7%)
   patch tree reduce : 1923.00 ns (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.5%)
   LB compute        : 227.53 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.4%)
Info: cfl dt = 0.00365293150838563                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5617e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.53671573311827 (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     : 6.45 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 233.62 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.5%)
Info: cfl dt = 0.0036529315083856503                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4876e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.04848629721216 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4091283289391796, dt = 0.0036529315083856503
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.0%)
   patch tree reduce : 1933.00 ns (0.3%)
   gen split merge   : 1071.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.2%)
   LB compute        : 613.69 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.6%)
Info: cfl dt = 0.003652931508385675                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7559e+05 | 65536 |      2 | 1.745e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.36727250360924 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41278126044756525, dt = 0.003652931508385675
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 314.36 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (63.3%)
Info: cfl dt = 0.003652931508385704                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1967e+05 | 65536 |      2 | 2.050e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.14453348311743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41643419195595094, dt = 0.003652931508385704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 285.36 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (60.3%)
Info: cfl dt = 0.0036529315083857388                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4360e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.01337276021088 (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     : 6.45 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 256.26 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (65.0%)
Info: cfl dt = 0.00365293150838578                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2196e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.67036984591401 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4237400549727224, dt = 0.00365293150838578
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.4%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 255.28 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (64.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    | 3.9140e+05 | 65536 |      2 | 1.674e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.53908958421522 (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     : 6.01 us    (0.7%)
   patch tree reduce : 2.12 us    (0.2%)
   gen split merge   : 1232.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.1%)
   LB compute        : 898.37 us  (97.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (0.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (66.2%)
Info: cfl dt = 0.003652931508385885                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7327e+05 | 65536 |      2 | 1.756e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.90167023632044 (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     : 6.72 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 254.97 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.4%)
Info: cfl dt = 0.0036529315083859513                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1917e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.11053751112418 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43469884949787985, dt = 0.0036529315083859513
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (56.8%)
Info: cfl dt = 0.0036529315083860293                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2306e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.89209213598127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4383517810062658, dt = 0.0036529315083860293
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.3%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 258.87 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (67.1%)
Info: cfl dt = 0.0036529315083861213                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4397e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.08846580604218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44200471251465184, dt = 0.0036529315083861213
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 246.27 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (62.3%)
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    | 4.3990e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2708948766348 (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     : 6.84 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 289.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.1%)
Info: cfl dt = 0.0036529315083863533                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3594e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.4094594383592 (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     : 6.55 us    (2.1%)
   patch tree reduce : 17.04 us   (5.5%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 271.19 us  (87.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.7%)
Info: cfl dt = 0.003652931508386497                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2844e+05 | 65536 |      2 | 1.995e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.90460939385953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635070398106, dt = 0.003652931508386497
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.8%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 319.99 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (70.4%)
Info: cfl dt = 0.0036529315083866642                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3691e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67156431543219 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45661643854819706, dt = 0.0036529315083866642
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.7%)
   patch tree reduce : 1922.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.5%)
   LB compute        : 239.37 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.1%)
Info: cfl dt = 0.003652931508386858                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0088e+05 | 65536 |      2 | 1.635e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.4416619880971 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46026937005658375, dt = 0.003652931508386858
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (1.9%)
   patch tree reduce : 1882.00 ns (0.5%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 331.70 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (64.6%)
Info: cfl dt = 0.003652931508387082                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9239e+05 | 65536 |      2 | 1.670e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.73771092386826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4639223015649706, dt = 0.003652931508387082
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 293.59 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.89 us    (73.0%)
Info: cfl dt = 0.003652931508387339                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4889e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.07480709694877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4675752330733577, dt = 0.003652931508387339
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 294.87 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (61.5%)
Info: cfl dt = 0.0036529315083876357                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4768e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.83277236911594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47122816458174505, dt = 0.0036529315083876357
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 284.83 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.7%)
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.4851e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.99853058907279 (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     : 6.41 us    (1.8%)
   patch tree reduce : 2.41 us    (0.7%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 342.77 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.9%)
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    | 3.6759e+05 | 65536 |      2 | 1.783e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.76082999101492 (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     : 6.65 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 288.77 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.1%)
Info: cfl dt = 0.0036529315083888153                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2759e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.80107566270368 (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.46 us    (2.1%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 280.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.7%)
Info: cfl dt = 0.0036529315083893266                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3748e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.7855835583102 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4858398906152978, dt = 0.0036529315083893266
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.0%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 311.81 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.8%)
Info: cfl dt = 0.00365293150838991                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1937e+05 | 65536 |      2 | 2.052e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.08514573175621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4894928221236871, dt = 0.00365293150838991
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 314.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (64.3%)
Info: cfl dt = 0.003652931508390573                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4759e+05 | 65536 |      2 | 1.885e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.74829879630627 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.493145753632077, dt = 0.003652931508390573
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 301.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.9%)
Info: cfl dt = 0.0036529315083913285                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1699e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.67290545598868 (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     : 6.24 us    (1.7%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 335.35 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.9%)
Info: cfl dt = 0.0036529315083921854                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3175e+05 | 65536 |      2 | 1.975e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.56856491406579 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.500451616648859, dt = 0.0036529315083921854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.3%)
   LB compute        : 263.62 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (67.1%)
Info: cfl dt = 0.0036529315083931578                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4006e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.2362341031345 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045481572511, dt = 0.0036529315083931578
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 279.79 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.7%)
Info: cfl dt = 0.003652931508394258                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3361e+05 | 65536 |      2 | 1.964e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.94207205273877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5077574796656443, dt = 0.003652931508394258
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.0%)
   patch tree reduce : 1892.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 297.07 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.5%)
Info: cfl dt = 0.0036529315083955014                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3427e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.07415140982314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104111740386, dt = 0.0036529315083955014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 269.46 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.4%)
Info: cfl dt = 0.003652931508396904                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3074e+05 | 65536 |      2 | 1.981e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.36746794865691 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633426824341, dt = 0.003652931508396904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 270.44 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.0%)
Info: cfl dt = 0.0036529315083984855                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3289e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.79771893728262 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.518716274190831, dt = 0.0036529315083984855
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 278.41 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1353.00 ns (59.2%)
Info: cfl dt = 0.0036529315084002658                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3984e+05 | 65536 |      2 | 1.928e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.19232295567576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692056992295, dt = 0.0036529315084002658
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 262.94 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.3%)
Info: cfl dt = 0.003652931508402267                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3312e+05 | 65536 |      2 | 1.967e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.84480538926478 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5260221372076298, dt = 0.003652931508402267
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 258.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.5%)
Info: cfl dt = 0.003652931508404512                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3282e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.78343964842409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5296750687160321, dt = 0.003652931508404512
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1271.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 262.67 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (61.9%)
Info: cfl dt = 0.003652931508407029                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3286e+05 | 65536 |      2 | 1.969e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.79318929855121 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280002244366, dt = 0.003652931508407029
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.1%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 301.80 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (67.2%)
Info: cfl dt = 0.003652931508409848                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3547e+05 | 65536 |      2 | 1.954e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.31679168949802 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809317328437, dt = 0.003652931508409848
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 255.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     : 1502.00 ns (61.7%)
Info: cfl dt = 0.003652931508412999                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3784e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.79068111640322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406338632412535, dt = 0.003652931508412999
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 317.76 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (65.1%)
Info: cfl dt = 0.003652931508416519                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3641e+05 | 65536 |      2 | 1.948e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.50478984223894 (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     : 6.72 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 287.70 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.5%)
Info: cfl dt = 0.0036529315084204445                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3299e+05 | 65536 |      2 | 1.968e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.8183616604646 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.547939726258083, dt = 0.0036529315084204445
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 255.99 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (63.0%)
Info: cfl dt = 0.003652931508424818                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3352e+05 | 65536 |      2 | 1.965e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.92558550088643 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515926577665035, dt = 0.003652931508424818
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 288.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.2%)
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    | 3.3593e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.40868543955267 (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     : 6.53 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 260.25 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.6%)
Info: cfl dt = 0.0036529315084350947                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4116e+05 | 65536 |      2 | 1.921e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.45823345734821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.558898520783358, dt = 0.0036529315084350947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 952.00 ns  (0.3%)
   LB compute        : 279.26 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (60.2%)
Info: cfl dt = 0.0036529315084411003                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3442e+05 | 65536 |      2 | 1.960e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.10609989477562 (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     : 6.65 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 288.04 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (63.2%)
Info: cfl dt = 0.0036529315084477603                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3664e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.55015796716812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662043838002342, dt = 0.0036529315084477603
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (1.9%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 310.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.0%)
Info: cfl dt = 0.0036529315084551403                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3853e+05 | 65536 |      2 | 1.936e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.93075486277954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.569857315308682, dt = 0.0036529315084551403
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 303.91 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (64.0%)
Info: cfl dt = 0.003652931508463306                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0935e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.13983715908876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735102468171371, dt = 0.003652931508463306
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 262.08 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
Info: cfl dt = 0.003652931508472334                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9802e+05 | 65536 |      2 | 1.647e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.86700189759594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771631783256005, dt = 0.003652931508472334
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 282.01 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.5%)
Info: cfl dt = 0.003652931508482302                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8711e+05 | 65536 |      2 | 1.693e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.67843191685084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808161098340728, dt = 0.003652931508482302
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.44 us    (2.8%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 247.02 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.4%)
Info: cfl dt = 0.003652931508493299                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3420e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12703145457763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844690413425552, dt = 0.003652931508493299
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 307.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.3%)
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    | 4.3435e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15719670943716 (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     : 6.71 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 245.39 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.3%)
Info: cfl dt = 0.0036529315085187656                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2889e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.06164883331337 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917749043595539, dt = 0.0036529315085187656
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (1.8%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 325.46 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.9%)
Info: cfl dt = 0.003652931508533444                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3113e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.51116712282155 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954278358680727, dt = 0.003652931508533444
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 285.90 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.7%)
Info: cfl dt = 0.0036529315085495747                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2692e+05 | 65536 |      2 | 2.005e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.60067068660169 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990807673766061, dt = 0.0036529315085495747
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 292.63 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (62.0%)
Info: cfl dt = 0.003652931508567284                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1211e+05 | 65536 |      2 | 2.100e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.62918478710763 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027336988851557, dt = 0.003652931508567284
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.6%)
   patch tree reduce : 2.17 us    (0.5%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 375.37 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.47 us    (65.2%)
Info: cfl dt = 0.0036529315085867087                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4296e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.88420513066586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.606386630393723, dt = 0.0036529315085867087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (1.7%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 335.11 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (68.7%)
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.2289e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.85694512194279 (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     : 6.54 us    (2.5%)
   patch tree reduce : 2.26 us    (0.9%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 241.44 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1373.00 ns (58.6%)
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.5084e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46717298397081 (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     : 6.18 us    (1.9%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 300.01 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.0%)
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.2409e+05 | 65536 |      2 | 2.022e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.03286633164541 (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.73 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.4%)
   LB compute        : 316.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.3%)
Info: cfl dt = 0.0036529315086846694                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5899e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.10261011429336 (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     : 6.53 us    (2.6%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 232.39 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.2%)
Info: cfl dt = 0.0036529315087151038                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5518e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.33771400161154 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6246512879368904, dt = 0.0036529315087151038
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 264.53 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (63.6%)
Info: cfl dt = 0.003652931508748312                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4612e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.51859410405366 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6283042194456055, dt = 0.003652931508748312
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 258.76 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (64.8%)
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    | 3.2382e+05 | 65536 |      2 | 2.024e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.978308566698 (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     : 6.25 us    (1.9%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 311.94 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.4%)
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.3403e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.09358302163488 (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     : 6.21 us    (2.3%)
   patch tree reduce : 2.63 us    (1.0%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 252.67 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.7%)
Info: cfl dt = 0.003652931508866897                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3420e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12765604863041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392630139719624, dt = 0.003652931508866897
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 272.08 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.1%)
Info: cfl dt = 0.003652931508913595                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3301e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.88943165319365 (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     : 6.63 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 243.73 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.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    | 4.3282e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.85129924629744 (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.19 us    (2.2%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 263.66 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.5%)
Info: cfl dt = 0.0036529315090194654                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3264e+05 | 65536 |      2 | 1.970e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.74823803498803 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6502218084987073, dt = 0.0036529315090194654
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1462.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 303.63 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.2%)
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    | 3.2657e+05 | 65536 |      2 | 2.007e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.53098181391499 (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     : 6.45 us    (1.9%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1452.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 308.88 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.1%)
Info: cfl dt = 0.0036529315091441378                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7214e+05 | 65536 |      2 | 1.761e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.67368593633863 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.657527671516806, dt = 0.0036529315091441378
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 261.93 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (57.8%)
Info: cfl dt = 0.0036529315092144196                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4462e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.21846067412298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611806030259502, dt = 0.0036529315092144196
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 281.96 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.7%)
Info: cfl dt = 0.003652931509290522                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4225e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.74180645227754 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648335345351646, dt = 0.003652931509290522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.6%)
   patch tree reduce : 2.40 us    (1.0%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 230.09 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1363.00 ns (58.1%)
Info: cfl dt = 0.00365293150937287                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4007e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.30556226922877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.668486466044455, dt = 0.00365293150937287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 277.52 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (62.3%)
Info: cfl dt = 0.0036529315094619126                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4936e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.16915078216961 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721393975538279, dt = 0.0036529315094619126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 292.89 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (61.7%)
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    | 4.4985e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.26766692346371 (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     : 6.05 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 224.91 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (60.0%)
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.1547e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.36905172448579 (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     : 7.02 us    (2.8%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 231.88 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (63.7%)
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.1752e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.77931316254015 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 268.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.3%)
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.3292e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86972661144866 (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     : 6.51 us    (2.3%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 262.16 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (59.6%)
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.4400e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.09324303968987 (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     : 6.47 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 264.49 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.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.4904e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.10489931376868 (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     : 6.82 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 296.92 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (65.0%)
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.5229e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.7571910355747 (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     : 6.70 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 310.43 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.5%)
Info: cfl dt = 0.0036529315104792495                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6874e+05 | 65536 |      2 | 1.777e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.99255810873716 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.701362849632687, dt = 0.0036529315104792495
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 282.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (60.4%)
Info: cfl dt = 0.003652931510653931                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5926e+05 | 65536 |      2 | 1.824e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.0901621601063 (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     : 6.93 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 291.54 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.6%)
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.5095e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.4887446362415 (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     : 6.46 us    (2.4%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 244.46 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.4%)
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.5282e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.86414619232217 (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     : 6.55 us    (2.6%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1122.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 226.93 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (61.7%)
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.5975e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.25450474699407 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159745756757049, dt = 0.0036529315112593624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.5%)
   patch tree reduce : 1913.00 ns (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 230.08 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.1%)
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.5459e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.21914655596564 (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     : 6.72 us    (2.6%)
   patch tree reduce : 1743.00 ns (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 233.93 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (62.8%)
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.6264e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.83308839043326 (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     : 6.36 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 280.64 us  (86.1%)
   LB move op cnt    : 0
   LB apply          : 26.55 us   (8.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (66.3%)
Info: cfl dt = 0.0036529315120061865                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6718e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.74475384564397 (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     : 6.49 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 306.94 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.9%)
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    | 3.9948e+05 | 65536 |      2 | 1.641e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.16122226261706 (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     : 6.77 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 314.15 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.8%)
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.6276e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.85850128780675 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.4%)
   LB compute        : 265.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.2%)
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.6780e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.86885470645906 (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     : 6.38 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 282.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.3%)
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.7025e+05 | 65536 |      2 | 1.394e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.36045128660868 (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     : 6.55 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 252.12 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.3%)
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.4773e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.84167446368126 (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     : 6.47 us    (2.5%)
   patch tree reduce : 2.27 us    (0.9%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 239.34 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (57.2%)
Info: cfl dt = 0.0036529315140422713                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4769e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.83325422159406 (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     : 6.48 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 269.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.6%)
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    | 3.6895e+05 | 65536 |      2 | 1.776e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.03388898290176 (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     : 6.66 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 261.63 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.8%)
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.5512e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.32573336186884 (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     : 6.91 us    (2.5%)
   patch tree reduce : 1743.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 253.74 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.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.6542e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.39237054874337 (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     : 6.77 us    (2.6%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 237.96 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.6%)
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.6514e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3359559192023 (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     : 6.65 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 298.13 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.4%)
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.6569e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.4458799115148 (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     : 6.56 us    (2.3%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 258.17 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.2%)
Info: cfl dt = 0.003652931517050287                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4849e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.9955652139527 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.770768548378145, dt = 0.003652931517050287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 248.22 us  (85.4%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (62.1%)
Info: cfl dt = 0.0036529315176715873                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5841e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.98607763887898 (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.86 us    (2.7%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 235.75 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.1%)
Info: cfl dt = 0.0036529315183324376                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5795e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.89319100614213 (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     : 6.19 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 276.44 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.4%)
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.5520e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34064394928136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7817273429311993, dt = 0.0036529315190350306
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 294.51 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.9%)
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.4525e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.34473759376954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853802744502343, dt = 0.0036529315197816603
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.6%)
   patch tree reduce : 1792.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1613.00 ns (0.6%)
   LB compute        : 237.27 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (61.2%)
Info: cfl dt = 0.003652931520574731                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5648e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.5983329806004 (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     : 6.65 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 252.09 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (64.4%)
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.2769e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.82071301434696 (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     : 6.59 us    (2.1%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 295.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.2%)
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.6318e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.94167956540629 (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     : 6.41 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 304.04 us  (89.0%)
   LB move op cnt    : 0
   LB apply          : 19.38 us   (5.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (66.3%)
Info: cfl dt = 0.0036529315232582977                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4042e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.37453603266486 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999920005343178, dt = 0.0036529315232582977
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 298.51 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.3%)
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.5501e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.30214212491572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036449320575761, dt = 0.0036529315242634355
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 1743.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 275.47 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (65.5%)
Info: cfl dt = 0.0036529315253287743                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4782e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.86111607652437 (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     : 6.34 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 274.95 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.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.3909e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10911769302537 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1812.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 261.74 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (63.2%)
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.6764e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.83722589023223 (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     : 6.39 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.8%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 231.03 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.2%)
Info: cfl dt = 0.003652931528918019                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6190e+05 | 65536 |      2 | 1.419e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.68547960493099 (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     : 6.44 us    (2.1%)
   patch tree reduce : 1723.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 287.40 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (64.1%)
Info: cfl dt = 0.0036529315302568904                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5993e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.29103082212336 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219095896901963, dt = 0.0036529315302568904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 275.92 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.09 us    (74.8%)
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.5529e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.35845745594041 (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     : 6.75 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 271.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (60.9%)
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.5260e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.81933056514072 (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     : 6.93 us    (2.4%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 266.92 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.0%)
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    | 4.6757e+05 | 65536 |      2 | 1.402e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.82353435980957 (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.25 us    (2.3%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 246.09 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (61.1%)
Info: cfl dt = 0.0036529315364248038                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5966e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.23521344045177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365213158200495, dt = 0.0036529315364248038
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 260.22 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.1%)
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    | 4.6588e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.48319623643035 (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     : 6.63 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 230.27 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (59.3%)
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    | 4.5776e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.85566218464199 (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     : 6.48 us    (2.1%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 286.57 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.6%)
Info: cfl dt = 0.003652931542021604                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1738e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.75116907855254 (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     : 6.70 us    (2.6%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 231.12 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.6%)
Info: cfl dt = 0.0036529315440967094                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6589e+05 | 65536 |      2 | 1.407e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.485851968831 (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     : 6.97 us    (2.7%)
   patch tree reduce : 1902.00 ns (0.8%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.6%)
   LB compute        : 231.36 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.5%)
Info: cfl dt = 0.00365293154628496                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9483e+05 | 65536 |      2 | 1.660e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.22705005097762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547859735208376, dt = 0.00365293154628496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 251.47 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.0%)
Info: cfl dt = 0.0036529315485916945                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0270e+05 | 65536 |      2 | 1.627e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.80583118154122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584389050671226, dt = 0.0036529315485916945
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 262.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (58.4%)
Info: cfl dt = 0.0036529315510224637                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6039e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.38193695516516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8620918366157143, dt = 0.0036529315510224637
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 231.50 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (64.6%)
Info: cfl dt = 0.0036529315535830374                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6774e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.85823613340493 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657447681667367, dt = 0.0036529315535830374
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 260.12 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (61.5%)
Info: cfl dt = 0.0036529315562794087                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6455e+05 | 65536 |      2 | 1.411e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.2169114196268 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8693976997203198, dt = 0.0036529315562794087
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 260.21 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.3%)
Info: cfl dt = 0.003652931559117803                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4881e+05 | 65536 |      2 | 1.879e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.99258345421069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730506312765992, dt = 0.003652931559117803
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 261.04 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1261.00 ns (56.2%)
Info: cfl dt = 0.0036529315621046847                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6834e+05 | 65536 |      2 | 1.779e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.91224617719806 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.876703562835717, dt = 0.0036529315621046847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 230.50 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (58.8%)
Info: cfl dt = 0.003652931565246766                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6694e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.69743299988876 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8803564943978217, dt = 0.003652931565246766
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (1.7%)
   patch tree reduce : 1792.00 ns (0.5%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 327.02 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.1%)
Info: cfl dt = 0.0036529315685510095                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6486e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.27870222576566 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840094259630685, dt = 0.0036529315685510095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 261.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.6%)
Info: cfl dt = 0.003652931572024645                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6424e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.1556399503452 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8876623575316195, dt = 0.003652931572024645
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 266.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.1%)
Info: cfl dt = 0.0036529315756751654                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6240e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.78630313443223 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913152891036441, dt = 0.0036529315756751654
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 257.61 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (60.5%)
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    | 4.6533e+05 | 65536 |      2 | 1.408e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.3734427389502 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949682206793192, dt = 0.0036529315795103432
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.2%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 292.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (63.5%)
Info: cfl dt = 0.003652931583538238                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5557e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.41578385089254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8986211522588295, dt = 0.003652931583538238
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 264.80 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (64.1%)
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.5552e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.40465369484421 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022740838423677, dt = 0.003652931587767201
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.7%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 238.11 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.9%)
Info: cfl dt = 0.0036529315922058858                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4339e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.97204763435874 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.905927015430135, dt = 0.0036529315922058858
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.5%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 246.77 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.5%)
Info: cfl dt = 0.003652931596863258                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5699e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.69991664613224 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9095799470223409, dt = 0.003652931596863258
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.7%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 236.58 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.7%)
Info: cfl dt = 0.0036529316017486                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5087e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.47279724961982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132328786192042, dt = 0.0036529316017486
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 279.34 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.8%)
Info: cfl dt = 0.003652931606871526                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5163e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.62499425465148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9168858102209528, dt = 0.003652931606871526
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.11 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 278.46 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.9%)
Info: cfl dt = 0.0036529316122419857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9678e+05 | 65536 |      2 | 1.652e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.61917424539152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205387418278244, dt = 0.0036529316122419857
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.4%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 269.70 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (65.8%)
Info: cfl dt = 0.003652931617870276                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5969e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.24113055109102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9241916734400664, dt = 0.003652931617870276
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 244.43 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.4%)
Info: cfl dt = 0.003652931623767052                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5586e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.47283201116716 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9278446050579366, dt = 0.003652931623767052
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 244.55 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.6%)
Info: cfl dt = 0.003652931629943332                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6221e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.7482521979679 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9314975366817037, dt = 0.003652931629943332
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.7%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.5%)
   LB compute        : 228.38 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.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.5339e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.97872462398742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351504683116469, dt = 0.0036529316364105145
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.1%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 284.86 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.1%)
Info: cfl dt = 0.0036529316431803812                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6407e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.12121519241316 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388033999480575, dt = 0.0036529316431803812
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.6%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1151.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 232.93 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.7%)
Info: cfl dt = 0.003652931650265111                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5707e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.71720565005083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424563315912379, dt = 0.003652931650265111
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.7%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 239.75 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.7%)
Info: cfl dt = 0.0036529316576772906                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5984e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.2726661358094 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.946109263241503, dt = 0.0036529316576772906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 273.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (61.7%)
Info: cfl dt = 0.0036529316654299233                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6072e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.44892645825637 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9497621948991803, dt = 0.0036529316654299233
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 237.82 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (58.5%)
Info: cfl dt = 0.003652931673536443                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6063e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.43001526097751 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534151265646102, dt = 0.003652931673536443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.7%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 942.00 ns  (0.4%)
   LB compute        : 232.38 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (61.0%)
Info: cfl dt = 0.0036529316820107195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6606e+05 | 65536 |      2 | 1.406e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.52065775926587 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9570680582381467, dt = 0.0036529316820107195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.6%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 232.42 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (58.9%)
Info: cfl dt = 0.003652931690867078                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5901e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.10504384378588 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607209899201574, dt = 0.003652931690867078
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.2%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 294.99 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.6%)
Info: cfl dt = 0.003652931700120302                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5969e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.24227903715436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9643739216110245, dt = 0.003652931700120302
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 267.32 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (55.7%)
Info: cfl dt = 0.003652931709785652                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5628e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.55782996500993 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680268533111448, dt = 0.003652931709785652
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.0%)
   patch tree reduce : 1993.00 ns (0.3%)
   gen split merge   : 1192.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.2%)
   LB compute        : 591.65 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (65.5%)
Info: cfl dt = 0.0036529317198788717                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5869e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.0419209081921 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9716797850209304, dt = 0.0036529317198788717
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 264.85 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (63.4%)
Info: cfl dt = 0.003652931730416204                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6206e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.71865270262697 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9753327167408093, dt = 0.003652931730416204
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.41 us    (2.4%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 279.18 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.8%)
Info: cfl dt = 0.003652931741414401                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5435e+05 | 65536 |      2 | 1.442e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.1707746844441 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789856484712256, dt = 0.003652931741414401
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1021.00 ns (0.4%)
   LB compute        : 265.02 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (61.4%)
Info: cfl dt = 0.003652931752890739                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4752e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.79941369867652 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9826385802126401, dt = 0.003652931752890739
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 230.19 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1443.00 ns (57.2%)
Info: cfl dt = 0.0036529317648630283                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5509e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.31964737801552 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9862915119655308, dt = 0.0036529317648630283
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.6%)
   patch tree reduce : 1883.00 ns (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.6%)
   LB compute        : 226.08 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (59.6%)
Info: cfl dt = 0.0036529317773496264                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6308e+05 | 65536 |      2 | 1.415e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.92324855102831 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899444437303938, dt = 0.0036529317773496264
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.12 us    (2.6%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 248.66 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (54.6%)
Info: cfl dt = 0.003652931790369454                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6229e+05 | 65536 |      2 | 1.418e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.76297909015668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9935973755077434, dt = 0.003652931790369454
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (1.3%)
   patch tree reduce : 2.05 us    (0.4%)
   gen split merge   : 1132.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.2%)
   LB compute        : 484.06 us  (95.5%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (65.3%)
Info: cfl dt = 0.003652931803942004                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5552e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.4045826318822 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9972503072981128, dt = 0.003652931803942004
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 237.29 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.1%)
Info: cfl dt = 0.0036529318180873608                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0011e+05 | 65536 |      2 | 1.638e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.28748137777555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.000903239102055, dt = 0.0036529318180873608
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 1742.00 ns (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 259.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (55.9%)
Info: cfl dt = 0.003652931832826206                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2671e+05 | 65536 |      2 | 2.006e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.55726653416896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0045561709201423, dt = 0.003652931832826206
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.79 us    (1.8%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 591.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 892.00 ns  (0.3%)
   LB compute        : 300.34 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.6%)
Info: cfl dt = 0.003652931848179839                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2384e+05 | 65536 |      2 | 2.024e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.98261078472113 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0082091027529685, dt = 0.003652931848179839
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.8%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 319.42 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (67.0%)
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.4315e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9233813516521 (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     : 6.71 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 269.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.1%)
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.6018e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.34069613418387 (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     : 6.30 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1342.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 267.42 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.68 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.9%)
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.6679e+05 | 65536 |      2 | 1.404e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.66737778896852 (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     : 6.43 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 266.82 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.8%)
Info: cfl dt = 0.0036529319161905994                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6417e+05 | 65536 |      2 | 1.412e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.14016585210265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228208302442905, dt = 0.0036529319161905994
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.7%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 230.54 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (61.4%)
Info: cfl dt = 0.00365293193496022                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6706e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72016709740484 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0264737621604811, dt = 0.00365293193496022
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 254.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (62.8%)
Info: cfl dt = 0.0036529319544861636                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6893e+05 | 65536 |      2 | 1.398e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.0968568114555 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0301266940954414, dt = 0.0036529319544861636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.6%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1622.00 ns (0.6%)
   LB compute        : 232.16 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (64.6%)
Info: cfl dt = 0.003652931974794448                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6501e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.30940841167465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0337796260499277, dt = 0.003652931974794448
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 287.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (63.5%)
Info: cfl dt = 0.0036529319959118273                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6043e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.38970692039467 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0374325580247221, dt = 0.0036529319959118273
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 270.06 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (63.5%)
Info: cfl dt = 0.0036529320178658045                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6348e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.00341235469655 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0410854900206339, dt = 0.0036529320178658045
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 311.51 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.7%)
Info: cfl dt = 0.0036529320406846525                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3761e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.81199043612816 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0447384220384996, dt = 0.0036529320406846525
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 255.25 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.6%)
Info: cfl dt = 0.0036529320643974243                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1651e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.57700889681156 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0483913540791843, dt = 0.0036529320643974243
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.8%)
   patch tree reduce : 16.88 us   (4.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 328.63 us  (89.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.2%)
Info: cfl dt = 0.003652932089033979                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3371e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.02961401237208 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0520442861435817, dt = 0.003652932089033979
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 306.43 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.9%)
Info: cfl dt = 0.003652932114624987                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1101e+05 | 65536 |      2 | 2.107e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.40823983525226 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0556972182326156, dt = 0.003652932114624987
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 282.10 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.0%)
Info: cfl dt = 0.0036529321412019553                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4543e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.38069963623424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0593501503472407, dt = 0.0036529321412019553
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.0%)
   patch tree reduce : 1723.00 ns (0.5%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 306.29 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.9%)
Info: cfl dt = 0.0036529321687972446                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4510e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.31438726961115 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0630030824884427, dt = 0.0036529321687972446
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 303.66 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.5%)
Info: cfl dt = 0.003652932197444081                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6708e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.72502089780129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.06665601465724, dt = 0.003652932197444081
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 259.09 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.9%)
Info: cfl dt = 0.0036529322271765794                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5952e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.20883892410122 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.070308946854684, dt = 0.0036529322271765794
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 282.66 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (56.9%)
Info: cfl dt = 0.003652932258029761                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8583e+05 | 65536 |      2 | 1.699e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.42098317498096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0739618790818606, dt = 0.003652932258029761
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 287.31 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.8%)
Info: cfl dt = 0.0036529322900395677                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6269e+05 | 65536 |      2 | 1.416e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.84411759752248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0776148113398902, dt = 0.0036529322900395677
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 289.94 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.0%)
Info: cfl dt = 0.0036529323232428875                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3570e+05 | 65536 |      2 | 1.952e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.36134901639889 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0812677436299298, dt = 0.0036529323232428875
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.1%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 293.77 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.7%)
Info: cfl dt = 0.003652932357677564                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4309e+05 | 65536 |      2 | 1.910e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.84590365867041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0849206759531727, dt = 0.003652932357677564
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 278.89 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.2%)
Info: cfl dt = 0.0036529323933824237                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4103e+05 | 65536 |      2 | 1.922e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.43146685623252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0885736083108501, dt = 0.0036529323933824237
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 260.38 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (68.1%)
Info: cfl dt = 0.00365293243039729                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4003e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.23084763696652 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0922265407042326, dt = 0.00365293243039729
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (0.9%)
   patch tree reduce : 1923.00 ns (0.3%)
   gen split merge   : 1162.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.2%)
   LB compute        : 694.12 us  (96.9%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.22 us    (70.0%)
Info: cfl dt = 0.003652932468763007                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4451e+05 | 65536 |      2 | 1.902e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.1297451844602 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.09587947313463, dt = 0.003652932468763007
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.1%)
   patch tree reduce : 2.31 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 311.36 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.3%)
Info: cfl dt = 0.0036529325085214548                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3944e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.11182665607502 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.099532405603393, dt = 0.0036529325085214548
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 2.30 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 317.06 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.3%)
Info: cfl dt = 0.003652932549715571                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4499e+05 | 65536 |      2 | 1.900e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.22566764223998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031853381119145, dt = 0.003652932549715571
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.12 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 312.04 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
Info: cfl dt = 0.003652932592389374                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3632e+05 | 65536 |      2 | 1.949e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.48730998002216 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1068382706616302, dt = 0.003652932592389374
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 331.63 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (69.8%)
Info: cfl dt = 0.0036529326365879783                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3588e+05 | 65536 |      2 | 1.951e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.3974098330793 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1104912032540195, dt = 0.0036529326365879783
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 274.37 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.8%)
Info: cfl dt = 0.0036529326823576203                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2056e+05 | 65536 |      2 | 2.044e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.32433407713758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1141441358906075, dt = 0.0036529326823576203
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 288.60 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (64.6%)
Info: cfl dt = 0.003652932729745673                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4721e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.73742555094913 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117797068572965, dt = 0.003652932729745673
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 289.21 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.3%)
Info: cfl dt = 0.003652932778800675                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6481e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.26998922181143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1214500013027107, dt = 0.003652932778800675
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 268.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (57.9%)
Info: cfl dt = 0.0036529328295723464                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5810e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.92227736916456 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1251029340815113, dt = 0.0036529328295723464
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 265.46 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.7%)
Info: cfl dt = 0.0036529328821116092                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8928e+05 | 65536 |      2 | 1.684e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.11321891173247 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1287558669110835, dt = 0.0036529328821116092
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.5%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1463.00 ns (0.5%)
   LB compute        : 261.38 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (55.6%)
Info: cfl dt = 0.0036529329364706166                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4865e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.02596536803524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.132408799793195, dt = 0.0036529329364706166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.47 us    (3.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 242.10 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (60.7%)
Info: cfl dt = 0.003652932992702766                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7399e+05 | 65536 |      2 | 1.752e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.04639337213737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1360617327296656, dt = 0.003652932992702766
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 270.05 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.2%)
Info: cfl dt = 0.0036529330508627295                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5659e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.61942543942315 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1397146657223685, dt = 0.0036529330508627295
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 240.70 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (56.5%)
Info: cfl dt = 0.003652933111006472                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4462e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.21891356163212 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1433675987732312, dt = 0.003652933111006472
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 260.21 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (62.7%)
Info: cfl dt = 0.0036529331731912735                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5396e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.09244827173906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1470205318842377, dt = 0.0036529331731912735
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 242.98 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1393.00 ns (59.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.4035e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.36098378162878 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.150673465057429, dt = 0.003652933237475756
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 271.29 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.3%)
Info: cfl dt = 0.0036529333039199024                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1440e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.15385609193383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1543263982949048, dt = 0.0036529333039199024
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.1%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 294.19 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.4%)
Info: cfl dt = 0.0036529333725850857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4056e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.40324272757586 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579793315988247, dt = 0.0036529333725850857
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 254.41 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.8%)
Info: cfl dt = 0.0036529334435340876                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5426e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.15334472089077 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1616322649714097, dt = 0.0036529334435340876
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 298.89 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (62.9%)
Info: cfl dt = 0.003652933516831126                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9671e+05 | 65536 |      2 | 1.652e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.60535439675938 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1652851984149437, dt = 0.003652933516831126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 295.42 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (61.5%)
Info: cfl dt = 0.0036529335925418785                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8658e+05 | 65536 |      2 | 1.695e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.57116652364228 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1689381319317749, dt = 0.0036529335925418785
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 269.24 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (60.5%)
Info: cfl dt = 0.003652933670733503                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4752e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.80046977197759 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1725910655243168, dt = 0.003652933670733503
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.4%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 239.56 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.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.4936e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.16979457688248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1762439991950504, dt = 0.0036529337514746743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 242.46 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (56.6%)
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.4900e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.09655468637861 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.179896932946525, dt = 0.0036529338348355936
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 253.79 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (65.4%)
Info: cfl dt = 0.0036529339208880257                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4417e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1271374623271 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1835498667813606, dt = 0.0036529339208880257
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.7%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 242.43 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (62.9%)
Info: cfl dt = 0.003652934009705321                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4523e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.34112652128114 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1872028007022486, dt = 0.003652934009705321
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.1%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 292.04 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.5%)
Info: cfl dt = 0.0036529341013624406                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3119e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52395365803619 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.190855734711954, dt = 0.0036529341013624406
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 283.05 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.3%)
Info: cfl dt = 0.0036529341959359828                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5151e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.6007417802914 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1945086688133164, dt = 0.0036529341959359828
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 265.67 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.8%)
Info: cfl dt = 0.00365293429350421                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7177e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.599146344174 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1981616030092523, dt = 0.00365293429350421
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.7%)
   patch tree reduce : 2.57 us    (1.0%)
   gen split merge   : 1352.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 232.92 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (63.2%)
Info: cfl dt = 0.0036529343941470753                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1732e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.7399009811104 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018145373027564, dt = 0.0036529343941470753
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.0%)
   patch tree reduce : 1813.00 ns (0.3%)
   gen split merge   : 1452.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.2%)
   LB compute        : 656.07 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 4.73 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (70.3%)
Info: cfl dt = 0.0036529344979462502                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2474e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.22888219420075 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2054674716969036, dt = 0.0036529344979462502
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 266.59 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (63.0%)
Info: cfl dt = 0.003652934604985149                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2912e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.10864559456425 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.20912040619485, dt = 0.003652934604985149
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 269.87 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (60.2%)
Info: cfl dt = 0.00365293471534896                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3963e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.21738063202561 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2127733407998351, dt = 0.00365293471534896
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 287.41 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.7%)
Info: cfl dt = 0.0036529348291246704                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1154e+05 | 65536 |      2 | 1.592e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.57946736168414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.216426275515184, dt = 0.0036529348291246704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.6%)
   patch tree reduce : 1813.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 234.14 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.9%)
Info: cfl dt = 0.0036529349464010977                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2961e+05 | 65536 |      2 | 1.988e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.140453635246 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2200792103443088, dt = 0.0036529349464010977
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.4%)
   patch tree reduce : 1813.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 251.17 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.0%)
Info: cfl dt = 0.0036529350672689104                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3737e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.69670192072016 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.22373214529071, dt = 0.0036529350672689104
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1572.00 ns (0.5%)
   LB compute        : 311.31 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.2%)
Info: cfl dt = 0.003652935191820665                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6286e+05 | 65536 |      2 | 1.806e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.81138775867085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2273850803579789, dt = 0.003652935191820665
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.0%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 321.89 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.7%)
Info: cfl dt = 0.003652935320150833                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3260e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.80663352957582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2310380155497995, dt = 0.003652935320150833
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.0%)
   patch tree reduce : 2.12 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 314.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.7%)
Info: cfl dt = 0.0036529354523558238                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2184e+05 | 65536 |      2 | 2.036e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.58139988542622 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2346909508699504, dt = 0.0036529354523558238
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.4%)
   patch tree reduce : 1993.00 ns (0.4%)
   gen split merge   : 1241.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.2%)
   LB compute        : 439.30 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (69.0%)
Info: cfl dt = 0.003652935588534021                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4802e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89988100217542 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2383438863223062, dt = 0.003652935588534021
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 278.27 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.8%)
Info: cfl dt = 0.0036529357287858073                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4226e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.74525620561326 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2419968219108402, dt = 0.0036529357287858073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 283.05 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.1%)
Info: cfl dt = 0.0036529358732135964                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4920e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.13647054201847 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.245649757639626, dt = 0.0036529358732135964
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.8%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1152.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 228.04 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.4%)
Info: cfl dt = 0.003652936021921864                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6085e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.47590671651534 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2493026935128395, dt = 0.003652936021921864
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.6%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.4%)
   LB compute        : 232.86 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.70 us    (72.4%)
Info: cfl dt = 0.0036529361750171725                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5986e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.27554188214323 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529556295347615, dt = 0.0036529361750171725
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 295.74 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.3%)
Info: cfl dt = 0.0036529363326082104                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6498e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.30410870319957 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2566085657097787, dt = 0.0036529363326082104
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 282.76 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (62.2%)
Info: cfl dt = 0.0036529364948058142                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5296e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.89146556084931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2602615020423868, dt = 0.0036529364948058142
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 287.63 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.9%)
Info: cfl dt = 0.003652936661723004                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6385e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.07638389811244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2639144385371928, dt = 0.003652936661723004
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.6%)
   patch tree reduce : 2.16 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 231.60 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (58.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.5708e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.71846900790797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2675673751989158, dt = 0.0036529368334750137
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.3%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 254.30 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.5%)
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.2671e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.62465804455906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2712203120323908, dt = 0.003652937010179323
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.5%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 250.62 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (66.4%)
Info: cfl dt = 0.0036529371919556877                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6012e+05 | 65536 |      2 | 1.424e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.32882978769733 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.27487324904257, dt = 0.0036529371919556877
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 230.80 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.7%)
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    | 3.4634e+05 | 65536 |      2 | 1.892e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.49799367012668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2785261862345256, dt = 0.003652937378926174
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 991.00 ns  (0.3%)
   LB compute        : 266.20 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.9%)
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    | 3.9780e+05 | 65536 |      2 | 1.647e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.82259740994712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2821791236134519, dt = 0.003652937571215187
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.0%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 314.09 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.4%)
Info: cfl dt = 0.0036529377689495063                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1309e+05 | 65536 |      2 | 2.093e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.82544969122557 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.285832061184667, dt = 0.0036529377689495063
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1202.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 328.54 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (66.9%)
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.4474e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.24286579814171 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2894849989536166, dt = 0.0036529379722583166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 288.18 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (60.2%)
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.4441e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.17544445791282 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2931379369258749, dt = 0.003652938181273243
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.4%)
   patch tree reduce : 1862.00 ns (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 267.17 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.7%)
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.2790e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.86297535930053 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2967908751071482, dt = 0.003652938396128383
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 283.52 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.5%)
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    | 3.5979e+05 | 65536 |      2 | 1.822e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.19587004892159 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3004438135032765, dt = 0.0036529386169603362
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 261.98 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.6%)
Info: cfl dt = 0.0036529388439082446                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8072e+05 | 65536 |      2 | 1.721e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.39538402731743 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.304096752120237, dt = 0.0036529388439082446
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1291.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 265.24 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.5%)
Info: cfl dt = 0.003652939077113822                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3901e+05 | 65536 |      2 | 1.933e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.02569585068989 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307749690964145, dt = 0.003652939077113822
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 268.18 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (64.5%)
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.5170e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.63857034762084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.311402630041259, dt = 0.003652939316721389
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.4%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 262.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (61.7%)
Info: cfl dt = 0.003652939562877907                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6328e+05 | 65536 |      2 | 1.804e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.8959166078601 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3150555693579802, dt = 0.003652939562877907
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.4%)
   patch tree reduce : 1912.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 270.43 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (61.6%)
Info: cfl dt = 0.003652939815733013                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3112e+05 | 65536 |      2 | 1.979e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.44383801576578 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3187085089208581, dt = 0.003652939815733013
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.1%)
   patch tree reduce : 2.46 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 311.58 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (61.0%)
Info: cfl dt = 0.0036529400754390564                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2257e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.79351937912055 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3223614487365911, dt = 0.0036529400754390564
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1041.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 275.76 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (58.3%)
Info: cfl dt = 0.003652940342151131                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7440e+05 | 65536 |      2 | 1.750e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.12815048516062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3260143888120302, dt = 0.003652940342151131
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.4%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 243.19 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.3%)
Info: cfl dt = 0.0036529406160271103                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4665e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.6247101391144 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3296673291541812, dt = 0.0036529406160271103
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 231.55 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.5%)
Info: cfl dt = 0.0036529408972276857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1142e+05 | 65536 |      2 | 1.593e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.5562508206846 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3333202697702082, dt = 0.0036529408972276857
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 260.27 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (56.3%)
Info: cfl dt = 0.0036529411859164                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3342e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.97045027524963 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.336973210667436, dt = 0.0036529411859164
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.5%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 260.38 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (60.9%)
Info: cfl dt = 0.003652941482259686                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5087e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.47212848891301 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3406261518533522, dt = 0.003652941482259686
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.9%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 302.61 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.6%)
Info: cfl dt = 0.0036529417864268987                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2701e+05 | 65536 |      2 | 2.004e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.61879594234381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.344279093335612, dt = 0.0036529417864268987
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.1%)
   patch tree reduce : 1682.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 298.98 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (61.1%)
Info: cfl dt = 0.0036529420985903518                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5294e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.88697098900535 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3479320351220387, dt = 0.0036529420985903518
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 245.41 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.3%)
Info: cfl dt = 0.0036529424189253585                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5751e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.80541293823039 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3515849772206292, dt = 0.0036529424189253585
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 307.93 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (62.0%)
Info: cfl dt = 0.003652942747610269                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3808e+05 | 65536 |      2 | 1.938e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.8398671003715 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3552379196395545, dt = 0.003652942747610269
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 279.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.9%)
Info: cfl dt = 0.003652943084826499                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3148e+05 | 65536 |      2 | 1.977e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.51642671075352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588908623871647, dt = 0.003652943084826499
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 291.03 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.5%)
Info: cfl dt = 0.0036529434307585765                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2691e+05 | 65536 |      2 | 2.005e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.5988569164489 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3625438054719912, dt = 0.0036529434307585765
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 286.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (62.5%)
Info: cfl dt = 0.003652943785594175                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5944e+05 | 65536 |      2 | 1.823e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.12657770203305 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3661967489027498, dt = 0.003652943785594175
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 243.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (62.6%)
Info: cfl dt = 0.0036529441495241496                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4811e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.9183119218778 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.369849692688344, dt = 0.0036529441495241496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 279.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.7%)
Info: cfl dt = 0.0036529445227425797                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4443e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.17941113486502 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.373502636837868, dt = 0.0036529445227425797
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 238.28 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (59.3%)
Info: cfl dt = 0.003652944905446804                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4086e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.3975936852299 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3771555813606107, dt = 0.003652944905446804
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.5%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 259.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
Info: cfl dt = 0.0036529452978374577                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4567e+05 | 65536 |      2 | 1.896e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.36301691799189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3808085262660574, dt = 0.0036529452978374577
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (2.6%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 263.88 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.2%)
Info: cfl dt = 0.0036529457001185147                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3792e+05 | 65536 |      2 | 1.939e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.80744219331231 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.384461471563895, dt = 0.0036529457001185147
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 258.67 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.1%)
Info: cfl dt = 0.0036529461124973246                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2796e+05 | 65536 |      2 | 1.998e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.80933433333561 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3881144172640134, dt = 0.0036529461124973246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 289.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.9%)
Info: cfl dt = 0.0036529465351846525                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4620e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.53619999277322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3917673633765106, dt = 0.0036529465351846525
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 264.89 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (66.1%)
Info: cfl dt = 0.003652946968394715                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5952e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.20915493824313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3954203099116953, dt = 0.003652946968394715
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 306.70 us  (89.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.8%)
Info: cfl dt = 0.0036529474123452245                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3945e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1818137491153 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.39907325688009, dt = 0.0036529474123452245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 276.86 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.2%)
Info: cfl dt = 0.003652947867257426                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8714e+05 | 65536 |      2 | 1.693e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.68528752129885 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027262042924353, dt = 0.003652947867257426
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 311.48 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.2%)
Info: cfl dt = 0.003652948333356138                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3134e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.55325170313554 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063791521596927, dt = 0.003652948333356138
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 260.73 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1513.00 ns (61.7%)
Info: cfl dt = 0.0036529488108697906                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5535e+05 | 65536 |      2 | 1.844e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.30587334499323 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4100321004930487, dt = 0.0036529488108697906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 261.40 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (62.5%)
Info: cfl dt = 0.003652949300030469                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2776e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.83533503579528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4136850493039186, dt = 0.003652949300030469
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.4%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1271.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 256.82 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (60.9%)
Info: cfl dt = 0.003652949801073952                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3232e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.75062338682957 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4173379986039492, dt = 0.003652949801073952
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 242.77 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.9%)
Info: cfl dt = 0.0036529503142397543                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5229e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.7580594959749 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4209909484050232, dt = 0.0036529503142397543
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 306.31 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.2%)
Info: cfl dt = 0.003652950839771162                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5354e+05 | 65536 |      2 | 1.854e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.94168700050572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.424643898719263, dt = 0.003652950839771162
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 267.61 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.9%)
Info: cfl dt = 0.0036529513779152826                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3157e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.5995713331765 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.428296849559034, dt = 0.0036529513779152826
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 247.95 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
Info: cfl dt = 0.0036529519289230793                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3185e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.65545528282968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4319498009369493, dt = 0.0036529519289230793
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1161.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 234.64 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.7%)
Info: cfl dt = 0.0036529524930494156                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3528e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.34489668480073 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356027528658724, dt = 0.0036529524930494156
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.6%)
   patch tree reduce : 2.49 us    (0.9%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 250.61 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.3%)
Info: cfl dt = 0.0036529530705530933                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4757e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.81064822230782 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4392557053589217, dt = 0.0036529530705530933
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 266.52 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.7%)
Info: cfl dt = 0.003652953661696903                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5100e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.49815303847409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4429086584294748, dt = 0.003652953661696903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.08 us    (2.3%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 244.82 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.9%)
Info: cfl dt = 0.003652954266747654                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4937e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.1721676270547 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4465616120911717, dt = 0.003652954266747654
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 247.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (61.2%)
Info: cfl dt = 0.003652954885976227                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4624e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.54330849951992 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4502145663579193, dt = 0.003652954885976227
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1301.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 288.23 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (66.2%)
Info: cfl dt = 0.00365295551965761                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4893e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.08315929869472 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4538675212438956, dt = 0.00365295551965761
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 278.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.7%)
Info: cfl dt = 0.0036529561680709454                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5493e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.28809164850257 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4575204767635532, dt = 0.0036529561680709454
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.5%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 241.53 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.0%)
Info: cfl dt = 0.00365295683149957                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4812e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.92202421546405 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4611734329316242, dt = 0.00365295683149957
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 244.07 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (61.1%)
Info: cfl dt = 0.003652957510231057                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4896e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.09025301589367 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4648263897631237, dt = 0.003652957510231057
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 244.10 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.5%)
Info: cfl dt = 0.003652958204557264                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4046e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.38362388640722 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4684793472733548, dt = 0.003652958204557264
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.6%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 240.16 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (54.7%)
Info: cfl dt = 0.0036529589147743713                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5361e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02275134818386 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.472132305477912, dt = 0.0036529589147743713
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 235.42 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.5%)
Info: cfl dt = 0.0036529596411829265                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5150e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.59901590226501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4757852643926865, dt = 0.0036529596411829265
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 246.69 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.1%)
Info: cfl dt = 0.0036529603840878906                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5121e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.54131106736506 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4794382240338695, dt = 0.0036529603840878906
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 252.01 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.4%)
Info: cfl dt = 0.003652961143798679                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4857e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.01168733214409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4830911844179573, dt = 0.003652961143798679
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.5%)
   patch tree reduce : 1763.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 236.69 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (63.8%)
Info: cfl dt = 0.003652961920629208                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5175e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.64936378042695 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.486744145561756, dt = 0.003652961920629208
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 239.01 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.2%)
Info: cfl dt = 0.003652962714897937                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6769e+05 | 65536 |      2 | 1.401e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.84873005493984 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4903971074823852, dt = 0.003652962714897937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.43 us    (2.9%)
   patch tree reduce : 2.18 us    (0.9%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1011.00 ns (0.4%)
   LB compute        : 232.93 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.3%)
Info: cfl dt = 0.003652963526927915                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6095e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.49501168450071 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4940500701972832, dt = 0.003652963526927915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.39 us   (7.0%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 281.17 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.0%)
Info: cfl dt = 0.0036529643570468195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8134e+05 | 65536 |      2 | 1.719e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.52186850884537 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4977030337242112, dt = 0.0036529643570468195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.5%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 237.55 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (59.7%)
Info: cfl dt = 0.0036529652055870116                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5012e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.32263600057668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.501355998081258, dt = 0.0036529652055870116
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.4%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 243.39 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 0.0036529660728855692                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5242e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.78486551670423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505008963286845, dt = 0.0036529660728855692
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.6%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 241.16 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.9%)
Info: cfl dt = 0.0036529669592843396                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9813e+05 | 65536 |      2 | 1.646e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.89086038737177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5086619293597308, dt = 0.0036529669592843396
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 248.90 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.8%)
Info: cfl dt = 0.0036529678651299846                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1392e+05 | 65536 |      2 | 1.583e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.0590320018758 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5123148963190152, dt = 0.0036529678651299846
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.4%)
   LB compute        : 293.65 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.7%)
Info: cfl dt = 0.0036529687907740204                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5506e+05 | 65536 |      2 | 1.846e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.24836671330516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5159678641841452, dt = 0.0036529687907740204
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.5%)
   patch tree reduce : 1892.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 246.65 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (61.2%)
Info: cfl dt = 0.003652969736572867                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2798e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.879812405108 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5196208329749192, dt = 0.003652969736572867
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.6%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 246.84 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.9%)
Info: cfl dt = 0.0036529707028878948                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3044e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.37375503725349 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.523273802711492, dt = 0.0036529707028878948
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 274.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (55.8%)
Info: cfl dt = 0.003652971690085467                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5263e+05 | 65536 |      2 | 1.858e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.76059799973432 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269267734143799, dt = 0.003652971690085467
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 262.33 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.5%)
Info: cfl dt = 0.0036529726985369882                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3033e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.35157490219105 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5305797451044654, dt = 0.0036529726985369882
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 257.22 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.5%)
Info: cfl dt = 0.00365297372861895                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0386e+05 | 65536 |      2 | 1.623e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.0405467218325 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5342327178030024, dt = 0.00365297372861895
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 246.66 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.4%)
Info: cfl dt = 0.0036529747807129737                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8341e+05 | 65536 |      2 | 1.709e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.93692505145513 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5378856915316215, dt = 0.0036529747807129737
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 300.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.7%)
Info: cfl dt = 0.0036529758552058633                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2930e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.14483757648915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5415386663123345, dt = 0.0036529758552058633
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.5%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 254.46 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.3%)
Info: cfl dt = 0.003652976952489647                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3436e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15954529880085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5451916421675405, dt = 0.003652976952489647
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.4%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 241.68 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.60 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.9%)
Info: cfl dt = 0.0036529780729616227                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5617e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.5361666714548 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.54884461912003, dt = 0.0036529780729616227
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1241.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 248.58 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.3%)
Info: cfl dt = 0.0036529792170244095                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5155e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.61020055796729 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5524975971929917, dt = 0.0036529792170244095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1743.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 269.91 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.3%)
Info: cfl dt = 0.0036529803850859923                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5273e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.84676837204883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.556150576410016, dt = 0.0036529803850859923
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 248.00 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1473.00 ns (60.3%)
Info: cfl dt = 0.0036529815775597687                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4704e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.70397553888189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.559803556795102, dt = 0.0036529815775597687
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 291.71 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (63.3%)
Info: cfl dt = 0.003652982794864593                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6472e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.25304412340485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5634565383726617, dt = 0.003652982794864593
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 255.37 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1423.00 ns (59.4%)
Info: cfl dt = 0.0036529840374248277                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6699e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.70914616713645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5671095211675263, dt = 0.0036529840374248277
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 1912.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 292.91 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.6%)
Info: cfl dt = 0.003652985305670394                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3462e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.21327219753623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5707625052049512, dt = 0.003652985305670394
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.2%)
   patch tree reduce : 2.29 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 284.19 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.4%)
Info: cfl dt = 0.003652986600036807                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8004e+05 | 65536 |      2 | 1.724e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.26013555842441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5744154905106216, dt = 0.003652986600036807
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.4%)
   patch tree reduce : 1922.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1271.00 ns (0.5%)
   LB compute        : 258.39 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (63.4%)
Info: cfl dt = 0.003652987920965237                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5501e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.3037152366484 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5780684771106583, dt = 0.003652987920965237
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 281.37 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.9%)
Info: cfl dt = 0.003652989268902551                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4485e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.26656621378575 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5817214650316236, dt = 0.003652989268902551
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1362.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 284.16 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.7%)
Info: cfl dt = 0.0036529906443013567                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5466e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.23422167252576 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5853744543005261, dt = 0.0036529906443013567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 293.00 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (57.6%)
Info: cfl dt = 0.003652992047620056                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5617e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.53758144923866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5890274449448274, dt = 0.003652992047620056
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 289.74 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (64.9%)
Info: cfl dt = 0.003652993479322896                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5504e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.31017507592986 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5926804369924474, dt = 0.003652993479322896
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.0%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.3%)
   LB compute        : 323.77 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.1%)
Info: cfl dt = 0.0036529949398800055                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4335e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.96545399094725 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5963334304717702, dt = 0.0036529949398800055
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.5%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 250.05 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.9%)
Info: cfl dt = 0.0036529964297674555                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4544e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.38373438598424 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5999864254116503, dt = 0.0036529964297674555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.5%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 247.48 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.8%)
Info: cfl dt = 0.0036529979494673015                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5175e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.65043374610133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036394218414176, dt = 0.0036529979494673015
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.5%)
   LB compute        : 273.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.2%)
Info: cfl dt = 0.003652999499467632                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5157e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.61402694929072 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6072924197908849, dt = 0.003652999499467632
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1572.00 ns (0.6%)
   LB compute        : 247.26 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.1%)
Info: cfl dt = 0.003653001080262617                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4652e+05 | 65536 |      2 | 1.891e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.53490963309667 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109454192903525, dt = 0.003653001080262617
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 264.60 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.7%)
Info: cfl dt = 0.003653002692352561                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9519e+05 | 65536 |      2 | 1.658e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.30109821716472 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145984203706152, dt = 0.003653002692352561
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 283.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.3%)
Info: cfl dt = 0.0036530043362439425                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9790e+05 | 65536 |      2 | 1.647e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.84530328430093 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182514230629677, dt = 0.0036530043362439425
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 274.65 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.1%)
Info: cfl dt = 0.0036530060124494714                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5121e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.54149690083761 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6219044273992116, dt = 0.0036530060124494714
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1713.00 ns (0.6%)
   LB compute        : 271.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (61.4%)
Info: cfl dt = 0.003653007721488137                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7830e+05 | 65536 |      2 | 1.732e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.91279531020827 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255574334116611, dt = 0.003653007721488137
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 312.81 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.6%)
Info: cfl dt = 0.003653009463885251                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6408e+05 | 65536 |      2 | 1.800e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.05756007462941 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292104411331494, dt = 0.003653009463885251
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 273.60 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (57.9%)
Info: cfl dt = 0.003653011240172504                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2642e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.56692148367732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328634505970347, dt = 0.003653011240172504
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 1882.00 ns (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 264.72 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (62.7%)
Info: cfl dt = 0.003653013050888007                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3795e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.88111337132615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365164618372072, dt = 0.003653013050888007
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 274.30 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.9%)
Info: cfl dt = 0.003653014896576348                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5500e+05 | 65536 |      2 | 1.846e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.23728195474312 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401694748880953, dt = 0.003653014896576348
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (0.3%)
   patch tree reduce : 2.02 us    (0.1%)
   gen split merge   : 1082.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.1%)
   LB compute        : 2.19 ms    (98.8%)
   LB move op cnt    : 0
   LB apply          : 5.31 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.66 us    (74.2%)
Info: cfl dt = 0.003653016777788636                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1251e+05 | 65536 |      2 | 2.097e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.710360541496485 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6438224897846716, dt = 0.003653016777788636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.9%)
   patch tree reduce : 1793.00 ns (0.5%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 325.10 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (63.4%)
Info: cfl dt = 0.0036530186950825515                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0752e+05 | 65536 |      2 | 2.131e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.70958750683947 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6474755065624602, dt = 0.0036530186950825515
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 312.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.0%)
Info: cfl dt = 0.003653020649022398                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3103e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.49412707959807 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511285252575427, dt = 0.003653020649022398
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.6%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.5%)
   LB compute        : 241.63 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.8%)
Info: cfl dt = 0.00365302264017915                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4146e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5862533304407 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6547815459065651, dt = 0.00365302264017915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 287.52 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (56.2%)
Info: cfl dt = 0.003653024669130501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3514e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.31862178012794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6584345685467443, dt = 0.003653024669130501
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 258.14 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.0%)
Info: cfl dt = 0.003653026736460917                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4234e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.76325097760412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6620875932158747, dt = 0.003653026736460917
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.5%)
   LB compute        : 235.37 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.6%)
Info: cfl dt = 0.0036530288427616808                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3189e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.66540021620786 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6657406199523357, dt = 0.0036530288427616808
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.6%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 250.29 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (62.2%)
Info: cfl dt = 0.0036530309886309456                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3287e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86265339388693 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6693936487950973, dt = 0.0036530309886309456
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 283.92 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.8%)
Info: cfl dt = 0.0036530331746737837                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4105e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.50349297438925 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6730466797837282, dt = 0.0036530331746737837
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 255.68 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (62.4%)
Info: cfl dt = 0.0036530354015022375                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4263e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.82113324036845 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.676699712958402, dt = 0.0036530354015022375
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 269.26 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.8%)
Info: cfl dt = 0.0036530376697353657                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3255e+05 | 65536 |      2 | 1.971e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.7313137319114 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6803527483599043, dt = 0.0036530376697353657
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 277.76 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.5%)
Info: cfl dt = 0.0036530399799992973                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3634e+05 | 65536 |      2 | 1.948e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.49319545600243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6840057860296398, dt = 0.0036530399799992973
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.0%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 319.14 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.8%)
Info: cfl dt = 0.0036530423329272795                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3788e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.80116211613877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.687658826009639, dt = 0.0036530423329272795
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.51 us    (2.7%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 252.92 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.7%)
Info: cfl dt = 0.003653044729159728                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3685e+05 | 65536 |      2 | 1.946e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.59416517066019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6913118683425663, dt = 0.003653044729159728
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.6%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 262.31 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.7%)
Info: cfl dt = 0.0036530471693442756                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3539e+05 | 65536 |      2 | 1.954e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.30244779474758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6949649130717261, dt = 0.0036530471693442756
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (1.5%)
   patch tree reduce : 1942.00 ns (0.4%)
   gen split merge   : 1111.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.3%)
   LB compute        : 459.84 us  (95.2%)
   LB move op cnt    : 0
   LB apply          : 4.40 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (67.7%)
Info: cfl dt = 0.003653049654135824                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3811e+05 | 65536 |      2 | 1.938e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.84738066147612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6986179602410705, dt = 0.003653049654135824
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.2%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 291.83 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.4%)
Info: cfl dt = 0.0036530521841965946                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3834e+05 | 65536 |      2 | 1.937e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.89309725355724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7022710098952063, dt = 0.0036530521841965946
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.4%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 267.08 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (58.2%)
Info: cfl dt = 0.003653054760196177                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2025e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.26305419737616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.705924062079403, dt = 0.003653054760196177
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.1%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 320.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.0%)
Info: cfl dt = 0.0036530573828115792                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5234e+05 | 65536 |      2 | 1.860e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.70341861402353 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7095771168395992, dt = 0.0036530573828115792
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.6%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 237.73 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.6%)
Info: cfl dt = 0.0036530600527272757                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4125e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5448396312209 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7132301742224108, dt = 0.0036530600527272757
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 237.29 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (57.9%)
Info: cfl dt = 0.003653062770635263                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9218e+05 | 65536 |      2 | 1.671e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.69832207866645 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7168832342751381, dt = 0.003653062770635263
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 300.38 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.8%)
Info: cfl dt = 0.003653065537235105                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1908e+05 | 65536 |      2 | 2.054e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.0301533774853 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7205362970457734, dt = 0.003653065537235105
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 308.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (66.5%)
Info: cfl dt = 0.0036530683532339857                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2140e+05 | 65536 |      2 | 2.039e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.49550379657023 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7241893625830085, dt = 0.0036530683532339857
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 326.57 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (67.4%)
Info: cfl dt = 0.0036530712193467573                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3593e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.47793425990318 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7278424309362426, dt = 0.0036530712193467573
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 319.61 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (65.2%)
Info: cfl dt = 0.0036530741362959924                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7497e+05 | 65536 |      2 | 1.748e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.24410840984778 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7314955021555893, dt = 0.0036530741362959924
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 305.75 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (66.8%)
Info: cfl dt = 0.0036530771048120347                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3262e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.81262007251489 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7351485762918852, dt = 0.0036530771048120347
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 287.05 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.9%)
Info: cfl dt = 0.003653080125633043                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2611e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5070133010984 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7388016533966972, dt = 0.003653080125633043
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.1%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 307.28 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (60.2%)
Info: cfl dt = 0.003653083199505051                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3979e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2523536516852 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7424547335223304, dt = 0.003653083199505051
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.9%)
   patch tree reduce : 1783.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 313.10 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.6%)
Info: cfl dt = 0.0036530863271820122                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4194e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.68344257670299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7461078167218353, dt = 0.0036530863271820122
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.04 us    (2.2%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 257.15 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (56.6%)
Info: cfl dt = 0.0036530895094258483                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3935e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.16502053250395 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7497609030490173, dt = 0.0036530895094258483
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 259.97 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.2%)
Info: cfl dt = 0.003653092747006503                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5016e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.33459292467559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.753413992558443, dt = 0.003653092747006503
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 269.46 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.6%)
Info: cfl dt = 0.0036530960407019897                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4264e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.82414328715153 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7570670853054495, dt = 0.0036530960407019897
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.7%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 246.28 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.2%)
Info: cfl dt = 0.003653099391298444                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4891e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.08326171557414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7607201813461515, dt = 0.003653099391298444
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 291.34 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 53.68 us   (97.6%)
Info: cfl dt = 0.0036531027995901732                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5769e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.84503025230742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76437328073745, dt = 0.0036531027995901732
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.4%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 263.31 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (59.9%)
Info: cfl dt = 0.0036531062663797036                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5626e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.5578819343042 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.76802638353704, dt = 0.0036531062663797036
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 279.72 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.9%)
Info: cfl dt = 0.003653109792477836                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5148e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.59803419921144 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7716794898034196, dt = 0.003653109792477836
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 256.73 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.2%)
Info: cfl dt = 0.0036531133787036873                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5465e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.23504683647646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7753325995958975, dt = 0.0036531133787036873
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 281.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (62.3%)
Info: cfl dt = 0.0036531170258847522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5579e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.46448304042458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7789857129746012, dt = 0.0036531170258847522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 282.74 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.2%)
Info: cfl dt = 0.003653120734856941                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4589e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.47756258556335 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7826388300004858, dt = 0.003653120734856941
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 245.70 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.3%)
Info: cfl dt = 0.0036531245064646387                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3304e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.899539392984 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7862919507353427, dt = 0.0036531245064646387
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 17.21 us   (5.9%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 256.64 us  (87.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.4%)
Info: cfl dt = 0.0036531283415607504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3658e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.60940900813237 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7899450752418073, dt = 0.0036531283415607504
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.4%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 245.34 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.5%)
Info: cfl dt = 0.0036531322410067535                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5144e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.59192955180332 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935982035833682, dt = 0.0036531322410067535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 262.37 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (54.7%)
Info: cfl dt = 0.003653136205672745                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5072e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44701294280736 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.797251335824375, dt = 0.003653136205672745
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 249.56 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (64.2%)
Info: cfl dt = 0.003653140236437493                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4427e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.1520796737609 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8009044720300476, dt = 0.003653140236437493
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 274.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
Info: cfl dt = 0.003653144334188487                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4221e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.7393349186902 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.804557612266485, dt = 0.003653144334188487
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 250.00 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.5%)
Info: cfl dt = 0.003653148499821986                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4412e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.12221161838848 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8082107566006735, dt = 0.003653148499821986
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 288.58 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.6%)
Info: cfl dt = 0.0036531527342430693                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3416e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12346492181054 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8118639051004954, dt = 0.0036531527342430693
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 307.89 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (61.0%)
Info: cfl dt = 0.0036531570383656845                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4450e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19868318597153 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8155170578347386, dt = 0.0036531570383656845
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.0%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 286.38 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.9%)
Info: cfl dt = 0.0036531614131127014                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3663e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.62072908359528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8191702148731044, dt = 0.0036531614131127014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 281.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.1%)
Info: cfl dt = 0.003653165859415954                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3590e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.47371399744343 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8228233762862172, dt = 0.003653165859415954
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.75 us   (6.9%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 276.66 us  (88.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.2%)
Info: cfl dt = 0.0036531703782162993                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3964e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.22430467831313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826476542145633, dt = 0.0036531703782162993
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.5%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 248.69 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.3%)
Info: cfl dt = 0.0036531749704636555                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6119e+05 | 65536 |      2 | 1.814e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.48090270955022 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301297125238494, dt = 0.0036531749704636555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 266.18 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (64.4%)
Info: cfl dt = 0.003653179637117063                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1352e+05 | 65536 |      2 | 2.090e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.91514887975544 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833782887494313, dt = 0.003653179637117063
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 279.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.6%)
Info: cfl dt = 0.0036531843791447246                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4487e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.27532460566573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.83743606713143, dt = 0.0036531843791447246
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 261.39 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (58.4%)
Info: cfl dt = 0.00365318919752406                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4128e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.55365054968732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8410892515105748, dt = 0.00365318919752406
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 258.91 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (61.9%)
Info: cfl dt = 0.0036531940932417522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4289e+05 | 65536 |      2 | 1.911e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.8105524762883 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8447424407080988, dt = 0.0036531940932417522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 255.58 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (57.4%)
Info: cfl dt = 0.0036531990672937953                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3773e+05 | 65536 |      2 | 1.940e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.77401564691378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8483956348013406, dt = 0.0036531990672937953
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 278.31 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.4%)
Info: cfl dt = 0.003653204120685548                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0275e+05 | 65536 |      2 | 2.165e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.75493779170516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8520488338686345, dt = 0.003653204120685548
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 334.52 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.8%)
Info: cfl dt = 0.003653209254431778                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5421e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.15020100479306 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.85570203798932, dt = 0.003653209254431778
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 289.11 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (61.1%)
Info: cfl dt = 0.003653214469556713                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9382e+05 | 65536 |      2 | 1.664e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.03038701978433 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8593552472437518, dt = 0.003653214469556713
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 269.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (54.5%)
Info: cfl dt = 0.0036532197670940876                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1699e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.67994113507532 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8630084617133085, dt = 0.0036532197670940876
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (1.2%)
   patch tree reduce : 2.04 us    (0.4%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.2%)
   LB compute        : 547.21 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.7%)
Info: cfl dt = 0.003653225148087194                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5178e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.66236668049702 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8666616814804025, dt = 0.003653225148087194
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 295.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (66.0%)
Info: cfl dt = 0.0036532306135889266                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2316e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.91781187200692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703149066284896, dt = 0.0036532306135889266
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 264.29 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.8%)
Info: cfl dt = 0.0036532361646618365                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2780e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.85043094231138 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8739681372420787, dt = 0.0036532361646618365
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 264.53 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (62.1%)
Info: cfl dt = 0.0036532418023781754                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3585e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.46647257342791 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8776213734067404, dt = 0.0036532418023781754
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.19 us    (2.5%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 263.78 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (61.4%)
Info: cfl dt = 0.0036532475278199415                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1296e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.8725369893428 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8812746152091187, dt = 0.0036532475278199415
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 277.18 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.28 us    (65.1%)
Info: cfl dt = 0.003653253342078934                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5650e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.61071602896745 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8849278627369386, dt = 0.003653253342078934
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 302.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.9%)
Info: cfl dt = 0.003653259246256794                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4861e+05 | 65536 |      2 | 1.461e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.02599784513458 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8885811160790176, dt = 0.003653259246256794
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 295.69 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.8%)
Info: cfl dt = 0.0036532652414650586                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6071e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.45409667879167 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8922343753252744, dt = 0.0036532652414650586
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 265.76 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (64.0%)
Info: cfl dt = 0.0036532713288252036                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5890e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.09154746340762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8958876405667395, dt = 0.0036532713288252036
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 283.04 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.0%)
Info: cfl dt = 0.003653277509468693                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6156e+05 | 65536 |      2 | 1.420e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.6252387182487 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8995409118955648, dt = 0.003653277509468693
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.5%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 261.75 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (61.5%)
Info: cfl dt = 0.003653283784537028                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5422e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.1521079208053 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9031941894050335, dt = 0.003653283784537028
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.6%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1172.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.6%)
   LB compute        : 231.23 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.0%)
Info: cfl dt = 0.003653290155181791                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2332e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.95298774275119 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9068474731895706, dt = 0.003653290155181791
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 264.93 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.0%)
Info: cfl dt = 0.0036532966225646954                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6266e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.8461968733437 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9105007633447524, dt = 0.0036532966225646954
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 259.15 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
Info: cfl dt = 0.0036533031878576306                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5416e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.14127901059564 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.914154059967317, dt = 0.0036533031878576306
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.2%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 300.47 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.0%)
Info: cfl dt = 0.00365330985224271                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4081e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.46273492541877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9178073631551746, dt = 0.00365330985224271
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1862.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1291.00 ns (0.4%)
   LB compute        : 266.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.6%)
Info: cfl dt = 0.003653316616912318                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9421e+05 | 65536 |      2 | 1.662e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.11097905322313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9214606730074173, dt = 0.003653316616912318
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.6%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 232.37 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (64.5%)
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    | 3.6796e+05 | 65536 |      2 | 1.781e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.84372004985677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9251139896243297, dt = 0.0036533234830691537
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.7%)
   patch tree reduce : 1883.00 ns (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 226.31 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.6%)
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    | 4.6058e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.43124732094107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9287673131073988, dt = 0.0036533304519262857
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (1.9%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 311.43 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.7%)
Info: cfl dt = 0.003653337524707185                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5612e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.536657658488 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9324206435593252, dt = 0.003653337524707185
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.6%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 239.64 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.9%)
Info: cfl dt = 0.0036533447026457825                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9499e+05 | 65536 |      2 | 1.659e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.26871588887371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9360739810840324, dt = 0.0036533447026457825
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 286.66 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (61.2%)
Info: cfl dt = 0.003653351986986513                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5362e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.03398426438191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9397273257866783, dt = 0.003653351986986513
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 264.22 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.8%)
Info: cfl dt = 0.0036533593789843557                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5299e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.90748649155272 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9433806777736649, dt = 0.0036533593789843557
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 275.93 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (63.0%)
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    | 4.3113e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52086652282333 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.947034037152649, dt = 0.0036533668799048845
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 263.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (58.2%)
Info: cfl dt = 0.003653374491024311                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5067e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.44338380510267 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.950687404032554, dt = 0.003653374491024311
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 286.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
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.4302e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.90877108802295 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9543407785235782, dt = 0.0036533822136295352
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.5%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1291.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 245.07 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.0%)
Info: cfl dt = 0.003653390049018181                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6513e+05 | 65536 |      2 | 1.409e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.34449701925688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579941607372078, dt = 0.003653390049018181
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.7%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 229.21 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
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    | 4.5734e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.78227074218644 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9616475507862259, dt = 0.003653397998498651
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 252.33 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (63.9%)
Info: cfl dt = 0.003653406063390166                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4697e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.70064348225117 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9653009487847246, dt = 0.003653406063390166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 244.06 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.3%)
Info: cfl dt = 0.0036534142450228113                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3889e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.08034844061339 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689543548481148, dt = 0.0036534142450228113
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.7%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1231.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 225.98 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.0036534225447375805                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2279e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.84988848558852 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9726077690931376, dt = 0.0036534225447375805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.2%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 295.39 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (65.4%)
Info: cfl dt = 0.0036534309638864212                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4180e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.66454302826116 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9762611916378752, dt = 0.0036534309638864212
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.4%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 262.00 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.6%)
Info: cfl dt = 0.0036534395038322755                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4590e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.48692634815943 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9799146226017617, dt = 0.0036534395038322755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 257.81 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.7%)
Info: cfl dt = 0.00365344816594913                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4340e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.98657154930964 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.983568062105594, dt = 0.00365344816594913
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 250.30 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.0%)
Info: cfl dt = 0.0036534569516220522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8732e+05 | 65536 |      2 | 1.692e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.73111586812571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9872215102715431, dt = 0.0036534569516220522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 250.29 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.0%)
Info: cfl dt = 0.0036534658622472426                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3092e+05 | 65536 |      2 | 1.980e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.41288042028452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9908749672231651, dt = 0.0036534658622472426
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 277.79 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (61.0%)
Info: cfl dt = 0.00365347489923207                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2752e+05 | 65536 |      2 | 2.001e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.73019612880218 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9945284330854125, dt = 0.00365347489923207
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 286.83 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (65.3%)
Info: cfl dt = 0.0036534840639951185                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1209e+05 | 65536 |      2 | 1.590e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.70211884550461 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9981819079846446, dt = 0.0018180920153554325
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 269.38 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (66.2%)
Info: cfl dt = 0.003653488635893796                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1922e+05 | 65536 |      2 | 2.053e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 31.880576320481754 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1131.221481535 (s)                                       [Godunov][rank=0]
running minmod hll
Info: pushing data in scheduler, N = 8192                             [DataInserterUtility][rank=0]
Info: reattributing data ...                                          [DataInserterUtility][rank=0]
Info: reattributing data done in  2.06 ms                             [DataInserterUtility][rank=0]
Info: ---------------------------------------------                   [DataInserterUtility][rank=0]
Info: Compute load ...                                                [DataInserterUtility][rank=0]
Info: run scheduler step ...                                          [DataInserterUtility][rank=0]
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 4.18 us    (47.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     : 1032.00 ns (0.3%)
   patch tree reduce : 1632.00 ns (0.5%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 337.95 us  (96.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 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     : 13.65 us   (3.6%)
   patch tree reduce : 2.49 us    (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 344.50 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3104e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 295.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (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.3415e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.11721704724025 (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     : 6.83 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 247.25 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3444e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.17577779289735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 287.02 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (70.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7697e+05 | 65536 |      2 | 1.738e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.64369155077699 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.010958794525156596, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.4%)
   LB compute        : 295.88 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1827e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.92995829914739 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 260.01 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.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.3362e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.01009114587055 (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.47 us    (2.0%)
   patch tree reduce : 1803.00 ns (0.5%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 307.24 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3662e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.61231771342456 (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.64 us    (2.0%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 316.23 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6226e+05 | 65536 |      2 | 1.809e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.69098902927384 (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     : 6.66 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 277.26 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3050e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.38393130342516 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 254.71 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.3892e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.0734625678617 (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     : 7.88 us    (2.4%)
   patch tree reduce : 1812.00 ns (0.5%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 309.80 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.58 us    (67.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0394e+05 | 65536 |      2 | 2.156e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.98937074296937 (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     : 6.35 us    (1.9%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 308.30 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (64.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.8824e+05 | 65536 |      2 | 2.274e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.839197454907584 (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     : 6.64 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.4%)
   LB compute        : 311.30 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1304e+05 | 65536 |      2 | 2.094e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.81503155657554 (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     : 6.43 us    (2.1%)
   patch tree reduce : 1683.00 ns (0.5%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 290.51 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3482e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.25123905768987 (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     : 6.67 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 284.81 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (64.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2952e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.18880963587247 (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     : 6.75 us    (2.4%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 257.65 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7940e+05 | 65536 |      2 | 1.727e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.13194041050023 (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     : 6.53 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 287.08 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.2123e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.52497344445027 (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     : 6.47 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 318.63 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2920e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.12314359184798 (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     : 6.59 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 316.37 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (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.2273e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.82586447456217 (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     : 7.00 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 344.20 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (69.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2134e+05 | 65536 |      2 | 2.039e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.48027219212595 (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     : 6.21 us    (1.9%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 307.18 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.50 us    (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2799e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.88029033100406 (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     : 6.53 us    (1.8%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 337.73 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3492e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.27133884027866 (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     : 6.18 us    (1.9%)
   patch tree reduce : 1742.00 ns (0.5%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 296.36 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1828e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.93292543002286 (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     : 6.68 us    (2.1%)
   patch tree reduce : 1922.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 296.87 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0323e+05 | 65536 |      2 | 1.625e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.91372068631831 (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     : 6.45 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.6%)
   LB compute        : 234.56 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (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    | 3.5660e+05 | 65536 |      2 | 1.838e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.55614200204634 (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     : 6.89 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1593.00 ns (0.5%)
   LB compute        : 285.97 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4059e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.40893445940588 (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     : 6.57 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 250.01 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2670e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.62303800990428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0949762192180238, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 258.36 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3433e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.1528761219527 (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     : 7.36 us    (2.4%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 288.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (66.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4656e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.60667276684981 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10228208223479485, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.2%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 280.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4225e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.74174055953242 (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.23 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 266.17 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (64.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4896e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.08997410723009 (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     : 6.20 us    (2.3%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 250.11 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2171e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.62142264920362 (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     : 6.90 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 245.24 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4611e+05 | 65536 |      2 | 1.469e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.51769710942104 (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     : 6.50 us    (2.1%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 287.96 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2333e+05 | 65536 |      2 | 2.027e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.88053977522277 (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     : 6.57 us    (1.8%)
   patch tree reduce : 1732.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 352.85 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5918e+05 | 65536 |      2 | 1.825e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.07381120889195 (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.67 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 268.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5449e+05 | 65536 |      2 | 1.849e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.13193631431386 (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     : 6.67 us    (1.1%)
   patch tree reduce : 1722.00 ns (0.3%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.2%)
   LB compute        : 580.91 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (0.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (63.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1147e+05 | 65536 |      2 | 2.104e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.49956688286431 (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     : 7.20 us    (1.9%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 356.33 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.88 us    (70.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.4388e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.07063325138083 (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     : 6.43 us    (2.4%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 251.03 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (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.3048e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.38033443486668 (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.98 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.5%)
   LB compute        : 280.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.32 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1914e+05 | 65536 |      2 | 2.054e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.03895721825423 (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.28 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 288.10 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8928e+05 | 65536 |      2 | 1.684e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.11293036468248 (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     : 6.70 us    (2.6%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.6%)
   LB compute        : 239.19 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3171e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.62733022693497 (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     : 6.63 us    (2.3%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 260.82 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (61.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4304e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.90159408714432 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15342312335219221, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.5%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 257.55 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4260e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.81221544734065 (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     : 6.58 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 280.06 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (61.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2418e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.11663802696204 (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     : 6.64 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 247.12 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (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.3224e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.73481482861992 (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     : 6.67 us    (2.0%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.5%)
   LB compute        : 306.22 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5019e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.33647712696916 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16803484938573432, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 273.17 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (63.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4900e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.09699873278879 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17168778089411985, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.6%)
   patch tree reduce : 1763.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 246.59 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.4734e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.76353471294044 (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     : 6.56 us    (2.4%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 251.47 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4218e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.7293965614394 (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     : 6.62 us    (2.3%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 266.97 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4191e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.67492187705994 (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.31 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 250.20 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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    | 3.8025e+05 | 65536 |      2 | 1.723e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.30193461295661 (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.95 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 264.37 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (46.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6504e+05 | 65536 |      2 | 1.795e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.24915447401551 (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     : 6.80 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 271.32 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (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.0657e+05 | 65536 |      2 | 1.612e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.58319979286752 (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     : 6.95 us    (2.7%)
   patch tree reduce : 1902.00 ns (0.7%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 237.95 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4190e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.67207756776965 (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     : 6.78 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 272.53 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4101e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.49287029281088 (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     : 6.41 us    (2.0%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 297.93 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8419e+05 | 65536 |      2 | 1.706e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.09263190472227 (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     : 6.13 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 267.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9882e+05 | 65536 |      2 | 1.643e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.02779220985728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2082170959779751, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.6%)
   patch tree reduce : 2.40 us    (0.9%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 234.39 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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    | 3.5716e+05 | 65536 |      2 | 1.835e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.66880090927758 (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     : 6.44 us    (2.3%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 261.40 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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    | 4.3022e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.32912391107065 (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     : 6.30 us    (1.9%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 313.31 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (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.3018e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.32124095095534 (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     : 6.50 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 254.94 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3955e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.20029296146289 (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     : 6.70 us    (2.3%)
   patch tree reduce : 1633.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 273.25 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (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.2995e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.27387152629129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22648175351990274, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 299.62 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3275e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.83542892095491 (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     : 7.00 us    (2.6%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 243.95 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3991e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.27213855930046 (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     : 6.31 us    (2.3%)
   patch tree reduce : 1733.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 255.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5650e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.6028500660764 (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     : 6.79 us    (2.2%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 281.65 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5401e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.10297856438454 (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     : 6.76 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 275.89 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3371e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.02951782790767 (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     : 7.14 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 266.70 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4809e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.91359182146417 (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     : 6.40 us    (1.8%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.3%)
   LB compute        : 333.80 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (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    | 3.1104e+05 | 65536 |      2 | 2.107e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.41414082493202 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2520522740786014, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.1%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 306.72 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (64.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4268e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.82805280565589 (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     : 6.07 us    (1.8%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 310.65 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8428e+05 | 65536 |      2 | 1.705e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.10939171094566 (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     : 6.87 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 292.83 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4815e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.92603754629425 (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     : 6.65 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 246.33 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.4827e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.95021639598204 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26666400011214353, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 272.61 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4729e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.75482770516724 (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.67 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1261.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 282.03 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (65.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5188e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.67413833002183 (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     : 6.08 us    (2.2%)
   patch tree reduce : 1782.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 255.31 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (61.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4591e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.4778225328683 (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     : 6.57 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 258.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (66.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4374e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.04152866473814 (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     : 6.48 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.5%)
   LB compute        : 246.35 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.4530e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.35444807759457 (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     : 6.28 us    (2.3%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 248.06 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (63.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1678e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.63104316373844 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2885815891624567, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 264.79 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (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.2485e+05 | 65536 |      2 | 1.543e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.25034278555133 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2922345206708422, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 264.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (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.3900e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.09018108440782 (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     : 6.30 us    (2.2%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 261.10 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4508e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.31012462257135 (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     : 6.37 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 263.45 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.0237e+05 | 65536 |      2 | 1.629e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.74014383572344 (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     : 6.66 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 295.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (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    | 3.2764e+05 | 65536 |      2 | 2.000e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.74436962260768 (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     : 6.42 us    (2.0%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 302.11 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (61.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9288e+05 | 65536 |      2 | 1.668e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.8359752646016 (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     : 6.52 us    (2.1%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 285.74 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.61 us    (70.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.1654e+05 | 65536 |      2 | 2.070e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.518113532240925 (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     : 6.93 us    (1.9%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 346.34 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1568e+05 | 65536 |      2 | 2.076e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.34568099932481 (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     : 6.71 us    (1.8%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 353.46 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2602e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.48487774196182 (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     : 6.74 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 261.88 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.3508e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30371899510965 (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     : 6.57 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 274.07 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3027e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.33850589203277 (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     : 7.27 us    (2.8%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1532.00 ns (0.6%)
   LB compute        : 232.37 us  (90.7%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.4486e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.2669449052595 (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     : 6.48 us    (2.6%)
   patch tree reduce : 1923.00 ns (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 231.20 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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.2948e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1793155802802 (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     : 6.86 us    (2.5%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 254.33 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.3391e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.06919218794263 (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     : 6.45 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 272.94 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2982e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24869820898647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3433755617882396, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 1772.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 277.23 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (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.3599e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.48629844389257 (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     : 6.88 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 250.79 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4915e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.12650535556386 (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     : 6.50 us    (2.6%)
   patch tree reduce : 1753.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.5%)
   LB compute        : 231.10 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.37 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.5%)
Info: cfl dt = 0.003652931508385533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3765e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.81972291330783 (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     : 6.39 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 242.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.1%)
Info: cfl dt = 0.003652931508385534                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3777e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.84431018931954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3579872878217817, dt = 0.003652931508385534
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 314.62 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.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    | 4.3514e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.31490711009707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3616402193301672, dt = 0.0036529315083855345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 269.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (58.2%)
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.3656e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.60059692590083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36529315083855274, dt = 0.0036529315083855354
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.1%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 271.66 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.7%)
Info: cfl dt = 0.003652931508385536                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3350e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.98604050008034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36894608234693826, dt = 0.003652931508385536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 279.68 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.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.2760e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.80297290409777 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3725990138553238, dt = 0.003652931508385537
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.68 us    (2.3%)
   patch tree reduce : 1763.00 ns (0.7%)
   gen split merge   : 601.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1001.00 ns (0.4%)
   LB compute        : 230.55 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (61.8%)
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.5082e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46188576153061 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3762519453637093, dt = 0.003652931508385537
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 242.03 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.9%)
Info: cfl dt = 0.0036529315083855384                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3506e+05 | 65536 |      2 | 1.956e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.2335349979506 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37990487687209484, dt = 0.0036529315083855384
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 1812.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 263.64 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.9%)
Info: cfl dt = 0.00365293150838554                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3899e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.0888646353582 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38355780838048037, dt = 0.00365293150838554
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 269.14 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.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    | 3.3526e+05 | 65536 |      2 | 1.955e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.27409581722954 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3872107398888659, dt = 0.0036529315083855423
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.4%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 257.15 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (56.5%)
Info: cfl dt = 0.003652931508385544                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3796e+05 | 65536 |      2 | 1.939e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.81615749570096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3908636713972514, dt = 0.003652931508385544
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 285.50 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.5%)
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    | 4.4047e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.38542017687388 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39451660290563695, dt = 0.0036529315083855467
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 276.47 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (61.2%)
Info: cfl dt = 0.0036529315083855506                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5093e+05 | 65536 |      2 | 1.453e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.48486998516776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3981695344140225, dt = 0.0036529315083855506
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.6%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.5%)
   LB compute        : 236.49 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.44 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (59.8%)
Info: cfl dt = 0.003652931508385554                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5859e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.02180735615008 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.401822465922408, dt = 0.003652931508385554
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 255.20 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.6%)
Info: cfl dt = 0.003652931508385559                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5316e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.93134645331466 (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     : 6.65 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 255.69 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.0%)
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    | 4.5202e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.70310397643475 (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.19 us    (2.1%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 267.54 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (61.4%)
Info: cfl dt = 0.0036529315083855705                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6005e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.31446361799689 (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     : 6.59 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 252.16 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.0%)
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.3156e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.59848917472614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4164341919559503, dt = 0.0036529315083855796
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.6%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.6%)
   LB compute        : 233.09 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.003652931508385589                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6076e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.45682247857468 (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     : 6.58 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 271.66 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.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.2248e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.77523610948762 (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     : 7.22 us    (0.2%)
   patch tree reduce : 1943.00 ns (0.0%)
   gen split merge   : 1131.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.0%)
   LB compute        : 4.46 ms    (99.5%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.79 us    (74.6%)
Info: cfl dt = 0.0036529315083856143                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3212e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.71054618222747 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.427392986481107, dt = 0.0036529315083856143
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 1952.00 ns (0.7%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 270.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.3%)
Info: cfl dt = 0.003652931508385631                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4795e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.88631575337533 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43104591798949266, dt = 0.003652931508385631
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 270.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.14 us    (66.7%)
Info: cfl dt = 0.00365293150838565                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5353e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.00580825966392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4346988494978783, dt = 0.00365293150838565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 270.64 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (62.3%)
Info: cfl dt = 0.003652931508385673                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5555e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.41183403660256 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43835178100626393, dt = 0.003652931508385673
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 272.55 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (61.2%)
Info: cfl dt = 0.0036529315083857                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5025e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.34763737672186 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4420047125146496, dt = 0.0036529315083857
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 1732.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 264.04 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (58.1%)
Info: cfl dt = 0.0036529315083857323                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4777e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.85004522026362 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4456576440230353, dt = 0.0036529315083857323
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 259.56 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.2%)
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.5659e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.61954906524882 (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     : 6.34 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 241.34 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.5%)
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.1200e+05 | 65536 |      2 | 1.591e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.67320777758046 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529635070398068, dt = 0.0036529315083858134
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 281.50 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.9%)
Info: cfl dt = 0.0036529315083858645                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4694e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.68402442699691 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4566164385481926, dt = 0.0036529315083858645
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.98 us    (2.0%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 278.47 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.7%)
Info: cfl dt = 0.003652931508385924                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5341e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.98261468179746 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4602693700565785, dt = 0.003652931508385924
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.89 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 263.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.9%)
Info: cfl dt = 0.003652931508385992                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5984e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.2727642007444 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4639223015649644, dt = 0.003652931508385992
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 268.65 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (61.2%)
Info: cfl dt = 0.003652931508386073                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6070e+05 | 65536 |      2 | 1.817e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.37866717057108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46757523307335036, dt = 0.003652931508386073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 260.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (62.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    | 3.9968e+05 | 65536 |      2 | 1.640e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.20021418465498 (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     : 6.41 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 276.16 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.7%)
Info: cfl dt = 0.0036529315083862735                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5048e+05 | 65536 |      2 | 1.870e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.32720325114595 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47488109609012263, dt = 0.0036529315083862735
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 319.35 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1852.00 ns (66.3%)
Info: cfl dt = 0.003652931508386398                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4923e+05 | 65536 |      2 | 1.877e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.0773978957628 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785340275985089, dt = 0.003652931508386398
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 1683.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 265.00 us  (86.7%)
   LB move op cnt    : 0
   LB apply          : 21.97 us   (7.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (64.1%)
Info: cfl dt = 0.0036529315083865424                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1635e+05 | 65536 |      2 | 2.072e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.47877860843908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4821869591068953, dt = 0.0036529315083865424
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 292.73 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1952.00 ns (67.0%)
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    | 3.0959e+05 | 65536 |      2 | 2.117e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.12375254526743 (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     : 6.74 us    (1.6%)
   patch tree reduce : 2.04 us    (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 393.75 us  (94.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1543.00 ns (61.4%)
Info: cfl dt = 0.0036529315083868963                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1882e+05 | 65536 |      2 | 2.056e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.974990451792245 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4894928221236685, dt = 0.0036529315083868963
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 291.74 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.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    | 4.4669e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.63316231132008 (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     : 6.76 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 265.00 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.1%)
Info: cfl dt = 0.0036529315083873607                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4137e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.56690361498862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49679868514044256, dt = 0.0036529315083873607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 287.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.0%)
Info: cfl dt = 0.003652931508387644                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0885e+05 | 65536 |      2 | 1.603e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.0414281806778 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.50045161664883, dt = 0.003652931508387644
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 273.24 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.7%)
Info: cfl dt = 0.0036529315083879675                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3884e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.05779110947108 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041045481572176, dt = 0.0036529315083879675
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1402.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 267.75 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.4%)
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    | 4.3514e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.3159581902088 (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     : 6.65 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 272.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.0%)
Info: cfl dt = 0.003652931508388755                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4882e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.06129814068099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5114104111739939, dt = 0.003652931508388755
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.0%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1321.00 ns (0.4%)
   LB compute        : 308.46 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.5%)
Info: cfl dt = 0.0036529315083892303                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4492e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.27896434432084 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5150633426823826, dt = 0.0036529315083892303
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.4%)
   patch tree reduce : 1773.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 243.75 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.0%)
Info: cfl dt = 0.00365293150838977                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5557e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.41438786063313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5187162741907718, dt = 0.00365293150838977
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 264.18 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (62.5%)
Info: cfl dt = 0.0036529315083903805                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5169e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.63628918504988 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5223692056991616, dt = 0.0036529315083903805
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (1.7%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 365.02 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.5%)
Info: cfl dt = 0.00365293150839107                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5079e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.45689533527555 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.526022137207552, dt = 0.00365293150839107
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 249.78 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.9%)
Info: cfl dt = 0.0036529315083918493                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5012e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.32220220883265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.529675068715943, dt = 0.0036529315083918493
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 2.49 us    (0.9%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 264.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (59.4%)
Info: cfl dt = 0.003652931508392727                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5029e+05 | 65536 |      2 | 1.871e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.28891161586589 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5333280002243349, dt = 0.003652931508392727
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 280.50 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.9%)
Info: cfl dt = 0.003652931508393717                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1485e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.245247511786 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5369809317327277, dt = 0.003652931508393717
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 293.80 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.0%)
Info: cfl dt = 0.0036529315083948287                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5712e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.72735690895541 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5406338632411214, dt = 0.0036529315083948287
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.5%)
   LB compute        : 300.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.1%)
Info: cfl dt = 0.0036529315083960786                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5472e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.24467155431692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5442867947495162, dt = 0.0036529315083960786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.3%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 260.16 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1383.00 ns (57.8%)
Info: cfl dt = 0.0036529315083974794                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0092e+05 | 65536 |      2 | 1.635e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.44980049947301 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5479397262579123, dt = 0.0036529315083974794
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 259.60 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (59.4%)
Info: cfl dt = 0.003652931508399049                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5581e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.46289565761437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5515926577663098, dt = 0.003652931508399049
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 239.39 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.0%)
Info: cfl dt = 0.003652931508400804                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5388e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.07639982923912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5552455892747089, dt = 0.003652931508400804
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 292.06 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (67.4%)
Info: cfl dt = 0.0036529315084027655                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5323e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.94531078804442 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5588985207831098, dt = 0.0036529315084027655
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.5%)
   patch tree reduce : 2.13 us    (0.9%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 228.82 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.3%)
Info: cfl dt = 0.003652931508404955                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5494e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.28835343226191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5625514522915125, dt = 0.003652931508404955
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1353.00 ns (0.4%)
   LB compute        : 281.23 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.0%)
Info: cfl dt = 0.0036529315084073964                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4957e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.21180188150052 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5662043837999174, dt = 0.0036529315084073964
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 273.05 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.0%)
Info: cfl dt = 0.0036529315084101147                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5153e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.60556890938138 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5698573153083248, dt = 0.0036529315084101147
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.2%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 278.41 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.2%)
Info: cfl dt = 0.0036529315084131387                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5391e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.08223730419623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5735102468167349, dt = 0.0036529315084131387
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.4%)
   patch tree reduce : 1773.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 245.79 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.9%)
Info: cfl dt = 0.003652931508416499                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5551e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.40360863141332 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5771631783251481, dt = 0.003652931508416499
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 242.38 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.4%)
Info: cfl dt = 0.0036529315084202277                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5414e+05 | 65536 |      2 | 1.443e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.12750343343515 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5808161098335646, dt = 0.0036529315084202277
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.6%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 236.81 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.58 us    (71.5%)
Info: cfl dt = 0.003652931508424363                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5787e+05 | 65536 |      2 | 1.431e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.87724368629257 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5844690413419849, dt = 0.003652931508424363
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 1733.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 260.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.2%)
Info: cfl dt = 0.003652931508428943                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5197e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.69230481715115 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5881219728504092, dt = 0.003652931508428943
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 259.79 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (66.1%)
Info: cfl dt = 0.0036529315084340105                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1605e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.48621309780069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5917749043588382, dt = 0.0036529315084340105
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.5%)
   patch tree reduce : 1832.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 240.54 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (59.9%)
Info: cfl dt = 0.0036529315084396136                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4176e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.64326329346915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5954278358672722, dt = 0.0036529315084396136
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.3%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1291.00 ns (0.5%)
   LB compute        : 245.30 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (60.7%)
Info: cfl dt = 0.0036529315084457997                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4636e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.56706540052596 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5990807673757118, dt = 0.0036529315084457997
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.2%)
   patch tree reduce : 1692.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 273.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.1%)
Info: cfl dt = 0.003652931508452624                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4126e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.54408503174251 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6027336988841576, dt = 0.003652931508452624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.4%)
   patch tree reduce : 1822.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 237.81 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (59.9%)
Info: cfl dt = 0.003652931508460145                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5867e+05 | 65536 |      2 | 1.429e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.03667033451384 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6063866303926102, dt = 0.003652931508460145
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.4%)
   patch tree reduce : 1872.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 238.92 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (59.6%)
Info: cfl dt = 0.003652931508468426                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6103e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.51040109377249 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6100395619010703, dt = 0.003652931508468426
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.1%)
   patch tree reduce : 17.22 us   (5.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.4%)
   LB compute        : 268.24 us  (87.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.7%)
Info: cfl dt = 0.0036529315084775364                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6061e+05 | 65536 |      2 | 1.423e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.42571597808728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6136924934095388, dt = 0.0036529315084775364
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.5%)
   patch tree reduce : 1752.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 248.54 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.7%)
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.5730e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.7620044039382 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6173454249180164, dt = 0.0036529315084875497
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.5%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 241.43 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.2%)
Info: cfl dt = 0.0036529315084985444                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5672e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.64673449565014 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6209983564265039, dt = 0.0036529315084985444
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.9%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 306.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.6%)
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    | 3.9124e+05 | 65536 |      2 | 1.675e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.50680157046851 (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     : 6.43 us    (2.0%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 306.00 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.7%)
Info: cfl dt = 0.0036529315085238267                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5566e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.43343325211406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6283042194435131, dt = 0.0036529315085238267
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1222.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 342.57 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.7%)
Info: cfl dt = 0.0036529315085383073                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5170e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.63834756804923 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.631957150952037, dt = 0.0036529315085383073
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 266.01 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (57.6%)
Info: cfl dt = 0.0036529315085541522                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2425e+05 | 65536 |      2 | 2.021e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.06381326670873 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6356100824605753, dt = 0.0036529315085541522
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (1.8%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 344.08 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (66.4%)
Info: cfl dt = 0.003652931508571476                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6823e+05 | 65536 |      2 | 1.780e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.8894202348812 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6392630139691294, dt = 0.003652931508571476
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (1.9%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.3%)
   LB compute        : 371.96 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.42 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.9%)
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.4337e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9677118495737 (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     : 6.83 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 263.62 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.0%)
Info: cfl dt = 0.0036529315086110607                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4370e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0336350714812 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6465688769862913, dt = 0.0036529315086110607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 268.32 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.1%)
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.4188e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.6679725706943 (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     : 6.57 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 300.73 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (64.6%)
Info: cfl dt = 0.003652931508658151                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2307e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.89444537252616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6538747400035358, dt = 0.003652931508658151
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1423.00 ns (0.5%)
   LB compute        : 266.09 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (62.6%)
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.4964e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.22600911910781 (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     : 6.47 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 290.70 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1822.00 ns (61.9%)
Info: cfl dt = 0.0036529315087139957                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3427e+05 | 65536 |      2 | 1.961e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.07596157041517 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6611806030208789, dt = 0.0036529315087139957
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 270.18 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.2%)
Info: cfl dt = 0.00365293150874564                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1793e+05 | 65536 |      2 | 2.061e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.79712900730505 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6648335345295929, dt = 0.00365293150874564
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.2%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 257.83 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (62.4%)
Info: cfl dt = 0.0036529315087800228                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3558e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.40406051065634 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6684864660383386, dt = 0.0036529315087800228
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.0%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 311.85 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (66.2%)
Info: cfl dt = 0.0036529315088173545                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4668e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.63068688982528 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6721393975471186, dt = 0.0036529315088173545
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.42 us    (2.6%)
   patch tree reduce : 1743.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 265.59 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.0%)
Info: cfl dt = 0.00365293150885786                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4651e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.59776420091694 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.675792329055936, dt = 0.00365293150885786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 261.50 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.0%)
Info: cfl dt = 0.003652931508901777                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4899e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.09416555478677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6794452605647938, dt = 0.003652931508901777
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.5%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 237.78 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.8%)
Info: cfl dt = 0.0036529315089493595                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5237e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.77389197919955 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6830981920736956, dt = 0.0036529315089493595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.4%)
   patch tree reduce : 1892.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 243.64 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1393.00 ns (54.5%)
Info: cfl dt = 0.0036529315090008787                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2905e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.09381375869917 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.686751123582645, dt = 0.0036529315090008787
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 250.89 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.9%)
Info: cfl dt = 0.003652931509056622                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4099e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.49069028226894 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6904040550916459, dt = 0.003652931509056622
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 254.48 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.0%)
Info: cfl dt = 0.0036529315091168957                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2957e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.19824082368436 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6940569866007026, dt = 0.0036529315091168957
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 278.27 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.9%)
Info: cfl dt = 0.003652931509182024                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3692e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67278124793481 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6977099181098195, dt = 0.003652931509182024
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.09 us    (2.3%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 245.65 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (57.5%)
Info: cfl dt = 0.003652931509252355                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4664e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.62337625670733 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7013628496190015, dt = 0.003652931509252355
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 254.65 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 0.003652931509328253                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4429e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.15275615643347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7050157811282539, dt = 0.003652931509328253
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.5%)
   patch tree reduce : 1732.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 235.58 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.1%)
Info: cfl dt = 0.003652931509410108                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4395e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0829161120193 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7086687126375821, dt = 0.003652931509410108
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.6%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 233.12 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.7%)
Info: cfl dt = 0.0036529315094983327                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5699e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.69996955881862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7123216441469923, dt = 0.0036529315094983327
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.5%)
   patch tree reduce : 1933.00 ns (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 232.42 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.0036529315095933644                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5685e+05 | 65536 |      2 | 1.435e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.67194798618728 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159745756564906, dt = 0.0036529315095933644
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.9%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 317.17 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.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.1828e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.93244547437597 (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     : 6.61 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 260.81 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (64.6%)
Info: cfl dt = 0.0036529315098057283                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1483e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.24072333780111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7232804386757796, dt = 0.0036529315098057283
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 248.38 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.8%)
Info: cfl dt = 0.0036529315099240686                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4351e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.99512099403206 (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     : 6.40 us    (2.4%)
   patch tree reduce : 1773.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 245.42 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.3%)
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    | 3.5197e+05 | 65536 |      2 | 1.862e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.62754571431505 (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     : 6.82 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 286.70 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.8%)
Info: cfl dt = 0.0036529315101878138                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1494e+05 | 65536 |      2 | 2.081e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.19668772266591 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7342392332055606, dt = 0.0036529315101878138
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.6%)
   patch tree reduce : 1862.00 ns (0.5%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.4%)
   LB compute        : 357.13 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.1%)
Info: cfl dt = 0.003652931510334411                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2021e+05 | 65536 |      2 | 2.047e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.25326245366193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7378921647157485, dt = 0.003652931510334411
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.5%)
   LB compute        : 283.45 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.9%)
Info: cfl dt = 0.0036529315104916766                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2664e+05 | 65536 |      2 | 2.006e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.54465961451034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415450962260829, dt = 0.0036529315104916766
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 325.40 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (62.8%)
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    | 3.1571e+05 | 65536 |      2 | 2.076e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.35035694265658 (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     : 6.52 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 308.49 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.4%)
Info: cfl dt = 0.0036529315108409835                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2372e+05 | 65536 |      2 | 2.024e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.95777528803403 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7488509592472349, dt = 0.0036529315108409835
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (1.9%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 309.65 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (62.4%)
Info: cfl dt = 0.0036529315110345054                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6119e+05 | 65536 |      2 | 1.421e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.54271802518026 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7525038907580759, dt = 0.0036529315110345054
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.4%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 245.98 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.2%)
Info: cfl dt = 0.0036529315112416617                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5956e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.21529723252095 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7561568222691104, dt = 0.0036529315112416617
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.6%)
   patch tree reduce : 1812.00 ns (0.7%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 227.53 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.2%)
Info: cfl dt = 0.003652931511463296                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5924e+05 | 65536 |      2 | 1.427e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.15165436069893 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7598097537803521, dt = 0.003652931511463296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.6%)
   patch tree reduce : 1943.00 ns (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 233.73 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.9%)
Info: cfl dt = 0.0036529315117002988                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5392e+05 | 65536 |      2 | 1.444e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.08425045438472 (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     : 6.70 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 257.00 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (61.6%)
Info: cfl dt = 0.003652931511953606                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6090e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.4843940357255 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7671156168035157, dt = 0.003652931511953606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 260.05 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (56.6%)
Info: cfl dt = 0.003652931512224202                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5129e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.55670204796264 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7707685483154693, dt = 0.003652931512224202
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.15 us    (2.0%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 290.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (66.1%)
Info: cfl dt = 0.003652931512513124                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6639e+05 | 65536 |      2 | 1.405e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.58620550421806 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7744214798276935, dt = 0.003652931512513124
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 258.81 us  (87.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (66.3%)
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    | 3.7511e+05 | 65536 |      2 | 1.747e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.27023535964668 (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     : 6.15 us    (2.3%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 244.17 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.8%)
Info: cfl dt = 0.003652931513150356                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4080e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.45134096078188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.781727342853028, dt = 0.003652931513150356
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 241.34 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (61.4%)
Info: cfl dt = 0.003652931513501014                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1203e+05 | 65536 |      2 | 1.591e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.67776313152129 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7853802743661784, dt = 0.003652931513501014
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.5%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 254.31 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.5%)
Info: cfl dt = 0.0036529315138746983                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4209e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.71029289397352 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7890332058796794, dt = 0.0036529315138746983
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.6%)
   patch tree reduce : 2.43 us    (0.9%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 247.55 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (60.9%)
Info: cfl dt = 0.0036529315142727332                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3737e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.76284550026602 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7926861373935541, dt = 0.0036529315142727332
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 270.99 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (62.4%)
Info: cfl dt = 0.00365293151469651                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4471e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.23673287915425 (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     : 6.05 us    (2.2%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 250.84 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (60.1%)
Info: cfl dt = 0.003652931515147489                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4522e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.33951813669383 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7999920004225233, dt = 0.003652931515147489
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 259.38 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1433.00 ns (58.6%)
Info: cfl dt = 0.003652931515627198                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4215e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.72310809194069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036449319376707, dt = 0.003652931515627198
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 262.16 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.3%)
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    | 3.4762e+05 | 65536 |      2 | 1.885e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.75412623780468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8072978634532979, dt = 0.0036529315161372405
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.06 us    (2.3%)
   patch tree reduce : 1782.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 247.12 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.7%)
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.4347e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.98717254898254 (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     : 6.31 us    (2.0%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.3%)
   LB compute        : 299.64 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.1%)
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.3668e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.62482186953586 (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     : 6.49 us    (1.9%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 319.11 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (63.3%)
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.4580e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.45568433628766 (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     : 7.13 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 285.81 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.8%)
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.6244e+05 | 65536 |      2 | 1.417e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.79408907985805 (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     : 6.33 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 263.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.3%)
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.5881e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.06488145175334 (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     : 6.53 us    (2.5%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 234.74 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.4%)
Info: cfl dt = 0.003652931519934291                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5277e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.85261277030628 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292154525589558, dt = 0.003652931519934291
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 270.51 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.5%)
Info: cfl dt = 0.003652931520708361                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0221e+05 | 65536 |      2 | 1.629e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.70775693525522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328683840788901, dt = 0.003652931520708361
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 250.89 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.1%)
Info: cfl dt = 0.003652931521528602                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4298e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.88815623718635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365213155995984, dt = 0.003652931521528602
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 265.15 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (65.7%)
Info: cfl dt = 0.0036529315223974208                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4292e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.87731459651512 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.840174247121127, dt = 0.0036529315223974208
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.4%)
   patch tree reduce : 7.86 us    (2.8%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 249.28 us  (89.6%)
   LB move op cnt    : 0
   LB apply          : 4.35 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (60.5%)
Info: cfl dt = 0.0036529315233173295                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4594e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.48397722179985 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438271786435244, dt = 0.0036529315233173295
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 961.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 246.10 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.9%)
Info: cfl dt = 0.0036529315242909504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3718e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72530827755635 (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     : 6.53 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 263.70 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1922.00 ns (66.4%)
Info: cfl dt = 0.003652931525321021                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4355e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.00383879699096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8511330416911327, dt = 0.003652931525321021
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 272.67 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (61.9%)
Info: cfl dt = 0.0036529315264103974                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4397e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.08699000890252 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8547859732164537, dt = 0.0036529315264103974
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 296.85 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (67.0%)
Info: cfl dt = 0.0036529315275620603                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4269e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.83078875973344 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8584389047428641, dt = 0.0036529315275620603
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 287.17 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.9%)
Info: cfl dt = 0.003652931528779114                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4393e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0793991569245 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8620918362704262, dt = 0.003652931528779114
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 285.52 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.9%)
Info: cfl dt = 0.003652931530064796                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4223e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.73810503862438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8657447677992053, dt = 0.003652931530064796
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 262.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.38 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.5%)
Info: cfl dt = 0.003652931531422479                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3245e+05 | 65536 |      2 | 1.971e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.7097908706825 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8693976993292701, dt = 0.003652931531422479
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 287.43 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (59.8%)
Info: cfl dt = 0.0036529315328556783                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3252e+05 | 65536 |      2 | 1.971e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.72451978454215 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8730506308606926, dt = 0.0036529315328556783
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.9%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 912.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 316.34 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.06 us    (65.7%)
Info: cfl dt = 0.003652931534368053                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2423e+05 | 65536 |      2 | 2.021e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.0605635329609 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8767035623935483, dt = 0.003652931534368053
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (1.9%)
   patch tree reduce : 1923.00 ns (0.5%)
   gen split merge   : 1161.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.3%)
   LB compute        : 350.19 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.3%)
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    | 4.1791e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.85912667657541 (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     : 6.72 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 284.25 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.2%)
Info: cfl dt = 0.0036529315376457195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7250e+05 | 65536 |      2 | 1.759e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.74647081044273 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8840094254638798, dt = 0.0036529315376457195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 251.24 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.3%)
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    | 4.3839e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.96769651448588 (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     : 6.32 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 304.96 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (66.9%)
Info: cfl dt = 0.0036529315412878486                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2004e+05 | 65536 |      2 | 2.048e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.22025378428661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8913152885409447, dt = 0.0036529315412878486
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.8%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 341.53 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (68.9%)
Info: cfl dt = 0.0036529315432564224                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2061e+05 | 65536 |      2 | 2.044e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.33503617321809 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8949682200822325, dt = 0.0036529315432564224
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.73 us    (1.7%)
   patch tree reduce : 1853.00 ns (0.5%)
   gen split merge   : 771.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 992.00 ns  (0.3%)
   LB compute        : 320.85 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.34 us    (69.5%)
Info: cfl dt = 0.0036529315453294616                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0603e+05 | 65536 |      2 | 1.614e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.47378873477635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.898621151625489, dt = 0.0036529315453294616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 266.52 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (62.1%)
Info: cfl dt = 0.0036529315475117862                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2668e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.61922358291199 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9022740831708184, dt = 0.0036529315475117862
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 269.60 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.2%)
Info: cfl dt = 0.003652931549808403                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1561e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.39624192046465 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059270147183301, dt = 0.003652931549808403
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 277.66 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (61.9%)
Info: cfl dt = 0.0036529315522245156                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4197e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.68688449170794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9095799462681385, dt = 0.0036529315522245156
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 245.80 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.4%)
Info: cfl dt = 0.003652931554765526                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5583e+05 | 65536 |      2 | 1.438e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.46735433502026 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9132328778203631, dt = 0.003652931554765526
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 260.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (61.2%)
Info: cfl dt = 0.0036529315574370417                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5174e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.64657442167433 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9168858093751286, dt = 0.0036529315574370417
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.3%)
   patch tree reduce : 1753.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 243.15 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (57.5%)
Info: cfl dt = 0.0036529315602448834                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5509e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.31996336726007 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9205387409325657, dt = 0.0036529315602448834
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.1%)
   patch tree reduce : 1862.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 278.19 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.4%)
Info: cfl dt = 0.0036529315631950894                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5157e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.61278284920363 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9241916724928106, dt = 0.0036529315631950894
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.13 us    (2.8%)
   patch tree reduce : 1943.00 ns (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 229.92 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.6%)
Info: cfl dt = 0.0036529315662939257                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5617e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.53559381211134 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9278446040560058, dt = 0.0036529315662939257
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.5%)
   LB compute        : 244.51 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (59.4%)
Info: cfl dt = 0.0036529315695478888                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5256e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.81041589224846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9314975356222996, dt = 0.0036529315695478888
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.6%)
   patch tree reduce : 1682.00 ns (0.4%)
   gen split merge   : 1282.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.3%)
   LB compute        : 395.90 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.7%)
Info: cfl dt = 0.0036529315729637146                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5234e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.76760366574968 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9351504671918476, dt = 0.0036529315729637146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 245.32 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (7.4%)
Info: cfl dt = 0.0036529315765483844                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3903e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.09711013697178 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388033987648113, dt = 0.0036529315765483844
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.7%)
   patch tree reduce : 1832.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 235.62 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (60.8%)
Info: cfl dt = 0.0036529315803091357                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5272e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.84361995971896 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9424563303413597, dt = 0.0036529315803091357
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.7%)
   patch tree reduce : 1623.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 229.86 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
Info: cfl dt = 0.0036529315842534636                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5637e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.57578748371083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9461092619216688, dt = 0.0036529315842534636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 277.32 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.6%)
Info: cfl dt = 0.003652931588389134                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5975e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.25491756277532 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9497621935059223, dt = 0.003652931588389134
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.6%)
   patch tree reduce : 2.28 us    (0.9%)
   gen split merge   : 1142.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 231.17 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.4%)
Info: cfl dt = 0.003652931592724187                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5495e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.29105128931054 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9534151250943114, dt = 0.003652931592724187
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.5%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 235.46 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.7%)
Info: cfl dt = 0.0036529315972669463                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5485e+05 | 65536 |      2 | 1.441e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.27033337627189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9570680566870355, dt = 0.0036529315972669463
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.1%)
   patch tree reduce : 1832.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 285.03 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (65.0%)
Info: cfl dt = 0.0036529316020260296                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5696e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.694906463845 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9607209882843025, dt = 0.0036529316020260296
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 271.42 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.3%)
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.5885e+05 | 65536 |      2 | 1.428e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.07327611826078 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9643739198863286, dt = 0.0036529316070103533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.6%)
   patch tree reduce : 1802.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 233.57 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.8%)
Info: cfl dt = 0.0036529316122291414                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5329e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.95865461531112 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9680268514933389, dt = 0.0036529316122291414
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 264.01 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (62.1%)
Info: cfl dt = 0.003652931617691937                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4982e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.26183990212287 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.971679783105568, dt = 0.003652931617691937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.7%)
   patch tree reduce : 1692.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 228.28 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (59.9%)
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.5605e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.51195950531101 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.97533271472326, dt = 0.003652931623408606
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 275.01 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (59.7%)
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.5537e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.3745021864197 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789856463466686, dt = 0.00365293162938935
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.2%)
   patch tree reduce : 1872.00 ns (0.6%)
   gen split merge   : 1271.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 291.02 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (66.9%)
Info: cfl dt = 0.0036529316356447143                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5163e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.62403567546188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.982638577976058, dt = 0.0036529316356447143
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 275.69 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.6%)
Info: cfl dt = 0.003652931642185595                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5711e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.72374401809196 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9862915096117028, dt = 0.003652931642185595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 284.41 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.7%)
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.4996e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.29006236904856 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9899444412538884, dt = 0.003652931649023252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.9%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 296.66 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (63.2%)
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.5279e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.85774560146787 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9935973729029116, dt = 0.003652931656169317
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 285.58 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (61.0%)
Info: cfl dt = 0.003652931663635801                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4351e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.99574068227311 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9972503045590809, dt = 0.003652931663635801
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.6%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 237.17 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (58.5%)
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.5520e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34148186641922 (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     : 6.30 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 270.64 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (65.0%)
Info: cfl dt = 0.0036529316795800423                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5362e+05 | 65536 |      2 | 1.445e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.02470609735381 (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     : 6.85 us    (2.7%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 228.40 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.7%)
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.3723e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.73489634497444 (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     : 6.58 us    (2.6%)
   patch tree reduce : 1913.00 ns (0.8%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 233.10 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.6%)
Info: cfl dt = 0.0036529316969600724                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5249e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.79772784014628 (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     : 6.45 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 232.35 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.4%)
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.5593e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.48692250283078 (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     : 6.65 us    (2.6%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 233.37 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (62.3%)
Info: cfl dt = 0.003652931715886745                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9376e+05 | 65536 |      2 | 1.664e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.01343798158527 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0191678946649987, dt = 0.003652931715886745
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.5%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 257.47 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (62.1%)
Info: cfl dt = 0.0036529317259666435                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5628e+05 | 65536 |      2 | 1.436e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.55786032039865 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0228208263808853, dt = 0.0036529317259666435
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (2.7%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 239.88 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.6%)
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    | 4.5541e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.38282906230016 (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     : 6.77 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 249.51 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (61.2%)
Info: cfl dt = 0.003652931747436743                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5155e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.60882333389623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.03012668984333, dt = 0.003652931747436743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 16.50 us   (5.4%)
   LB compute        : 265.50 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (61.6%)
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.1329e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.93124959854784 (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     : 6.76 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 278.17 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.1%)
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.5131e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.56093005097506 (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     : 6.66 us    (2.7%)
   patch tree reduce : 1733.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 229.80 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.3%)
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.3399e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.0854144142335 (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     : 6.48 us    (2.3%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 253.99 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (59.2%)
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.1807e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.89149394097595 (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     : 6.50 us    (2.0%)
   patch tree reduce : 1802.00 ns (0.5%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 305.61 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.3%)
Info: cfl dt = 0.0036529318095327797                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0107e+05 | 65536 |      2 | 1.634e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.47988361233898 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.048391348699633, dt = 0.0036529318095327797
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 270.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
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.1771e+05 | 65536 |      2 | 1.569e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.81857897894209 (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     : 6.23 us    (2.2%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 259.55 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.3%)
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.1867e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.01005464509953 (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     : 6.78 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 256.63 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (64.0%)
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.5311e+05 | 65536 |      2 | 1.446e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.92202925607407 (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     : 7.00 us    (2.2%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 302.18 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (67.1%)
Info: cfl dt = 0.0036529318690738575                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5506e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.31330957308982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0630030760241085, dt = 0.0036529318690738575
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1652.00 ns (0.5%)
   LB compute        : 291.56 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.1%)
Info: cfl dt = 0.003652931885494918                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5025e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.34836694909443 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0666560078931824, dt = 0.003652931885494918
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 256.16 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (59.0%)
Info: cfl dt = 0.003652931902573315                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5538e+05 | 65536 |      2 | 1.439e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.37758684615793 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0703089397786774, dt = 0.003652931902573315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 271.00 us  (87.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.2%)
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.5591e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.48286146305861 (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     : 6.87 us    (2.4%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 266.50 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.0%)
Info: cfl dt = 0.0036529319387931555                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4961e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.21844781144034 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0776148036015822, dt = 0.0036529319387931555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 280.08 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.7%)
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.4815e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.92716179709201 (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     : 7.22 us    (2.4%)
   patch tree reduce : 1812.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 280.45 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.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.5158e+05 | 65536 |      2 | 1.451e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.6139409275255 (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     : 6.75 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 246.30 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.4%)
Info: cfl dt = 0.0036529319986391318                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4405e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.10296433671347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.088573599476279, dt = 0.0036529319986391318
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.5%)
   patch tree reduce : 1813.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 245.27 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.7%)
Info: cfl dt = 0.0036529320201591554                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4481e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.25709309645673 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0922265314749182, dt = 0.0036529320201591554
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 316.90 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.2%)
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.3514e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.31612463773445 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0958794634950775, dt = 0.003652932042508734
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 275.25 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.1%)
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    | 3.5094e+05 | 65536 |      2 | 1.867e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.41916882957163 (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     : 6.08 us    (1.8%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 321.96 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (65.2%)
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    | 3.9019e+05 | 65536 |      2 | 1.680e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.29578830731747 (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     : 6.85 us    (2.4%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 258.13 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
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    | 3.9679e+05 | 65536 |      2 | 1.652e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.62008235713883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1068382596931083, dt = 0.003652932114812694
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.5%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 245.01 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (57.0%)
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.4270e+05 | 65536 |      2 | 1.480e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.83367317133627 (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     : 6.78 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 265.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (62.1%)
Info: cfl dt = 0.003652932167685963                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3764e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.81770958963655 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1141441239486831, dt = 0.003652932167685963
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 266.29 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.9%)
Info: cfl dt = 0.0036529321956153197                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6421e+05 | 65536 |      2 | 1.799e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.08298364142102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.117797056116369, dt = 0.0036529321956153197
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 288.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (60.9%)
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.4657e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.60856167694968 (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     : 6.92 us    (2.6%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.5%)
   LB compute        : 241.18 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.0%)
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    | 3.8817e+05 | 65536 |      2 | 1.688e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.88990612061008 (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     : 7.07 us    (2.5%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 254.10 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.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    | 3.9086e+05 | 65536 |      2 | 1.677e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.42973560416189 (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     : 6.12 us    (2.2%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 252.32 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1453.00 ns (59.5%)
Info: cfl dt = 0.0036529323180443936                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2636e+05 | 65536 |      2 | 2.008e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.4888809276977 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1324087850769495, dt = 0.0036529323180443936
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.00 us    (1.8%)
   patch tree reduce : 1743.00 ns (0.5%)
   gen split merge   : 561.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 312.85 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.2%)
Info: cfl dt = 0.0036529323515011145                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1920e+05 | 65536 |      2 | 2.053e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.05065135738612 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1360617173949938, dt = 0.0036529323515011145
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 299.20 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (64.8%)
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.4102e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.49656919647964 (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     : 6.66 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 273.65 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.4%)
Info: cfl dt = 0.0036529324220866545                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2018e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.31355342575466 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1433675821326643, dt = 0.0036529324220866545
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.1%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 287.75 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.9%)
Info: cfl dt = 0.003652932459291418                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4705e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.70656097479137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.147020514554751, dt = 0.003652932459291418
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 272.18 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.7%)
Info: cfl dt = 0.0036529324978230833                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0458e+05 | 65536 |      2 | 1.620e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.18404097404887 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1506734470140423, dt = 0.0036529324978230833
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 284.04 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (61.5%)
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.4114e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.52072895451322 (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     : 6.20 us    (2.0%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 281.77 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (62.8%)
Info: cfl dt = 0.00365293257902979                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4710e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.71621749364857 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1579793120495876, dt = 0.00365293257902979
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.0%)
   patch tree reduce : 1892.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 301.25 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.9%)
Info: cfl dt = 0.0036529326217887123                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4074e+05 | 65536 |      2 | 1.923e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.37413450336663 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1616322446286174, dt = 0.0036529326217887123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 263.11 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (64.1%)
Info: cfl dt = 0.0036529326660423396                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3671e+05 | 65536 |      2 | 1.946e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.56478000113526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.165285177250406, dt = 0.0036529326660423396
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 265.44 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.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    | 3.0483e+05 | 65536 |      2 | 2.150e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.16855811249639 (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     : 6.62 us    (2.0%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 302.69 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (63.2%)
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.2400e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.08012520964495 (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     : 7.00 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 253.76 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (59.0%)
Info: cfl dt = 0.0036529328082226804                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4659e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.61299094986826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.176243975387497, dt = 0.0036529328082226804
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 1763.00 ns (0.5%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.4%)
   LB compute        : 306.17 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (66.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.3450e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.18742775378968 (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     : 6.63 us    (2.6%)
   patch tree reduce : 2.23 us    (0.9%)
   gen split merge   : 1162.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 230.47 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1952.00 ns (64.7%)
Info: cfl dt = 0.0036529329113297927                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3582e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45260946166475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1835498410546315, dt = 0.0036529329113297927
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.6%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 239.64 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.6%)
Info: cfl dt = 0.003652932965526619                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4311e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.91568907085673 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1872027739659612, dt = 0.003652932965526619
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.6%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 238.08 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (64.6%)
Info: cfl dt = 0.0036529330215537984                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4455e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.20362970154858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1908557069314878, dt = 0.0036529330215537984
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 272.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.3%)
Info: cfl dt = 0.0036529330794639724                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3853e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.99628087710077 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1945086399530416, dt = 0.0036529330794639724
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.0%)
   patch tree reduce : 1772.00 ns (0.5%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 301.45 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (62.0%)
Info: cfl dt = 0.0036529331393110255                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0946e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.16336634248566 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1981615730325055, dt = 0.0036529331393110255
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.4%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 257.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1232.00 ns (57.0%)
Info: cfl dt = 0.0036529332011500976                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3577e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.44230791276138 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018145061718164, dt = 0.0036529332011500976
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 259.80 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (45.1%)
Info: cfl dt = 0.003652933265037614                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3123e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.53091846589375 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2054674393729665, dt = 0.003652933265037614
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (1.8%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1382.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 331.06 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (60.2%)
Info: cfl dt = 0.003652933331031303                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4259e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.81147603256495 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2091203726380042, dt = 0.003652933331031303
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.4%)
   LB compute        : 289.70 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (67.3%)
Info: cfl dt = 0.003652933399190225                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4642e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.57990063384509 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2127733059690355, dt = 0.003652933399190225
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.76 us   (7.8%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 240.77 us  (86.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.7%)
Info: cfl dt = 0.0036529334695747854                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3839e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.96793964800737 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2164262393682257, dt = 0.0036529334695747854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.5%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.5%)
   LB compute        : 254.24 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (67.2%)
Info: cfl dt = 0.003652933542246769                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3992e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.27574536606812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2200791728378004, dt = 0.003652933542246769
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 238.97 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.9%)
Info: cfl dt = 0.0036529336172693577                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5593e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.48747534622632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2237321063800473, dt = 0.0036529336172693577
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 271.34 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.2%)
Info: cfl dt = 0.0036529336947071552                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3897e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.0836359245745 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2273850399973165, dt = 0.0036529336947071552
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 263.36 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.6%)
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    | 3.5643e+05 | 65536 |      2 | 1.839e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.5209741421041 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2310379736920236, dt = 0.0036529337746262123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (1.9%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 324.95 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.4%)
Info: cfl dt = 0.003652933857094048                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3234e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.75467680529145 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.23469090746665, dt = 0.003652933857094048
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 260.03 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.4%)
Info: cfl dt = 0.003652933942179682                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3890e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.06993537361764 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.238343841323744, dt = 0.003652933942179682
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (1.9%)
   patch tree reduce : 1772.00 ns (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 299.06 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (62.1%)
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    | 4.2108e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.49387145789996 (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.64 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 276.89 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.1%)
Info: cfl dt = 0.00365293412048803                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3848e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.98516664208404 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2456497092958771, dt = 0.00365293412048803
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 266.81 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (53.9%)
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.3475e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.23846287708461 (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     : 6.98 us    (2.4%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 263.42 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (58.3%)
Info: cfl dt = 0.0036529343101342525                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3693e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67537654483786 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529555776302217, dt = 0.0036529343101342525
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (1.8%)
   patch tree reduce : 1692.00 ns (0.4%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1573.00 ns (0.4%)
   LB compute        : 357.21 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (68.4%)
Info: cfl dt = 0.003652934409398217                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1954e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.18568443695668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.256608511940356, dt = 0.003652934409398217
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.7%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 235.80 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (56.5%)
Info: cfl dt = 0.003652934511726896                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2347e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.97484144234636 (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     : 6.74 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 253.18 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.3%)
Info: cfl dt = 0.003652934617200489                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4454e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.20298855187322 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2639143808614812, dt = 0.003652934617200489
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.15 us   (5.2%)
   patch tree reduce : 1782.00 ns (0.7%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 240.50 us  (89.2%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (62.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.2416e+05 | 65536 |      2 | 2.022e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.0459737169051 (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     : 6.70 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 281.91 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.0%)
Info: cfl dt = 0.0036529348379117444                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0966e+05 | 65536 |      2 | 2.116e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.135948072621545 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2712202502045826, dt = 0.0036529348379117444
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.6%)
   patch tree reduce : 1953.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 357.27 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.9%)
Info: cfl dt = 0.0036529349533184216                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2802e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.88711330692595 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2748731850424944, dt = 0.0036529349533184216
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.8%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1542.00 ns (0.6%)
   LB compute        : 229.67 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.7%)
Info: cfl dt = 0.0036529350722080993                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2252e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.7836702146256 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.278526119995813, dt = 0.0036529350722080993
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 273.36 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (66.4%)
Info: cfl dt = 0.003652935194669759                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3856e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.00158112256887 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.282179055068021, dt = 0.003652935194669759
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.4%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 267.24 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.7%)
Info: cfl dt = 0.0036529353207942223                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4475e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.24513279759152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2858319902626907, dt = 0.0036529353207942223
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 273.33 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.7%)
Info: cfl dt = 0.003652935450674182                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4404e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.10213546559437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2894849255834848, dt = 0.003652935450674182
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.9%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 309.82 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (70.1%)
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    | 3.2816e+05 | 65536 |      2 | 1.997e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.84868383464737 (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     : 6.44 us    (2.0%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 303.13 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.26 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (62.9%)
Info: cfl dt = 0.0036529357220808647                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3659e+05 | 65536 |      2 | 1.947e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.54067216713932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2967907966185632, dt = 0.0036529357220808647
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1802.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 265.08 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (56.9%)
Info: cfl dt = 0.003652935863802572                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0756e+05 | 65536 |      2 | 1.608e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.78141625526916 (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     : 6.40 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 262.88 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (55.7%)
Info: cfl dt = 0.0036529360096698                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2167e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.61206077279921 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3040966682044468, dt = 0.0036529360096698
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.7%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.5%)
   LB compute        : 237.78 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (58.7%)
Info: cfl dt = 0.0036529361597850154                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4342e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.97659737966461 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3077496042141166, dt = 0.0036529361597850154
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.4%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 251.95 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.7%)
Info: cfl dt = 0.003652936314252729                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3456e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.19998149733789 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3114025403739016, dt = 0.003652936314252729
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.6%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 247.96 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (61.5%)
Info: cfl dt = 0.0036529364731795267                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4368e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.02982038698347 (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     : 6.51 us    (2.5%)
   patch tree reduce : 1922.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 243.44 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (56.5%)
Info: cfl dt = 0.0036529366366741018                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3109e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.5026606039353 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3187084131613338, dt = 0.0036529366366741018
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 251.73 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.6%)
Info: cfl dt = 0.0036529368048472764                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4305e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.9027556345486 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.322361349798008, dt = 0.0036529368048472764
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 317.47 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.9%)
Info: cfl dt = 0.0036529369778120443                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4120e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.5328088100501 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3260142866028553, dt = 0.0036529369778120443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 262.61 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.9%)
Info: cfl dt = 0.0036529371556835943                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2359e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.99902368574168 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3296672235806672, dt = 0.0036529371556835943
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 270.71 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (65.4%)
Info: cfl dt = 0.003652937338579345                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1788e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.85355826366037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3333201607363507, dt = 0.003652937338579345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 243.72 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.0%)
Info: cfl dt = 0.0036529375266189743                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3135e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.55451871060198 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3369730980749301, dt = 0.0036529375266189743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 244.19 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.6%)
Info: cfl dt = 0.0036529377199244558                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3860e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.00979836042244 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3406260356015491, dt = 0.0036529377199244558
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 284.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (60.9%)
Info: cfl dt = 0.003652937918620086                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3654e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.59663153494826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3442789733214735, dt = 0.003652937918620086
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.4%)
   patch tree reduce : 1802.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 247.88 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 0.0036529381228325186                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1858e+05 | 65536 |      2 | 2.057e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.926234182856824 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3479319112400936, dt = 0.0036529381228325186
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (1.6%)
   patch tree reduce : 2.16 us    (0.5%)
   gen split merge   : 1242.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 397.17 us  (94.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (63.8%)
Info: cfl dt = 0.003652938332690799                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1599e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.47290411497428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.351584849362926, dt = 0.003652938332690799
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.0%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 294.10 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.6%)
Info: cfl dt = 0.0036529385483263952                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5236e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.77101645580572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.355237787695617, dt = 0.0036529385483263952
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.3%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 259.70 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (57.3%)
Info: cfl dt = 0.0036529387698732317                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5736e+05 | 65536 |      2 | 1.433e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.77426847472736 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3588907262439434, dt = 0.0036529387698732317
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.7%)
   patch tree reduce : 1893.00 ns (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 229.78 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (59.2%)
Info: cfl dt = 0.0036529389974677222                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5612e+05 | 65536 |      2 | 1.437e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.5253493794464 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3625436650138165, dt = 0.0036529389974677222
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.6%)
   LB compute        : 232.83 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.2%)
Info: cfl dt = 0.0036529392312488083                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0824e+05 | 65536 |      2 | 1.605e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.91898183350648 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3661966040112843, dt = 0.0036529392312488083
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.3%)
   patch tree reduce : 1802.00 ns (0.7%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 252.61 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (59.9%)
Info: cfl dt = 0.0036529394713579848                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7142e+05 | 65536 |      2 | 1.764e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.5303854290418 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.369849543242533, dt = 0.0036529394713579848
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.4%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 251.12 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.59 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.3%)
Info: cfl dt = 0.003652939717939343                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4216e+05 | 65536 |      2 | 1.482e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.72415972216915 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.373502482713891, dt = 0.003652939717939343
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.5%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 236.37 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.4%)
Info: cfl dt = 0.003652939971139598                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8733e+05 | 65536 |      2 | 1.692e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.72270733471328 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3771554224318305, dt = 0.003652939971139598
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 1742.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 264.01 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.3%)
Info: cfl dt = 0.0036529402311081304                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3060e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.40441152599541 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3808083624029701, dt = 0.0036529402311081304
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.6%)
   patch tree reduce : 1692.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1473.00 ns (0.6%)
   LB compute        : 230.76 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.5%)
Info: cfl dt = 0.0036529404979970146                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7563e+05 | 65536 |      2 | 1.745e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.37376233469303 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3844613026340782, dt = 0.0036529404979970146
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 269.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.3%)
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.1124e+05 | 65536 |      2 | 1.594e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.52069056280294 (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     : 6.70 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1552.00 ns (0.5%)
   LB compute        : 279.30 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.19 us    (70.2%)
Info: cfl dt = 0.003652941053157839                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4786e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.86800829944127 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3917671839040362, dt = 0.003652941053157839
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.6%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 228.41 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.9%)
Info: cfl dt = 0.003652941341747736                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7260e+05 | 65536 |      2 | 1.759e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.7657968952444 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.395420124957194, dt = 0.003652941341747736
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 264.43 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.6%)
Info: cfl dt = 0.0036529416378939675                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4306e+05 | 65536 |      2 | 1.910e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.83885041698038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3990730662989417, dt = 0.0036529416378939675
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 276.15 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.9%)
Info: cfl dt = 0.003652941941762631                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2326e+05 | 65536 |      2 | 2.027e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.86541418215299 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027260079368356, dt = 0.003652941941762631
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.16 us    (1.8%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 319.98 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (65.2%)
Info: cfl dt = 0.0036529422535227355                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3261e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.8081840764195 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4063789498785981, dt = 0.0036529422535227355
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 297.68 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
Info: cfl dt = 0.00365294257334624                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1597e+05 | 65536 |      2 | 1.576e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.46893904978877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4100318921321209, dt = 0.00365294257334624
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.3%)
   patch tree reduce : 1932.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.5%)
   LB compute        : 259.72 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (58.2%)
Info: cfl dt = 0.0036529429014080903                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4114e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.51915040262222 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4136848347054671, dt = 0.0036529429014080903
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.5%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 259.36 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.0%)
Info: cfl dt = 0.003652943237886257                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5520e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.34216383714602 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4173377776068752, dt = 0.003652943237886257
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 255.23 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (62.3%)
Info: cfl dt = 0.0036529435829617727                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4914e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.12539634799188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4209907208447614, dt = 0.0036529435829617727
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.5%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1322.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1231.00 ns (0.5%)
   LB compute        : 238.58 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.9%)
Info: cfl dt = 0.003652943936818769                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5306e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.91134387795562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4246436644277232, dt = 0.003652943936818769
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 264.88 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
Info: cfl dt = 0.0036529442996445158                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5082e+05 | 65536 |      2 | 1.454e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.46190666952705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4282966083645419, dt = 0.0036529442996445158
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 275.78 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (64.7%)
Info: cfl dt = 0.0036529446716294595                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5241e+05 | 65536 |      2 | 1.449e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.7824482734853 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4319495526641863, dt = 0.0036529446716294595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.6%)
   LB compute        : 244.53 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.5%)
Info: cfl dt = 0.003652945052967262                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4106e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.50420114532565 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4356024973358157, dt = 0.003652945052967262
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.0%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 318.22 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.2%)
Info: cfl dt = 0.003652945443854837                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4092e+05 | 65536 |      2 | 1.486e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.47523435382011 (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     : 6.58 us    (2.2%)
   patch tree reduce : 1723.00 ns (0.6%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 283.03 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (62.9%)
Info: cfl dt = 0.0036529458444923947                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3806e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.90272924495858 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4429083878326376, dt = 0.0036529458444923947
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 270.52 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.46 us    (69.5%)
Info: cfl dt = 0.003652946255083473                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3759e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.80781158021455 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4465613336771301, dt = 0.003652946255083473
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 258.30 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (63.7%)
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.4019e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.32989374209417 (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     : 6.08 us    (2.0%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 289.86 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.1%)
Info: cfl dt = 0.003652947106957252                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3788e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.86672510951956 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4538672266080486, dt = 0.003652947106957252
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 283.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.2%)
Info: cfl dt = 0.0036529475486640514                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3730e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.74951442100827 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4575201737150059, dt = 0.0036529475486640514
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 267.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.8%)
Info: cfl dt = 0.0036529480011726484                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3291e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.8697447869698 (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     : 7.05 us    (2.0%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 321.33 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.1%)
Info: cfl dt = 0.0036529484647038436                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9678e+05 | 65536 |      2 | 1.652e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.61959954431578 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4648260692648425, dt = 0.0036529484647038436
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.6%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 229.28 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (62.8%)
Info: cfl dt = 0.0036529489394820083                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4022e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.3349922380266 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4684790177295464, dt = 0.0036529489394820083
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.2%)
   patch tree reduce : 1772.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 266.21 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (59.8%)
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.3696e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6821907688063 (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     : 6.96 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 292.30 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.2%)
Info: cfl dt = 0.00365294992369485                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3696e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6809496087821 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4757849160947636, dt = 0.00365294992369485
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 270.97 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1463.00 ns (60.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    | 3.9720e+05 | 65536 |      2 | 1.650e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.70315341424558 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4794378660184584, dt = 0.0036529504335965075
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.13 us    (2.3%)
   patch tree reduce : 1813.00 ns (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 243.85 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (59.6%)
Info: cfl dt = 0.0036529509556791806                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4452e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19872086633562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4830908164520549, dt = 0.0036529509556791806
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 239.85 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
Info: cfl dt = 0.0036529514901857247                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6459e+05 | 65536 |      2 | 1.798e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.15981342075041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.486743767407734, dt = 0.0036529514901857247
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 270.79 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (65.1%)
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.4905e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.10655223255232 (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     : 6.48 us    (2.2%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 270.48 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (59.0%)
Info: cfl dt = 0.0036529525974610174                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3894e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.07914328858772 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4940496709352826, dt = 0.0036529525974610174
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.6%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1222.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 233.66 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (60.6%)
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    | 3.6296e+05 | 65536 |      2 | 1.806e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.83350842368472 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4977026235327437, dt = 0.0036529531707347636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 248.22 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.5%)
Info: cfl dt = 0.003652953757442463                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4487e+05 | 65536 |      2 | 1.473e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.26979937691414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5013555767034785, dt = 0.003652953757442463
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.5%)
   patch tree reduce : 1713.00 ns (0.7%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 236.13 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (61.4%)
Info: cfl dt = 0.003652954357846513                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3757e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.80421502552102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.505008530460921, dt = 0.003652954357846513
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 244.88 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (63.9%)
Info: cfl dt = 0.0036529549722133453                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3792e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.87410701669123 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5086614848187676, dt = 0.0036529549722133453
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 282.26 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.6%)
Info: cfl dt = 0.0036529556008134743                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4240e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.77312347508278 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.512314439790981, dt = 0.0036529556008134743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.4%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 267.02 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.7%)
Info: cfl dt = 0.003652956243921535                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4239e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.77168616544895 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5159673953917945, dt = 0.003652956243921535
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.6%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 227.63 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.9%)
Info: cfl dt = 0.003652956901816333                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4087e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.46688643133959 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.519620351635716, dt = 0.003652956901816333
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 1732.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 265.96 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (63.1%)
Info: cfl dt = 0.003652957574780884                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5275e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.85037882569834 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5232733085375325, dt = 0.003652957574780884
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.3%)
   patch tree reduce : 1743.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 271.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (60.4%)
Info: cfl dt = 0.003652958263102461                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4934e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.16506098969298 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269262661123133, dt = 0.003652958263102461
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.96 us    (2.0%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 280.05 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (59.6%)
Info: cfl dt = 0.003652958967072636                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4564e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.42307718497509 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5305792243754157, dt = 0.003652958967072636
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.03 us    (2.1%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 263.35 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.4%)
Info: cfl dt = 0.003652959686987328                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4466e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.22686524877773 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5342321833424883, dt = 0.003652959686987328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (1.8%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 321.47 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (65.0%)
Info: cfl dt = 0.003652960423146844                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4042e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.37626863044042 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5378851430294758, dt = 0.003652960423146844
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 261.61 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (56.3%)
Info: cfl dt = 0.0036529611758559294                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4523e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.3420132334154 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5415381034526225, dt = 0.0036529611758559294
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 1622.00 ns (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 261.10 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (58.8%)
Info: cfl dt = 0.0036529619454238093                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4566e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.42781991273783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5451910646284785, dt = 0.0036529619454238093
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.2%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 293.69 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.5%)
Info: cfl dt = 0.0036529627321642342                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5053e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.40525811394038 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5488440265739023, dt = 0.0036529627321642342
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 269.40 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.8%)
Info: cfl dt = 0.0036529635363955278                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5267e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.83436510277593 (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     : 6.64 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 284.07 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.5%)
Info: cfl dt = 0.003652964358440631                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3886e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.06393169243526 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.556149952842462, dt = 0.003652964358440631
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 1832.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 264.01 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.4%)
Info: cfl dt = 0.003652965198627152                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2101e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.48208446465301 (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     : 6.58 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 245.72 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.6%)
Info: cfl dt = 0.003652966057287404                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3128e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.54302280807424 (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     : 6.58 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 268.24 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (66.8%)
Info: cfl dt = 0.0036529669347584648                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4450e+05 | 65536 |      2 | 1.474e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.19440641828216 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5671088484568174, dt = 0.0036529669347584648
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 1942.00 ns (0.7%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 247.69 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (63.4%)
Info: cfl dt = 0.0036529678313822075                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0075e+05 | 65536 |      2 | 1.635e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.41638638144028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5707618153915759, dt = 0.0036529678313822075
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.3%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 259.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (55.5%)
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.7295e+05 | 65536 |      2 | 1.757e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.8369955381144 (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     : 6.15 us    (2.3%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 250.26 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (64.0%)
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.1696e+05 | 65536 |      2 | 2.068e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.60160683510858 (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     : 6.19 us    (1.6%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.3%)
   LB compute        : 373.45 us  (94.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (65.2%)
Info: cfl dt = 0.003652970639661367                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3934e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.15894121864862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5817207216539428, dt = 0.003652970639661367
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (1.8%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 324.08 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.0%)
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    | 3.3260e+05 | 65536 |      2 | 1.970e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.73979085219706 (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     : 6.29 us    (2.3%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 982.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 246.82 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (56.6%)
Info: cfl dt = 0.003652972614099115                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3917e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.12621515386674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5890266639100166, dt = 0.003652972614099115
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.3%)
   patch tree reduce : 1722.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 251.45 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (64.1%)
Info: cfl dt = 0.0036529736330933532                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3943e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.1778374121788 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5926796365241156, dt = 0.0036529736330933532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.5%)
   LB compute        : 267.69 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.9%)
Info: cfl dt = 0.0036529746737718975                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4565e+05 | 65536 |      2 | 1.471e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.42540173660308 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5963326101572088, dt = 0.0036529746737718975
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 265.26 us  (88.3%)
   LB move op cnt    : 0
   LB apply          : 16.75 us   (5.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
Info: cfl dt = 0.00365297573651676                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4884e+05 | 65536 |      2 | 1.460e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.06502882602797 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5999855848309807, dt = 0.00365297573651676
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 253.61 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (65.1%)
Info: cfl dt = 0.003652976821715189                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5289e+05 | 65536 |      2 | 1.447e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.87929314157208 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036385605674974, dt = 0.003652976821715189
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.6%)
   LB compute        : 247.49 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.9%)
Info: cfl dt = 0.003652977929759713                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5055e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.40915529728998 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6072915373892127, dt = 0.003652977929759713
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 1892.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 268.54 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (60.3%)
Info: cfl dt = 0.0036529790610481915                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5204e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.707257794525 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109445153189723, dt = 0.0036529790610481915
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1221.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 248.96 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (58.4%)
Info: cfl dt = 0.003652980215983861                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5777e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.85887895058632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145974943800205, dt = 0.003652980215983861
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.6%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 242.33 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.0%)
Info: cfl dt = 0.0036529813949753892                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2689e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.66151987932739 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182504745960045, dt = 0.0036529813949753892
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1572.00 ns (0.6%)
   LB compute        : 259.86 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (61.8%)
Info: cfl dt = 0.0036529825984369197                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5014e+05 | 65536 |      2 | 1.456e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.32788273464614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.62190345599098, dt = 0.0036529825984369197
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.3%)
   patch tree reduce : 1622.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 260.31 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.8%)
Info: cfl dt = 0.003652983826788123                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5050e+05 | 65536 |      2 | 1.455e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.39870456758567 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255564385894168, dt = 0.003652983826788123
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 259.81 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (56.3%)
Info: cfl dt = 0.003652985080454245                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5953e+05 | 65536 |      2 | 1.426e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.21147022171718 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292094224162048, dt = 0.003652985080454245
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 300.45 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (61.5%)
Info: cfl dt = 0.00365298635986616                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1793e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.86336675139414 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6328624074966591, dt = 0.00365298635986616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 243.22 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (56.3%)
Info: cfl dt = 0.003652987665460414                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2554e+05 | 65536 |      2 | 2.013e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.32395324090399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6365153938565253, dt = 0.003652987665460414
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 307.13 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (68.7%)
Info: cfl dt = 0.0036529889976792823                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6802e+05 | 65536 |      2 | 1.400e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.91582467391095 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401683815219859, dt = 0.0036529889976792823
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.6%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 230.41 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (49.8%)
Info: cfl dt = 0.003652990356970816                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8247e+05 | 65536 |      2 | 1.713e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.7487683448009 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6438213705196651, dt = 0.003652990356970816
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.4%)
   patch tree reduce : 1773.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 255.35 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.3%)
Info: cfl dt = 0.003652991743788891                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.7099e+05 | 65536 |      2 | 1.391e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 94.51015545660061 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.647474360876636, dt = 0.003652991743788891
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.6%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 240.02 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (56.8%)
Info: cfl dt = 0.0036529931585932616                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4507e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.3108033483084 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511273526204249, dt = 0.0036529931585932616
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.4%)
   patch tree reduce : 1742.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 238.96 us  (86.6%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (62.1%)
Info: cfl dt = 0.003652994601849607                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6704e+05 | 65536 |      2 | 1.403e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.71801546176081 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6547803457790182, dt = 0.003652994601849607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 263.75 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1503.00 ns (58.4%)
Info: cfl dt = 0.003652996074029587                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6567e+05 | 65536 |      2 | 1.792e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.3766189515133 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6584333403808678, dt = 0.003652996074029587
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 265.37 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (60.8%)
Info: cfl dt = 0.0036529975756108887                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6003e+05 | 65536 |      2 | 1.425e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.31165510800666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6620863364548975, dt = 0.0036529975756108887
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 21.37 us   (5.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1301.00 ns (0.4%)
   LB compute        : 325.59 us  (89.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.5%)
Info: cfl dt = 0.003652999107077279                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5246e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.79272943396707 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6657393340305084, dt = 0.003652999107077279
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.7%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.6%)
   LB compute        : 235.06 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.6%)
Info: cfl dt = 0.0036530006689186587                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6354e+05 | 65536 |      2 | 1.414e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.0158238443776 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6693923331375857, dt = 0.0036530006689186587
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.3%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 274.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (62.9%)
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    | 3.2939e+05 | 65536 |      2 | 1.990e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.09684680084908 (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     : 6.77 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 264.93 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.6%)
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    | 3.2569e+05 | 65536 |      2 | 2.012e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.3537304843302 (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     : 6.90 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 320.12 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (64.0%)
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.0473e+05 | 65536 |      2 | 1.619e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.21634011750604 (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     : 6.47 us    (2.2%)
   patch tree reduce : 1802.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 267.75 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (64.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.6383e+05 | 65536 |      2 | 1.413e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.07481844369075 (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     : 6.64 us    (2.4%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 259.38 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (62.6%)
Info: cfl dt = 0.003653008951332481                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1824e+05 | 65536 |      2 | 2.059e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.86000131226819 (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     : 6.88 us    (1.8%)
   patch tree reduce : 1933.00 ns (0.5%)
   gen split merge   : 1251.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 353.68 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.2%)
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    | 3.2337e+05 | 65536 |      2 | 2.027e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.89018401344681 (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     : 6.48 us    (1.8%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 335.75 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.2%)
Info: cfl dt = 0.0036530124947707523                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2260e+05 | 65536 |      2 | 2.032e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.73423141973603 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6949633723829807, dt = 0.0036530124947707523
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 300.89 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (64.3%)
Info: cfl dt = 0.0036530143180011                                        [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5712e+05 | 65536 |      2 | 1.434e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.72856195669678 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6986163848777514, dt = 0.0036530143180011
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 267.29 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (60.9%)
Info: cfl dt = 0.0036530161762999263                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2685e+05 | 65536 |      2 | 2.005e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.58862349368003 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7022693991957525, dt = 0.0036530161762999263
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (1.9%)
   patch tree reduce : 1912.00 ns (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.4%)
   LB compute        : 312.41 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.1%)
Info: cfl dt = 0.00365301807022128                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5148e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.59653265317023 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7059224153720525, dt = 0.00365301807022128
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 273.09 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.3%)
Info: cfl dt = 0.0036530200003259124                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5518e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.33922114311932 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7095754334422737, dt = 0.0036530200003259124
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 254.06 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (60.4%)
Info: cfl dt = 0.003653021967181332                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5142e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.5847775877763 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7132284534425997, dt = 0.003653021967181332
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.7%)
   patch tree reduce : 1783.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 241.33 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (60.8%)
Info: cfl dt = 0.003653023971361851                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4264e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.82213553241607 (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     : 6.84 us    (2.7%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 229.47 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.2%)
Info: cfl dt = 0.003653026013448643                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1812e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.90338842851361 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.720534499381143, dt = 0.003653026013448643
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.4%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.5%)
   LB compute        : 265.82 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.6%)
Info: cfl dt = 0.0036530280940297944                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4918e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.1357847422927 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7241875253945915, dt = 0.0036530280940297944
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 249.85 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.0%)
Info: cfl dt = 0.0036530302137003567                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5201e+05 | 65536 |      2 | 1.450e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.70355282443481 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7278405534886214, dt = 0.0036530302137003567
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.9%)
   patch tree reduce : 1903.00 ns (0.5%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 331.41 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.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    | 4.4441e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.17881077309264 (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     : 6.47 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1833.00 ns (0.6%)
   LB compute        : 293.45 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (59.2%)
Info: cfl dt = 0.003653034572725065                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4915e+05 | 65536 |      2 | 1.459e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.1295998883419 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7351466160753841, dt = 0.003653034572725065
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.3%)
   patch tree reduce : 1683.00 ns (0.6%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 272.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (59.2%)
Info: cfl dt = 0.0036530368133046217                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4370e+05 | 65536 |      2 | 1.907e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.96876830066563 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7387996506481092, dt = 0.0036530368133046217
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1201.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.46 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (64.0%)
Info: cfl dt = 0.003653039095424514                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3736e+05 | 65536 |      2 | 1.943e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.6969567011659 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7424526874614137, dt = 0.003653039095424514
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 23.30 us   (7.5%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 272.97 us  (87.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (63.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    | 3.4357e+05 | 65536 |      2 | 1.908e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.94296275719206 (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     : 6.89 us    (2.5%)
   patch tree reduce : 1722.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.5%)
   LB compute        : 252.31 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.5%)
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    | 3.3194e+05 | 65536 |      2 | 1.974e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.60868791745537 (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     : 6.60 us    (2.0%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 305.58 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (63.6%)
Info: cfl dt = 0.003653046197369458                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1667e+05 | 65536 |      2 | 2.070e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.544532662860306 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7534118117633688, dt = 0.003653046197369458
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.2%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 291.83 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (63.9%)
Info: cfl dt = 0.003653048652030586                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6090e+05 | 65536 |      2 | 1.422e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 92.4882752510028 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7570648579607382, dt = 0.003653048652030586
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 271.09 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (60.1%)
Info: cfl dt = 0.0036530511514588234                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5825e+05 | 65536 |      2 | 1.430e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.9551139279244 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7607179066127687, dt = 0.0036530511514588234
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.7%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1312.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 234.37 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (55.4%)
Info: cfl dt = 0.00365305369632181                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.6469e+05 | 65536 |      2 | 1.410e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 93.24815432992851 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7643709577642275, dt = 0.00365305369632181
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.5%)
   patch tree reduce : 1693.00 ns (0.6%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 251.63 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.7%)
Info: cfl dt = 0.0036530562872947392                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4523e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.34352784487822 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7680240114605492, dt = 0.0036530562872947392
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.4%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 252.85 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.8%)
Info: cfl dt = 0.0036530589250604105                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3687e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.66511563411106 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.771677067747844, dt = 0.0036530589250604105
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.5%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 232.60 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (59.8%)
Info: cfl dt = 0.003653061610309286                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3943e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.17988536677426 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7753301266729045, dt = 0.003653061610309286
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 277.13 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.5%)
Info: cfl dt = 0.003653064343739543                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9567e+05 | 65536 |      2 | 1.656e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.39762542697544 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7789831882832137, dt = 0.003653064343739543
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.4%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 255.91 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.20 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.2%)
Info: cfl dt = 0.0036530671260571277                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4427e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.15034588001967 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7826362526269532, dt = 0.0036530671260571277
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.4%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 266.62 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (59.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    | 4.3875e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.04349996437807 (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     : 6.74 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 271.54 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (63.4%)
Info: cfl dt = 0.0036530728402172402                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3924e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.14200921751545 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.789942389710986, dt = 0.0036530728402172402
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.4%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 259.92 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (63.1%)
Info: cfl dt = 0.0036530757735109957                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2348e+05 | 65536 |      2 | 2.026e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.91195808733062 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7935954625512034, dt = 0.0036530757735109957
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.8%)
   patch tree reduce : 1883.00 ns (0.5%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 339.97 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (68.1%)
Info: cfl dt = 0.003653078758594642                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4014e+05 | 65536 |      2 | 1.927e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.25550541048179 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7972485383247143, dt = 0.003653078758594642
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 270.15 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.2%)
Info: cfl dt = 0.003653081796213786                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2478e+05 | 65536 |      2 | 2.018e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.17251177661052 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.800901617083309, dt = 0.003653081796213786
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (1.9%)
   patch tree reduce : 2.16 us    (0.6%)
   gen split merge   : 1252.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 346.16 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.7%)
Info: cfl dt = 0.003653084887122127                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3376e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.04311407783973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8045546988795227, dt = 0.003653084887122127
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 241.10 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.8%)
Info: cfl dt = 0.003653088032081518                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4311e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.91872275767597 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8082077837666448, dt = 0.003653088032081518
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1302.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 299.53 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (65.4%)
Info: cfl dt = 0.0036530912318620103                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4298e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.8927049343473 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8118608717987263, dt = 0.0036530912318620103
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (0.1%)
   patch tree reduce : 1983.00 ns (0.0%)
   gen split merge   : 1181.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.0%)
   LB compute        : 7.44 ms    (99.7%)
   LB move op cnt    : 0
   LB apply          : 4.79 us    (0.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.72 us    (73.7%)
Info: cfl dt = 0.0036530944872419147                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3033e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.35347873606399 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8155139630305883, dt = 0.0036530944872419147
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 251.09 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.3%)
Info: cfl dt = 0.0036530977990078544                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2167e+05 | 65536 |      2 | 2.037e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.54923141891149 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8191670575178303, dt = 0.0036530977990078544
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.64 us    (1.8%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 295.53 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.5%)
Info: cfl dt = 0.0036531011679548195                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2361e+05 | 65536 |      2 | 2.025e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.93973161110019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8228201553168382, dt = 0.0036531011679548195
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.36 us    (1.6%)
   patch tree reduce : 1722.00 ns (0.5%)
   gen split merge   : 721.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 901.00 ns  (0.3%)
   LB compute        : 321.46 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.3%)
Info: cfl dt = 0.0036531045948862196                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2283e+05 | 65536 |      2 | 2.030e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.78158884735623 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.826473256484793, dt = 0.0036531045948862196
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 1832.00 ns (0.6%)
   gen split merge   : 711.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 931.00 ns  (0.3%)
   LB compute        : 294.30 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 6.14 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (9.4%)
Info: cfl dt = 0.0036531080806139434                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1826e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.93329875371919 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8301263610796792, dt = 0.0036531080806139434
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 259.32 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.8%)
Info: cfl dt = 0.003653111625958406                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3091e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.47127295916346 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.833779469160293, dt = 0.003653111625958406
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 272.31 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.7%)
Info: cfl dt = 0.0036531152317486088                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3069e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.42658351167407 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8374325807862515, dt = 0.0036531152317486088
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.4%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 991.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 243.88 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (60.9%)
Info: cfl dt = 0.003653118898822192                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3659e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.61087503930794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8410856960180002, dt = 0.003653118898822192
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 244.93 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.1%)
Info: cfl dt = 0.0036531226280254892                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5145e+05 | 65536 |      2 | 1.452e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.59349077705154 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8447388149168225, dt = 0.0036531226280254892
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.3%)
   patch tree reduce : 1713.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 259.73 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (59.2%)
Info: cfl dt = 0.0036531264202135827                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5269e+05 | 65536 |      2 | 1.448e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.84319017308837 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8483919375448479, dt = 0.0036531264202135827
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.3%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 252.17 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (63.3%)
Info: cfl dt = 0.0036531302762503565                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9678e+05 | 65536 |      2 | 1.652e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.62353512440711 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8520450639650614, dt = 0.0036531302762503565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.4%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 264.01 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.2%)
Info: cfl dt = 0.0036531341970085516                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2880e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.04776322299921 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8556981942413118, dt = 0.0036531341970085516
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.7%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 232.61 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.5%)
Info: cfl dt = 0.0036531381833698226                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2487e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.2601850614508 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8593513284383203, dt = 0.0036531381833698226
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.6%)
   patch tree reduce : 1723.00 ns (0.7%)
   gen split merge   : 1181.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 235.04 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (60.2%)
Info: cfl dt = 0.0036531422362247896                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2720e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.72841830592041 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.86300446662169, dt = 0.0036531422362247896
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 240.53 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.2%)
Info: cfl dt = 0.00365314635647309                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3269e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.82846910066738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8666576088579148, dt = 0.00365314635647309
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.28 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 306.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.1%)
Info: cfl dt = 0.003653150545023441                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2743e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.77440520736198 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8703107552143878, dt = 0.003653150545023441
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.22 us    (2.6%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 252.70 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.9%)
Info: cfl dt = 0.003653154802793686                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2590e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.46713712911794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8739639057594113, dt = 0.003653154802793686
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 263.05 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.8%)
Info: cfl dt = 0.003653159130710854                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4938e+05 | 65536 |      2 | 1.458e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.17946886207126 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.877617060562205, dt = 0.003653159130710854
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.8%)
   patch tree reduce : 1983.00 ns (0.8%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 229.88 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (57.8%)
Info: cfl dt = 0.0036531635297112116                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4172e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.64214677251996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8812702196929159, dt = 0.0036531635297112116
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 1832.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.4%)
   LB compute        : 270.57 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.8%)
Info: cfl dt = 0.0036531680007403184                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2688e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.66338512164296 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.884923383222627, dt = 0.0036531680007403184
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.4%)
   LB compute        : 299.22 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.7%)
Info: cfl dt = 0.003653172544753079                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3404e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.1008874378381 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8885765512233674, dt = 0.003653172544753079
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.2%)
   patch tree reduce : 1802.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 275.01 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (64.2%)
Info: cfl dt = 0.003653177162713804                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3348e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.98795270392762 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8922297237681205, dt = 0.003653177162713804
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.5%)
   patch tree reduce : 2.22 us    (0.9%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 239.10 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (61.7%)
Info: cfl dt = 0.003653181855596254                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3051e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.39237993052653 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8958829009308342, dt = 0.003653181855596254
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.6%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 235.28 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1272.00 ns (54.5%)
Info: cfl dt = 0.003653186624383702                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3148e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.58770767622188 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8995360827864305, dt = 0.003653186624383702
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 247.73 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.3%)
Info: cfl dt = 0.003653191470068986                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1285e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.84879257449799 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9031892694108141, dt = 0.003653191470068986
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 1772.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1493.00 ns (0.5%)
   LB compute        : 283.95 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (62.7%)
Info: cfl dt = 0.003653196393654559                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4631e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.56417398148888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9068424608808832, dt = 0.003653196393654559
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.5%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 248.29 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (62.7%)
Info: cfl dt = 0.0036532013961525496                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1851e+05 | 65536 |      2 | 2.058e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.91789311124265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9104956572745377, dt = 0.0036532013961525496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (1.9%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 871.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1031.00 ns (0.3%)
   LB compute        : 322.74 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.94 us    (72.4%)
Info: cfl dt = 0.00365320647858481                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5473e+05 | 65536 |      2 | 1.848e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.18537007569205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9141488586706903, dt = 0.00365320647858481
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.5%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 249.98 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1242.00 ns (56.4%)
Info: cfl dt = 0.0036532116419829724                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5894e+05 | 65536 |      2 | 1.826e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.03115636928213 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.917802065149275, dt = 0.0036532116419829724
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.0%)
   patch tree reduce : 2.00 us    (0.3%)
   gen split merge   : 1072.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.2%)
   LB compute        : 612.60 us  (96.3%)
   LB move op cnt    : 0
   LB apply          : 4.53 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (67.7%)
Info: cfl dt = 0.0036532168873885046                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4994e+05 | 65536 |      2 | 1.457e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 90.29196418578668 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.921455276791258, dt = 0.0036532168873885046
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.1%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 297.05 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (69.7%)
Info: cfl dt = 0.0036532222158527595                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4746e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.79451874382488 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9251084936786464, dt = 0.0036532222158527595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.10 us    (2.4%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 260.18 us  (87.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.0%)
Info: cfl dt = 0.0036532276284370353                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4125e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.54971314776962 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9287617158944992, dt = 0.0036532276284370353
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 265.09 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (60.8%)
Info: cfl dt = 0.003653233126212623                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4534e+05 | 65536 |      2 | 1.472e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.36909250367817 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9324149435229363, dt = 0.003653233126212623
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.1%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 278.98 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.1%)
Info: cfl dt = 0.003653238710260862                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4174e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.6476228238209 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.936068176649149, dt = 0.003653238710260862
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 288.63 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (66.0%)
Info: cfl dt = 0.0036532443816731956                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3507e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30892972444977 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9397214153594098, dt = 0.0036532443816731956
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.1%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 258.45 us  (86.8%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.3%)
Info: cfl dt = 0.003653250141551222                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9466e+05 | 65536 |      2 | 1.661e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.19917956771542 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.943374659741083, dt = 0.003653250141551222
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 269.30 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (54.5%)
Info: cfl dt = 0.003653255991006749                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3433e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.16161961153794 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9470279098826342, dt = 0.003653255991006749
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.6%)
   patch tree reduce : 1822.00 ns (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 243.11 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (57.5%)
Info: cfl dt = 0.0036532619311618482                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2526e+05 | 65536 |      2 | 2.015e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.27390827300177 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.950681165873641, dt = 0.0036532619311618482
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.90 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 301.44 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.1%)
Info: cfl dt = 0.0036532679631489057                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7056e+05 | 65536 |      2 | 1.769e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.36386849209022 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9543344278048027, dt = 0.0036532679631489057
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.0%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.4%)
   LB compute        : 305.46 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1292.00 ns (58.1%)
Info: cfl dt = 0.0036532740881106743                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1575e+05 | 65536 |      2 | 2.076e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.36529316789688 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9579876957679516, dt = 0.0036532740881106743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.8%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.4%)
   LB compute        : 346.55 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.2%)
Info: cfl dt = 0.0036532803072003347                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1754e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.79140223578625 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9616409698560624, dt = 0.0036532803072003347
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.0%)
   patch tree reduce : 1983.00 ns (0.6%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.4%)
   LB compute        : 313.27 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (64.5%)
Info: cfl dt = 0.003653286621581537                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3324e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94280808840581 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9652942501632626, dt = 0.003653286621581537
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 1742.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 263.69 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (57.6%)
Info: cfl dt = 0.003653293032428462                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2933e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.15913460017705 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9689475367848441, dt = 0.003653293032428462
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.5%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 258.11 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.5%)
Info: cfl dt = 0.0036532995409258705                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4440e+05 | 65536 |      2 | 1.475e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.18251139015338 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9726008298172726, dt = 0.0036532995409258705
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.6%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 241.00 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.0%)
Info: cfl dt = 0.0036533061482691555                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4015e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.33095898477409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9762541293581986, dt = 0.0036533061482691555
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (1.5%)
   patch tree reduce : 1743.00 ns (0.4%)
   gen split merge   : 1112.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.3%)
   LB compute        : 428.22 us  (94.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (54.1%)
Info: cfl dt = 0.003653312855664396                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9034e+05 | 65536 |      2 | 1.679e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.33384840824107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9799074355064676, dt = 0.003653312855664396
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.2%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 269.62 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.3%)
Info: cfl dt = 0.0036533196643284095                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2363e+05 | 65536 |      2 | 2.025e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.94766927963566 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.983560748362132, dt = 0.0036533196643284095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.72 us    (1.8%)
   patch tree reduce : 1733.00 ns (0.6%)
   gen split merge   : 681.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 902.00 ns  (0.3%)
   LB compute        : 293.95 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (64.9%)
Info: cfl dt = 0.0036533265754888048                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2231e+05 | 65536 |      2 | 2.033e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.6822883645579 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9872140680264605, dt = 0.0036533265754888048
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 300.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.8%)
Info: cfl dt = 0.0036533335903840315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0739e+05 | 65536 |      2 | 1.609e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.7560693613242 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9908673946019493, dt = 0.0036533335903840315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 258.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.1%)
Info: cfl dt = 0.0036533407102634337                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4830e+05 | 65536 |      2 | 1.462e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.96716831601798 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9945207281923334, dt = 0.0036533407102634337
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 279.74 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.52 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.44 us    (69.5%)
Info: cfl dt = 0.0036533479363873044                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5510e+05 | 65536 |      2 | 1.440e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 91.33068206575585 (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     : 6.91 us    (2.7%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 233.87 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (57.5%)
Info: cfl dt = 0.003653351559829881                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.5772e+05 | 65536 |      2 | 1.432e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 45.91001649669789 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1218.190984668 (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.49 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.27 us    (53.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     : 922.00 ns  (0.3%)
   patch tree reduce : 1252.00 ns (0.4%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 293.79 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 3.71 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 : 1218.369557594 (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     : 9.01 us    (2.7%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 306.44 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (66.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3706e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr)                                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.6%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 231.39 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.3905e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.10046088930513 (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     : 6.91 us    (2.4%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 261.20 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (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.3487e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.26103678382914 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.007305863016771064, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.4%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 236.50 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (65.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3374e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.03486072151135 (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     : 7.15 us    (2.5%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 268.94 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3650e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.58844873929868 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.014611726033542128, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.5%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 238.34 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (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.3507e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30104542477838 (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     : 7.48 us    (2.6%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 262.44 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (64.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3002e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.28762632715308 (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.50 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 303.22 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3060e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.40491702124754 (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     : 6.35 us    (2.3%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 252.72 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0830e+05 | 65536 |      2 | 1.605e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.92979083237691 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02922345206708426, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 231.16 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (60.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3945e+05 | 65536 |      2 | 1.931e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.11373990749867 (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.37 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1081.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 315.36 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (66.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1790e+05 | 65536 |      2 | 2.062e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.79087589228299 (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     : 6.54 us    (1.8%)
   patch tree reduce : 2.02 us    (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 347.94 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2832e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.94720021123635 (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     : 6.84 us    (2.3%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 281.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (66.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8846e+05 | 65536 |      2 | 1.687e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.94885786278925 (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     : 6.68 us    (2.1%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 293.47 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (67.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.4582e+05 | 65536 |      2 | 1.470e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.45964573231647 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.047488109609011925, dt = 0.002511890390988078
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 268.06 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (61.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4068e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.80578542721838 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1220.832421158 (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     : 9.26 us    (2.5%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.4%)
   LB compute        : 346.23 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (66.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2796e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.87565014886107 (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.22 us    (2.4%)
   patch tree reduce : 2.32 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 241.00 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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    | 3.1643e+05 | 65536 |      2 | 2.071e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.496068002170084 (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     : 6.66 us    (2.0%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 303.77 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (64.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1612e+05 | 65536 |      2 | 2.073e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.43290038665677 (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     : 6.68 us    (1.7%)
   patch tree reduce : 1863.00 ns (0.5%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.3%)
   LB compute        : 376.85 us  (94.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9403e+05 | 65536 |      2 | 1.663e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.06593992746895 (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     : 6.26 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 238.79 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (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.2222e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.72309884511373 (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     : 6.83 us    (2.6%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 239.25 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.46 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.3274e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.83428043660179 (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     : 6.23 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 264.39 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 3.1586e+05 | 65536 |      2 | 2.075e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.38157679780501 (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     : 6.28 us    (1.8%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 325.92 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0950e+05 | 65536 |      2 | 2.117e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.10471947143672 (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     : 6.64 us    (1.8%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1162.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 342.26 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1366e+05 | 65536 |      2 | 1.584e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.00560604594152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08287638357546977, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 274.80 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0149e+05 | 65536 |      2 | 2.174e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.4965027946157 (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     : 6.86 us    (2.1%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 304.39 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1009e+05 | 65536 |      2 | 2.113e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.22311903423295 (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     : 6.87 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 332.65 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1803e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.88257157569498 (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     : 6.65 us    (2.2%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 279.09 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.3081e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.44658605565675 (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     : 11.58 us   (4.3%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 243.61 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (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.1764e+05 | 65536 |      2 | 2.063e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.82832677212093 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1223.476577035 (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     : 9.07 us    (2.3%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 361.36 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1965e+05 | 65536 |      2 | 2.050e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.14143269740981 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10365293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.84 us    (1.8%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 621.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 308.50 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.37 us    (68.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.2269e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.81713054753516 (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     : 6.38 us    (2.0%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 304.94 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (62.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2775e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.8337054553347 (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     : 6.55 us    (2.1%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 285.84 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (61.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3479e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.24466331553727 (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     : 6.25 us    (2.0%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 285.83 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (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.2890e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.0631779901927 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11826465754192764, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 285.68 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1417e+05 | 65536 |      2 | 1.582e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.10842662296368 (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     : 6.84 us    (2.6%)
   patch tree reduce : 2.81 us    (1.1%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 240.77 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1862e+05 | 65536 |      2 | 1.566e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.0013379233134 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1255705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 258.86 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1274e+05 | 65536 |      2 | 1.588e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.82091291941423 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12922345206708422, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.3%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 276.81 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2694e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.66974491612447 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13287638357546974, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 252.22 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (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.2740e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.76364959532683 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13652931508385527, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 5.20 us    (1.8%)
   LB compute        : 260.23 us  (90.8%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (63.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2671e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.62343940472866 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 294.00 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (66.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.2446e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.1725667701856 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14383517810062632, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (1.7%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 360.02 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 4.31 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2951e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.18631405946284 (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     : 6.39 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 270.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3026e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.36850670514472 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1225.7647349650001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.15000000000000002, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.12 us    (2.4%)
   patch tree reduce : 2.88 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 360.92 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3241e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.76747353890094 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15365293150838555, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.11 us    (1.9%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 299.54 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (67.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.2956e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1960576813895 (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     : 6.23 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 257.83 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (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.3992e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.27563812318905 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (1.9%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1582.00 ns (0.5%)
   LB compute        : 302.48 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1802.00 ns (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2340e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.95974114785285 (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     : 6.70 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 262.69 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (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.2597e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.47587535970854 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16826465754192765, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.5%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 264.88 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (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.3417e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.12184230938342 (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     : 6.61 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 265.44 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (61.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2981e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.246916959473 (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     : 6.84 us    (2.6%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 241.78 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (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.3837e+05 | 65536 |      2 | 1.937e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.89790749979367 (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     : 6.70 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 259.74 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (61.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0566e+05 | 65536 |      2 | 1.616e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.40087240476026 (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     : 6.64 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 265.50 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.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.3458e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2039620880975 (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     : 6.22 us    (2.2%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 257.72 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (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.2420e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.12155523073159 (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     : 6.90 us    (2.7%)
   patch tree reduce : 2.19 us    (0.8%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 236.71 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.2936e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1569208575713 (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     : 6.24 us    (2.1%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 277.20 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.3158e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.60118261936384 (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     : 6.71 us    (2.4%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 258.71 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (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.3426e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.92008218191485 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1228.0269251010002 (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     : 9.73 us    (2.5%)
   patch tree reduce : 2.64 us    (0.7%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 362.52 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (64.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3225e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.73618093350343 (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     : 6.70 us    (2.5%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1211.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 246.16 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3256e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.79840144922224 (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     : 6.73 us    (2.6%)
   patch tree reduce : 2.58 us    (1.0%)
   gen split merge   : 1241.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 239.83 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (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.3123e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.53159578569458 (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     : 6.09 us    (2.4%)
   patch tree reduce : 2.34 us    (0.9%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 230.15 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (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.3677e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.64272128266272 (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     : 6.39 us    (2.2%)
   patch tree reduce : 2.54 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 271.32 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (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    | 4.2580e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.44230900772047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21826465754192764, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.85 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 262.64 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (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    | 3.5785e+05 | 65536 |      2 | 1.831e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.80750173555475 (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     : 6.24 us    (2.2%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1372.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 264.15 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (61.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3017e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.3185422278722 (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     : 6.41 us    (2.2%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 263.95 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (63.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4797e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.88959793697572 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22922345206708422, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 267.37 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3215e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.71549717565277 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23287638357546975, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 305.79 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (65.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3512e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.31142707361964 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23652931508385527, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 289.05 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (64.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0813e+05 | 65536 |      2 | 1.606e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.89519138392176 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.4%)
   patch tree reduce : 1733.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 240.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3277e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.84083517548945 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24383517810062633, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 972.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 246.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.14 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (61.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3685e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.65817405261075 (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.60 us    (2.3%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 264.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3299e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.744594768841054 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1230.265810824 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.25, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.65 us    (2.6%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 348.00 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.30 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.16 us    (67.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2889e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.06096847045274 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2536529315083855, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 280.29 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (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.2810e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.9035576861581 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25730586301677105, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 270.04 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.20 us    (66.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4333e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.95934689153314 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1172.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 325.77 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (65.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3687e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.6638094679617 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2646117260335421, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.2%)
   patch tree reduce : 2.33 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 264.18 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (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.3861e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.01200413262826 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26826465754192763, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.6%)
   patch tree reduce : 2.29 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 250.69 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6557e+05 | 65536 |      2 | 1.793e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.35554611381497 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27191758905031316, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 1783.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1281.00 ns (0.5%)
   LB compute        : 259.89 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0175e+05 | 65536 |      2 | 2.172e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.54894526858437 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2755705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 290.86 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.3273e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.8322558983753 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2792234520670842, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 1842.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 274.92 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1753.00 ns (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1612e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.49971573948557 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28287638357546974, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 246.19 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (64.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2085e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.44895564244821 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28652931508385526, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.5%)
   LB compute        : 261.18 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6750e+05 | 65536 |      2 | 1.783e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.74375430110804 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1241.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 246.32 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2532e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.34467400704621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2938351781006263, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.5%)
   LB compute        : 278.22 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1512.00 ns (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.0877e+05 | 65536 |      2 | 1.603e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.02404769137698 (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     : 6.33 us    (1.9%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 309.14 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1545e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.324155605242886 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1232.6057807710001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.30000000000000004, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.64 us    (2.4%)
   patch tree reduce : 2.38 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 334.45 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.43 us    (68.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.2323e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.92656241112415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30365293150838557, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.5%)
   patch tree reduce : 2.21 us    (0.9%)
   gen split merge   : 981.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 236.94 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (59.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.2349e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   1.3% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.97822122587223 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3073058630167711, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 243.79 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0962e+05 | 65536 |      2 | 1.600e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.19410594550584 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3109587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 247.63 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (60.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.3772e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.8326909228214 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31461172603354215, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 277.05 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3852e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.99345467448774 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3182646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.10 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 262.01 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (64.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7652e+05 | 65536 |      2 | 1.741e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.55229581175412 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3219175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 252.82 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (63.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2916e+05 | 65536 |      2 | 1.527e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1159940839028 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32557052055869873, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.4%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 248.40 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.9%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0955e+05 | 65536 |      2 | 2.117e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.11562552083313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32922345206708425, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (1.8%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.4%)
   LB compute        : 321.93 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (63.7%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1311e+05 | 65536 |      2 | 2.093e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.82832026012827 (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.43 us    (1.9%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 611.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 941.00 ns  (0.3%)
   LB compute        : 261.64 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (61.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4399e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.0922096605244 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3365293150838553, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 244.08 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.42 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.3446e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.18005036718468 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34018224659224083, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.6%)
   patch tree reduce : 1863.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.5%)
   LB compute        : 240.54 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.9%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3752e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.79443080264028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34383517810062636, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (1.9%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.3%)
   LB compute        : 302.10 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (66.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.2139e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.5564412366011 (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     : 6.64 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.6%)
   LB compute        : 243.67 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (64.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.2366e+05 | 65536 |      2 | 1.547e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.45756500712476 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1234.957864718 (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.65 us    (2.6%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 307.02 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (64.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6842e+05 | 65536 |      2 | 1.779e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.92700843309717 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35365293150838556, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 295.82 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0429e+05 | 65536 |      2 | 2.154e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.059706790942 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3573058630167711, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (1.9%)
   patch tree reduce : 2.11 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 304.99 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (62.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3388e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.06256834869069 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3609587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.5%)
   LB compute        : 266.04 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.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.3078e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.44168219837539 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36461172603354214, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 287.70 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.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.9759e+05 | 65536 |      2 | 1.648e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.78107967873659 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36826465754192766, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (1.9%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 299.55 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5265e+05 | 65536 |      2 | 1.858e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.7622870241004 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3719175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.1%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 283.16 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1819e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.91473704035883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3755705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1032.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 302.03 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (64.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1235e+05 | 65536 |      2 | 1.589e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.7418526421562 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37922345206708424, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.0%)
   patch tree reduce : 1753.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 296.27 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (60.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2400e+05 | 65536 |      2 | 2.023e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.01467087098888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38287638357546977, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 298.59 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3448e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.18255065020372 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.2%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 266.31 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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    | 3.1902e+05 | 65536 |      2 | 2.054e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.01527013035931 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (1.7%)
   patch tree reduce : 2.09 us    (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.3%)
   LB compute        : 373.61 us  (94.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1302e+05 | 65536 |      2 | 2.094e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.8111924442238 (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     : 6.57 us    (1.7%)
   patch tree reduce : 2.45 us    (0.6%)
   gen split merge   : 1232.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 367.44 us  (94.1%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (65.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1623e+05 | 65536 |      2 | 2.072e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.45438063629014 (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     : 6.69 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1002.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 329.41 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0933e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 56.48025612218946 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1237.530143653 (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     : 9.43 us    (2.5%)
   patch tree reduce : 2.59 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 354.36 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.19 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (64.9%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1452e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.1789107323478 (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     : 6.21 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 271.78 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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    | 3.4759e+05 | 65536 |      2 | 1.885e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.74765955765982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4073058630167711, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.5%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1202.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 243.54 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (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.1717e+05 | 65536 |      2 | 1.571e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.71054868101703 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4109587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 265.54 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (64.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2695e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.6730947547804 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4146117260335421, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 243.05 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2967e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.21786566033244 (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     : 6.26 us    (2.3%)
   patch tree reduce : 2.04 us    (0.8%)
   gen split merge   : 1562.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 245.69 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1955e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.18848491340808 (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     : 6.82 us    (2.4%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 264.40 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2410e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.10077407051855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4255705205586987, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 300.27 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (67.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.2217e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.71265507609635 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42922345206708423, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.5%)
   patch tree reduce : 2.38 us    (0.9%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 249.05 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4476e+05 | 65536 |      2 | 1.901e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.17931695431697 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43287638357546976, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (2.0%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 288.90 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1785e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.84574805493331 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4365293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.5%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 252.88 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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.5125e+05 | 65536 |      2 | 1.866e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.48319988765567 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.0%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 300.44 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.05 us    (65.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2320e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.92057038616102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44383517810062634, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 245.27 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.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.3065e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.4153881507312 (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     : 6.42 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 271.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1327e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.02436492709622 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1239.896772199 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.45, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.36 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.5%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 367.87 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (67.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3613e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.51415568533622 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45365293150838554, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 298.67 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3753e+05 | 65536 |      2 | 1.942e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.72997373180559 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45730586301677106, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 271.76 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1493.00 ns (61.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0865e+05 | 65536 |      2 | 1.604e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.9995070022226 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 269.12 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (61.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9380e+05 | 65536 |      2 | 1.664e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.02086459133227 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4646117260335421, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 294.88 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (64.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3313e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.91169072644243 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46826465754192764, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.0%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 284.61 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8836e+05 | 65536 |      2 | 1.688e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.92818263267189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47191758905031317, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.4%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 259.08 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1563e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.40184795488483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4755705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 246.47 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (62.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3940e+05 | 65536 |      2 | 1.492e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.16985606985973 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4792234520670842, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.2%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 292.25 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (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.2575e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.4311854657923 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48287638357546975, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 314.55 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0714e+05 | 65536 |      2 | 2.134e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.63057472862254 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.6%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1522.00 ns (0.4%)
   LB compute        : 351.70 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.57 us    (69.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0791e+05 | 65536 |      2 | 2.128e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.78595673509302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (1.9%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 335.47 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2634e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5497868669645 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4938351781006263, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 299.97 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1932.00 ns (65.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2613e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.50816649048876 (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     : 6.39 us    (2.2%)
   patch tree reduce : 1922.00 ns (0.7%)
   gen split merge   : 1251.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 268.58 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.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.3910e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.587479560463585 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1242.3072138280002 (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     : 9.65 us    (2.9%)
   patch tree reduce : 2.63 us    (0.8%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 312.02 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3172e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.62902792835203 (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     : 6.66 us    (2.3%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.4%)
   LB compute        : 268.63 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (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.3836e+05 | 65536 |      2 | 1.495e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.9627649566137 (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     : 6.80 us    (2.4%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 259.40 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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    | 4.3200e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.68538256174645 (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     : 6.86 us    (2.3%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 274.79 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.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.9473e+05 | 65536 |      2 | 1.660e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.2067495994169 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5146117260335421, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 272.87 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 4.2851e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.98456517246828 (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     : 6.54 us    (2.0%)
   patch tree reduce : 2.50 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 296.72 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.29 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (60.7%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3189e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.66375666755906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5219175890503132, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 294.69 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1892.00 ns (65.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1796e+05 | 65536 |      2 | 2.061e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.80223458425753 (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     : 6.48 us    (1.9%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.3%)
   LB compute        : 313.47 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (63.7%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1826e+05 | 65536 |      2 | 2.059e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.86281949236321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5292234520670842, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.8%)
   patch tree reduce : 1843.00 ns (0.5%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 338.51 us  (93.9%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7169e+05 | 65536 |      2 | 1.763e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.58443460899665 (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     : 6.68 us    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.3%)
   LB compute        : 310.68 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (64.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.3373e+05 | 65536 |      2 | 1.511e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.03292819558732 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5365293150838553, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.05 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 275.93 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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    | 4.3856e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.00198640690799 (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     : 6.63 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 269.46 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (64.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.4004e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.29817565576387 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5438351781006263, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.3%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 263.47 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.24 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (62.7%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3462e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.2119359624725 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5474881096090118, dt = 0.002511890390988203
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 287.50 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.3%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3164e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.55882595704396 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1244.6471853110002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.55, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.22 us    (2.4%)
   patch tree reduce : 2.43 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 365.07 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3251e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.78727026866976 (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     : 6.49 us    (2.0%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 307.08 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (63.9%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8111e+05 | 65536 |      2 | 1.720e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.47452989036137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5573058630167711, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.1%)
   patch tree reduce : 2.34 us    (0.7%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 313.18 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8190e+05 | 65536 |      2 | 1.716e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.63220353735863 (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     : 6.60 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 264.65 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (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    | 4.3522e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.33133711499019 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5646117260335421, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 267.14 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3676e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.64136268564907 (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     : 6.20 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 263.12 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (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    | 3.1924e+05 | 65536 |      2 | 2.053e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.05866465891674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5719175890503132, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.0%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 318.59 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (64.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3279e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.84370544309085 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5755705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 289.59 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.9%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9221e+05 | 65536 |      2 | 1.671e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.70168952841313 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5792234520670843, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.0%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1433.00 ns (0.5%)
   LB compute        : 296.28 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (64.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2824e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.93066356530302 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5828763835754698, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 14.33 us   (4.7%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 276.87 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (63.3%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1041e+05 | 65536 |      2 | 2.111e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.28669212012775 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5865293150838553, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.36 us    (2.2%)
   patch tree reduce : 1872.00 ns (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 307.02 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.9%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0770e+05 | 65536 |      2 | 2.130e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.74360369142621 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5901822465922408, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.0%)
   patch tree reduce : 1773.00 ns (0.5%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1562.00 ns (0.5%)
   LB compute        : 302.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.3%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3290e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.86654244186974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5938351781006264, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.25 us    (2.4%)
   patch tree reduce : 2.26 us    (0.7%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 282.93 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.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.2874e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.03220944508408 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5974881096090119, dt = 0.002511890390988203
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.5%)
   patch tree reduce : 2.11 us    (0.8%)
   gen split merge   : 1022.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 239.03 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (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    | 3.2312e+05 | 65536 |      2 | 2.028e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.58426998869173 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1247.127797094 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.6000000000000001, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.27 us    (2.6%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 327.08 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (64.7%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3210e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.7054745589014 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6036529315083856, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.0%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.5%)
   LB compute        : 285.07 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (60.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.1872e+05 | 65536 |      2 | 1.565e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.02066058523616 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6073058630167711, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1171.00 ns (0.4%)
   LB compute        : 268.90 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.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.3146e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.57760940080763 (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     : 6.74 us    (2.1%)
   patch tree reduce : 1822.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 292.41 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (63.3%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4391e+05 | 65536 |      2 | 1.906e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.01044705551564 (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     : 6.49 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 264.44 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.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.1546e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.36723678172464 (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     : 6.67 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 248.50 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.0%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2249e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.77657889306427 (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     : 6.41 us    (2.2%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1502.00 ns (0.5%)
   LB compute        : 265.02 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (63.7%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5195e+05 | 65536 |      2 | 1.862e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.62352930776704 (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     : 7.08 us    (2.6%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 250.68 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (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    | 4.0656e+05 | 65536 |      2 | 1.612e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.58086055207875 (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     : 6.29 us    (1.9%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 308.30 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1882.00 ns (64.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.3400e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.0874768160073 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6328763835754698, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 239.80 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (59.6%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0611e+05 | 65536 |      2 | 1.614e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.48993969519802 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6365293150838554, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 274.90 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.9%)
Info: cfl dt = 0.003652931508385531                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2948e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.18015933633185 (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     : 6.67 us    (2.3%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.5%)
   LB compute        : 268.00 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.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    | 3.4659e+05 | 65536 |      2 | 1.891e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.54721191586859 (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     : 6.13 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 261.56 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (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    | 3.8081e+05 | 65536 |      2 | 1.721e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.414093137305 (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     : 6.66 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 992.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 253.32 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (63.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.3235e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.65655863203248 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1249.493787262 (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     : 8.88 us    (2.2%)
   patch tree reduce : 2.31 us    (0.6%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 385.30 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (62.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    | 3.8397e+05 | 65536 |      2 | 1.707e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.04857071183257 (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     : 7.12 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1523.00 ns (0.5%)
   LB compute        : 264.73 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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    | 3.8283e+05 | 65536 |      2 | 1.712e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.81924099865292 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6573058630167711, dt = 0.003652931508385531
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.3%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1492.00 ns (0.5%)
   LB compute        : 259.07 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.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.2624e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.53043044768131 (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     : 7.32 us    (2.8%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 241.22 us  (91.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (56.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.2668e+05 | 65536 |      2 | 1.536e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.6182527814908 (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     : 6.90 us    (2.6%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 243.25 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (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    | 4.2857e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.9971852192788 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6682646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 971.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 249.02 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (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    | 4.2489e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.25937179186886 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6719175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 262.24 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.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    | 3.6667e+05 | 65536 |      2 | 1.787e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.57699522321833 (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     : 6.36 us    (2.0%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.3%)
   LB compute        : 301.58 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2860e+05 | 65536 |      2 | 1.529e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.00308829120704 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6792234520670842, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.6%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 237.73 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.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.3158e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.60111817547562 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6828763835754698, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.3%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 287.10 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.23 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (62.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2309e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.89777211725438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6865293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.19 us    (2.2%)
   patch tree reduce : 2.26 us    (0.8%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 261.76 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (63.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2156e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.59180386352087 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6901822465922408, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 266.83 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4183e+05 | 65536 |      2 | 1.917e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.5931147459326 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6938351781006263, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.4%)
   patch tree reduce : 1983.00 ns (0.4%)
   gen split merge   : 1192.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.3%)
   LB compute        : 442.73 us  (95.1%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9298e+05 | 65536 |      2 | 1.668e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.85685890842724 (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     : 6.59 us    (2.0%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 300.19 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (63.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0029e+05 | 65536 |      2 | 1.637e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.23335349554472 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1251.8591742800002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.7000000000000001, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.59 us    (2.4%)
   patch tree reduce : 2.35 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 379.25 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (66.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1794e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.86502005334175 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7036529315083856, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.19 us   (7.7%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 251.30 us  (86.9%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (62.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3567e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.4220129920657 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7073058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.0%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 307.47 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3623e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5337970586961 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7109587945251566, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 255.30 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (65.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2988e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.26036610945371 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7146117260335422, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.7%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.5%)
   LB compute        : 244.27 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3196e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.6780417099061 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7182646575419277, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.5%)
   patch tree reduce : 1822.00 ns (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 247.10 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8623e+05 | 65536 |      2 | 1.697e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.5020331357043 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7219175890503132, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.4%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 265.19 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (64.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7802e+05 | 65536 |      2 | 1.734e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.85361725219082 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7255705205586988, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 280.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0788e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.84681813400903 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7292234520670843, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.1%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.3%)
   LB compute        : 300.96 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4000e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.29173400097012 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7328763835754698, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 243.79 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1483.00 ns (60.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.3609e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.50555698578145 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7365293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 1813.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 268.61 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (65.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2813e+05 | 65536 |      2 | 1.997e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.84252961313588 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7401822465922409, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 1693.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 281.15 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1603e+05 | 65536 |      2 | 2.074e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.4145294973889 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7438351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (1.8%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.3%)
   LB compute        : 344.09 us  (94.0%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.10 us    (65.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3537e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.3619289878512 (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     : 7.22 us    (2.5%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 267.37 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (61.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4382e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.23941123081242 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1254.2107849810002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.75, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.26 us    (2.8%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 302.12 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (65.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4801e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89841592181953 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7536529315083855, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 297.91 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (64.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3951e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.19203087819724 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.757305863016771, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.6%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1141.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.6%)
   LB compute        : 233.06 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (56.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4707e+05 | 65536 |      2 | 1.466e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.7090432500539 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7609587945251566, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 239.21 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (17.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.4680e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.65500664668735 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7646117260335421, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.0%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1151.00 ns (0.4%)
   LB compute        : 302.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (65.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4149e+05 | 65536 |      2 | 1.484e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.59002937661812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7682646575419276, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.2%)
   patch tree reduce : 1882.00 ns (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 264.03 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4797e+05 | 65536 |      2 | 1.463e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.89027320440195 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7719175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.0%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 294.06 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.4%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4015e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.32169573385687 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7755705205586987, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 275.49 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (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    | 4.3980e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.25186894618776 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7792234520670842, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 267.16 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2218e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.71485047703092 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7828763835754697, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.1%)
   patch tree reduce : 2.28 us    (0.7%)
   gen split merge   : 1112.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.3%)
   LB compute        : 300.80 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (64.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2334e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.9488405684268 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.2%)
   patch tree reduce : 1994.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 276.67 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3338e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.96217509042124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.31 us    (0.8%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 270.65 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (63.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3213e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.71193896720136 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7938351781006263, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.26 us    (2.9%)
   patch tree reduce : 1923.00 ns (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.5%)
   LB compute        : 229.92 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.35 us    (68.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.4334e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.96047825594628 (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     : 6.57 us    (2.1%)
   patch tree reduce : 1903.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1553.00 ns (0.5%)
   LB compute        : 285.77 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1902.00 ns (65.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4759e+05 | 65536 |      2 | 1.464e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.75951591543461 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1256.374832186 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.8, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.15 us    (1.7%)
   patch tree reduce : 2.24 us    (0.4%)
   gen split merge   : 1032.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.2%)
   LB compute        : 508.01 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 4.84 us    (0.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.54 us    (68.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 2.9412e+05 | 65536 |      2 | 2.228e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.01929820744354 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8036529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (0.3%)
   patch tree reduce : 2.14 us    (0.1%)
   gen split merge   : 1171.00 ns (0.0%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.1%)
   LB compute        : 2.32 ms    (99.0%)
   LB move op cnt    : 0
   LB apply          : 4.47 us    (0.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 3.12 us    (73.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    | 2.8783e+05 | 65536 |      2 | 2.277e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.75715255969482 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8073058630167711, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.1%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 313.88 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (67.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3672e+05 | 65536 |      2 | 1.946e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.56620177777906 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8109587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.5%)
   LB compute        : 288.96 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6990e+05 | 65536 |      2 | 1.772e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.22515895121788 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8146117260335421, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 266.87 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.25 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.3286e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.85875666485205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8182646575419277, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.0%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1241.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.3%)
   LB compute        : 321.60 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 4.03 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (62.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.2160e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.59938009204781 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8219175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 292.65 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.08 us    (69.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2511e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.30336635332813 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8255705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.1%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 281.18 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1762.00 ns (63.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3025e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.33451151361712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8292234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 248.16 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (61.8%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2848e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.97914920241293 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8328763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.5%)
   patch tree reduce : 2.33 us    (0.9%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.5%)
   LB compute        : 244.93 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1663.00 ns (62.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3777e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.84329270598109 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8365293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.6%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 228.37 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (1.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.2552e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.38465232019823 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.94 us    (2.5%)
   patch tree reduce : 2.30 us    (0.8%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 255.35 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (61.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2759e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.80098441353964 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8438351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.5%)
   patch tree reduce : 2.12 us    (0.8%)
   gen split merge   : 941.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.5%)
   LB compute        : 231.23 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (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.3602e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.49200666207236 (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     : 6.38 us    (2.2%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 272.97 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (60.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4193e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.97810340353968 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1258.798954196 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 0.8500000000000001, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.00 us    (2.7%)
   patch tree reduce : 2.22 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 313.36 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (50.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.2543e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.36689445872153 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8536529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1242.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 296.22 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1649e+05 | 65536 |      2 | 1.574e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.57389536046757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8573058630167711, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.84 us    (2.3%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 274.57 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2516e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.31242319894184 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8609587945251567, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.4%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1393.00 ns (0.5%)
   LB compute        : 274.11 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.64 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (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.1573e+05 | 65536 |      2 | 1.576e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.42013269616766 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8646117260335422, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.1%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 301.52 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1365e+05 | 65536 |      2 | 1.584e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.00395885199154 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8682646575419277, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.1%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.4%)
   LB compute        : 275.50 us  (88.1%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (61.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2862e+05 | 65536 |      2 | 1.994e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.94146557854646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8719175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (1.9%)
   patch tree reduce : 2.19 us    (0.6%)
   gen split merge   : 1151.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 311.20 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 6.91 us    (2.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.15 us    (69.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6435e+05 | 65536 |      2 | 1.799e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.11039191902044 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8755705205586988, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.97 us    (2.2%)
   patch tree reduce : 1762.00 ns (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 296.62 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.33 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (65.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2578e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.43834327710147 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8792234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.5%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.5%)
   LB compute        : 239.75 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (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.2052e+05 | 65536 |      2 | 1.558e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.38276649037067 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8828763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.2%)
   patch tree reduce : 2.47 us    (0.9%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 261.04 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7983e+05 | 65536 |      2 | 1.725e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.21772177781995 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8865293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1071.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 237.85 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (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.0515e+05 | 65536 |      2 | 1.618e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.29707172165327 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8901822465922409, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.5%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 245.21 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (61.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1476e+05 | 65536 |      2 | 1.580e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.22691240648086 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8938351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 273.73 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (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.2520e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.3215090928815 (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     : 6.86 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 248.74 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4609e+05 | 65536 |      2 | 1.894e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.75471114512389 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1261.18214773 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 0.9, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.91 us    (2.3%)
   patch tree reduce : 2.43 us    (0.6%)
   gen split merge   : 942.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 365.73 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (66.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1249e+05 | 65536 |      2 | 1.589e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.7702253259906 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9036529315083855, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.78 us    (2.5%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 249.72 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (64.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2710e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.70206431479545 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9073058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 264.01 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2533e+05 | 65536 |      2 | 1.541e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.34687459423677 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9109587945251566, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 285.71 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (63.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6801e+05 | 65536 |      2 | 1.781e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.84484018140671 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9146117260335421, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 292.49 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2716e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.71528428215431 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9182646575419277, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.5%)
   patch tree reduce : 2.03 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 238.90 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (59.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3168e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.6212732563912 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9219175890503132, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.1%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 274.00 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.44 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2741e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.76475315329488 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9255705205586987, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.4%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1231.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.6%)
   LB compute        : 244.04 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0998e+05 | 65536 |      2 | 1.598e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.26820569876791 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9292234520670842, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 261.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1312.00 ns (58.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4074e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.43952179748727 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9328763835754698, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1211.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 309.31 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (66.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4134e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.55913926528474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9365293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 243.90 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (62.4%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0293e+05 | 65536 |      2 | 1.626e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.85315654646985 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9401822465922408, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.3%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 263.08 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1222.00 ns (56.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.3613e+05 | 65536 |      2 | 1.503e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.51415917966573 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9438351781006263, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.4%)
   patch tree reduce : 1943.00 ns (0.7%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 253.89 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1732.00 ns (63.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4365e+05 | 65536 |      2 | 1.477e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.02307066227307 (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.23 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 239.76 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1403.00 ns (59.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4411e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.27905667686947 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1263.4261796590001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 0.9500000000000001, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.87 us    (2.6%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 312.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (66.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1939e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.15579638835236 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9536529315083856, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.4%)
   patch tree reduce : 2.08 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 257.42 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.21 us    (67.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2831e+05 | 65536 |      2 | 1.530e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.94570943375838 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9573058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 301.37 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.68 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (60.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2504e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.28902189041574 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9609587945251566, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.2%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 285.69 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (60.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6515e+05 | 65536 |      2 | 1.795e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.27131440497111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9646117260335422, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.3%)
   patch tree reduce : 1882.00 ns (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 260.89 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1743.00 ns (62.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2554e+05 | 65536 |      2 | 1.540e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.38917804783189 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9682646575419277, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.0%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 292.92 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (63.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2492e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.2646255904054 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9719175890503132, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.2%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 971.00 ns  (0.3%)
   LB compute        : 271.77 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (65.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2267e+05 | 65536 |      2 | 1.551e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.81433633329064 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9755705205586988, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 262.04 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (64.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2746e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.77554412419047 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9792234520670843, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.4%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1292.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.4%)
   LB compute        : 247.10 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.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.2792e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.86753019553446 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9828763835754698, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 16.13 us   (5.5%)
   LB compute        : 255.25 us  (87.2%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (62.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1860e+05 | 65536 |      2 | 1.566e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.99753808906347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9865293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.17 us    (2.5%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 264.57 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.32 us    (65.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1657e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   1.0% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.58937788466828 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9901822465922409, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 289.09 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3131e+05 | 65536 |      2 | 1.519e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.54659482562593 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9938351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 1071.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 298.14 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1872.00 ns (66.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2226e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.7306603959505 (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     : 6.44 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 241.44 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (59.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5456e+05 | 65536 |      2 | 1.848e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.922996579017806 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1265.721772691 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.51 us    (2.3%)
   patch tree reduce : 2.33 us    (0.6%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.3%)
   LB compute        : 389.82 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 4.21 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.13 us    (68.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.2347e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.97508528853962 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0036529315083855, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 270.46 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (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.2973e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.22953765869626 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.007305863016771, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.15 us    (2.0%)
   patch tree reduce : 1762.00 ns (0.5%)
   gen split merge   : 1042.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 331.36 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.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.1913e+05 | 65536 |      2 | 1.564e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.10227943071966 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0109587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (2.4%)
   patch tree reduce : 2.38 us    (0.8%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.3%)
   LB compute        : 273.79 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (61.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7864e+05 | 65536 |      2 | 1.731e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.9793340181927 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.014611726033542, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.2%)
   patch tree reduce : 2.58 us    (0.8%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 287.17 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.3%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1296e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.86586411222972 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0182646575419276, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.4%)
   patch tree reduce : 2.24 us    (0.7%)
   gen split merge   : 991.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 280.19 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1862.00 ns (63.4%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1319e+05 | 65536 |      2 | 1.586e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.9106163521233 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0219175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.92 us    (2.4%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1362.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1722.00 ns (0.5%)
   LB compute        : 300.42 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (62.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2944e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.1720008965437 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0255705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.95 us    (2.2%)
   patch tree reduce : 2.36 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 299.66 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (60.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2959e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.20223840806435 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0292234520670842, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.2%)
   patch tree reduce : 2.21 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 286.90 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (62.7%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5304e+05 | 65536 |      2 | 1.856e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.84116856757348 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0328763835754697, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.3%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 284.99 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7462e+05 | 65536 |      2 | 1.749e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.17280775328585 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0365293150838553, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 271.35 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (56.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.9398e+05 | 65536 |      2 | 1.663e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.05635233403103 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0401822465922408, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.3%)
   patch tree reduce : 1723.00 ns (0.6%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1482.00 ns (0.5%)
   LB compute        : 269.56 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (65.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6154e+05 | 65536 |      2 | 1.813e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.5468868461276 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0438351781006263, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1462.00 ns (0.4%)
   LB compute        : 301.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.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.2942e+05 | 65536 |      2 | 1.526e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.16757361169756 (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     : 6.75 us    (2.3%)
   patch tree reduce : 1933.00 ns (0.7%)
   gen split merge   : 1221.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 271.46 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (67.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.2801e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.05770382205369 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1268.093902395 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.05, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.48 us    (2.5%)
   patch tree reduce : 2.75 us    (0.7%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 354.76 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.36 us    (65.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3507e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30247057444967 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0536529315083856, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 1993.00 ns (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 267.30 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3409e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.10615165504501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.057305863016771, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.07 us    (2.3%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 282.54 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2982e+05 | 65536 |      2 | 1.525e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.24822135409605 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0609587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.4%)
   patch tree reduce : 1862.00 ns (0.7%)
   gen split merge   : 1201.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 233.38 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.7%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5159e+05 | 65536 |      2 | 1.864e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.55001091970522 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0646117260335421, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (2.7%)
   patch tree reduce : 1923.00 ns (0.8%)
   gen split merge   : 1152.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 231.95 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.3692e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67325760159099 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0682646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.4%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.4%)
   LB compute        : 262.63 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (58.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.3264e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.81338653738757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0719175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1042.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 265.38 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1282.00 ns (46.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.3723e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.7351070498584 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0755705205586987, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.32 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1021.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 284.99 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1933.00 ns (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.4238e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.76901538890856 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0792234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.5%)
   patch tree reduce : 2.02 us    (0.8%)
   gen split merge   : 952.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 235.32 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6198e+05 | 65536 |      2 | 1.811e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.6348008588525 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0828763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.5%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 243.10 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (61.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5151e+05 | 65536 |      2 | 1.864e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.53403333433246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0865293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.5%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1182.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.5%)
   LB compute        : 239.42 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (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.0381e+05 | 65536 |      2 | 1.623e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.02828958215504 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0901822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.91 us    (2.0%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1342.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.3%)
   LB compute        : 325.79 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1606e+05 | 65536 |      2 | 2.074e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.4211124656354 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0938351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.8%)
   patch tree reduce : 1983.00 ns (0.5%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.3%)
   LB compute        : 323.23 us  (89.5%)
   LB move op cnt    : 0
   LB apply          : 19.92 us   (5.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1508e+05 | 65536 |      2 | 2.080e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.22459484482156 (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     : 6.98 us    (1.8%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 16.08 us   (4.2%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.3%)
   LB compute        : 343.44 us  (90.2%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (65.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1403e+05 | 65536 |      2 | 2.087e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 43.33107495879772 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1270.5672512180001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.1, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.68 us    (2.4%)
   patch tree reduce : 2.80 us    (0.7%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 368.32 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3392e+05 | 65536 |      2 | 1.963e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 67.00561092677601 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1036529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 2.23 us    (0.8%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 268.84 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.34 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (62.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0791e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.8513810908008 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1073058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.4%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 263.34 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (67.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1686e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.64725077838708 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1109587945251567, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.6%)
   patch tree reduce : 1722.00 ns (0.7%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 238.82 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (57.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6257e+05 | 65536 |      2 | 1.808e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.75382961528918 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1146117260335422, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.4%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 258.35 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0071e+05 | 65536 |      2 | 1.635e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.4078982166891 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1182646575419277, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.5%)
   patch tree reduce : 1893.00 ns (0.7%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 248.29 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.2746e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.77574273930358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1219175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 267.89 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.8%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7370e+05 | 65536 |      2 | 1.754e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.98794501298642 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1255705205586988, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1562.00 ns (0.5%)
   LB compute        : 275.48 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.81 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1662.00 ns (63.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3441e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.16948903421111 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1292234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.3%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 972.00 ns  (0.3%)
   LB compute        : 267.28 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (63.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3728e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.74603540186615 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1328763835754698, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.25 us    (2.3%)
   patch tree reduce : 1842.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1362.00 ns (0.5%)
   LB compute        : 247.12 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1623.00 ns (62.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3560e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.40725686180846 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1365293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.85 us    (2.4%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1332.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 262.52 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3434e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.15629096587782 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1401822465922409, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.1%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 293.75 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (60.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3047e+05 | 65536 |      2 | 1.522e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.37799512740831 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1438351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.3%)
   patch tree reduce : 2.08 us    (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 298.28 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1832.00 ns (64.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3323e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.9326940419217 (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     : 6.65 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 292.02 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1553.00 ns (62.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.0562e+05 | 65536 |      2 | 2.144e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.170809572954255 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1272.953380413 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.1500000000000001, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.79 us    (2.4%)
   patch tree reduce : 2.56 us    (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 374.76 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.27 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (67.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0931e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.13219181545193 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1536529315083857, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.18 us    (2.1%)
   patch tree reduce : 2.13 us    (0.6%)
   gen split merge   : 1051.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 315.01 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.4%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0821e+05 | 65536 |      2 | 1.605e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.91276731029006 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1573058630167712, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (1.9%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.3%)
   LB compute        : 331.00 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1873.00 ns (65.8%)
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.1999e+05 | 65536 |      2 | 1.560e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.2758480831997 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1609587945251567, dt = 0.003652931508385533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 2.28 us    (0.8%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1513.00 ns (0.5%)
   LB compute        : 270.71 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.5%)
Info: cfl dt = 0.003652931508385533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2630e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.54224145097005 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1646117260335422, dt = 0.003652931508385533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 259.40 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1252.00 ns (57.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.2782e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.84619943559392 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1682646575419278, dt = 0.003652931508385533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.04 us    (2.4%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 269.57 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.07 us    (66.6%)
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.3720e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.72924533447602 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1719175890503133, dt = 0.003652931508385533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.5%)
   LB compute        : 249.46 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3227e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.73967190452805 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1755705205586988, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.4%)
   LB compute        : 286.59 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (63.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6235e+05 | 65536 |      2 | 1.809e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.71040870989096 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1792234520670843, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 266.52 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.51 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1871e+05 | 65536 |      2 | 2.056e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.952424229999956 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1828763835754699, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.0%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1091.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1413.00 ns (0.4%)
   LB compute        : 326.32 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (60.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7339e+05 | 65536 |      2 | 1.755e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.92551594836678 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1865293150838554, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 1723.00 ns (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.5%)
   LB compute        : 289.30 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.39 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2045e+05 | 65536 |      2 | 2.045e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.30255296008191 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.190182246592241, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (1.9%)
   patch tree reduce : 2.09 us    (0.6%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.3%)
   LB compute        : 317.87 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3755e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.79926307930582 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1938351781006264, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.1%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1201.00 ns (0.4%)
   LB compute        : 283.02 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1612.00 ns (63.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3910e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.11002935955834 (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     : 6.41 us    (1.9%)
   patch tree reduce : 2.04 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 309.97 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (64.6%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3662e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.24592396745842 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1275.332152032 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.2000000000000002, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.4%)
   patch tree reduce : 2.24 us    (0.6%)
   gen split merge   : 961.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.3%)
   LB compute        : 369.53 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (65.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3489e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.26599814515411 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2036529315083857, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.97 us    (2.2%)
   patch tree reduce : 2.35 us    (0.9%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 17.16 us   (6.2%)
   LB compute        : 236.62 us  (86.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (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.3417e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   1.4% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.1203636034171 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2073058630167712, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 276.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.08 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (60.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3999e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.28831732944703 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2109587945251568, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1022.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 277.14 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (63.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3336e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.95852645758818 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2146117260335423, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.7%)
   patch tree reduce : 1852.00 ns (0.7%)
   gen split merge   : 1272.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.5%)
   LB compute        : 228.35 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.17 us    (1.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (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    | 3.5025e+05 | 65536 |      2 | 1.871e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.28142378522102 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2182646575419278, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.6%)
   patch tree reduce : 2.09 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 241.81 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 4.22 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (61.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4305e+05 | 65536 |      2 | 1.479e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.90292352084428 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2219175890503133, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.34 us    (2.1%)
   patch tree reduce : 1953.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 280.65 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (66.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.0047e+05 | 65536 |      2 | 1.636e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.35926492141783 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2255705205586989, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.2%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 273.07 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (69.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.0730e+05 | 65536 |      2 | 1.609e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.73009620730214 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2292234520670844, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.3%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 261.21 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1672.00 ns (61.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2901e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.08655132554463 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.23287638357547, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (1.2%)
   patch tree reduce : 2.06 us    (0.4%)
   gen split merge   : 1042.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.2%)
   LB compute        : 523.89 us  (95.8%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.06 us    (65.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1215e+05 | 65536 |      2 | 2.100e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.63647624523929 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2365293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 1963.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 303.00 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1633.00 ns (62.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0256e+05 | 65536 |      2 | 1.628e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.77884576069152 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.240182246592241, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.2%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.4%)
   LB compute        : 268.37 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (62.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1732e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.7392553776084 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2438351781006265, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 280.77 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1833.00 ns (64.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1219e+05 | 65536 |      2 | 1.590e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.71144708372255 (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     : 6.64 us    (2.4%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1191.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 249.72 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (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.1703e+05 | 65536 |      2 | 1.572e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 57.5420751200354 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1277.67309479 (s)                                        [Godunov][rank=0]
amr::Godunov: t = 1.25, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.93 us    (2.5%)
   patch tree reduce : 2.23 us    (0.6%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 325.75 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (66.3%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1137e+05 | 65536 |      2 | 1.593e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.54673588626135 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2536529315083855, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 272.56 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (66.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1451e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.17630337767483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.257305863016771, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1542.00 ns (0.6%)
   LB compute        : 250.46 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1342.00 ns (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.1021e+05 | 65536 |      2 | 1.598e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.31336354038571 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2609587945251566, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.5%)
   patch tree reduce : 2.01 us    (0.8%)
   gen split merge   : 951.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 243.02 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1740e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.75629979417208 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.264611726033542, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 277.99 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (64.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0566e+05 | 65536 |      2 | 1.616e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.40108554016265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2682646575419276, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.02 us    (2.7%)
   patch tree reduce : 2.00 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 240.76 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (57.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1558e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.39032815115168 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2719175890503132, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.96 us    (2.7%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 239.60 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1413.00 ns (59.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3204e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.69381053330375 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2755705205586987, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.4%)
   patch tree reduce : 2.08 us    (0.8%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1533.00 ns (0.6%)
   LB compute        : 247.73 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (61.4%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2745e+05 | 65536 |      2 | 1.533e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.77341144747639 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2792234520670842, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.6%)
   patch tree reduce : 1672.00 ns (0.6%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 247.07 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1532.00 ns (60.2%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1499e+05 | 65536 |      2 | 1.579e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.27232238770897 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2828763835754697, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.4%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1472.00 ns (0.6%)
   LB compute        : 240.27 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.4%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8844e+05 | 65536 |      2 | 1.687e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.94441102340033 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2865293150838553, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.3%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 265.82 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4200e+05 | 65536 |      2 | 1.916e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 68.62686828688415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2901822465922408, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.33 us    (2.4%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 288.55 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1713.00 ns (62.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3170e+05 | 65536 |      2 | 1.518e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.62613303078426 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2938351781006263, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 263.78 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1893.00 ns (63.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2024e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.26020877633547 (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     : 6.22 us    (1.8%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1131.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1372.00 ns (0.4%)
   LB compute        : 316.06 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (65.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7119e+05 | 65536 |      2 | 1.766e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 51.2179074365025 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1280.057690086 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.3, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.4%)
   patch tree reduce : 2.05 us    (0.5%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.3%)
   LB compute        : 374.79 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1973.00 ns (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.2205e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.68938634771368 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3036529315083856, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.6%)
   patch tree reduce : 1843.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 237.15 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (63.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1673e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   1.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.62209677053934 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.307305863016771, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.5%)
   patch tree reduce : 1793.00 ns (0.7%)
   gen split merge   : 1161.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 237.19 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.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.1594e+05 | 65536 |      2 | 1.576e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.46403428872982 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3109587945251566, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 22.01 us   (8.0%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.5%)
   LB compute        : 237.49 us  (86.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.1%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2085e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.44798438328955 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3146117260335421, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.35 us    (2.9%)
   patch tree reduce : 1873.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 232.79 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.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.2092e+05 | 65536 |      2 | 1.557e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.46317784700712 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3182646575419277, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.2%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 270.42 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1772.00 ns (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.2130e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.53882019121409 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3219175890503132, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.1%)
   patch tree reduce : 2.07 us    (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 288.87 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (66.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.8469e+05 | 65536 |      2 | 1.704e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.19343701070137 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3255705205586987, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 2.00 us    (0.7%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 261.87 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (62.2%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1469e+05 | 65536 |      2 | 2.083e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.145296731140675 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3292234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (1.8%)
   patch tree reduce : 1943.00 ns (0.5%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.3%)
   LB compute        : 333.65 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (66.5%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8947e+05 | 65536 |      2 | 1.683e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.1520316586435 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3328763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1052.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 287.51 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (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.2137e+05 | 65536 |      2 | 1.555e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.55297373981259 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3365293150838553, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (1.9%)
   patch tree reduce : 2.07 us    (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 313.46 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1963.00 ns (66.9%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2381e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.04199336062685 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3401822465922408, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.7%)
   patch tree reduce : 2.07 us    (0.8%)
   gen split merge   : 1161.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.5%)
   LB compute        : 232.31 us  (91.3%)
   LB move op cnt    : 0
   LB apply          : 3.93 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (64.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2041e+05 | 65536 |      2 | 1.559e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.35931603516195 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3438351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.2%)
   patch tree reduce : 2.01 us    (0.7%)
   gen split merge   : 982.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1042.00 ns (0.4%)
   LB compute        : 264.70 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1643.00 ns (62.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3507e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.30100775370215 (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     : 6.62 us    (2.2%)
   patch tree reduce : 2.23 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 283.31 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3754e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.37297217629059 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1282.3892097 (s)                                         [Godunov][rank=0]
amr::Godunov: t = 1.35, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.35 us    (2.3%)
   patch tree reduce : 2.27 us    (0.6%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 333.88 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.12 us    (63.9%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7056e+05 | 65536 |      2 | 1.769e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.35624201471128 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3536529315083856, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.26 us    (2.3%)
   patch tree reduce : 1803.00 ns (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 249.57 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (61.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1927e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.13168498589266 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3573058630167711, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.6%)
   patch tree reduce : 2.14 us    (0.8%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 249.17 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2585e+05 | 65536 |      2 | 1.539e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.45265805641577 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3609587945251567, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.7%)
   patch tree reduce : 2.31 us    (0.9%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1291.00 ns (0.5%)
   LB compute        : 245.84 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (61.3%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2418e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.1166787947193 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3646117260335422, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.27 us    (2.4%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 278.13 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.1811e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.89908130983167 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3682646575419277, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.5%)
   patch tree reduce : 2.27 us    (0.8%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.5%)
   LB compute        : 246.76 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.76 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (61.6%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5160e+05 | 65536 |      2 | 1.864e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 70.55247949359332 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3719175890503132, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 265.59 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.66 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (61.7%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3635e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.5590149903375 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3755705205586988, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.31 us    (2.5%)
   patch tree reduce : 1913.00 ns (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 229.06 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1462.00 ns (61.1%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2378e+05 | 65536 |      2 | 2.024e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.96959121365457 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3792234520670843, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.4%)
   LB compute        : 277.78 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (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.3722e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.73235139003903 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3828763835754698, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.5%)
   patch tree reduce : 1963.00 ns (0.8%)
   gen split merge   : 1011.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 233.78 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (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.4138e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.56776733239288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3865293150838554, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.22 us    (1.9%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.3%)
   LB compute        : 302.49 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (61.0%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1980e+05 | 65536 |      2 | 2.049e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.17095785269255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3901822465922409, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (1.9%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1292.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1072.00 ns (0.3%)
   LB compute        : 303.28 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (61.4%)
Info: cfl dt = 0.003652931508385532                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3992e+05 | 65536 |      2 | 1.490e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.27487905097124 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3938351781006264, dt = 0.003652931508385532
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.48 us    (2.1%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 285.16 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (62.8%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3329e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.9445287842074 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.397488109609012, dt = 0.002511890390988203
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.43 us    (2.5%)
   patch tree reduce : 2.36 us    (0.9%)
   gen split merge   : 1152.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.5%)
   LB compute        : 232.38 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (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    | 4.4350e+05 | 65536 |      2 | 1.478e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.19491097743883 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1284.7637748020002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.4000000000000001, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.69 us    (2.5%)
   patch tree reduce : 2.61 us    (0.7%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.3%)
   LB compute        : 360.28 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.59 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (66.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.3703e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.69447744421855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4036529315083857, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 271.27 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (60.9%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3722e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.73354775124638 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4073058630167712, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.1%)
   patch tree reduce : 2.03 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1602.00 ns (0.5%)
   LB compute        : 294.52 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1763.00 ns (63.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4059e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.40885838161758 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4109587945251567, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.70 us    (1.9%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 280.40 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.0%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9449e+05 | 65536 |      2 | 1.661e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.158328661962 (tsim/hr)                              [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4146117260335422, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.4%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 260.17 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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.3695e+05 | 65536 |      2 | 1.500e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.67928721344832 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4182646575419278, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.7%)
   patch tree reduce : 1993.00 ns (0.8%)
   gen split merge   : 1031.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.5%)
   LB compute        : 225.26 us  (90.9%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (60.9%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4409e+05 | 65536 |      2 | 1.476e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.11088112036674 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4219175890503133, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.2%)
   patch tree reduce : 1832.00 ns (0.6%)
   gen split merge   : 1222.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 272.64 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (66.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.4237e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.76704103713173 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4255705205586988, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.18 us    (2.1%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1041.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 268.71 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1302.00 ns (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.3891e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.07219498524037 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4292234520670843, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.2%)
   patch tree reduce : 2.78 us    (0.9%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 264.21 us  (87.0%)
   LB move op cnt    : 0
   LB apply          : 20.27 us   (6.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (60.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.0316e+05 | 65536 |      2 | 1.626e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.89855795861475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4328763835754699, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.1%)
   patch tree reduce : 2.12 us    (0.7%)
   gen split merge   : 1291.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 303.98 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (63.6%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4676e+05 | 65536 |      2 | 1.467e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.64840400916908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4365293150838554, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.87 us    (1.8%)
   patch tree reduce : 2.16 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 304.51 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.09 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.04 us    (64.5%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3750e+05 | 65536 |      2 | 1.498e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.78863206946731 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.440182246592241, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.71 us    (2.7%)
   patch tree reduce : 2.37 us    (0.9%)
   gen split merge   : 1262.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.5%)
   LB compute        : 230.65 us  (91.2%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.03 us    (63.4%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1656e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.58683080252115 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4438351781006264, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.4%)
   patch tree reduce : 1792.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.4%)
   LB compute        : 244.49 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (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    | 3.5475e+05 | 65536 |      2 | 1.847e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.18518210434752 (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     : 6.67 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 268.67 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.04 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4079e+05 | 65536 |      2 | 1.487e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 60.821500367059095 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1287.002701867 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.4500000000000002, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.39 us    (2.6%)
   patch tree reduce : 2.22 us    (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.4%)
   LB compute        : 335.59 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (66.2%)
Info: cfl dt = 0.0036529315083855315                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4205e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.70216461668007 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4536529315083857, dt = 0.0036529315083855315
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.2%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 267.01 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1812.00 ns (59.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1614e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.50421458633485 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4573058630167712, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 264.01 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (60.5%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3815e+05 | 65536 |      2 | 1.496e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.91960770295996 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4609587945251568, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 1863.00 ns (0.6%)
   gen split merge   : 1282.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.4%)
   LB compute        : 279.64 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.1%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2696e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.67349829351058 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4646117260335423, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.00 us    (2.5%)
   patch tree reduce : 2.10 us    (0.8%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1101.00 ns (0.4%)
   LB compute        : 255.12 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1583.00 ns (62.0%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4747e+05 | 65536 |      2 | 1.465e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 89.78992275133312 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4682646575419278, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.28 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 276.89 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.7%)
Info: cfl dt = 0.0036529315083855328                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3961e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.21347539555633 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4719175890503133, dt = 0.0036529315083855328
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.69 us    (2.7%)
   patch tree reduce : 1833.00 ns (0.7%)
   gen split merge   : 1002.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 229.48 us  (91.1%)
   LB move op cnt    : 0
   LB apply          : 4.77 us    (1.9%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1702.00 ns (61.1%)
Info: cfl dt = 0.003652931508385533                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3967e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.2238775140494 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4755705205586989, dt = 0.003652931508385533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 2.20 us    (0.9%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1142.00 ns (0.4%)
   LB compute        : 236.98 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.65 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.6%)
Info: cfl dt = 0.0036529315083855345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4254e+05 | 65536 |      2 | 1.481e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.80027457501855 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4792234520670844, dt = 0.0036529315083855345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.0%)
   patch tree reduce : 2.33 us    (0.7%)
   gen split merge   : 962.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.4%)
   LB compute        : 320.57 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (61.9%)
Info: cfl dt = 0.0036529315083855345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3538e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.36475080833524 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.48287638357547, dt = 0.0036529315083855345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 2.37 us    (0.8%)
   gen split merge   : 1061.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.5%)
   LB compute        : 279.36 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.61 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (58.0%)
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.1455e+05 | 65536 |      2 | 1.581e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.18327983832738 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4865293150838554, dt = 0.0036529315083855354
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 2.32 us    (0.8%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 265.00 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (58.4%)
Info: cfl dt = 0.0036529315083855345                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1277e+05 | 65536 |      2 | 2.095e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.76046312097887 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.490182246592241, dt = 0.0036529315083855345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.32 us    (2.0%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 334.76 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (63.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    | 4.3536e+05 | 65536 |      2 | 1.505e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.36019373422143 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4938351781006265, dt = 0.0036529315083855345
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.3%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.4%)
   LB compute        : 267.03 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.1%)
Info: cfl dt = 0.0036529315083855354                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1665e+05 | 65536 |      2 | 2.070e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.54022994472403 (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     : 6.44 us    (1.8%)
   patch tree reduce : 1873.00 ns (0.5%)
   gen split merge   : 1372.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1181.00 ns (0.3%)
   LB compute        : 327.92 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.9%)
Info: cfl dt = 0.0036529315083855354                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2036e+05 | 65536 |      2 | 2.046e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 44.203513717531855 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1289.3644229860001 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.5, dt = 0.0036529315083855354
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.30 us    (2.3%)
   patch tree reduce : 1833.00 ns (0.5%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.3%)
   LB compute        : 340.53 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.48 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (65.0%)
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.2796e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.87486113223798 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5036529315083855, dt = 0.0036529315083855354
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.4%)
   patch tree reduce : 1853.00 ns (0.7%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.5%)
   LB compute        : 247.36 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.99 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1863.00 ns (63.9%)
Info: cfl dt = 0.003652931508385536                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3430e+05 | 65536 |      2 | 1.509e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.14700705098912 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.507305863016771, dt = 0.003652931508385536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.4%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1151.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1091.00 ns (0.4%)
   LB compute        : 249.99 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.1%)
Info: cfl dt = 0.003652931508385538                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2409e+05 | 65536 |      2 | 1.545e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.09879486468265 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5109587945251566, dt = 0.003652931508385538
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 2.06 us    (0.7%)
   gen split merge   : 1062.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.4%)
   LB compute        : 275.48 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.8%)
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    | 4.3960e+05 | 65536 |      2 | 1.491e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.20995590773079 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.514611726033542, dt = 0.003652931508385539
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1453.00 ns (0.5%)
   LB compute        : 265.87 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.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    | 4.4193e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.67877038584639 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5182646575419276, dt = 0.003652931508385539
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.3%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 268.84 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 4.15 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (62.6%)
Info: cfl dt = 0.00365293150838554                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2188e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.65593554942949 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5219175890503132, dt = 0.00365293150838554
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.5%)
   patch tree reduce : 1953.00 ns (0.7%)
   gen split merge   : 1352.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 246.02 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (57.9%)
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.1962e+05 | 65536 |      2 | 1.562e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.20102474665742 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5255705205586987, dt = 0.0036529315083855415
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (1.9%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 311.67 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (61.3%)
Info: cfl dt = 0.0036529315083855423                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5784e+05 | 65536 |      2 | 1.831e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.80563264883358 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5292234520670842, dt = 0.0036529315083855423
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.61 us    (2.2%)
   patch tree reduce : 2.62 us    (0.9%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1192.00 ns (0.4%)
   LB compute        : 276.30 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 18.84 us   (94.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    | 3.8417e+05 | 65536 |      2 | 1.706e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.08737167075749 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5328763835754697, dt = 0.0036529315083855428
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.92 us    (2.5%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 255.77 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.53 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.3%)
Info: cfl dt = 0.003652931508385544                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3211e+05 | 65536 |      2 | 1.973e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.64141272971617 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5365293150838553, dt = 0.003652931508385544
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.44 us    (2.3%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.5%)
   LB compute        : 260.27 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (58.9%)
Info: cfl dt = 0.0036529315083855454                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2466e+05 | 65536 |      2 | 2.019e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 65.14684223453222 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5401822465922408, dt = 0.0036529315083855454
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 961.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 300.19 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1533.00 ns (62.0%)
Info: cfl dt = 0.003652931508385547                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8421e+05 | 65536 |      2 | 1.706e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.09531517166066 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5438351781006263, dt = 0.003652931508385547
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 240.07 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (60.2%)
Info: cfl dt = 0.0036529315083855493                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7111e+05 | 65536 |      2 | 1.766e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.46784645530283 (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     : 6.91 us    (2.2%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1121.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1121.00 ns (0.4%)
   LB compute        : 285.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.8%)
Info: cfl dt = 0.0036529315083855506                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3391e+05 | 65536 |      2 | 1.510e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.87179022436713 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1291.7538564160002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.55, dt = 0.0036529315083855506
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.22 us    (2.8%)
   patch tree reduce : 2.55 us    (0.8%)
   gen split merge   : 1132.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 307.57 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (62.3%)
Info: cfl dt = 0.003652931508385552                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2341e+05 | 65536 |      2 | 1.548e-01 | 0.0% |   1.1% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.96251640725438 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5536529315083856, dt = 0.003652931508385552
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.5%)
   patch tree reduce : 1733.00 ns (0.7%)
   gen split merge   : 1302.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.5%)
   LB compute        : 241.91 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.88 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.0%)
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.2038e+05 | 65536 |      2 | 1.559e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.3546704711095 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.557305863016771, dt = 0.0036529315083855536
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 2.50 us    (0.9%)
   gen split merge   : 1192.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.5%)
   LB compute        : 243.13 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.60 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1823.00 ns (61.5%)
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.2384e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.04879403031997 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5609587945251566, dt = 0.0036529315083855553
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.5%)
   LB compute        : 277.17 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.02 us    (62.9%)
Info: cfl dt = 0.0036529315083855575                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1832e+05 | 65536 |      2 | 1.567e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.9416496563551 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5646117260335421, dt = 0.0036529315083855575
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 278.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.36 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.38 us    (68.4%)
Info: cfl dt = 0.00365293150838556                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2176e+05 | 65536 |      2 | 1.554e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.63133849459378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5682646575419277, dt = 0.00365293150838556
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.2%)
   patch tree reduce : 2.40 us    (0.8%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 275.63 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (64.9%)
Info: cfl dt = 0.003652931508385562                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2276e+05 | 65536 |      2 | 1.550e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.83235316752429 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5719175890503132, dt = 0.003652931508385562
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.5%)
   patch tree reduce : 1792.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 240.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (64.2%)
Info: cfl dt = 0.003652931508385565                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2502e+05 | 65536 |      2 | 1.542e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.28508365043255 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5755705205586987, dt = 0.003652931508385565
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.86 us    (2.2%)
   patch tree reduce : 1802.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 294.56 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1843.00 ns (64.4%)
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.0423e+05 | 65536 |      2 | 1.621e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.11376659737888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5792234520670843, dt = 0.003652931508385568
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.14 us    (2.3%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 248.53 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1682.00 ns (61.1%)
Info: cfl dt = 0.0036529315083855705                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1251e+05 | 65536 |      2 | 1.589e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.77392430614888 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5828763835754698, dt = 0.0036529315083855705
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.1%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 310.96 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1653.00 ns (62.0%)
Info: cfl dt = 0.0036529315083855744                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5591e+05 | 65536 |      2 | 1.841e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.41775720353026 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5865293150838553, dt = 0.0036529315083855744
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.3%)
   patch tree reduce : 2.05 us    (0.7%)
   gen split merge   : 1362.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 268.06 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (60.5%)
Info: cfl dt = 0.0036529315083855774                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2391e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.06339453130248 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5901822465922408, dt = 0.0036529315083855774
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (2.2%)
   patch tree reduce : 2.25 us    (0.7%)
   gen split merge   : 971.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 294.88 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.35 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1603.00 ns (59.1%)
Info: cfl dt = 0.003652931508385581                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2788e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.85938318843661 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5938351781006264, dt = 0.003652931508385581
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 1061.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1383.00 ns (0.4%)
   LB compute        : 305.52 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.01 us    (65.1%)
Info: cfl dt = 0.0036529315083855853                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1365e+05 | 65536 |      2 | 2.089e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.93679825910881 (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     : 6.53 us    (1.9%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 1161.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1392.00 ns (0.4%)
   LB compute        : 329.80 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1563.00 ns (62.4%)
Info: cfl dt = 0.003652931508385588                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0547e+05 | 65536 |      2 | 1.616e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 55.94835267260433 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1294.102245686 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.6, dt = 0.003652931508385588
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.58 us    (2.4%)
   patch tree reduce : 2.26 us    (0.6%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.3%)
   LB compute        : 335.73 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1593.00 ns (61.4%)
Info: cfl dt = 0.003652931508385592                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0426e+05 | 65536 |      2 | 1.621e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.11904278146908 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6036529315083856, dt = 0.003652931508385592
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1422.00 ns (0.5%)
   LB compute        : 262.55 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.3%)
Info: cfl dt = 0.0036529315083855965                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6349e+05 | 65536 |      2 | 1.803e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.93936903150201 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6073058630167711, dt = 0.0036529315083855965
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.65 us    (2.2%)
   patch tree reduce : 2.10 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 281.08 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1693.00 ns (60.6%)
Info: cfl dt = 0.0036529315083856017                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1005e+05 | 65536 |      2 | 1.598e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.28168581101434 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6109587945251567, dt = 0.0036529315083856017
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.5%)
   patch tree reduce : 2.21 us    (0.8%)
   gen split merge   : 1192.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.5%)
   LB compute        : 241.85 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.82 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.7%)
Info: cfl dt = 0.0036529315083856065                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1233e+05 | 65536 |      2 | 1.589e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.73916121352974 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6146117260335422, dt = 0.0036529315083856065
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.70 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.5%)
   LB compute        : 264.03 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.40 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (58.3%)
Info: cfl dt = 0.0036529315083856126                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9830e+05 | 65536 |      2 | 1.645e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.92431145999406 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6182646575419277, dt = 0.0036529315083856126
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.87 us    (1.0%)
   patch tree reduce : 1773.00 ns (0.3%)
   gen split merge   : 1222.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.2%)
   LB compute        : 631.15 us  (94.8%)
   LB move op cnt    : 0
   LB apply          : 10.53 us   (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.24 us    (68.7%)
Info: cfl dt = 0.0036529315083856186                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0322e+05 | 65536 |      2 | 1.625e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.9116367312457 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6219175890503132, dt = 0.0036529315083856186
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.20 us    (2.3%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 294.69 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.95 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1813.00 ns (62.6%)
Info: cfl dt = 0.0036529315083856256                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1354e+05 | 65536 |      2 | 1.585e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.9823255917167 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6255705205586988, dt = 0.0036529315083856256
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.5%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 244.57 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.89 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (65.3%)
Info: cfl dt = 0.003652931508385632                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1800e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.87597592089205 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6292234520670843, dt = 0.003652931508385632
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.57 us    (2.5%)
   patch tree reduce : 2.16 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 243.00 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.7%)
Info: cfl dt = 0.0036529315083856395                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0781e+05 | 65536 |      2 | 1.607e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.83108780660811 (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     : 6.56 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1051.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1251.00 ns (0.5%)
   LB compute        : 248.83 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.50 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (59.3%)
Info: cfl dt = 0.0036529315083856477                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9575e+05 | 65536 |      2 | 1.656e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.4114418387649 (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     : 6.09 us    (1.0%)
   patch tree reduce : 2.28 us    (0.4%)
   gen split merge   : 1102.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1012.00 ns (0.2%)
   LB compute        : 607.28 us  (96.4%)
   LB move op cnt    : 0
   LB apply          : 4.50 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.23 us    (68.8%)
Info: cfl dt = 0.003652931508385656                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1008e+05 | 65536 |      2 | 1.598e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.2875434284791 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6401822465922413, dt = 0.003652931508385656
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.54 us    (2.5%)
   patch tree reduce : 2.29 us    (0.9%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 242.53 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 4.11 us    (1.6%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1573.00 ns (62.3%)
Info: cfl dt = 0.0036529315083856646                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0938e+05 | 65536 |      2 | 1.601e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.14665929898378 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.643835178100627, dt = 0.0036529315083856646
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.3%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1082.00 ns (0.4%)
   LB compute        : 271.94 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (63.5%)
Info: cfl dt = 0.003652931508385675                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2684e+05 | 65536 |      2 | 1.535e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.65055006857189 (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     : 7.01 us    (2.6%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.5%)
   LB compute        : 246.34 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.55 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (63.8%)
Info: cfl dt = 0.003652931508385681                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4375e+05 | 65536 |      2 | 1.907e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 47.431101629972034 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1296.471911129 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.6500000000000001, dt = 0.003652931508385681
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.42 us    (2.7%)
   patch tree reduce : 2.58 us    (0.7%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 326.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.00 us    (67.3%)
Info: cfl dt = 0.003652931508385693                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2602e+05 | 65536 |      2 | 1.538e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.48531229573373 (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     : 6.71 us    (2.4%)
   patch tree reduce : 2.41 us    (0.8%)
   gen split merge   : 1181.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 261.14 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 4.13 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 5.30 us    (72.0%)
Info: cfl dt = 0.0036529315083857054                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2786e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.85530802252028 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6573058630167716, dt = 0.0036529315083857054
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.21 us    (2.2%)
   patch tree reduce : 2.17 us    (0.8%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 259.84 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.79 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (60.6%)
Info: cfl dt = 0.003652931508385718                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6800e+05 | 65536 |      2 | 1.781e-01 | 0.0% |   0.9% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.8443359534908 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6609587945251574, dt = 0.003652931508385718
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.0%)
   patch tree reduce : 1752.00 ns (0.6%)
   gen split merge   : 1352.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1612.00 ns (0.5%)
   LB compute        : 292.50 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1673.00 ns (63.0%)
Info: cfl dt = 0.0036529315083857305                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1282e+05 | 65536 |      2 | 2.095e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.770863937222344 (tsim/hr)                           [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6646117260335431, dt = 0.0036529315083857305
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (1.6%)
   patch tree reduce : 1823.00 ns (0.5%)
   gen split merge   : 1102.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.3%)
   LB compute        : 368.91 us  (94.2%)
   LB move op cnt    : 0
   LB apply          : 4.16 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.40 us    (72.1%)
Info: cfl dt = 0.0036529315083857453                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2390e+05 | 65536 |      2 | 1.546e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.0609477450844 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6682646575419289, dt = 0.0036529315083857453
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.98 us    (2.0%)
   patch tree reduce : 2.01 us    (0.6%)
   gen split merge   : 1142.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1452.00 ns (0.4%)
   LB compute        : 329.25 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1943.00 ns (64.9%)
Info: cfl dt = 0.0036529315083857605                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3585e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45778248126268 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6719175890503146, dt = 0.0036529315083857605
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.77 us    (2.4%)
   patch tree reduce : 2.24 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 257.84 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.6%)
Info: cfl dt = 0.0036529315083857765                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3675e+05 | 65536 |      2 | 1.501e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.63793542342769 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6755705205587004, dt = 0.0036529315083857765
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.17 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 962.00 ns  (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 247.94 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (63.5%)
Info: cfl dt = 0.0036529315083857943                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3084e+05 | 65536 |      2 | 1.521e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.45226738410304 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6792234520670861, dt = 0.0036529315083857943
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.81 us    (2.6%)
   patch tree reduce : 1973.00 ns (0.8%)
   gen split merge   : 1252.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 235.99 us  (91.4%)
   LB move op cnt    : 0
   LB apply          : 3.80 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1472.00 ns (61.7%)
Info: cfl dt = 0.003652931508385813                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3248e+05 | 65536 |      2 | 1.515e-01 | 0.0% |   0.8% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.78280244580507 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6828763835754719, dt = 0.003652931508385813
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.40 us    (2.2%)
   patch tree reduce : 1973.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 316.41 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.12 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (63.8%)
Info: cfl dt = 0.0036529315083858316                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.9860e+05 | 65536 |      2 | 1.644e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 79.9844440768223 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6865293150838576, dt = 0.0036529315083858316
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.23 us    (2.2%)
   patch tree reduce : 1793.00 ns (0.6%)
   gen split merge   : 1202.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1442.00 ns (0.5%)
   LB compute        : 265.42 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.6%)
Info: cfl dt = 0.0036529315083858533                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3331e+05 | 65536 |      2 | 1.512e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.94874767659246 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6901822465922434, dt = 0.0036529315083858533
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.3%)
   patch tree reduce : 1812.00 ns (0.7%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 256.94 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.96 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.5%)
Info: cfl dt = 0.0036529315083858754                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3276e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.83918650617483 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6938351781006291, dt = 0.0036529315083858754
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.56 us    (2.1%)
   patch tree reduce : 1883.00 ns (0.6%)
   gen split merge   : 1072.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 286.61 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.0%)
Info: cfl dt = 0.0036529315083858992                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2106e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.49024857603557 (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     : 7.03 us    (1.1%)
   patch tree reduce : 2.00 us    (0.3%)
   gen split merge   : 1452.00 ns (0.2%)
   split / merge op  : 0/0
   apply split merge : 1432.00 ns (0.2%)
   LB compute        : 612.29 us  (96.2%)
   LB move op cnt    : 0
   LB apply          : 4.45 us    (0.7%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.27 us    (70.5%)
Info: cfl dt = 0.0036529315083859166                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3459e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.96603704385558 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1298.7765539010002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.7000000000000002, dt = 0.0036529315083859166
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.75 us    (2.3%)
   patch tree reduce : 2.29 us    (0.6%)
   gen split merge   : 1031.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 351.28 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (66.6%)
Info: cfl dt = 0.0036529315083859443                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1410e+05 | 65536 |      2 | 1.583e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.09367564753107 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7036529315083861, dt = 0.0036529315083859443
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.99 us    (2.6%)
   patch tree reduce : 1642.00 ns (0.6%)
   gen split merge   : 1012.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 246.75 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (58.3%)
Info: cfl dt = 0.0036529315083859725                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2434e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   1.2% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.14832139019899 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7073058630167721, dt = 0.0036529315083859725
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.2%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 942.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1252.00 ns (0.4%)
   LB compute        : 288.01 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.18 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (59.7%)
Info: cfl dt = 0.003652931508386005                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1603e+05 | 65536 |      2 | 1.575e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.48204900224012 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.710958794525158, dt = 0.003652931508386005
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.76 us    (2.2%)
   patch tree reduce : 2.19 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.4%)
   LB compute        : 280.82 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.74 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1592.00 ns (62.6%)
Info: cfl dt = 0.0036529315083860376                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1232e+05 | 65536 |      2 | 1.589e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.73576412054692 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.714611726033544, dt = 0.0036529315083860376
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.0%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1182.00 ns (0.4%)
   LB compute        : 310.41 us  (93.6%)
   LB move op cnt    : 0
   LB apply          : 3.52 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (61.5%)
Info: cfl dt = 0.0036529315083860727                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1787e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.85127978728644 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.71826465754193, dt = 0.0036529315083860727
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 2.13 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 278.90 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1712.00 ns (64.0%)
Info: cfl dt = 0.0036529315083861104                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3219e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.72328016632933 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.721917589050316, dt = 0.0036529315083861104
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.79 us    (2.5%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1232.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 244.28 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.84 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1452.00 ns (59.9%)
Info: cfl dt = 0.0036529315083861495                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5494e+05 | 65536 |      2 | 1.846e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 71.22225532049828 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7255705205587022, dt = 0.0036529315083861495
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.3%)
   patch tree reduce : 1913.00 ns (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 258.34 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (62.8%)
Info: cfl dt = 0.003652931508386193                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1224e+05 | 65536 |      2 | 1.590e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.72064872168441 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7292234520670884, dt = 0.003652931508386193
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.5%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 249.39 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1562.00 ns (61.6%)
Info: cfl dt = 0.003652931508386238                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1670e+05 | 65536 |      2 | 1.573e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.61583974053994 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7328763835754746, dt = 0.003652931508386238
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.5%)
   patch tree reduce : 1692.00 ns (0.6%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1382.00 ns (0.5%)
   LB compute        : 243.98 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1322.00 ns (57.4%)
Info: cfl dt = 0.003652931508386286                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1293e+05 | 65536 |      2 | 1.587e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.85967744765871 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7365293150838608, dt = 0.003652931508386286
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.83 us    (2.3%)
   patch tree reduce : 1623.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 270.84 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1352.00 ns (58.7%)
Info: cfl dt = 0.003652931508386338                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0695e+05 | 65536 |      2 | 1.610e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.65855739327091 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.740182246592247, dt = 0.003652931508386338
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.51 us    (2.2%)
   patch tree reduce : 1882.00 ns (0.6%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1403.00 ns (0.5%)
   LB compute        : 271.94 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.8%)
Info: cfl dt = 0.0036529315083863923                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.2166e+05 | 65536 |      2 | 2.037e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 64.54431238100514 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7438351781006334, dt = 0.0036529315083863923
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.9%)
   patch tree reduce : 1813.00 ns (0.5%)
   gen split merge   : 1182.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.3%)
   LB compute        : 327.10 us  (93.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (62.8%)
Info: cfl dt = 0.0036529315083864504                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7597e+05 | 65536 |      2 | 1.743e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.44224465246576 (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     : 6.54 us    (2.4%)
   patch tree reduce : 1823.00 ns (0.7%)
   gen split merge   : 1091.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.5%)
   LB compute        : 246.79 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (63.3%)
Info: cfl dt = 0.003652931508386493                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1020e+05 | 65536 |      2 | 2.113e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.8020173656238 (tsim/hr)                             [amr::RAMSES][rank=0]
Info: time since start : 1301.206071003 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.75, dt = 0.003652931508386493
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.27 us    (2.5%)
   patch tree reduce : 2.00 us    (0.5%)
   gen split merge   : 981.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 343.61 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.28 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (62.3%)
Info: cfl dt = 0.0036529315083865576                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4053e+05 | 65536 |      2 | 1.488e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.39742383367549 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7536529315083864, dt = 0.0036529315083865576
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.52 us    (2.5%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1443.00 ns (0.5%)
   LB compute        : 243.45 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.67 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1422.00 ns (54.2%)
Info: cfl dt = 0.003652931508386626                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1155e+05 | 65536 |      2 | 2.104e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.51608499787301 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.757305863016773, dt = 0.003652931508386626
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.36 us    (2.0%)
   patch tree reduce : 2.02 us    (0.6%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.3%)
   LB compute        : 298.55 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (61.8%)
Info: cfl dt = 0.0036529315083866994                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1515e+05 | 65536 |      2 | 2.080e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.23773507869182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7609587945251597, dt = 0.0036529315083866994
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.38 us    (2.0%)
   patch tree reduce : 2.09 us    (0.7%)
   gen split merge   : 1112.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 291.12 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1542.00 ns (61.4%)
Info: cfl dt = 0.0036529315083867774                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8949e+05 | 65536 |      2 | 1.683e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 78.15543759971487 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7646117260335463, dt = 0.0036529315083867774
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.66 us    (2.1%)
   patch tree reduce : 1803.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1302.00 ns (0.4%)
   LB compute        : 298.32 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (58.1%)
Info: cfl dt = 0.0036529315083868603                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3635e+05 | 65536 |      2 | 1.502e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.55911351501666 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7682646575419332, dt = 0.0036529315083868603
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.5%)
   patch tree reduce : 1722.00 ns (0.7%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.5%)
   LB compute        : 235.24 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (57.9%)
Info: cfl dt = 0.0036529315083869487                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1550e+05 | 65536 |      2 | 1.577e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.37469250024148 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.77191758905032, dt = 0.0036529315083869487
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.4%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1171.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1131.00 ns (0.4%)
   LB compute        : 262.61 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1613.00 ns (59.9%)
Info: cfl dt = 0.003652931508387042                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2201e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.68025899679594 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.775570520558707, dt = 0.003652931508387042
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.2%)
   patch tree reduce : 1893.00 ns (0.6%)
   gen split merge   : 1262.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 276.74 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (65.5%)
Info: cfl dt = 0.003652931508387142                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1922e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.12136874812055 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.779223452067094, dt = 0.003652931508387142
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.47 us    (2.1%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 291.46 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1552.00 ns (58.7%)
Info: cfl dt = 0.0036529315083872484                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0028e+05 | 65536 |      2 | 1.637e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.3217684740536 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.782876383575481, dt = 0.0036529315083872484
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1202.00 ns (0.4%)
   LB compute        : 267.18 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1523.00 ns (61.6%)
Info: cfl dt = 0.0036529315083873607                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3447e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.18109184540657 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7865293150838684, dt = 0.0036529315083873607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (1.5%)
   patch tree reduce : 2.29 us    (0.5%)
   gen split merge   : 1332.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.3%)
   LB compute        : 421.70 us  (95.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (0.8%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1582.00 ns (61.2%)
Info: cfl dt = 0.00365293150838748                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3294e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.87449202985182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7901822465922557, dt = 0.00365293150838748
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.73 us    (1.9%)
   patch tree reduce : 2.27 us    (0.7%)
   gen split merge   : 1261.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1262.00 ns (0.4%)
   LB compute        : 324.65 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1722.00 ns (63.9%)
Info: cfl dt = 0.003652931508387607                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7984e+05 | 65536 |      2 | 1.725e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 76.21971894210883 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7938351781006432, dt = 0.003652931508387607
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.27 us    (1.9%)
   patch tree reduce : 2.15 us    (0.7%)
   gen split merge   : 1162.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 300.90 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (61.8%)
Info: cfl dt = 0.0036529315083877424                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2990e+05 | 65536 |      2 | 1.524e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.26524658614659 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7974881096090307, dt = 0.002511890390969329
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.49 us    (2.2%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1312.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 272.76 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1362.00 ns (58.4%)
Info: cfl dt = 0.0036529315083878404                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2223e+05 | 65536 |      2 | 1.552e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 58.259945670832955 (tsim/hr)                           [amr::RAMSES][rank=0]
Info: time since start : 1303.580345173 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.8, dt = 0.0036529315083878404
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.67 us    (2.3%)
   patch tree reduce : 2.69 us    (0.7%)
   gen split merge   : 951.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1092.00 ns (0.3%)
   LB compute        : 358.66 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1913.00 ns (67.0%)
Info: cfl dt = 0.0036529315083879904                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2457e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.19484394125098 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8036529315083878, dt = 0.0036529315083879904
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.0%)
   patch tree reduce : 2.10 us    (0.6%)
   gen split merge   : 1152.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 306.68 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1853.00 ns (55.9%)
Info: cfl dt = 0.0036529315083881496                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0198e+05 | 65536 |      2 | 1.630e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 80.66271358838696 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8073058630167758, dt = 0.0036529315083881496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.16 us    (2.5%)
   patch tree reduce : 1873.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 269.06 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.1%)
Info: cfl dt = 0.003652931508388317                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2299e+05 | 65536 |      2 | 1.549e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.87866411870138 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.810958794525164, dt = 0.003652931508388317
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 1933.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1412.00 ns (0.4%)
   LB compute        : 310.22 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1923.00 ns (65.1%)
Info: cfl dt = 0.0036529315083884966                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6980e+05 | 65536 |      2 | 1.772e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.2037159408652 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8146117260335524, dt = 0.0036529315083884966
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.21 us    (2.1%)
   patch tree reduce : 1943.00 ns (0.6%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.3%)
   LB compute        : 322.15 us  (93.2%)
   LB move op cnt    : 0
   LB apply          : 4.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (66.1%)
Info: cfl dt = 0.0036529315083886874                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2886e+05 | 65536 |      2 | 1.528e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.05589201759695 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8182646575419408, dt = 0.0036529315083886874
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.72 us    (2.2%)
   patch tree reduce : 2.02 us    (0.7%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1222.00 ns (0.4%)
   LB compute        : 281.98 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.98 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1482.00 ns (61.1%)
Info: cfl dt = 0.003652931508388889                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3193e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.6718696832046 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8219175890503294, dt = 0.003652931508388889
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.64 us    (2.3%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1232.00 ns (0.4%)
   LB compute        : 271.86 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1642.00 ns (63.5%)
Info: cfl dt = 0.003652931508389104                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0526e+05 | 65536 |      2 | 1.617e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.32026891846021 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8255705205587183, dt = 0.003652931508389104
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1011.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 271.70 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1522.00 ns (60.3%)
Info: cfl dt = 0.003652931508389332                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3493e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.27323563359182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8292234520671073, dt = 0.003652931508389332
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.93 us    (2.4%)
   patch tree reduce : 1852.00 ns (0.6%)
   gen split merge   : 1092.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 264.91 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1392.00 ns (59.2%)
Info: cfl dt = 0.0036529315083895725                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2629e+05 | 65536 |      2 | 1.537e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.5405577011053 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8328763835754966, dt = 0.0036529315083895725
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.06 us    (2.1%)
   patch tree reduce : 2.14 us    (0.6%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 309.24 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 4.06 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (68.8%)
Info: cfl dt = 0.003652931508389828                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3781e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.85170026671828 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8365293150838862, dt = 0.003652931508389828
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.62 us    (2.3%)
   patch tree reduce : 1823.00 ns (0.6%)
   gen split merge   : 1231.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 267.21 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.46 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (66.1%)
Info: cfl dt = 0.0036529315083900994                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3031e+05 | 65536 |      2 | 1.523e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.34579387846286 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.840182246592276, dt = 0.0036529315083900994
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.77 us    (3.0%)
   patch tree reduce : 1853.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 268.79 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1442.00 ns (60.8%)
Info: cfl dt = 0.0036529315083903874                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3574e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.43588637972877 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.843835178100666, dt = 0.0036529315083903874
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.80 us    (0.6%)
   patch tree reduce : 1753.00 ns (0.1%)
   gen split merge   : 1292.00 ns (0.1%)
   split / merge op  : 0/0
   apply split merge : 1342.00 ns (0.1%)
   LB compute        : 1142.50 us (96.9%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (0.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (67.6%)
Info: cfl dt = 0.003652931508390693                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3195e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.67490759990417 (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     : 6.45 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.7%)
   gen split merge   : 972.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1512.00 ns (0.5%)
   LB compute        : 272.60 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1683.00 ns (63.7%)
Info: cfl dt = 0.003652931508390914                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3475e+05 | 65536 |      2 | 1.507e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 59.98725193644223 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1305.8313973440002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.85, dt = 0.003652931508390914
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 9.46 us    (2.4%)
   patch tree reduce : 2.57 us    (0.7%)
   gen split merge   : 1001.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1172.00 ns (0.3%)
   LB compute        : 364.08 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.01 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.11 us    (65.9%)
Info: cfl dt = 0.003652931508391251                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3240e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.76553741227475 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.853652931508391, dt = 0.003652931508391251
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (1.9%)
   patch tree reduce : 2.00 us    (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1141.00 ns (0.3%)
   LB compute        : 326.15 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.71 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1962.00 ns (66.4%)
Info: cfl dt = 0.003652931508391608                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4185e+05 | 65536 |      2 | 1.483e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.66281106111288 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8573058630167822, dt = 0.003652931508391608
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.59 us    (2.0%)
   patch tree reduce : 1912.00 ns (0.6%)
   gen split merge   : 1232.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1282.00 ns (0.4%)
   LB compute        : 304.43 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1983.00 ns (64.7%)
Info: cfl dt = 0.0036529315083919872                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3790e+05 | 65536 |      2 | 1.497e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.87004204354311 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8609587945251738, dt = 0.0036529315083919872
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.29 us    (2.2%)
   patch tree reduce : 1812.00 ns (0.6%)
   gen split merge   : 1012.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1062.00 ns (0.4%)
   LB compute        : 269.29 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1842.00 ns (64.3%)
Info: cfl dt = 0.003652931508392388                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1028e+05 | 65536 |      2 | 2.112e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 62.26207357079415 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8646117260335657, dt = 0.003652931508392388
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.0%)
   patch tree reduce : 2.06 us    (0.6%)
   gen split merge   : 1082.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1122.00 ns (0.3%)
   LB compute        : 307.05 us  (93.4%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1783.00 ns (65.0%)
Info: cfl dt = 0.003652931508392813                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3530e+05 | 65536 |      2 | 1.506e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.34814345822382 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8682646575419581, dt = 0.003652931508392813
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 252.14 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1803.00 ns (63.0%)
Info: cfl dt = 0.003652931508393264                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3121e+05 | 65536 |      2 | 1.520e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.52744859027862 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.871917589050351, dt = 0.003652931508393264
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.39 us    (2.2%)
   patch tree reduce : 2.03 us    (0.7%)
   gen split merge   : 1001.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1191.00 ns (0.4%)
   LB compute        : 262.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1372.00 ns (59.3%)
Info: cfl dt = 0.003652931508393742                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1546e+05 | 65536 |      2 | 2.078e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 63.29977338342757 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8755705205587443, dt = 0.003652931508393742
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.09 us    (2.2%)
   patch tree reduce : 2.37 us    (0.7%)
   gen split merge   : 951.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1211.00 ns (0.4%)
   LB compute        : 297.37 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.86 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1703.00 ns (64.2%)
Info: cfl dt = 0.003652931508394248                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6239e+05 | 65536 |      2 | 1.808e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 72.71807365342673 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.879223452067138, dt = 0.003652931508394248
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.3%)
   patch tree reduce : 2.36 us    (0.8%)
   gen split merge   : 1182.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1051.00 ns (0.4%)
   LB compute        : 264.77 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1792.00 ns (63.0%)
Info: cfl dt = 0.0036529315083947828                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7826e+05 | 65536 |      2 | 1.733e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.90195843352691 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8828763835755322, dt = 0.0036529315083947828
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.45 us    (2.2%)
   patch tree reduce : 2.14 us    (0.7%)
   gen split merge   : 1703.00 ns (0.6%)
   split / merge op  : 0/0
   apply split merge : 1713.00 ns (0.6%)
   LB compute        : 265.01 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.54 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1602.00 ns (62.5%)
Info: cfl dt = 0.0036529315083953496                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3276e+05 | 65536 |      2 | 1.514e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.83885792690452 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.886529315083927, dt = 0.0036529315083953496
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.03 us    (2.4%)
   patch tree reduce : 2.17 us    (0.7%)
   gen split merge   : 1131.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1242.00 ns (0.4%)
   LB compute        : 269.40 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.85 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1412.00 ns (59.5%)
Info: cfl dt = 0.00365293150839595                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1787e+05 | 65536 |      2 | 1.568e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.85087024214083 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8901822465923224, dt = 0.00365293150839595
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.55 us    (2.0%)
   patch tree reduce : 1913.00 ns (0.6%)
   gen split merge   : 1101.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1071.00 ns (0.3%)
   LB compute        : 298.19 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.63 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1632.00 ns (62.2%)
Info: cfl dt = 0.0036529315083965847                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.3385e+05 | 65536 |      2 | 1.963e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 66.99063654592872 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8938351781007183, dt = 0.0036529315083965847
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 1763.00 ns (0.6%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1261.00 ns (0.4%)
   LB compute        : 279.97 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 4.10 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1622.00 ns (62.8%)
Info: cfl dt = 0.0036529315083972573                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.4683e+05 | 65536 |      2 | 1.890e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 69.59495351357381 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.897488109609115, dt = 0.002511890390885174
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.74 us    (1.9%)
   patch tree reduce : 1993.00 ns (0.6%)
   gen split merge   : 952.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1703.00 ns (0.5%)
   LB compute        : 337.43 us  (93.7%)
   LB move op cnt    : 0
   LB apply          : 3.83 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1953.00 ns (64.1%)
Info: cfl dt = 0.003652931508397743                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.5052e+05 | 65536 |      2 | 1.870e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 48.36614986613139 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1308.3137050730002 (s)                                   [Godunov][rank=0]
amr::Godunov: t = 1.9000000000000001, dt = 0.003652931508397743
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.89 us    (2.6%)
   patch tree reduce : 2.05 us    (0.6%)
   gen split merge   : 1062.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 316.01 us  (92.7%)
   LB move op cnt    : 0
   LB apply          : 3.90 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.17 us    (65.2%)
Info: cfl dt = 0.003652931508398483                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2790e+05 | 65536 |      2 | 1.532e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.86219567119882 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9036529315083979, dt = 0.003652931508398483
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.50 us    (2.0%)
   patch tree reduce : 1902.00 ns (0.6%)
   gen split merge   : 1172.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 304.40 us  (93.3%)
   LB move op cnt    : 0
   LB apply          : 3.69 us    (1.1%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1993.00 ns (67.9%)
Info: cfl dt = 0.003652931508399266                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2109e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.49583473455824 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9073058630167963, dt = 0.003652931508399266
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.20 us    (2.2%)
   patch tree reduce : 2.34 us    (0.8%)
   gen split merge   : 941.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1162.00 ns (0.4%)
   LB compute        : 262.91 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1652.00 ns (63.2%)
Info: cfl dt = 0.003652931508400095                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2719e+05 | 65536 |      2 | 1.534e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.72157896960321 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9109587945251956, dt = 0.003652931508400095
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.40 us    (2.4%)
   patch tree reduce : 2.18 us    (0.8%)
   gen split merge   : 1072.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1102.00 ns (0.4%)
   LB compute        : 249.57 us  (92.0%)
   LB move op cnt    : 0
   LB apply          : 3.72 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.18 us    (67.5%)
Info: cfl dt = 0.003652931508400971                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2128e+05 | 65536 |      2 | 1.556e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.53534979246186 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9146117260335958, dt = 0.003652931508400971
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.53 us    (2.4%)
   patch tree reduce : 2.22 us    (0.8%)
   gen split merge   : 1032.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.5%)
   LB compute        : 244.91 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 4.02 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1572.00 ns (45.4%)
Info: cfl dt = 0.003652931508401898                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3888e+05 | 65536 |      2 | 1.493e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.06556392311474 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9182646575419968, dt = 0.003652931508401898
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1242.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1052.00 ns (0.4%)
   LB compute        : 246.96 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.56 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1402.00 ns (60.1%)
Info: cfl dt = 0.003652931508402878                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4130e+05 | 65536 |      2 | 1.485e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.55138701019446 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9219175890503988, dt = 0.003652931508402878
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.60 us    (2.0%)
   patch tree reduce : 1892.00 ns (0.6%)
   gen split merge   : 1111.00 ns (0.3%)
   split / merge op  : 0/0
   apply split merge : 1332.00 ns (0.4%)
   LB compute        : 310.14 us  (93.1%)
   LB move op cnt    : 0
   LB apply          : 4.07 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1793.00 ns (63.9%)
Info: cfl dt = 0.0036529315084039148                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.6650e+05 | 65536 |      2 | 1.788e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 73.54169533087801 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9255705205588016, dt = 0.0036529315084039148
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 7.14 us    (2.6%)
   patch tree reduce : 1963.00 ns (0.7%)
   gen split merge   : 1282.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1241.00 ns (0.5%)
   LB compute        : 247.72 us  (91.8%)
   LB move op cnt    : 0
   LB apply          : 3.48 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (62.9%)
Info: cfl dt = 0.0036529315084050107                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.8528e+05 | 65536 |      2 | 1.701e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 77.31008527557347 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9292234520672056, dt = 0.0036529315084050107
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.30 us    (2.1%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1132.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 280.77 us  (93.0%)
   LB move op cnt    : 0
   LB apply          : 3.57 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1733.00 ns (61.8%)
Info: cfl dt = 0.0036529315084061695                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1987e+05 | 65536 |      2 | 1.561e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.25201438734508 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9328763835756106, dt = 0.0036529315084061695
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.37 us    (2.4%)
   patch tree reduce : 1903.00 ns (0.7%)
   gen split merge   : 1082.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1081.00 ns (0.4%)
   LB compute        : 248.88 us  (92.1%)
   LB move op cnt    : 0
   LB apply          : 3.75 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1752.00 ns (60.5%)
Info: cfl dt = 0.003652931508407394                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.0856e+05 | 65536 |      2 | 1.604e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 81.98191939152632 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9365293150840168, dt = 0.003652931508407394
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.68 us    (2.3%)
   patch tree reduce : 2.35 us    (0.8%)
   gen split merge   : 1021.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1221.00 ns (0.4%)
   LB compute        : 265.73 us  (91.9%)
   LB move op cnt    : 0
   LB apply          : 3.91 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1723.00 ns (64.4%)
Info: cfl dt = 0.0036529315084086874                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1929e+05 | 65536 |      2 | 1.563e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.1360810138053 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.940182246592424, dt = 0.0036529315084086874
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.33 us    (2.4%)
   patch tree reduce : 2.05 us    (0.8%)
   gen split merge   : 1111.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1161.00 ns (0.4%)
   LB compute        : 237.50 us  (91.7%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (60.1%)
Info: cfl dt = 0.003652931508410056                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3724e+05 | 65536 |      2 | 1.499e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.73644631208646 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9438351781008327, dt = 0.003652931508410056
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.3%)
   patch tree reduce : 2.25 us    (0.8%)
   gen split merge   : 1402.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.4%)
   LB compute        : 276.59 us  (92.3%)
   LB move op cnt    : 0
   LB apply          : 4.00 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (60.3%)
Info: cfl dt = 0.003652931508411501                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2803e+05 | 65536 |      2 | 1.531e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.88999629307978 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9474881096092427, dt = 0.0025118903907574985
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.82 us    (2.3%)
   patch tree reduce : 2.20 us    (0.7%)
   gen split merge   : 1322.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1061.00 ns (0.4%)
   LB compute        : 275.68 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.92 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1332.00 ns (56.9%)
Info: cfl dt = 0.0036529315084125433                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.1041e+05 | 65536 |      2 | 2.111e-01 | 0.0% |   0.5% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 42.83153347766553 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1310.639748023 (s)                                       [Godunov][rank=0]
amr::Godunov: t = 1.9500000000000002, dt = 0.0036529315084125433
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 8.85 us    (2.3%)
   patch tree reduce : 2.44 us    (0.6%)
   gen split merge   : 982.00 ns  (0.2%)
   split / merge op  : 0/0
   apply split merge : 1111.00 ns (0.3%)
   LB compute        : 367.50 us  (93.5%)
   LB move op cnt    : 0
   LB apply          : 4.05 us    (1.0%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (49.1%)
Info: cfl dt = 0.0036529315084141293                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3219e+05 | 65536 |      2 | 1.516e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.72370795742434 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9536529315084128, dt = 0.0036529315084141293
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.42 us    (2.1%)
   patch tree reduce : 1843.00 ns (0.6%)
   gen split merge   : 1102.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1352.00 ns (0.4%)
   LB compute        : 280.19 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1903.00 ns (61.9%)
Info: cfl dt = 0.0036529315084158046                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1752e+05 | 65536 |      2 | 1.570e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 83.78101312956872 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957305863016827, dt = 0.0036529315084158046
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.1%)
   patch tree reduce : 1802.00 ns (0.6%)
   gen split merge   : 1272.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1402.00 ns (0.4%)
   LB compute        : 289.95 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.78 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1742.00 ns (61.0%)
Info: cfl dt = 0.0036529315084175723                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7660e+05 | 65536 |      2 | 1.740e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 75.56817798939812 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9609587945252427, dt = 0.0036529315084175723
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.88 us    (2.6%)
   patch tree reduce : 1973.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.5%)
   split / merge op  : 0/0
   apply split merge : 1312.00 ns (0.5%)
   LB compute        : 246.30 us  (91.5%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (59.1%)
Info: cfl dt = 0.00365293150841944                                       [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3315e+05 | 65536 |      2 | 1.513e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.9157565012696 (tsim/hr)                             [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9646117260336602, dt = 0.00365293150841944
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.63 us    (2.2%)
   patch tree reduce : 2.18 us    (0.7%)
   gen split merge   : 1122.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1152.00 ns (0.4%)
   LB compute        : 272.75 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.94 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1692.00 ns (63.3%)
Info: cfl dt = 0.0036529315084214116                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2434e+05 | 65536 |      2 | 1.544e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 85.14834123870564 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9682646575420797, dt = 0.0036529315084214116
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.58 us    (2.5%)
   patch tree reduce : 2.06 us    (0.8%)
   gen split merge   : 1142.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.5%)
   LB compute        : 241.71 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.87 us    (1.5%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 2.09 us    (67.0%)
Info: cfl dt = 0.0036529315084234937                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 3.7374e+05 | 65536 |      2 | 1.754e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 74.99434589420602 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9719175890505012, dt = 0.0036529315084234937
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.5%)
   patch tree reduce : 2.13 us    (0.8%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1322.00 ns (0.5%)
   LB compute        : 236.13 us  (91.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1382.00 ns (57.7%)
Info: cfl dt = 0.0036529315084256916                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3584e+05 | 65536 |      2 | 1.504e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.45654651854082 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9755705205589247, dt = 0.0036529315084256916
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.67 us    (2.4%)
   patch tree reduce : 2.15 us    (0.8%)
   gen split merge   : 1101.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 961.00 ns  (0.4%)
   LB compute        : 252.51 us  (92.2%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1492.00 ns (59.1%)
Info: cfl dt = 0.0036529315084280114                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3210e+05 | 65536 |      2 | 1.517e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 86.70526818576182 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9792234520673504, dt = 0.0036529315084280114
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.35 us    (2.1%)
   patch tree reduce : 2.11 us    (0.7%)
   gen split merge   : 1052.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1212.00 ns (0.4%)
   LB compute        : 274.32 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.58 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1432.00 ns (58.6%)
Info: cfl dt = 0.003652931508430461                                      [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.2196e+05 | 65536 |      2 | 1.553e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 84.67092481689501 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9828763835757783, dt = 0.003652931508430461
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.46 us    (2.2%)
   patch tree reduce : 1883.00 ns (0.7%)
   gen split merge   : 1212.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1112.00 ns (0.4%)
   LB compute        : 267.36 us  (92.6%)
   LB move op cnt    : 0
   LB apply          : 3.62 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1782.00 ns (63.1%)
Info: cfl dt = 0.0036529315084330447                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4011e+05 | 65536 |      2 | 1.489e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.31299218385453 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9865293150842087, dt = 0.0036529315084330447
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.24 us    (2.1%)
   patch tree reduce : 1983.00 ns (0.7%)
   gen split merge   : 992.00 ns  (0.3%)
   split / merge op  : 0/0
   apply split merge : 1272.00 ns (0.4%)
   LB compute        : 278.35 us  (92.9%)
   LB move op cnt    : 0
   LB apply          : 3.77 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1773.00 ns (64.6%)
Info: cfl dt = 0.0036529315084357704                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3866e+05 | 65536 |      2 | 1.494e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 88.02225568387132 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9901822465926418, dt = 0.0036529315084357704
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.41 us    (2.2%)
   patch tree reduce : 2.04 us    (0.7%)
   gen split merge   : 1252.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1132.00 ns (0.4%)
   LB compute        : 268.45 us  (92.5%)
   LB move op cnt    : 0
   LB apply          : 3.73 us    (1.3%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1883.00 ns (63.5%)
Info: cfl dt = 0.0036529315084386465                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.1093e+05 | 65536 |      2 | 1.595e-01 | 0.0% |   0.6% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 82.45730376132614 (tsim/hr)                            [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9938351781010775, dt = 0.0036529315084386465
Info: Summary (strategy = round robin):                                       [LoadBalance][rank=0]
 - strategy "psweep"      : max = 8192.0 min = 8192.0 factor = 1
 - strategy "round robin" : max = 7782.4 min = 7782.4 factor = 0.95
Info: Loadbalance stats :                                                     [LoadBalance][rank=0]
    npatch = 2
    min = 8192
    max = 8192
    avg = 8192
    efficiency = 100.00%
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 6.75 us    (2.2%)
   patch tree reduce : 1923.00 ns (0.6%)
   gen split merge   : 1152.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1373.00 ns (0.4%)
   LB compute        : 287.02 us  (92.8%)
   LB move op cnt    : 0
   LB apply          : 3.70 us    (1.2%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1502.00 ns (61.2%)
Info: cfl dt = 0.0036529315084416793                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.3458e+05 | 65536 |      2 | 1.508e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 87.20411648692628 (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     : 6.27 us    (2.2%)
   patch tree reduce : 2.20 us    (0.8%)
   gen split merge   : 1081.00 ns (0.4%)
   split / merge op  : 0/0
   apply split merge : 1292.00 ns (0.5%)
   LB compute        : 263.86 us  (92.4%)
   LB move op cnt    : 0
   LB apply          : 3.97 us    (1.4%)
Info: Scheduler step timings :                                                  [Scheduler][rank=0]
   metadata sync     : 1262.00 ns (57.5%)
Info: cfl dt = 0.0036529315084438637                                     [amr::basegodunov][rank=0]
Info: Timestep perf report:                                                   [amr::RAMSES][rank=0]
+======+============+=======+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj  | Npatch |   tstep   | MPI  | alloc d% h% | mem (max) d | mem (max) h |
+======+============+=======+========+===========+======+=============+=============+=============+
| 0    | 4.4643e+05 | 65536 |      2 | 1.468e-01 | 0.0% |   0.7% 0.0% |     2.00 GB |     2.00 GB |
+------+------------+-------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 61.59964166767205 (tsim/hr)                            [amr::RAMSES][rank=0]
Info: time since start : 1312.888459405 (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.])}]}
363 plt.show()

Total running time of the script: (22 minutes 5.617 seconds)

Estimated memory usage: 647 MB

Gallery generated by Sphinx-Gallery